{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/Dgv31O6he9o2OnWSJ5z3/Wv5SodQ0yNm3UnKr2tdo/snowflaketsx.js", "ssg:https://framerusercontent.com/modules/g3dfQGqRYvniOvHIjetG/qjQlooAbANRTmhnMSHFr/Embed.js", "ssg:https://framerusercontent.com/modules/nZxPhP2EnsTNnAepUamH/qdD86nulD8V5FJS93toW/FullSize_Images.js", "ssg:https://framerusercontent.com/modules/C2jz3MVwN2Q6aNstXngd/nJBSq27yRFdhhsveLAIF/ToC_1.js", "ssg:https://framerusercontent.com/modules/iRmzVIxpvUhSB74igZ79/qVU1eJwjg7Xb6KgrbCRd/Zscaler.js", "ssg:https://framerusercontent.com/modules/yGbUW3h1Ajprx6PY5DR2/KOrzGCLZc4JwHc1j8WXY/DxY1ajKBr.js", "ssg:https://framerusercontent.com/modules/bXxdfFMBBnDKXee7fVHk/SIuRhCkJM5hl2ejTtXkb/xPxo7tAz9.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";export default function StorylaneEmbedsnowflake(){useEffect(()=>{// Load the Storylane script\nconst script=document.createElement(\"script\");script.src=\"https://js.storylane.io/js/v2/storylane.js\";script.async=true;document.body.appendChild(script);return()=>{document.body.removeChild(script);};},[]);return /*#__PURE__*/_jsx(\"div\",{style:{position:\"relative\",paddingBottom:\"calc(48.26% + 25px)\",width:\"100%\",height:0,transform:\"scale(1)\"},children:/*#__PURE__*/_jsx(\"iframe\",{loading:\"lazy\",className:\"sl-demo\",src:\"https://panther.storylane.io/demo/ww2nffbe4nat?embed=inline\",name:\"sl-embed\",allow:\"fullscreen\",allowFullScreen:true,style:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",border:\"1px solid rgba(63,95,172,0.35)\",boxShadow:\"0px 0px 18px rgba(26, 19, 72, 0.15)\",borderRadius:\"10px\",boxSizing:\"border-box\"}})});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"StorylaneEmbedsnowflake\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./snowflaketsx.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";export default function StorylaneEmbed(){useEffect(()=>{// Load the Storylane script\nconst script=document.createElement(\"script\");script.src=\"https://js.storylane.io/js/v2/storylane.js\";script.async=true;document.body.appendChild(script);return()=>{document.body.removeChild(script);};},[]);return /*#__PURE__*/_jsx(\"div\",{style:{position:\"relative\",paddingBottom:\"calc(48.26% + 25px)\",width:\"100%\",height:0,transform:\"scale(1)\"},children:/*#__PURE__*/_jsx(\"iframe\",{loading:\"lazy\",className:\"sl-demo\",src:\"https://panther.storylane.io/demo/xiev1lnlyb8l?embed=inline\",name:\"sl-embed\",allow:\"fullscreen\",allowFullScreen:true,style:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",border:\"1px solid rgba(63,95,172,0.35)\",boxShadow:\"0px 0px 18px rgba(26, 19, 72, 0.15)\",borderRadius:\"10px\",boxSizing:\"border-box\"}})});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"StorylaneEmbed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";export function withFullWidthFramerImage(Component){return props=>{const ref=useRef(null);useEffect(()=>{if(ref.current){const images=ref.current.querySelectorAll(\".framer-image\");images.forEach(img=>{img.style.display=\"block\";img.style.marginLeft=\"auto\";img.style.marginRight=\"auto\";img.style.width=\"100%\";img.style.height=\"auto\"// Maintains aspect ratio\n;img.style.borderRadius=\"15px\"// Added border-radius\n;});}},[]);return /*#__PURE__*/_jsx(Component,{...props,ref:ref});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withFullWidthFramerImage\":{\"type\":\"reactHoc\",\"name\":\"withFullWidthFramerImage\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FullSize_Images.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{gsap}from\"gsap\";import{ScrollToPlugin}from\"gsap/ScrollToPlugin\";// For this to work properly you need to\n// Set the table of contents target to have a class of toc-target\ngsap.registerPlugin(ScrollToPlugin);export default function TableOfContents(props){const[tocItems,setTocItems]=useState([]);const[activeSectionId,setActiveSectionId]=useState(\"\");useEffect(()=>{const headings=document.querySelectorAll(\".toc-target h2, .toc-target h3, .toc-target h4, .toc-target h5, .toc-target h6\");const items=Array.from(headings).map((heading,index)=>{const id=heading.id||`toc-target-heading-${index}`;heading.id=id;return{id,title:heading.textContent||\"Untitled\",level:parseInt(heading.tagName.substring(1),10)-1};});setTocItems(items);const onScroll=()=>{let found=false;items.forEach(item=>{const element=document.getElementById(item.id);const bounding=element.getBoundingClientRect();if(bounding.top<window.innerHeight&&bounding.bottom>=0&&!found){setActiveSectionId(item.id);found=true;}});if(!found)setActiveSectionId(\"\");};window.addEventListener(\"scroll\",onScroll);onScroll()// Initial check\n;return()=>window.removeEventListener(\"scroll\",onScroll);},[]);const handleScrollToSection=id=>{gsap.to(window,{duration:1,ease:\"power2.inOut\",scrollTo:{y:`#${id}`,offsetY:props.scrollOffset}});};if(tocItems.length===0){return null// Do not render anything if there are no TOC items\n;}return /*#__PURE__*/_jsxs(\"div\",{children:[/*#__PURE__*/_jsx(\"style\",{children:`\n                .toc-container {}\n                .toc-link {\n                    cursor: pointer;\n                    color: ${props.enabledColor};\n                    text-decoration: ${props.textDecoration};\n                    font-family: ${props.fontName};\n                    font-size: ${props.fontSize};\n                    line-height: ${props.lineHeight};\n                    margin: ${props.margins};\n                    width: 100%;\n                    transition: all 0.3s ease-in-out;\n                    padding-left: 0px;\n                    border-left: 2px solid transparent;\n                }\n                .toc-link.active {\n                    color: ${props.hoverColor};\n                    border-left: 2px solid ${props.highlightColor};\n                    padding-left: 8px;\n                }\n                .toc-link:hover {\n                    color: ${props.hoverColor};\n                }\n            `}),/*#__PURE__*/_jsx(\"ul\",{style:{listStyleType:\"none\",padding:0,margin:0},className:\"toc-container\",children:tocItems.map(item=>/*#__PURE__*/_jsx(\"li\",{style:{marginLeft:`${(item.level-1)*props.listMarginLeft}px`},children:/*#__PURE__*/_jsx(\"div\",{className:`toc-link ${activeSectionId===item.id?\"active\":\"\"}`,onClick:()=>handleScrollToSection(item.id),children:item.title})},item.id))})]});}TableOfContents.defaultProps={fontName:\"Inter\",fontSize:\"16px\",lineHeight:\"24px\",listMarginLeft:16,textDecoration:\"None\",enabledColor:\"#000000\",hoverColor:\"#0000FF\",highlightColor:\"#182FFF\",margins:\"4px 0px\",scrollOffset:80};addPropertyControls(TableOfContents,{fontName:{title:\"Font Name\",type:ControlType.String,defaultValue:\"Inter\"},fontSize:{title:\"Font Size\",type:ControlType.String,defaultValue:\"16px\"},lineHeight:{title:\"Line Height\",type:ControlType.String,defaultValue:\"16px\"},textDecoration:{title:\"Text Decoration\",type:ControlType.String,defaultValue:\"None\"},margins:{title:\"Margin\",type:ControlType.String,defaultValue:\"4px 0px\"},enabledColor:{title:\"Enabled Color\",type:ControlType.Color,defaultValue:\"#000000\"},hoverColor:{title:\"Hover Color\",type:ControlType.Color,defaultValue:\"#FF0000\"},highlightColor:{title:\"Highlight Color\",type:ControlType.Color,defaultValue:\"#FF0000\"},listMarginLeft:{title:\"Indentation per level\",description:\"in pixels\",type:ControlType.Number,defaultValue:16},scrollOffset:{title:\"Scroll Offset\",description:\"Use this if you have a sticky nav.\",type:ControlType.Number,defaultValue:80}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TableOfContents\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ToC_1.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";export default function StorylaneEmbedZscaler(){useEffect(()=>{// Load the Storylane script\nconst script=document.createElement(\"script\");script.src=\"https://js.storylane.io/js/v2/storylane.js\";script.async=true;document.body.appendChild(script);return()=>{document.body.removeChild(script);};},[]);return /*#__PURE__*/_jsx(\"div\",{style:{position:\"relative\",paddingBottom:\"calc(48.26% + 25px)\",width:\"100%\",height:0,transform:\"scale(1)\"},children:/*#__PURE__*/_jsx(\"iframe\",{loading:\"lazy\",className:\"sl-demo\",src:\"https://panther.storylane.io/demo/iw7olrrwhotq?embed=inline\",name:\"sl-embed\",allow:\"fullscreen\",allowFullScreen:true,style:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",border:\"1px solid rgba(63,95,172,0.35)\",boxShadow:\"0px 0px 18px rgba(26, 19, 72, 0.15)\",borderRadius:\"10px\",boxSizing:\"border-box\"}})});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"StorylaneEmbedZscaler\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Zscaler.map", "// Generated by Framer (722666c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-SKjCB .framer-styles-preset-vw521t {  }\"];export const className=\"framer-SKjCB\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7422eea)\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,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import StorylaneEmbedsnowflake from\"https://framerusercontent.com/modules/Dgv31O6he9o2OnWSJ5z3/Wv5SodQ0yNm3UnKr2tdo/snowflaketsx.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import PageResourcesArticleCard from\"#framer/local/canvasComponent/AtmaCxWwc/AtmaCxWwc.js\";import LayoutsNavigation from\"#framer/local/canvasComponent/Cz3nnWovF/Cz3nnWovF.js\";import LayoutsTrustedBy from\"#framer/local/canvasComponent/gvb3z9Rof/gvb3z9Rof.js\";import LayoutsCTABanner from\"#framer/local/canvasComponent/JAkfY71Ut/JAkfY71Ut.js\";import LayoutsFooter from\"#framer/local/canvasComponent/TBR2GwtBt/TBR2GwtBt.js\";import Modal from\"#framer/local/canvasComponent/YLBczhZpP/YLBczhZpP.js\";import StorylaneEmbed from\"#framer/local/codeFile/mUnhoZU/Embed.js\";import{withFullWidthFramerImage}from\"#framer/local/codeFile/zAufQt4/FullSize_Images.js\";import TableOfContents from\"#framer/local/codeFile/DR0HEZE/ToC_1.js\";import{withClass}from\"#framer/local/codeFile/tGvMPef/ToCTarget.js\";import StorylaneEmbedZscaler from\"#framer/local/codeFile/X52PTY5/Zscaler.js\";import Categories from\"#framer/local/collection/wXNrrxR_w/wXNrrxR_w.js\";import Posts from\"#framer/local/collection/YHdMp3byK/YHdMp3byK.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle14 from\"#framer/local/css/A7mA0GJXv/A7mA0GJXv.js\";import*as sharedStyle6 from\"#framer/local/css/AowPMIErf/AowPMIErf.js\";import*as sharedStyle9 from\"#framer/local/css/b5SJCtKih/b5SJCtKih.js\";import*as sharedStyle7 from\"#framer/local/css/CvhK9DRkh/CvhK9DRkh.js\";import*as sharedStyle17 from\"#framer/local/css/cVrIBDuLp/cVrIBDuLp.js\";import*as sharedStyle16 from\"#framer/local/css/DxY1ajKBr/DxY1ajKBr.js\";import*as sharedStyle15 from\"#framer/local/css/iiKvyUJgo/iiKvyUJgo.js\";import*as sharedStyle4 from\"#framer/local/css/j2iOLwkpH/j2iOLwkpH.js\";import*as sharedStyle12 from\"#framer/local/css/nNwkdjgzQ/nNwkdjgzQ.js\";import*as sharedStyle3 from\"#framer/local/css/QuGK9i1mK/QuGK9i1mK.js\";import*as sharedStyle from\"#framer/local/css/T3ov2VROv/T3ov2VROv.js\";import*as sharedStyle2 from\"#framer/local/css/TLI0WQ9JE/TLI0WQ9JE.js\";import*as sharedStyle13 from\"#framer/local/css/Tq1RMMgwh/Tq1RMMgwh.js\";import*as sharedStyle1 from\"#framer/local/css/uajwtGpbO/uajwtGpbO.js\";import*as sharedStyle8 from\"#framer/local/css/uiZ8ygI06/uiZ8ygI06.js\";import*as sharedStyle11 from\"#framer/local/css/VerL_y7Dr/VerL_y7Dr.js\";import*as sharedStyle10 from\"#framer/local/css/vGwN_rfV6/vGwN_rfV6.js\";import*as sharedStyle5 from\"#framer/local/css/ZCtE1CR9z/ZCtE1CR9z.js\";import metadataProvider from\"#framer/local/webPageMetadata/xPxo7tAz9/xPxo7tAz9.js\";const LayoutsNavigationFonts=getFonts(LayoutsNavigation);const ModalFonts=getFonts(Modal);const RichTextWithClass1s9m755=withCodeBoundaryForOverrides(RichText,{nodeId:\"q2nDSy27R\",override:withClass,scopeId:\"xPxo7tAz9\"});const TableOfContentsFonts=getFonts(TableOfContents);const MotionDivWithFullWidthFramerImage1hhsejh=withCodeBoundaryForOverrides(motion.div,{nodeId:\"nb9jsAbmy\",override:withFullWidthFramerImage,scopeId:\"xPxo7tAz9\"});const StorylaneEmbedZscalerFonts=getFonts(StorylaneEmbedZscaler);const StorylaneEmbedsnowflakeFonts=getFonts(StorylaneEmbedsnowflake);const StorylaneEmbedFonts=getFonts(StorylaneEmbed);const PageResourcesArticleCardFonts=getFonts(PageResourcesArticleCard);const SlideshowFonts=getFonts(Slideshow);const LayoutsCTABannerFonts=getFonts(LayoutsCTABanner);const LayoutsTrustedByFonts=getFonts(LayoutsTrustedBy);const LayoutsFooterFonts=getFonts(LayoutsFooter);const breakpoints={hDuZZctyB:\"(min-width: 1200px) and (max-width: 1919px)\",wEQycq9gp:\"(max-width: 809px)\",ySV3tECuD:\"(min-width: 1920px)\",ZdQTHUM2w:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Jw19M\";const variantClassNames={hDuZZctyB:\"framer-v-ndb9dk\",wEQycq9gp:\"framer-v-1m8pzha\",ySV3tECuD:\"framer-v-1mnuri7\",ZdQTHUM2w:\"framer-v-fntpzz\"};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const 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;try{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const toString=value=>{return typeof value===\"string\"?value:String(value);};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop Medium\":\"ySV3tECuD\",Desktop:\"hDuZZctyB\",Phone:\"wEQycq9gp\",Tablet:\"ZdQTHUM2w\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ySV3tECuD\"};};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:\"xPxo7tAz9\",data:Posts,type:\"Collection\"},select:[{collection:\"xPxo7tAz9\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"xPxo7tAz9\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"xPxo7tAz9\",name:\"c9LnDl7pN\",type:\"Identifier\"},{collection:\"xPxo7tAz9\",name:\"Kk08S0Sw2\",type:\"Identifier\"},{collection:\"xPxo7tAz9\",name:\"RFnuke_I5\",type:\"Identifier\"},{collection:\"xPxo7tAz9\",name:\"YRJ78spKv\",type:\"Identifier\"},{collection:\"xPxo7tAz9\",name:\"ETMzQosHT\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"xPxo7tAz9\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,c9LnDl7pN=getFromCurrentRouteData(\"c9LnDl7pN\"),YRJ78spKv=getFromCurrentRouteData(\"YRJ78spKv\")??0,Kk08S0Sw2=getFromCurrentRouteData(\"Kk08S0Sw2\")??\"\",RFnuke_I5=getFromCurrentRouteData(\"RFnuke_I5\")??\"\",A2fPVhN9y=getFromCurrentRouteData(\"A2fPVhN9y\")??\"\",ETMzQosHT=getFromCurrentRouteData(\"ETMzQosHT\")??\"\",v0qVdBxeh=getFromCurrentRouteData(\"v0qVdBxeh\")??\"\",v0qVdBxehHEfYHvmsE,p9YpBgqsfZGTGkcsdq,hRHUXUylpHEfYHvmsE,A2fPVhN9yHEfYHvmsE,tbtNVVXliZGTGkcsdq,ShqM3lrS3ZGTGkcsdq,idZGTGkcsdq,idHEfYHvmsE,v0qVdBxehtEEGX65eR,p9YpBgqsfj4gg6R2Ye,hRHUXUylptEEGX65eR,A2fPVhN9ytEEGX65eR,tbtNVVXlij4gg6R2Ye,ShqM3lrS3j4gg6R2Ye,idj4gg6R2Ye,idtEEGX65eR,v0qVdBxehQJTom1XtQ,p9YpBgqsfYl3sVEekD,hRHUXUylpQJTom1XtQ,A2fPVhN9yQJTom1XtQ,tbtNVVXliYl3sVEekD,ShqM3lrS3Yl3sVEekD,idYl3sVEekD,idQJTom1XtQ,v0qVdBxehiYsC9mY3W,p9YpBgqsfHiRJRQfUy,hRHUXUylpiYsC9mY3W,A2fPVhN9yiYsC9mY3W,tbtNVVXliHiRJRQfUy,ShqM3lrS3HiRJRQfUy,idHiRJRQfUy,idiYsC9mY3W,v0qVdBxehOz8ehSD5w,p9YpBgqsfZoywwksBr,hRHUXUylpOz8ehSD5w,A2fPVhN9yOz8ehSD5w,tbtNVVXliZoywwksBr,ShqM3lrS3ZoywwksBr,idZoywwksBr,idOz8ehSD5w,v0qVdBxehEZMNpoLus,p9YpBgqsfwhneGC2cl,hRHUXUylpEZMNpoLus,A2fPVhN9yEZMNpoLus,tbtNVVXliwhneGC2cl,ShqM3lrS3whneGC2cl,idwhneGC2cl,idEZMNpoLus,v0qVdBxehGBul3i7Pf,p9YpBgqsfn5Hi2zMcl,hRHUXUylpGBul3i7Pf,A2fPVhN9yGBul3i7Pf,tbtNVVXlin5Hi2zMcl,ShqM3lrS3n5Hi2zMcl,idn5Hi2zMcl,idGBul3i7Pf,v0qVdBxehNKQCiiG_e,p9YpBgqsftk44skDQ_,hRHUXUylpNKQCiiG_e,A2fPVhN9yNKQCiiG_e,tbtNVVXlitk44skDQ_,ShqM3lrS3tk44skDQ_,idtk44skDQ_,idNKQCiiG_e,v0qVdBxehgnNlzbWXV,p9YpBgqsfMCVhEjK4h,hRHUXUylpgnNlzbWXV,A2fPVhN9ygnNlzbWXV,tbtNVVXliMCVhEjK4h,ShqM3lrS3MCVhEjK4h,idMCVhEjK4h,idgnNlzbWXV,v0qVdBxehw1cssU8Bp,p9YpBgqsfU7f9SnTGO,hRHUXUylpw1cssU8Bp,A2fPVhN9yw1cssU8Bp,tbtNVVXliU7f9SnTGO,ShqM3lrS3U7f9SnTGO,idU7f9SnTGO,idw1cssU8Bp,v0qVdBxehRyDyguu4n,p9YpBgqsfMMas6WcUO,hRHUXUylpRyDyguu4n,A2fPVhN9yRyDyguu4n,tbtNVVXliMMas6WcUO,ShqM3lrS3MMas6WcUO,idMMas6WcUO,idRyDyguu4n,v0qVdBxehkFJO9Nxox,p9YpBgqsfALYqUEnKV,hRHUXUylpkFJO9Nxox,A2fPVhN9ykFJO9Nxox,tbtNVVXliALYqUEnKV,ShqM3lrS3ALYqUEnKV,idALYqUEnKV,idkFJO9Nxox,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const V6uV8FYGE3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const M6hfBDwcn1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const rzFX3elyE3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"wEQycq9gp\")return true;return false;};const activeLocaleCode=useLocaleCode();const textContent=toDateString(c9LnDl7pN,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"wEQycq9gp\")return false;return true;};const textContent1=toString(YRJ78spKv);const visible=isSet(Kk08S0Sw2);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"ZdQTHUM2w\",\"wEQycq9gp\"].includes(baseVariant))return false;return true;};const visible1=equals(v0qVdBxeh,\"centralize-and-correlate-critical-security-data-with-panther-and-zscaler\");const visible2=equals(v0qVdBxeh,\"panther-snowflake-security-monitoring-with-streaming-analysis-for-your-enterprise-data\");const visible3=equals(v0qVdBxeh,\"panther-wiz-empowering-secops-teams-with-unified-context\");const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ySV3tECuD\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f8c4c09b-cc86-4296-aa7b-cce9a8cb8b0d, rgb(21, 22, 25)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1mnuri7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:114,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-k9y31v-container\",id:\"k9y31v\",nodeId:\"Ob6pIMRSU\",scopeId:\"xPxo7tAz9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDuZZctyB:{variant:\"wFiXhiQ1Y\"},wEQycq9gp:{variant:\"HbpgQxgbN\"},ZdQTHUM2w:{variant:\"TIOQwyGsQ\"}},children:/*#__PURE__*/_jsx(LayoutsNavigation,{fBGIWxuFr:\"0px\",height:\"100%\",id:\"Ob6pIMRSU\",layoutId:\"Ob6pIMRSU\",style:{width:\"100%\"},V6uV8FYGE:V6uV8FYGE3bnx0g({overlay}),variant:\"k7XL4eNuH\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-ij0ypp\"),\"data-framer-portal-id\":\"k9y31v\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"ZxHWySrh5\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-hvfo2a-container\"),\"data-framer-portal-id\":\"k9y31v\",inComponentSlot:true,nodeId:\"QP1PMQwEg\",rendersWithMotion:true,scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDuZZctyB:{variant:\"LQ511RkOY\"},wEQycq9gp:{variant:\"h5kMWrv2l\"},ZdQTHUM2w:{variant:\"qhzOjsqvj\"}},children:/*#__PURE__*/_jsx(Modal,{height:\"100%\",id:\"QP1PMQwEg\",layoutId:\"QP1PMQwEg\",M6hfBDwcn:M6hfBDwcn1wnntms({overlay}),style:{height:\"100%\",width:\"100%\"},variant:\"UBSKp_MgN\",width:\"100%\"})})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qvu4zy\",\"data-framer-name\":\"Contents\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lnp7io\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hrgflq\",\"data-framer-name\":\"BG\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4qgfpu\",\"data-framer-name\":\"Overlay\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jgjeuk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDuZZctyB:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+114+0+0+0+0),pixelHeight:3300,pixelWidth:3364,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png\",srcSet:\"https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png 3364w\"}},wEQycq9gp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+114+0+0+0+-300),pixelHeight:3300,pixelWidth:3364,sizes:`calc(${componentViewport?.width||\"100vw\"} + 600px)`,src:\"https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png\",srcSet:\"https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png 3364w\"}},ZdQTHUM2w:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+114+0+0+0+-300),pixelHeight:3300,pixelWidth:3364,sizes:`calc(${componentViewport?.width||\"100vw\"} + 600px)`,src:\"https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png\",srcSet:\"https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png 3364w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+114+0+0+0+-300),pixelHeight:3300,pixelWidth:3364,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 600px)`,src:\"https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png\",srcSet:\"https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZvmK26NV9dFFMvxovTMfaKdqtP8.png 3364w\"},className:\"framer-rnlvva\",\"data-framer-name\":\"Background\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k1jti\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uyr5qw\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QVKnYm3rp\"},motionChild:true,nodeId:\"TnYfuRKmE\",scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1lek15b framer-ge08oy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dtk5ax\",\"data-styles-preset\":\"T3ov2VROv\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"arrow-left\"})}),className:\"framer-k4hrpd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rt5e0g\",\"data-styles-preset\":\"uajwtGpbO\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"All Resources\"})}),className:\"framer-1ds7vi8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a9a8dg hidden-1mnuri7 hidden-ndb9dk hidden-fntpzz\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vjwq4n\",\"data-framer-name\":\"Time\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rt5e0g\",\"data-styles-preset\":\"uajwtGpbO\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"Published on\"})}),className:\"framer-1f2xv8b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rt5e0g\",\"data-styles-preset\":\"uajwtGpbO\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"Content\"})}),className:\"framer-2o9r3x\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f4i6u7\",\"data-framer-name\":\"Time\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rt5e0g\",\"data-styles-preset\":\"uajwtGpbO\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"in\"})}),className:\"framer-kd9nnb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5i7cm1\",\"data-styles-preset\":\"TLI0WQ9JE\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"Blog\"})}),className:\"framer-1gcx62a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tr2ihq hidden-1m8pzha\",\"data-framer-name\":\"Time Read\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rt5e0g\",\"data-styles-preset\":\"uajwtGpbO\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"\u2022\"})}),className:\"framer-5dmg6l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rt5e0g\",\"data-styles-preset\":\"uajwtGpbO\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"undefined\"})}),className:\"framer-1h364r3\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rt5e0g\",\"data-styles-preset\":\"uajwtGpbO\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"min read\"})}),className:\"framer-1ftcgsa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h7swnu\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rt5e0g\",\"data-styles-preset\":\"uajwtGpbO\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"Ashley\"})}),className:\"framer-1tfdy2p\",fonts:[\"Inter\"],text:Kk08S0Sw2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rt5e0g\",\"data-styles-preset\":\"uajwtGpbO\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"Yvonne\"})}),className:\"framer-e8k7sy\",fonts:[\"Inter\"],text:RFnuke_I5,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-12qqejz\",\"data-styles-preset\":\"QuGK9i1mK\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"The Need for Speed: Modern SIEM with Real-Time Detection & Automation with John Doe and Jane Doe\"})}),className:\"framer-egtpzy\",fonts:[\"Inter\"],text:A2fPVhN9y,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yvapqg\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-18nzbh2 hidden-1m8pzha\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ne83wv\",\"data-framer-name\":\"Left\",children:[visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iz2sb7\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rt5e0g\",\"data-styles-preset\":\"uajwtGpbO\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"Ashley\"})}),className:\"framer-fmv8mk\",fonts:[\"Inter\"],text:Kk08S0Sw2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rt5e0g\",\"data-styles-preset\":\"uajwtGpbO\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"Yvonne\"})}),className:\"framer-1lbcz69\",fonts:[\"Inter\"],text:RFnuke_I5,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-51k7yg\",\"data-framer-name\":\"Time\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rt5e0g\",\"data-styles-preset\":\"uajwtGpbO\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"Published on\"})}),className:\"framer-1fbs132\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rt5e0g\",\"data-styles-preset\":\"uajwtGpbO\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"Feb 11, 2025\"})}),className:\"framer-r3q721\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vlrkem\",\"data-framer-name\":\"Time\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rt5e0g\",\"data-styles-preset\":\"uajwtGpbO\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"in\"})}),className:\"framer-kvjezl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5i7cm1\",\"data-styles-preset\":\"TLI0WQ9JE\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"Blog\"})}),className:\"framer-175nm1b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zmvmu9\",\"data-framer-name\":\"Social\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vq9vkf\",\"data-styles-preset\":\"j2iOLwkpH\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fpanther.com%2Fblog%2Fdetecting-sunburst-malware-with-panther%2F&linkname=Detecting%20Sunburst%20Malware%20with%20Panther%20%7C%20Panther&linknote=\",motionChild:true,nodeId:\"ekFFnxjEo\",openInNewTab:true,scopeId:\"xPxo7tAz9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1hop1d9\",\"data-styles-preset\":\"ZCtE1CR9z\",children:\"linkedin\"})})})}),className:\"framer-lj2rur\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vq9vkf\",\"data-styles-preset\":\"j2iOLwkpH\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fpanther.com%2Fblog%2Fdetecting-sunburst-malware-with-panther%2F&linkname=Detecting%20Sunburst%20Malware%20with%20Panther%20%7C%20Panther&linknote=\",motionChild:true,nodeId:\"Qp7xPkMQB\",openInNewTab:true,scopeId:\"xPxo7tAz9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1hop1d9\",\"data-styles-preset\":\"ZCtE1CR9z\",children:\"x-twitter\"})})})}),className:\"framer-1t3t99a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vq9vkf\",\"data-styles-preset\":\"j2iOLwkpH\",style:{\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fpanther.com%2Fblog%2Fdetecting-sunburst-malware-with-panther%2F&linkname=Detecting%20Sunburst%20Malware%20with%20Panther%20%7C%20Panther&linknote=\",motionChild:true,nodeId:\"AXI_J2gS2\",openInNewTab:true,scopeId:\"xPxo7tAz9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1hop1d9\",\"data-styles-preset\":\"ZCtE1CR9z\",children:\"facebook\"})})})}),className:\"framer-bqndzq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bvg8bv\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t45wlm\",children:[/*#__PURE__*/_jsxs(MotionDivWithFullWidthFramerImage1hhsejh,{className:\"framer-1hhsejh\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"ofvyE1vaC\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"wD9g8qYiN\"]},children:/*#__PURE__*/_jsx(RichTextWithClass1s9m755,{__fromCanvasComponent:true,children:ETMzQosHT,className:\"framer-1s9m755\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-10mngol\",blockquote:\"framer-styles-preset-1nnd6ct\",code:\"framer-styles-preset-o27dgd\",h1:\"framer-styles-preset-12qqejz\",h2:\"framer-styles-preset-kqkqoa\",h3:\"framer-styles-preset-uroo4c\",h4:\"framer-styles-preset-1lqihz7\",h5:\"framer-styles-preset-5yppft\",h6:\"framer-styles-preset-7gmeaf\",img:\"framer-styles-preset-vw521t\",p:\"framer-styles-preset-aym67i\",table:\"framer-styles-preset-7dk9ti\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-6kw0he hidden-fntpzz hidden-1m8pzha\",\"data-framer-name\":\"Navigation\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b16ivw-container\",isAuthoredByUser:true,nodeId:\"NWsp9nZop\",rendersWithMotion:true,scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(TableOfContents,{enabledColor:\"var(--token-f8c4c09b-cc86-4296-aa7b-cce9a8cb8b0d, rgb(21, 22, 25))\",fontName:\"GT Planar Light\",fontSize:\"16px\",height:\"100%\",highlightColor:\"var(--token-8f876d08-f2cd-43eb-9f5c-4776423f125b, rgb(0, 6, 189))\",hoverColor:\"var(--token-8f876d08-f2cd-43eb-9f5c-4776423f125b, rgb(0, 6, 189))\",id:\"NWsp9nZop\",layoutId:\"NWsp9nZop\",lineHeight:\"24px\",listMarginLeft:16,margins:\"8px 0px\",scrollOffset:160,style:{width:\"100%\"},textDecoration:\"None\",width:\"100%\"})})})})]}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1svi09t-container\",isAuthoredByUser:true,nodeId:\"dGKQUZxoS\",scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(StorylaneEmbedZscaler,{height:\"100%\",id:\"dGKQUZxoS\",layoutId:\"dGKQUZxoS\",style:{width:\"100%\"},width:\"100%\"})})}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mhb6nj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gxIgDiOrE\",scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(StorylaneEmbedsnowflake,{height:\"100%\",id:\"gxIgDiOrE\",layoutId:\"gxIgDiOrE\",style:{width:\"100%\"},width:\"100%\"})})}),visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jn1w0m-container\",isAuthoredByUser:true,nodeId:\"Q9EaFfAst\",scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(StorylaneEmbed,{height:\"100%\",id:\"Q9EaFfAst\",layoutId:\"Q9EaFfAst\",style:{width:\"100%\"},width:\"100%\"})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v7bdoy hidden-1m8pzha\",\"data-framer-name\":\"Desktop Detection As Code\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dh509g\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1snonxb\",\"data-styles-preset\":\"cVrIBDuLp\",style:{\"--framer-text-alignment\":\"center\"},children:\"Recommended Resources\"})}),className:\"framer-qphgz0\",\"data-framer-name\":\"Turn Up the Volume,\\u2028Turn Down the Noise\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4k30s9\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gxy2jb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Z9z3M2qwv\",scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:16,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/DbFuv4ewEUH13mF6HKMCuA9dbw.png\",rightArrow:\"https://framerusercontent.com/images/ryFebcrq5KGUsVC1dRbrb28GBTw.png\",showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:24,height:\"100%\",id:\"Z9z3M2qwv\",intervalControl:3,itemAmount:1,layoutId:\"Z9z3M2qwv\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dq9x8h\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"HEfYHvmsE\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"HEfYHvmsE\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"HEfYHvmsE\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"HEfYHvmsE\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"HEfYHvmsE\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"HEfYHvmsE\",name:\"id\",type:\"Identifier\"},{alias:\"ZGTGkcsdq\",arguments:[{from:{alias:\"ZGTGkcsdq\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"HEfYHvmsE\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"ZGTGkcsdq\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"ZGTGkcsdq\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"ZGTGkcsdq\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"ZGTGkcsdq\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"ZGTGkcsdq\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"ZGTGkcsdq\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"HEfYHvmsE\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"HEfYHvmsE\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxeh},type:\"BinaryOperation\"}}},children:(collection1,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({A2fPVhN9y:A2fPVhN9yHEfYHvmsE,hRHUXUylp:hRHUXUylpHEfYHvmsE,id:idHEfYHvmsE,v0qVdBxeh:v0qVdBxehHEfYHvmsE,ZGTGkcsdq:collection},index1)=>{v0qVdBxehHEfYHvmsE??=\"\";A2fPVhN9yHEfYHvmsE??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`HEfYHvmsE-${idHEfYHvmsE}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehHEfYHvmsE},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jm2kgy\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-boq1ep\",children:collection?.map(({id:idZGTGkcsdq,p9YpBgqsf:p9YpBgqsfZGTGkcsdq,ShqM3lrS3:ShqM3lrS3ZGTGkcsdq,tbtNVVXli:tbtNVVXliZGTGkcsdq},index)=>{p9YpBgqsfZGTGkcsdq??=\"\";tbtNVVXliZGTGkcsdq??=\"\";ShqM3lrS3ZGTGkcsdq??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZGTGkcsdq-${idZGTGkcsdq}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfZGTGkcsdq},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wwpqrg\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{v0qVdBxeh:v0qVdBxehHEfYHvmsE},webPageId:\"xPxo7tAz9\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"565px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rvut39-container\",inComponentSlot:true,nodeId:\"znz5EexmE\",rendersWithMotion:true,scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpHEfYHvmsE),GufhpoTXH:true,height:\"100%\",id:\"znz5EexmE\",JixAg97nj:tbtNVVXliZGTGkcsdq,layoutId:\"znz5EexmE\",mJJjIUfG5:resolvedLinks[0],owyJ8Ptas:A2fPVhN9yHEfYHvmsE,style:{height:\"100%\",width:\"100%\"},variant:\"e4vL9mueg\",width:\"100%\",YoH4tvKtU:ShqM3lrS3ZGTGkcsdq})})})})})})},idZGTGkcsdq);})})})})},idHEfYHvmsE);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11g1cvz\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"tEEGX65eR\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"tEEGX65eR\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"tEEGX65eR\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"tEEGX65eR\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"tEEGX65eR\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"tEEGX65eR\",name:\"id\",type:\"Identifier\"},{alias:\"j4gg6R2Ye\",arguments:[{from:{alias:\"j4gg6R2Ye\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"tEEGX65eR\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"j4gg6R2Ye\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"j4gg6R2Ye\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"j4gg6R2Ye\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"j4gg6R2Ye\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"j4gg6R2Ye\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"j4gg6R2Ye\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"tEEGX65eR\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"tEEGX65eR\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxeh},type:\"BinaryOperation\"}}},children:(collection3,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({A2fPVhN9y:A2fPVhN9ytEEGX65eR,hRHUXUylp:hRHUXUylptEEGX65eR,id:idtEEGX65eR,j4gg6R2Ye:collection2,v0qVdBxeh:v0qVdBxehtEEGX65eR},index3)=>{v0qVdBxehtEEGX65eR??=\"\";A2fPVhN9ytEEGX65eR??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`tEEGX65eR-${idtEEGX65eR}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehtEEGX65eR},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tngtr7\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ptul34\",children:collection2?.map(({id:idj4gg6R2Ye,p9YpBgqsf:p9YpBgqsfj4gg6R2Ye,ShqM3lrS3:ShqM3lrS3j4gg6R2Ye,tbtNVVXli:tbtNVVXlij4gg6R2Ye},index2)=>{p9YpBgqsfj4gg6R2Ye??=\"\";tbtNVVXlij4gg6R2Ye??=\"\";ShqM3lrS3j4gg6R2Ye??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`j4gg6R2Ye-${idj4gg6R2Ye}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfj4gg6R2Ye},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t4z050\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{v0qVdBxeh:v0qVdBxehtEEGX65eR},webPageId:\"xPxo7tAz9\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"565px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g0gu3k-container\",inComponentSlot:true,nodeId:\"npPJvMVcU\",rendersWithMotion:true,scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylptEEGX65eR),GufhpoTXH:true,height:\"100%\",id:\"npPJvMVcU\",JixAg97nj:tbtNVVXlij4gg6R2Ye,layoutId:\"npPJvMVcU\",mJJjIUfG5:resolvedLinks1[0],owyJ8Ptas:A2fPVhN9ytEEGX65eR,style:{height:\"100%\",width:\"100%\"},variant:\"e4vL9mueg\",width:\"100%\",YoH4tvKtU:ShqM3lrS3j4gg6R2Ye})})})})})})},idj4gg6R2Ye);})})})})},idtEEGX65eR);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mr4u9k\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QJTom1XtQ\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"QJTom1XtQ\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"QJTom1XtQ\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"QJTom1XtQ\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"QJTom1XtQ\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"QJTom1XtQ\",name:\"id\",type:\"Identifier\"},{alias:\"Yl3sVEekD\",arguments:[{from:{alias:\"Yl3sVEekD\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"QJTom1XtQ\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"Yl3sVEekD\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"Yl3sVEekD\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"Yl3sVEekD\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"Yl3sVEekD\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"Yl3sVEekD\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"Yl3sVEekD\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"QJTom1XtQ\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"QJTom1XtQ\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxeh},type:\"BinaryOperation\"}}},children:(collection5,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({A2fPVhN9y:A2fPVhN9yQJTom1XtQ,hRHUXUylp:hRHUXUylpQJTom1XtQ,id:idQJTom1XtQ,v0qVdBxeh:v0qVdBxehQJTom1XtQ,Yl3sVEekD:collection4},index5)=>{v0qVdBxehQJTom1XtQ??=\"\";A2fPVhN9yQJTom1XtQ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`QJTom1XtQ-${idQJTom1XtQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehQJTom1XtQ},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qwwwsd\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-70ywaw\",children:collection4?.map(({id:idYl3sVEekD,p9YpBgqsf:p9YpBgqsfYl3sVEekD,ShqM3lrS3:ShqM3lrS3Yl3sVEekD,tbtNVVXli:tbtNVVXliYl3sVEekD},index4)=>{p9YpBgqsfYl3sVEekD??=\"\";tbtNVVXliYl3sVEekD??=\"\";ShqM3lrS3Yl3sVEekD??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Yl3sVEekD-${idYl3sVEekD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfYl3sVEekD},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xrqerr\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{v0qVdBxeh:v0qVdBxehQJTom1XtQ},webPageId:\"xPxo7tAz9\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"565px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5ijjwt-container\",inComponentSlot:true,nodeId:\"nQChtWBAT\",rendersWithMotion:true,scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpQJTom1XtQ),GufhpoTXH:true,height:\"100%\",id:\"nQChtWBAT\",JixAg97nj:tbtNVVXliYl3sVEekD,layoutId:\"nQChtWBAT\",mJJjIUfG5:resolvedLinks2[0],owyJ8Ptas:A2fPVhN9yQJTom1XtQ,style:{height:\"100%\",width:\"100%\"},variant:\"e4vL9mueg\",width:\"100%\",YoH4tvKtU:ShqM3lrS3Yl3sVEekD})})})})})})},idYl3sVEekD);})})})})},idQJTom1XtQ);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lvxyb7\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"iYsC9mY3W\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},orderBy:[{collection:\"iYsC9mY3W\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"iYsC9mY3W\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"iYsC9mY3W\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"iYsC9mY3W\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"iYsC9mY3W\",name:\"id\",type:\"Identifier\"},{alias:\"HiRJRQfUy\",arguments:[{from:{alias:\"HiRJRQfUy\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"iYsC9mY3W\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"HiRJRQfUy\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"HiRJRQfUy\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"HiRJRQfUy\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"HiRJRQfUy\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"HiRJRQfUy\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"HiRJRQfUy\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"iYsC9mY3W\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"iYsC9mY3W\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxeh},type:\"BinaryOperation\"}}},children:(collection7,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({A2fPVhN9y:A2fPVhN9yiYsC9mY3W,HiRJRQfUy:collection6,hRHUXUylp:hRHUXUylpiYsC9mY3W,id:idiYsC9mY3W,v0qVdBxeh:v0qVdBxehiYsC9mY3W},index7)=>{v0qVdBxehiYsC9mY3W??=\"\";A2fPVhN9yiYsC9mY3W??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`iYsC9mY3W-${idiYsC9mY3W}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehiYsC9mY3W},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gwib6d\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dehn43\",children:collection6?.map(({id:idHiRJRQfUy,p9YpBgqsf:p9YpBgqsfHiRJRQfUy,ShqM3lrS3:ShqM3lrS3HiRJRQfUy,tbtNVVXli:tbtNVVXliHiRJRQfUy},index6)=>{p9YpBgqsfHiRJRQfUy??=\"\";tbtNVVXliHiRJRQfUy??=\"\";ShqM3lrS3HiRJRQfUy??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`HiRJRQfUy-${idHiRJRQfUy}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfHiRJRQfUy},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x4039x\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{v0qVdBxeh:v0qVdBxehiYsC9mY3W},webPageId:\"xPxo7tAz9\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"565px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e76mms-container\",inComponentSlot:true,nodeId:\"ASv98uiNI\",rendersWithMotion:true,scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpiYsC9mY3W),GufhpoTXH:true,height:\"100%\",id:\"ASv98uiNI\",JixAg97nj:tbtNVVXliHiRJRQfUy,layoutId:\"ASv98uiNI\",mJJjIUfG5:resolvedLinks3[0],owyJ8Ptas:A2fPVhN9yiYsC9mY3W,style:{height:\"100%\",width:\"100%\"},variant:\"e4vL9mueg\",width:\"100%\",YoH4tvKtU:ShqM3lrS3HiRJRQfUy})})})})})})},idHiRJRQfUy);})})})})},idiYsC9mY3W);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nrm6zx\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Oz8ehSD5w\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},orderBy:[{collection:\"Oz8ehSD5w\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"Oz8ehSD5w\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"Oz8ehSD5w\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"Oz8ehSD5w\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"Oz8ehSD5w\",name:\"id\",type:\"Identifier\"},{alias:\"ZoywwksBr\",arguments:[{from:{alias:\"ZoywwksBr\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"Oz8ehSD5w\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"ZoywwksBr\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"ZoywwksBr\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"ZoywwksBr\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"ZoywwksBr\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"ZoywwksBr\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"ZoywwksBr\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"Oz8ehSD5w\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"Oz8ehSD5w\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxeh},type:\"BinaryOperation\"}}},children:(collection9,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9?.map(({A2fPVhN9y:A2fPVhN9yOz8ehSD5w,hRHUXUylp:hRHUXUylpOz8ehSD5w,id:idOz8ehSD5w,v0qVdBxeh:v0qVdBxehOz8ehSD5w,ZoywwksBr:collection8},index9)=>{v0qVdBxehOz8ehSD5w??=\"\";A2fPVhN9yOz8ehSD5w??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Oz8ehSD5w-${idOz8ehSD5w}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehOz8ehSD5w},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fpsi8m\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9lcxn0\",children:collection8?.map(({id:idZoywwksBr,p9YpBgqsf:p9YpBgqsfZoywwksBr,ShqM3lrS3:ShqM3lrS3ZoywwksBr,tbtNVVXli:tbtNVVXliZoywwksBr},index8)=>{p9YpBgqsfZoywwksBr??=\"\";tbtNVVXliZoywwksBr??=\"\";ShqM3lrS3ZoywwksBr??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZoywwksBr-${idZoywwksBr}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfZoywwksBr},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ed5ciw\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{v0qVdBxeh:v0qVdBxehOz8ehSD5w},webPageId:\"xPxo7tAz9\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"565px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10up0v8-container\",inComponentSlot:true,nodeId:\"tp8DI6t2T\",rendersWithMotion:true,scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpOz8ehSD5w),GufhpoTXH:true,height:\"100%\",id:\"tp8DI6t2T\",JixAg97nj:tbtNVVXliZoywwksBr,layoutId:\"tp8DI6t2T\",mJJjIUfG5:resolvedLinks4[0],owyJ8Ptas:A2fPVhN9yOz8ehSD5w,style:{height:\"100%\",width:\"100%\"},variant:\"e4vL9mueg\",width:\"100%\",YoH4tvKtU:ShqM3lrS3ZoywwksBr})})})})})})},idZoywwksBr);})})})})},idOz8ehSD5w);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2ty4qw\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"EZMNpoLus\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:6},orderBy:[{collection:\"EZMNpoLus\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"EZMNpoLus\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"EZMNpoLus\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"EZMNpoLus\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"EZMNpoLus\",name:\"id\",type:\"Identifier\"},{alias:\"whneGC2cl\",arguments:[{from:{alias:\"whneGC2cl\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"EZMNpoLus\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"whneGC2cl\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"whneGC2cl\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"whneGC2cl\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"whneGC2cl\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"whneGC2cl\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"whneGC2cl\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"EZMNpoLus\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"EZMNpoLus\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxeh},type:\"BinaryOperation\"}}},children:(collection11,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection11?.map(({A2fPVhN9y:A2fPVhN9yEZMNpoLus,hRHUXUylp:hRHUXUylpEZMNpoLus,id:idEZMNpoLus,v0qVdBxeh:v0qVdBxehEZMNpoLus,whneGC2cl:collection10},index11)=>{v0qVdBxehEZMNpoLus??=\"\";A2fPVhN9yEZMNpoLus??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`EZMNpoLus-${idEZMNpoLus}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehEZMNpoLus},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-305dng\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j7y950\",children:collection10?.map(({id:idwhneGC2cl,p9YpBgqsf:p9YpBgqsfwhneGC2cl,ShqM3lrS3:ShqM3lrS3whneGC2cl,tbtNVVXli:tbtNVVXliwhneGC2cl},index10)=>{p9YpBgqsfwhneGC2cl??=\"\";tbtNVVXliwhneGC2cl??=\"\";ShqM3lrS3whneGC2cl??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`whneGC2cl-${idwhneGC2cl}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfwhneGC2cl},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zvsdwc\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{v0qVdBxeh:v0qVdBxehEZMNpoLus},webPageId:\"xPxo7tAz9\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"565px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-znkc8l-container\",inComponentSlot:true,nodeId:\"jRSfmLgFt\",rendersWithMotion:true,scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpEZMNpoLus),GufhpoTXH:true,height:\"100%\",id:\"jRSfmLgFt\",JixAg97nj:tbtNVVXliwhneGC2cl,layoutId:\"jRSfmLgFt\",mJJjIUfG5:resolvedLinks5[0],owyJ8Ptas:A2fPVhN9yEZMNpoLus,style:{height:\"100%\",width:\"100%\"},variant:\"e4vL9mueg\",width:\"100%\",YoH4tvKtU:ShqM3lrS3whneGC2cl})})})})})})},idwhneGC2cl);})})})})},idEZMNpoLus);})})})})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ybmii hidden-1mnuri7 hidden-ndb9dk hidden-fntpzz\",\"data-framer-name\":\"Mobile Detection as Code\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cqkunb\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qnya9m\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1snonxb\",\"data-styles-preset\":\"cVrIBDuLp\",style:{\"--framer-text-alignment\":\"center\"},children:\"Detection-as-Code\"})}),className:\"framer-zqjy0p\",\"data-framer-name\":\"Turn Up the Volume,\\u2028Turn Down the Noise\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ykeajn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YNYd3K7Dr\",scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:16,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/DbFuv4ewEUH13mF6HKMCuA9dbw.png\",rightArrow:\"https://framerusercontent.com/images/ryFebcrq5KGUsVC1dRbrb28GBTw.png\",showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:16,height:\"100%\",id:\"YNYd3K7Dr\",intervalControl:3,itemAmount:1,layoutId:\"YNYd3K7Dr\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bp1zaq\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"GBul3i7Pf\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"GBul3i7Pf\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"GBul3i7Pf\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"GBul3i7Pf\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"GBul3i7Pf\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"GBul3i7Pf\",name:\"id\",type:\"Identifier\"},{alias:\"n5Hi2zMcl\",arguments:[{from:{alias:\"n5Hi2zMcl\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"GBul3i7Pf\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"n5Hi2zMcl\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"n5Hi2zMcl\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"n5Hi2zMcl\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"n5Hi2zMcl\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"n5Hi2zMcl\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"n5Hi2zMcl\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"GBul3i7Pf\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"GBul3i7Pf\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxeh},type:\"BinaryOperation\"}}},children:(collection13,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection13?.map(({A2fPVhN9y:A2fPVhN9yGBul3i7Pf,hRHUXUylp:hRHUXUylpGBul3i7Pf,id:idGBul3i7Pf,n5Hi2zMcl:collection12,v0qVdBxeh:v0qVdBxehGBul3i7Pf},index13)=>{v0qVdBxehGBul3i7Pf??=\"\";A2fPVhN9yGBul3i7Pf??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`GBul3i7Pf-${idGBul3i7Pf}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehGBul3i7Pf},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5cf5jn\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4dw82k\",children:collection12?.map(({id:idn5Hi2zMcl,p9YpBgqsf:p9YpBgqsfn5Hi2zMcl,ShqM3lrS3:ShqM3lrS3n5Hi2zMcl,tbtNVVXli:tbtNVVXlin5Hi2zMcl},index12)=>{p9YpBgqsfn5Hi2zMcl??=\"\";tbtNVVXlin5Hi2zMcl??=\"\";ShqM3lrS3n5Hi2zMcl??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`n5Hi2zMcl-${idn5Hi2zMcl}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfn5Hi2zMcl},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18lypha\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{v0qVdBxeh:v0qVdBxehGBul3i7Pf},webPageId:\"xPxo7tAz9\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:314,width:\"332px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-jduoki-container\",\"data-framer-name\":\"Mobile Card\",inComponentSlot:true,name:\"Mobile Card\",nodeId:\"hcMwr2EMt\",rendersWithMotion:true,scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpGBul3i7Pf),GufhpoTXH:true,height:\"100%\",id:\"hcMwr2EMt\",JixAg97nj:tbtNVVXlin5Hi2zMcl,layoutId:\"hcMwr2EMt\",mJJjIUfG5:resolvedLinks6[0],name:\"Mobile Card\",owyJ8Ptas:A2fPVhN9yGBul3i7Pf,style:{height:\"100%\",width:\"100%\"},variant:\"sthrKP2OC\",width:\"100%\",YoH4tvKtU:ShqM3lrS3n5Hi2zMcl})})})})})})},idn5Hi2zMcl);})})})})},idGBul3i7Pf);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a105ah\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"NKQCiiG_e\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"NKQCiiG_e\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"NKQCiiG_e\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"NKQCiiG_e\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"NKQCiiG_e\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"NKQCiiG_e\",name:\"id\",type:\"Identifier\"},{alias:\"tk44skDQ_\",arguments:[{from:{alias:\"tk44skDQ_\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"NKQCiiG_e\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"tk44skDQ_\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"tk44skDQ_\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"tk44skDQ_\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"tk44skDQ_\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"tk44skDQ_\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"tk44skDQ_\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"NKQCiiG_e\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"NKQCiiG_e\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxeh},type:\"BinaryOperation\"}}},children:(collection15,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection15?.map(({A2fPVhN9y:A2fPVhN9yNKQCiiG_e,hRHUXUylp:hRHUXUylpNKQCiiG_e,id:idNKQCiiG_e,tk44skDQ_:collection14,v0qVdBxeh:v0qVdBxehNKQCiiG_e},index15)=>{v0qVdBxehNKQCiiG_e??=\"\";A2fPVhN9yNKQCiiG_e??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`NKQCiiG_e-${idNKQCiiG_e}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehNKQCiiG_e},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-172mxa8\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fsj0zv\",children:collection14?.map(({id:idtk44skDQ_,p9YpBgqsf:p9YpBgqsftk44skDQ_,ShqM3lrS3:ShqM3lrS3tk44skDQ_,tbtNVVXli:tbtNVVXlitk44skDQ_},index14)=>{p9YpBgqsftk44skDQ_??=\"\";tbtNVVXlitk44skDQ_??=\"\";ShqM3lrS3tk44skDQ_??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`tk44skDQ_-${idtk44skDQ_}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsftk44skDQ_},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-31xexy\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{v0qVdBxeh:v0qVdBxehNKQCiiG_e},webPageId:\"xPxo7tAz9\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:314,width:\"332px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1so0drn-container\",\"data-framer-name\":\"Mobile Card\",inComponentSlot:true,name:\"Mobile Card\",nodeId:\"B9R2mXExo\",rendersWithMotion:true,scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpNKQCiiG_e),GufhpoTXH:true,height:\"100%\",id:\"B9R2mXExo\",JixAg97nj:tbtNVVXlitk44skDQ_,layoutId:\"B9R2mXExo\",mJJjIUfG5:resolvedLinks7[0],name:\"Mobile Card\",owyJ8Ptas:A2fPVhN9yNKQCiiG_e,style:{height:\"100%\",width:\"100%\"},variant:\"sthrKP2OC\",width:\"100%\",YoH4tvKtU:ShqM3lrS3tk44skDQ_})})})})})})},idtk44skDQ_);})})})})},idNKQCiiG_e);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mauzyv\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"gnNlzbWXV\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"gnNlzbWXV\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"gnNlzbWXV\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"gnNlzbWXV\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"gnNlzbWXV\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"gnNlzbWXV\",name:\"id\",type:\"Identifier\"},{alias:\"MCVhEjK4h\",arguments:[{from:{alias:\"MCVhEjK4h\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"gnNlzbWXV\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"MCVhEjK4h\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"MCVhEjK4h\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"MCVhEjK4h\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"MCVhEjK4h\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"MCVhEjK4h\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"MCVhEjK4h\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"gnNlzbWXV\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"gnNlzbWXV\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxeh},type:\"BinaryOperation\"}}},children:(collection17,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection17?.map(({A2fPVhN9y:A2fPVhN9ygnNlzbWXV,hRHUXUylp:hRHUXUylpgnNlzbWXV,id:idgnNlzbWXV,MCVhEjK4h:collection16,v0qVdBxeh:v0qVdBxehgnNlzbWXV},index17)=>{v0qVdBxehgnNlzbWXV??=\"\";A2fPVhN9ygnNlzbWXV??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`gnNlzbWXV-${idgnNlzbWXV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehgnNlzbWXV},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1srfteo\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s53sd0\",children:collection16?.map(({id:idMCVhEjK4h,p9YpBgqsf:p9YpBgqsfMCVhEjK4h,ShqM3lrS3:ShqM3lrS3MCVhEjK4h,tbtNVVXli:tbtNVVXliMCVhEjK4h},index16)=>{p9YpBgqsfMCVhEjK4h??=\"\";tbtNVVXliMCVhEjK4h??=\"\";ShqM3lrS3MCVhEjK4h??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`MCVhEjK4h-${idMCVhEjK4h}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfMCVhEjK4h},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-js300d\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{v0qVdBxeh:v0qVdBxehgnNlzbWXV},webPageId:\"xPxo7tAz9\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:314,width:\"332px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18q56fz-container\",\"data-framer-name\":\"Mobile Card\",inComponentSlot:true,name:\"Mobile Card\",nodeId:\"jTV9DaF0B\",rendersWithMotion:true,scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpgnNlzbWXV),GufhpoTXH:true,height:\"100%\",id:\"jTV9DaF0B\",JixAg97nj:tbtNVVXliMCVhEjK4h,layoutId:\"jTV9DaF0B\",mJJjIUfG5:resolvedLinks8[0],name:\"Mobile Card\",owyJ8Ptas:A2fPVhN9ygnNlzbWXV,style:{height:\"100%\",width:\"100%\"},variant:\"sthrKP2OC\",width:\"100%\",YoH4tvKtU:ShqM3lrS3MCVhEjK4h})})})})})})},idMCVhEjK4h);})})})})},idgnNlzbWXV);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g6mper\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"w1cssU8Bp\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},orderBy:[{collection:\"w1cssU8Bp\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"w1cssU8Bp\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"w1cssU8Bp\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"w1cssU8Bp\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"w1cssU8Bp\",name:\"id\",type:\"Identifier\"},{alias:\"U7f9SnTGO\",arguments:[{from:{alias:\"U7f9SnTGO\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"w1cssU8Bp\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"U7f9SnTGO\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"U7f9SnTGO\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"U7f9SnTGO\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"U7f9SnTGO\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"U7f9SnTGO\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"U7f9SnTGO\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"w1cssU8Bp\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"w1cssU8Bp\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxeh},type:\"BinaryOperation\"}}},children:(collection19,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection19?.map(({A2fPVhN9y:A2fPVhN9yw1cssU8Bp,hRHUXUylp:hRHUXUylpw1cssU8Bp,id:idw1cssU8Bp,U7f9SnTGO:collection18,v0qVdBxeh:v0qVdBxehw1cssU8Bp},index19)=>{v0qVdBxehw1cssU8Bp??=\"\";A2fPVhN9yw1cssU8Bp??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`w1cssU8Bp-${idw1cssU8Bp}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehw1cssU8Bp},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h8bgi4\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gw6gqp\",children:collection18?.map(({id:idU7f9SnTGO,p9YpBgqsf:p9YpBgqsfU7f9SnTGO,ShqM3lrS3:ShqM3lrS3U7f9SnTGO,tbtNVVXli:tbtNVVXliU7f9SnTGO},index18)=>{p9YpBgqsfU7f9SnTGO??=\"\";tbtNVVXliU7f9SnTGO??=\"\";ShqM3lrS3U7f9SnTGO??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`U7f9SnTGO-${idU7f9SnTGO}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfU7f9SnTGO},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1octkt6\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{v0qVdBxeh:v0qVdBxehw1cssU8Bp},webPageId:\"xPxo7tAz9\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:314,width:\"332px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ni8tzq-container\",\"data-framer-name\":\"Mobile Card\",inComponentSlot:true,name:\"Mobile Card\",nodeId:\"sJZdwGkuB\",rendersWithMotion:true,scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpw1cssU8Bp),GufhpoTXH:true,height:\"100%\",id:\"sJZdwGkuB\",JixAg97nj:tbtNVVXliU7f9SnTGO,layoutId:\"sJZdwGkuB\",mJJjIUfG5:resolvedLinks9[0],name:\"Mobile Card\",owyJ8Ptas:A2fPVhN9yw1cssU8Bp,style:{height:\"100%\",width:\"100%\"},variant:\"sthrKP2OC\",width:\"100%\",YoH4tvKtU:ShqM3lrS3U7f9SnTGO})})})})})})},idU7f9SnTGO);})})})})},idw1cssU8Bp);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ugqgu\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"RyDyguu4n\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},orderBy:[{collection:\"RyDyguu4n\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"RyDyguu4n\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"RyDyguu4n\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"RyDyguu4n\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"RyDyguu4n\",name:\"id\",type:\"Identifier\"},{alias:\"MMas6WcUO\",arguments:[{from:{alias:\"MMas6WcUO\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"RyDyguu4n\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"MMas6WcUO\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"MMas6WcUO\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"MMas6WcUO\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"MMas6WcUO\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"MMas6WcUO\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"MMas6WcUO\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"RyDyguu4n\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"RyDyguu4n\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxeh},type:\"BinaryOperation\"}}},children:(collection21,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection21?.map(({A2fPVhN9y:A2fPVhN9yRyDyguu4n,hRHUXUylp:hRHUXUylpRyDyguu4n,id:idRyDyguu4n,MMas6WcUO:collection20,v0qVdBxeh:v0qVdBxehRyDyguu4n},index21)=>{v0qVdBxehRyDyguu4n??=\"\";A2fPVhN9yRyDyguu4n??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`RyDyguu4n-${idRyDyguu4n}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehRyDyguu4n},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4f9ozd\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yfslnz\",children:collection20?.map(({id:idMMas6WcUO,p9YpBgqsf:p9YpBgqsfMMas6WcUO,ShqM3lrS3:ShqM3lrS3MMas6WcUO,tbtNVVXli:tbtNVVXliMMas6WcUO},index20)=>{p9YpBgqsfMMas6WcUO??=\"\";tbtNVVXliMMas6WcUO??=\"\";ShqM3lrS3MMas6WcUO??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`MMas6WcUO-${idMMas6WcUO}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfMMas6WcUO},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ncusz0\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{v0qVdBxeh:v0qVdBxehRyDyguu4n},webPageId:\"xPxo7tAz9\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:314,width:\"332px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9xady5-container\",\"data-framer-name\":\"Mobile Card\",inComponentSlot:true,name:\"Mobile Card\",nodeId:\"BhKOkLh7V\",rendersWithMotion:true,scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpRyDyguu4n),GufhpoTXH:true,height:\"100%\",id:\"BhKOkLh7V\",JixAg97nj:tbtNVVXliMMas6WcUO,layoutId:\"BhKOkLh7V\",mJJjIUfG5:resolvedLinks10[0],name:\"Mobile Card\",owyJ8Ptas:A2fPVhN9yRyDyguu4n,style:{height:\"100%\",width:\"100%\"},variant:\"sthrKP2OC\",width:\"100%\",YoH4tvKtU:ShqM3lrS3MMas6WcUO})})})})})})},idMMas6WcUO);})})})})},idRyDyguu4n);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-64j60x\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"kFJO9Nxox\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:6},orderBy:[{collection:\"kFJO9Nxox\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"kFJO9Nxox\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"kFJO9Nxox\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"kFJO9Nxox\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"kFJO9Nxox\",name:\"id\",type:\"Identifier\"},{alias:\"ALYqUEnKV\",arguments:[{from:{alias:\"ALYqUEnKV\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"kFJO9Nxox\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"ALYqUEnKV\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"ALYqUEnKV\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"ALYqUEnKV\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"ALYqUEnKV\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"ALYqUEnKV\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"ALYqUEnKV\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"kFJO9Nxox\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"kFJO9Nxox\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxeh},type:\"BinaryOperation\"}}},children:(collection23,paginationInfo11,loadMore11)=>/*#__PURE__*/_jsx(_Fragment,{children:collection23?.map(({A2fPVhN9y:A2fPVhN9ykFJO9Nxox,ALYqUEnKV:collection22,hRHUXUylp:hRHUXUylpkFJO9Nxox,id:idkFJO9Nxox,v0qVdBxeh:v0qVdBxehkFJO9Nxox},index23)=>{v0qVdBxehkFJO9Nxox??=\"\";A2fPVhN9ykFJO9Nxox??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`kFJO9Nxox-${idkFJO9Nxox}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehkFJO9Nxox},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z2ds55\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15aa4xg\",children:collection22?.map(({id:idALYqUEnKV,p9YpBgqsf:p9YpBgqsfALYqUEnKV,ShqM3lrS3:ShqM3lrS3ALYqUEnKV,tbtNVVXli:tbtNVVXliALYqUEnKV},index22)=>{p9YpBgqsfALYqUEnKV??=\"\";tbtNVVXliALYqUEnKV??=\"\";ShqM3lrS3ALYqUEnKV??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ALYqUEnKV-${idALYqUEnKV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfALYqUEnKV},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4n6bru\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{v0qVdBxeh:v0qVdBxehkFJO9Nxox},webPageId:\"xPxo7tAz9\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:314,width:\"332px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6d6mkb-container\",\"data-framer-name\":\"Mobile Card\",inComponentSlot:true,name:\"Mobile Card\",nodeId:\"khz7kvqEq\",rendersWithMotion:true,scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpkFJO9Nxox),GufhpoTXH:true,height:\"100%\",id:\"khz7kvqEq\",JixAg97nj:tbtNVVXliALYqUEnKV,layoutId:\"khz7kvqEq\",mJJjIUfG5:resolvedLinks11[0],name:\"Mobile Card\",owyJ8Ptas:A2fPVhN9ykFJO9Nxox,style:{height:\"100%\",width:\"100%\"},variant:\"sthrKP2OC\",width:\"100%\",YoH4tvKtU:ShqM3lrS3ALYqUEnKV})})})})})})},idALYqUEnKV);})})})})},idkFJO9Nxox);})})})})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-laktwd\",\"data-framer-name\":\"Bottom Section\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wEQycq9gp:{y:(componentViewport?.y||0)+0+114+0+1020.4+0+0},ZdQTHUM2w:{y:(componentViewport?.y||0)+0+114+0+1248.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+114+0+1440.4+0+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-icrst3-container\",id:\"icrst3\",nodeId:\"aMfIm43tc\",scopeId:\"xPxo7tAz9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDuZZctyB:{variant:\"UQb7Jxzcq\"},wEQycq9gp:{variant:\"uOhEtef1y\"},ZdQTHUM2w:{variant:\"iBTfcf5lK\"}},children:/*#__PURE__*/_jsx(LayoutsCTABanner,{height:\"100%\",id:\"aMfIm43tc\",layoutId:\"aMfIm43tc\",rzFX3elyE:rzFX3elyE3bnx0g({overlay:overlay1}),style:{width:\"100%\"},variant:\"HjCZDtF1h\",width:\"100%\",wsClzOErR:\"escape cloud noise. detect security signal\",xZNJbnga9:\"Escape Cloud Noise. Detect Security Signal.\",YUhWcsyzt:\"Request a Demo\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1feja5q\"),\"data-framer-portal-id\":\"icrst3\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"lEoS6k0HI\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-jiqfhm-container\"),\"data-framer-portal-id\":\"icrst3\",inComponentSlot:true,nodeId:\"PP2Mtq9_Y\",rendersWithMotion:true,scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDuZZctyB:{variant:\"LQ511RkOY\"},wEQycq9gp:{variant:\"h5kMWrv2l\"},ZdQTHUM2w:{variant:\"qhzOjsqvj\"}},children:/*#__PURE__*/_jsx(Modal,{height:\"100%\",id:\"PP2Mtq9_Y\",layoutId:\"PP2Mtq9_Y\",M6hfBDwcn:M6hfBDwcn1wnntms({overlay:overlay1}),style:{height:\"100%\",width:\"100%\"},variant:\"UBSKp_MgN\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-1cdm8hs\"),\"data-framer-portal-id\":\"icrst3\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wEQycq9gp:{width:\"322px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"1360px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xlvnn5-container\",inComponentSlot:true,nodeId:\"sFeMhLGtT\",rendersWithMotion:true,scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDuZZctyB:{variant:\"OilJjnHnd\"},wEQycq9gp:{variant:\"PPGwzYO1M\"},ZdQTHUM2w:{variant:\"giUkdhtKV\"}},children:/*#__PURE__*/_jsx(LayoutsTrustedBy,{height:\"100%\",id:\"sFeMhLGtT\",layoutId:\"sFeMhLGtT\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"NO8vNd3bL\",width:\"100%\"})})})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wEQycq9gp:{y:(componentViewport?.y||0)+0+114+0+1020.4+0+800},ZdQTHUM2w:{y:(componentViewport?.y||0)+0+114+0+1248.4+0+800}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:518,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+114+0+1440.4+0+800,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y26cwq-container\",nodeId:\"C5d_vZAoz\",scopeId:\"xPxo7tAz9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wEQycq9gp:{variant:\"Q6a6USpm_\"},ZdQTHUM2w:{variant:\"z180CeSS7\"}},children:/*#__PURE__*/_jsx(LayoutsFooter,{height:\"100%\",id:\"C5d_vZAoz\",layoutId:\"C5d_vZAoz\",style:{width:\"100%\"},variant:\"ryMMOwLMi\",width:\"100%\"})})})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Jw19M.framer-ge08oy, .framer-Jw19M .framer-ge08oy { display: block; }\",\".framer-Jw19M.framer-1mnuri7 { align-content: flex-start; align-items: flex-start; background-color: var(--token-f8c4c09b-cc86-4296-aa7b-cce9a8cb8b0d, #151619); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1920px; }\",\".framer-Jw19M .framer-k9y31v-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-Jw19M.framer-ij0ypp, .framer-Jw19M.framer-1feja5q { background-color: rgba(21, 22, 25, 0.6); inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-Jw19M.framer-hvfo2a-container, .framer-Jw19M.framer-jiqfhm-container { bottom: 0px; flex: none; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-Jw19M .framer-1qvu4zy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 280px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Jw19M .framer-1lnp7io { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Jw19M .framer-hrgflq { background: linear-gradient(180deg, #151619 0%, rgba(21, 22, 25, 0.99) 9.964672476053238%, rgba(21, 22, 25, 0.97) 18.471957743167877%, rgba(21, 22, 25, 0.94) 25.74945092201233%, rgba(21, 22, 25, 0.9) 32.024744153022766%, rgba(21, 22, 25, 0.84) 37.5254362821579%, rgba(21, 22, 25, 0.78) 42.479121685028076%, rgba(21, 22, 25, 0.71) 47.113391757011414%, rgba(21, 22, 25, 0.63) 51.65584087371826%, rgba(21, 22, 25, 0.55) 56.33406639099121%, rgba(21, 22, 25, 0.46) 61.375659704208374%, rgba(21, 22, 25, 0.37) 67.00822114944458%, rgba(21, 22, 25, 0.28) 73.4593391418457%, rgba(21, 22, 25, 0.19) 80.95661401748657%, rgba(21, 22, 25, 0.09) 89.72763419151306%, rgba(21, 22, 25, 0) 100%); flex: none; height: 320px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-Jw19M .framer-4qgfpu { background: linear-gradient(180deg, rgba(21, 22, 25, 0) 0%, var(--token-f8c4c09b-cc86-4296-aa7b-cce9a8cb8b0d, rgb(21, 22, 25)) 100%); bottom: 0px; flex: none; gap: 10px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-Jw19M .framer-jgjeuk { flex: none; height: 150vh; left: 0px; opacity: 0.4; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-Jw19M .framer-rnlvva { bottom: -200px; flex: none; gap: 10px; left: -300px; overflow: hidden; position: absolute; right: -300px; top: -300px; z-index: 0; }\",\".framer-Jw19M .framer-1k1jti { 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: 64px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Jw19M .framer-uyr5qw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1160px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Jw19M .framer-1lek15b { 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; text-decoration: none; width: min-content; }\",\".framer-Jw19M .framer-k4hrpd, .framer-Jw19M .framer-1ds7vi8, .framer-Jw19M .framer-1f2xv8b, .framer-Jw19M .framer-2o9r3x, .framer-Jw19M .framer-kd9nnb, .framer-Jw19M .framer-1gcx62a, .framer-Jw19M .framer-5dmg6l, .framer-Jw19M .framer-1h364r3, .framer-Jw19M .framer-1ftcgsa, .framer-Jw19M .framer-1tfdy2p, .framer-Jw19M .framer-e8k7sy, .framer-Jw19M .framer-fmv8mk, .framer-Jw19M .framer-1lbcz69, .framer-Jw19M .framer-1fbs132, .framer-Jw19M .framer-r3q721, .framer-Jw19M .framer-kvjezl, .framer-Jw19M .framer-175nm1b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Jw19M .framer-1a9a8dg, .framer-Jw19M .framer-ne83wv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Jw19M .framer-vjwq4n, .framer-Jw19M .framer-f4i6u7, .framer-Jw19M .framer-1tr2ihq, .framer-Jw19M .framer-51k7yg, .framer-Jw19M .framer-vlrkem { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Jw19M .framer-1h7swnu, .framer-Jw19M .framer-1iz2sb7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 24px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Jw19M .framer-egtpzy { --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-Jw19M .framer-1yvapqg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jw19M .framer-18nzbh2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Jw19M .framer-zmvmu9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Jw19M .framer-lj2rur, .framer-Jw19M .framer-1t3t99a, .framer-Jw19M .framer-bqndzq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Jw19M .framer-1bvg8bv { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Jw19M .framer-1t45wlm { align-content: center; align-items: center; background-color: var(--token-116ba9a3-376b-43cb-a19a-d934a0df0587, #dfe2e6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1160px; overflow: visible; padding: 32px 56px 32px 56px; position: relative; width: 100%; }\",\".framer-Jw19M .framer-1hhsejh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Jw19M .framer-1s9m755 { --framer-paragraph-spacing: 24px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Jw19M .framer-6kw0he { 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; max-width: 300px; overflow: visible; padding: 0px; position: sticky; top: 160px; width: 300px; z-index: 1; }\",\".framer-Jw19M .framer-1b16ivw-container { flex: none; height: auto; position: sticky; top: 80px; width: 100%; z-index: 1; }\",\".framer-Jw19M .framer-1svi09t-container, .framer-Jw19M .framer-mhb6nj-container, .framer-Jw19M .framer-1jn1w0m-container, .framer-Jw19M .framer-icrst3-container, .framer-Jw19M .framer-1y26cwq-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Jw19M .framer-1v7bdoy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jw19M .framer-dh509g, .framer-Jw19M .framer-1cqkunb { background: linear-gradient(270deg, rgba(21, 22, 25, 0) 0%, rgb(21, 22, 25) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100px; z-index: 1; }\",\".framer-Jw19M .framer-qphgz0, .framer-Jw19M .framer-zqjy0p { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Jw19M .framer-4k30s9, .framer-Jw19M .framer-1qnya9m { background: linear-gradient(90deg, rgba(21, 22, 25, 0) 0%, rgb(21, 22, 25) 100%); bottom: 0px; flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 100px; z-index: 1; }\",\".framer-Jw19M .framer-gxy2jb-container { flex: none; height: 414px; max-width: 565px; position: relative; width: 100%; }\",\".framer-Jw19M .framer-1dq9x8h { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-Jw19M .framer-jm2kgy, .framer-Jw19M .framer-wwpqrg, .framer-Jw19M .framer-1tngtr7, .framer-Jw19M .framer-1t4z050, .framer-Jw19M .framer-1qwwwsd, .framer-Jw19M .framer-xrqerr, .framer-Jw19M .framer-gwib6d, .framer-Jw19M .framer-1x4039x, .framer-Jw19M .framer-1fpsi8m, .framer-Jw19M .framer-1ed5ciw, .framer-Jw19M .framer-305dng, .framer-Jw19M .framer-zvsdwc, .framer-Jw19M .framer-5cf5jn, .framer-Jw19M .framer-18lypha, .framer-Jw19M .framer-172mxa8, .framer-Jw19M .framer-31xexy, .framer-Jw19M .framer-1srfteo, .framer-Jw19M .framer-js300d, .framer-Jw19M .framer-h8bgi4, .framer-Jw19M .framer-1octkt6, .framer-Jw19M .framer-4f9ozd, .framer-Jw19M .framer-ncusz0, .framer-Jw19M .framer-z2ds55, .framer-Jw19M .framer-4n6bru { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-Jw19M .framer-boq1ep, .framer-Jw19M .framer-ptul34, .framer-Jw19M .framer-70ywaw, .framer-Jw19M .framer-dehn43, .framer-Jw19M .framer-9lcxn0, .framer-Jw19M .framer-1j7y950, .framer-Jw19M .framer-4dw82k, .framer-Jw19M .framer-fsj0zv, .framer-Jw19M .framer-s53sd0, .framer-Jw19M .framer-gw6gqp, .framer-Jw19M .framer-1yfslnz, .framer-Jw19M .framer-15aa4xg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-Jw19M .framer-rvut39-container, .framer-Jw19M .framer-1g0gu3k-container, .framer-Jw19M .framer-5ijjwt-container, .framer-Jw19M .framer-1e76mms-container, .framer-Jw19M .framer-10up0v8-container, .framer-Jw19M .framer-znkc8l-container { flex: none; height: 414px; position: relative; width: 565px; }\",\".framer-Jw19M .framer-11g1cvz, .framer-Jw19M .framer-mr4u9k, .framer-Jw19M .framer-1lvxyb7, .framer-Jw19M .framer-nrm6zx, .framer-Jw19M .framer-2ty4qw { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 414px; justify-content: center; padding: 0px; position: relative; width: 565px; }\",\".framer-Jw19M .framer-9ybmii { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Jw19M .framer-ykeajn-container { flex: none; height: 314px; max-width: 332px; position: relative; width: 100%; }\",\".framer-Jw19M .framer-1bp1zaq, .framer-Jw19M .framer-1a105ah, .framer-Jw19M .framer-1mauzyv, .framer-Jw19M .framer-1g6mper, .framer-Jw19M .framer-10ugqgu, .framer-Jw19M .framer-64j60x { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 314px; justify-content: center; padding: 0px; position: relative; width: 332px; }\",\".framer-Jw19M .framer-jduoki-container, .framer-Jw19M .framer-1so0drn-container, .framer-Jw19M .framer-18q56fz-container, .framer-Jw19M .framer-1ni8tzq-container, .framer-Jw19M .framer-9xady5-container, .framer-Jw19M .framer-6d6mkb-container { flex: none; height: 314px; position: relative; width: 332px; }\",\".framer-Jw19M .framer-laktwd { 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-Jw19M.framer-1cdm8hs { align-content: center; align-items: center; bottom: -287px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; transform: translateX(-50%); width: 1920px; z-index: 9; }\",\".framer-Jw19M .framer-1xlvnn5-container { flex: 1 0 0px; height: auto; max-width: 1360px; position: relative; width: 1px; }\",...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,\"@media (min-width: 1200px) and (max-width: 1919px) { .framer-Jw19M.framer-1mnuri7 { width: 1200px; } .framer-Jw19M .framer-rnlvva { left: 0px; right: 0px; top: 0px; } .framer-Jw19M .framer-1t45wlm { padding: 32px 40px 32px 40px; } .framer-Jw19M .framer-1s9m755 { order: 0; } .framer-Jw19M .framer-6kw0he { order: 1; } .framer-Jw19M.framer-1cdm8hs { overflow: visible; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Jw19M.framer-1mnuri7 { width: 810px; } .framer-Jw19M .framer-1qvu4zy { gap: 192px; } .framer-Jw19M .framer-1lnp7io { justify-content: flex-start; padding: 64px 0px 0px 0px; } .framer-Jw19M .framer-hrgflq { height: 200px; } .framer-Jw19M .framer-1k1jti { padding: 0px 40px 0px 40px; }}\",\"@media (max-width: 809px) { .framer-Jw19M.framer-1mnuri7 { width: 390px; } .framer-Jw19M .framer-1qvu4zy { gap: 120px; } .framer-Jw19M .framer-1lnp7io { gap: 40px; } .framer-Jw19M .framer-hrgflq { height: 200px; } .framer-Jw19M .framer-1k1jti { padding: 40px 0px 0px 0px; } .framer-Jw19M .framer-uyr5qw { padding: 0px 24px 0px 24px; } .framer-Jw19M .framer-vjwq4n { order: 1; } .framer-Jw19M .framer-f4i6u7 { order: 2; } .framer-Jw19M .framer-1h7swnu { order: 0; } .framer-Jw19M .framer-1yvapqg { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-Jw19M .framer-1t45wlm { padding: 28px 24px 28px 24px; } .framer-Jw19M .framer-1s9m755 { --framer-paragraph-spacing: 16px; } .framer-Jw19M.framer-1cdm8hs { bottom: 229px; width: 322px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6999.5\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hDuZZctyB\":{\"layout\":[\"fixed\",\"auto\"]},\"ZdQTHUM2w\":{\"layout\":[\"fixed\",\"auto\"]},\"wEQycq9gp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerxPxo7tAz9=withCSS(Component,css,\"framer-Jw19M\");export default FramerxPxo7tAz9;FramerxPxo7tAz9.displayName=\"Blog\";FramerxPxo7tAz9.defaultProps={height:6999.5,width:1920};addFonts(FramerxPxo7tAz9,[{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\"}]},...LayoutsNavigationFonts,...ModalFonts,...TableOfContentsFonts,...StorylaneEmbedZscalerFonts,...StorylaneEmbedsnowflakeFonts,...StorylaneEmbedFonts,...PageResourcesArticleCardFonts,...SlideshowFonts,...LayoutsCTABannerFonts,...LayoutsTrustedByFonts,...LayoutsFooterFonts,...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),...componentPresets.fonts?.[\"wD9g8qYiN\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"wD9g8qYiN\"]):[],...componentPresets.fonts?.[\"ofvyE1vaC\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"ofvyE1vaC\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxPxo7tAz9\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"6999.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hDuZZctyB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZdQTHUM2w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wEQycq9gp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1920\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["StorylaneEmbedsnowflake", "ue", "script", "p", "StorylaneEmbed", "ue", "script", "p", "withFullWidthFramerImage", "Component", "props", "ref", "pe", "ue", "img", "p", "i", "T", "TableOfContents", "props", "tocItems", "setTocItems", "ye", "activeSectionId", "setActiveSectionId", "ue", "headings", "items", "heading", "index", "id", "onScroll", "found", "item", "bounding", "window", "handleScrollToSection", "u", "p", "addPropertyControls", "ControlType", "StorylaneEmbedZscaler", "ue", "script", "p", "fontStore", "fonts", "css", "className", "LayoutsNavigationFonts", "getFonts", "Cz3nnWovF_default", "ModalFonts", "YLBczhZpP_default", "RichTextWithClass1s9m755", "withCodeBoundaryForOverrides", "RichText2", "withClass", "TableOfContentsFonts", "TableOfContents", "MotionDivWithFullWidthFramerImage1hhsejh", "motion", "withFullWidthFramerImage", "StorylaneEmbedZscalerFonts", "StorylaneEmbedZscaler", "StorylaneEmbedsnowflakeFonts", "StorylaneEmbedsnowflake", "StorylaneEmbedFonts", "StorylaneEmbed", "PageResourcesArticleCardFonts", "AtmaCxWwc_default", "SlideshowFonts", "Slideshow", "LayoutsCTABannerFonts", "JAkfY71Ut_default", "LayoutsTrustedByFonts", "gvb3z9Rof_default", "LayoutsFooterFonts", "TBR2GwtBt_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "toString", "isSet", "equals", "a", "b", "toResponsiveImage", "QueryData", "query", "pageSize", "data", "useQueryData", "transformTemplate1", "_", "t", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "YHdMp3byK_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "c9LnDl7pN", "YRJ78spKv", "Kk08S0Sw2", "RFnuke_I5", "A2fPVhN9y", "ETMzQosHT", "v0qVdBxeh", "v0qVdBxehHEfYHvmsE", "p9YpBgqsfZGTGkcsdq", "hRHUXUylpHEfYHvmsE", "A2fPVhN9yHEfYHvmsE", "tbtNVVXliZGTGkcsdq", "ShqM3lrS3ZGTGkcsdq", "idZGTGkcsdq", "idHEfYHvmsE", "v0qVdBxehtEEGX65eR", "p9YpBgqsfj4gg6R2Ye", "hRHUXUylptEEGX65eR", "A2fPVhN9ytEEGX65eR", "tbtNVVXlij4gg6R2Ye", "ShqM3lrS3j4gg6R2Ye", "idj4gg6R2Ye", "idtEEGX65eR", "v0qVdBxehQJTom1XtQ", "p9YpBgqsfYl3sVEekD", "hRHUXUylpQJTom1XtQ", "A2fPVhN9yQJTom1XtQ", "tbtNVVXliYl3sVEekD", "ShqM3lrS3Yl3sVEekD", "idYl3sVEekD", "idQJTom1XtQ", "v0qVdBxehiYsC9mY3W", "p9YpBgqsfHiRJRQfUy", "hRHUXUylpiYsC9mY3W", "A2fPVhN9yiYsC9mY3W", "tbtNVVXliHiRJRQfUy", "ShqM3lrS3HiRJRQfUy", "idHiRJRQfUy", "idiYsC9mY3W", "v0qVdBxehOz8ehSD5w", "p9YpBgqsfZoywwksBr", "hRHUXUylpOz8ehSD5w", "A2fPVhN9yOz8ehSD5w", "tbtNVVXliZoywwksBr", "ShqM3lrS3ZoywwksBr", "idZoywwksBr", "idOz8ehSD5w", "v0qVdBxehEZMNpoLus", "p9YpBgqsfwhneGC2cl", "hRHUXUylpEZMNpoLus", "A2fPVhN9yEZMNpoLus", "tbtNVVXliwhneGC2cl", "ShqM3lrS3whneGC2cl", "idwhneGC2cl", "idEZMNpoLus", "v0qVdBxehGBul3i7Pf", "p9YpBgqsfn5Hi2zMcl", "hRHUXUylpGBul3i7Pf", "A2fPVhN9yGBul3i7Pf", "tbtNVVXlin5Hi2zMcl", "ShqM3lrS3n5Hi2zMcl", "idn5Hi2zMcl", "idGBul3i7Pf", "v0qVdBxehNKQCiiG_e", "p9YpBgqsftk44skDQ_", "hRHUXUylpNKQCiiG_e", "A2fPVhN9yNKQCiiG_e", "tbtNVVXlitk44skDQ_", "ShqM3lrS3tk44skDQ_", "idtk44skDQ_", "idNKQCiiG_e", "v0qVdBxehgnNlzbWXV", "p9YpBgqsfMCVhEjK4h", "hRHUXUylpgnNlzbWXV", "A2fPVhN9ygnNlzbWXV", "tbtNVVXliMCVhEjK4h", "ShqM3lrS3MCVhEjK4h", "idMCVhEjK4h", "idgnNlzbWXV", "v0qVdBxehw1cssU8Bp", "p9YpBgqsfU7f9SnTGO", "hRHUXUylpw1cssU8Bp", "A2fPVhN9yw1cssU8Bp", "tbtNVVXliU7f9SnTGO", "ShqM3lrS3U7f9SnTGO", "idU7f9SnTGO", "idw1cssU8Bp", "v0qVdBxehRyDyguu4n", "p9YpBgqsfMMas6WcUO", "hRHUXUylpRyDyguu4n", "A2fPVhN9yRyDyguu4n", "tbtNVVXliMMas6WcUO", "ShqM3lrS3MMas6WcUO", "idMMas6WcUO", "idRyDyguu4n", "v0qVdBxehkFJO9Nxox", "p9YpBgqsfALYqUEnKV", "hRHUXUylpkFJO9Nxox", "A2fPVhN9ykFJO9Nxox", "tbtNVVXliALYqUEnKV", "ShqM3lrS3ALYqUEnKV", "idALYqUEnKV", "idkFJO9Nxox", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "V6uV8FYGE3bnx0g", "overlay", "loadMore", "args", "M6hfBDwcn1wnntms", "rzFX3elyE3bnx0g", "scopingClassNames", "cx", "isDisplayed", "activeLocaleCode", "useLocaleCode", "textContent", "isDisplayed1", "textContent1", "isDisplayed2", "visible1", "visible2", "visible3", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "l", "ComponentViewportProvider", "Container", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "getLoadingLazyAtYPosition", "Image2", "Link", "ComponentPresetsProvider", "ChildrenCanSuspend", "wXNrrxR_w_default", "collection1", "paginationInfo", "collection", "index1", "PathVariablesContext", "index", "ResolveLinks", "resolvedLinks", "collection3", "paginationInfo1", "loadMore1", "collection2", "index3", "index2", "resolvedLinks1", "collection5", "paginationInfo2", "loadMore2", "collection4", "index5", "index4", "resolvedLinks2", "collection7", "paginationInfo3", "loadMore3", "collection6", "index7", "index6", "resolvedLinks3", "collection9", "paginationInfo4", "loadMore4", "collection8", "index9", "index8", "resolvedLinks4", "collection11", "paginationInfo5", "loadMore5", "collection10", "index11", "index10", "resolvedLinks5", "collection13", "paginationInfo6", "loadMore6", "collection12", "index13", "index12", "resolvedLinks6", "collection15", "paginationInfo7", "loadMore7", "collection14", "index15", "index14", "resolvedLinks7", "collection17", "paginationInfo8", "loadMore8", "collection16", "index17", "index16", "resolvedLinks8", "collection19", "paginationInfo9", "loadMore9", "collection18", "index19", "index18", "resolvedLinks9", "collection21", "paginationInfo10", "loadMore10", "collection20", "index21", "index20", "resolvedLinks10", "collection23", "paginationInfo11", "loadMore11", "collection22", "index23", "index22", "resolvedLinks11", "overlay1", "css", "FramerxPxo7tAz9", "withCSS", "xPxo7tAz9_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
