{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/4KXXniR9Qu1wgFR0Os6s/6feTylu1d0TMKaseuPa2/ToC.js", "ssg:https://framerusercontent.com/modules/6kZB1bRr4C0nM7qTtHjN/KsPLpPEpBae2okyRyWNq/jtvrOqtz2.js"],
  "sourcesContent": ["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(\"\");const[canvaDisplay,setCanvaDisplay]=useState(true);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}});};return /*#__PURE__*/_jsxs(\"div\",{children:[/*#__PURE__*/_jsx(\"style\",{children:`\n                .placeholder-display{\n                    background-color:rgba(151,103,244,0.2);\n                    border: 1px solid rgb(151,103,244);\n                    min-height: 80px;\n                    border-radius: 12px;\n                    display: flex;\n                    flex-direction: \"vertical\";\n                    align-items:center;\n                    justify-content:center;\n                    color: rgb(151,103,244);\n                    font-size: 14px;\n                    line-height: 20px;\n                    font-weight: 500;\n                    padding: 24px;\n                }\n                .placeholder-display div{\n                    width: 100%;\n                    text-align: center;\n                }\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 #48BEFF;\n                    padding-left: 8px;\n                }\n                .toc-link:hover {\n                    color: ${props.hoverColor};\n                }\n            `}),/*#__PURE__*/_jsxs(\"ul\",{style:{listStyleType:\"none\",padding:0,margin:0},className:tocItems.length==0?\"placeholder-display\":\"toc-container\",children:[tocItems.length==0?/*#__PURE__*/_jsx(\"div\",{children:\"Table of contents will appear here.\"}):null,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\",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\"},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.map", "// Generated by Framer (ee31e22)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,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 Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import PageResourcesArticleCard from\"#framer/local/canvasComponent/AtmaCxWwc/AtmaCxWwc.js\";import ComponentsSocialShare from\"#framer/local/canvasComponent/C_aNL712K/C_aNL712K.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 TableOfContents from\"#framer/local/codeFile/z118f1i/ToC.js\";import{withClass}from\"#framer/local/codeFile/tGvMPef/ToCTarget.js\";import CyberExplained from\"#framer/local/collection/PW_MPhsVc/PW_MPhsVc.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 sharedStyle13 from\"#framer/local/css/A7mA0GJXv/A7mA0GJXv.js\";import*as sharedStyle5 from\"#framer/local/css/AowPMIErf/AowPMIErf.js\";import*as sharedStyle8 from\"#framer/local/css/b5SJCtKih/b5SJCtKih.js\";import*as sharedStyle6 from\"#framer/local/css/CvhK9DRkh/CvhK9DRkh.js\";import*as sharedStyle16 from\"#framer/local/css/cVrIBDuLp/cVrIBDuLp.js\";import*as sharedStyle14 from\"#framer/local/css/iiKvyUJgo/iiKvyUJgo.js\";import*as sharedStyle15 from\"#framer/local/css/lBKA1ZFOI/lBKA1ZFOI.js\";import*as sharedStyle1 from\"#framer/local/css/lUcHdNLe6/lUcHdNLe6.js\";import*as sharedStyle11 from\"#framer/local/css/nNwkdjgzQ/nNwkdjgzQ.js\";import*as sharedStyle4 from\"#framer/local/css/QuGK9i1mK/QuGK9i1mK.js\";import*as sharedStyle from\"#framer/local/css/T3ov2VROv/T3ov2VROv.js\";import*as sharedStyle12 from\"#framer/local/css/Tq1RMMgwh/Tq1RMMgwh.js\";import*as sharedStyle3 from\"#framer/local/css/uajwtGpbO/uajwtGpbO.js\";import*as sharedStyle7 from\"#framer/local/css/uiZ8ygI06/uiZ8ygI06.js\";import*as sharedStyle10 from\"#framer/local/css/VerL_y7Dr/VerL_y7Dr.js\";import*as sharedStyle9 from\"#framer/local/css/vGwN_rfV6/vGwN_rfV6.js\";import*as sharedStyle2 from\"#framer/local/css/vQ2MDct2G/vQ2MDct2G.js\";import metadataProvider from\"#framer/local/webPageMetadata/jtvrOqtz2/jtvrOqtz2.js\";const LayoutsNavigationFonts=getFonts(LayoutsNavigation);const ModalFonts=getFonts(Modal);const ComponentsSocialShareFonts=getFonts(ComponentsSocialShare);const RichTextWithClassw1f4d7=withCodeBoundaryForOverrides(RichText,{nodeId:\"XFdT0k0kp\",override:withClass,scopeId:\"jtvrOqtz2\"});const TableOfContentsFonts=getFonts(TableOfContents);const PageResourcesArticleCardFonts=getFonts(PageResourcesArticleCard);const SlideshowFonts=getFonts(Slideshow);const LayoutsCTABannerFonts=getFonts(LayoutsCTABanner);const LayoutsTrustedByFonts=getFonts(LayoutsTrustedBy);const LayoutsFooterFonts=getFonts(LayoutsFooter);const breakpoints={eq_fd0Xiq:\"(max-width: 809px)\",pDWNSXK1E:\"(min-width: 1920px)\",yOkwb38_s:\"(min-width: 1200px) and (max-width: 1919px)\",ZKxMwaUmB:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-xp0Ey\";const variantClassNames={eq_fd0Xiq:\"framer-v-1hsk8nr\",pDWNSXK1E:\"framer-v-2fdpx8\",yOkwb38_s:\"framer-v-v7r6ig\",ZKxMwaUmB:\"framer-v-1wozve4\"};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;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const 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\":\"pDWNSXK1E\",Desktop:\"yOkwb38_s\",Phone:\"eq_fd0Xiq\",Tablet:\"ZKxMwaUmB\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pDWNSXK1E\"};};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:\"jtvrOqtz2\",data:CyberExplained,type:\"Collection\"},select:[{collection:\"jtvrOqtz2\",name:\"vxEfKhzbr\",type:\"Identifier\"},{collection:\"jtvrOqtz2\",name:\"vE1zTaqph\",type:\"Identifier\"},{collection:\"jtvrOqtz2\",name:\"QUaX6yBmD\",type:\"Identifier\"},{collection:\"jtvrOqtz2\",name:\"pfDeRXG4a\",type:\"Identifier\"},{collection:\"jtvrOqtz2\",name:\"FFG_2yfJS\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"jtvrOqtz2\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,vxEfKhzbr=getFromCurrentRouteData(\"vxEfKhzbr\")??\"\",QUaX6yBmD=getFromCurrentRouteData(\"QUaX6yBmD\")??\"\",pfDeRXG4a=getFromCurrentRouteData(\"pfDeRXG4a\")??\"\",vE1zTaqph=getFromCurrentRouteData(\"vE1zTaqph\"),FFG_2yfJS=getFromCurrentRouteData(\"FFG_2yfJS\")??\"\",hRHUXUylpHusVE6rxT,A2fPVhN9yHusVE6rxT,tbtNVVXlivGbkkpCpz,ShqM3lrS3vGbkkpCpz,p9YpBgqsfvGbkkpCpz,idvGbkkpCpz,v0qVdBxehHusVE6rxT,idHusVE6rxT,v0qVdBxehxPxo7tAz9,hRHUXUylpOhhMEHwZ0,A2fPVhN9yOhhMEHwZ0,tbtNVVXliBBM37m0bO,ShqM3lrS3BBM37m0bO,p9YpBgqsfBBM37m0bO,idBBM37m0bO,v0qVdBxehOhhMEHwZ0,idOhhMEHwZ0,hRHUXUylpkXf8aCJv5,A2fPVhN9ykXf8aCJv5,tbtNVVXliMJ2SJ0SBn,ShqM3lrS3MJ2SJ0SBn,p9YpBgqsfMJ2SJ0SBn,idMJ2SJ0SBn,v0qVdBxehkXf8aCJv5,idkXf8aCJv5,hRHUXUylpPk_o1jcGM,A2fPVhN9yPk_o1jcGM,tbtNVVXliFflN20bnp,ShqM3lrS3FflN20bnp,p9YpBgqsfFflN20bnp,idFflN20bnp,v0qVdBxehPk_o1jcGM,idPk_o1jcGM,hRHUXUylpcT126myHl,A2fPVhN9ycT126myHl,tbtNVVXligWBT3WWOb,ShqM3lrS3gWBT3WWOb,p9YpBgqsfgWBT3WWOb,idgWBT3WWOb,v0qVdBxehcT126myHl,idcT126myHl,hRHUXUylpr1oDNWHav,A2fPVhN9yr1oDNWHav,tbtNVVXliJSq2UH6bL,ShqM3lrS3JSq2UH6bL,p9YpBgqsfJSq2UH6bL,idJSq2UH6bL,v0qVdBxehr1oDNWHav,idr1oDNWHav,hRHUXUylpKxJSsDzzK,A2fPVhN9yKxJSsDzzK,tbtNVVXlijHunRQgFu,ShqM3lrS3jHunRQgFu,p9YpBgqsfjHunRQgFu,idjHunRQgFu,v0qVdBxehKxJSsDzzK,idKxJSsDzzK,hRHUXUylpUMYACYcPr,A2fPVhN9yUMYACYcPr,tbtNVVXlizVd3fQi8_,ShqM3lrS3zVd3fQi8_,p9YpBgqsfzVd3fQi8_,idzVd3fQi8_,v0qVdBxehUMYACYcPr,idUMYACYcPr,hRHUXUylpD9Dqw3lRm,A2fPVhN9yD9Dqw3lRm,tbtNVVXliU0cJmGG89,ShqM3lrS3U0cJmGG89,p9YpBgqsfU0cJmGG89,idU0cJmGG89,v0qVdBxehD9Dqw3lRm,idD9Dqw3lRm,hRHUXUylpqOIX0Mdxy,A2fPVhN9yqOIX0Mdxy,tbtNVVXlitaTMAtMsu,ShqM3lrS3taTMAtMsu,p9YpBgqsftaTMAtMsu,idtaTMAtMsu,v0qVdBxehqOIX0Mdxy,idqOIX0Mdxy,hRHUXUylpXr9bFuUoI,A2fPVhN9yXr9bFuUoI,tbtNVVXlihQ1Bh7iRd,ShqM3lrS3hQ1Bh7iRd,p9YpBgqsfhQ1Bh7iRd,idhQ1Bh7iRd,v0qVdBxehXr9bFuUoI,idXr9bFuUoI,hRHUXUylpfPoqKWBWl,A2fPVhN9yfPoqKWBWl,tbtNVVXliBm_hlohpK,ShqM3lrS3Bm_hlohpK,p9YpBgqsfBm_hlohpK,idBm_hlohpK,v0qVdBxehfPoqKWBWl,idfPoqKWBWl,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const activeLocaleCode=useLocaleCode();const textContent=toDateString(vE1zTaqph,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const isDisplayed=()=>{if(!isBrowser())return true;if([\"ZKxMwaUmB\",\"eq_fd0Xiq\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"eq_fd0Xiq\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"eq_fd0Xiq\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"pDWNSXK1E\",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-2fdpx8\",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-1xpov9a-container\",id:\"1xpov9a\",nodeId:\"dPXdABhel\",scopeId:\"jtvrOqtz2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eq_fd0Xiq:{variant:\"HbpgQxgbN\"},yOkwb38_s:{variant:\"wFiXhiQ1Y\"},ZKxMwaUmB:{variant:\"TIOQwyGsQ\"}},children:/*#__PURE__*/_jsx(LayoutsNavigation,{fBGIWxuFr:\"0px\",height:\"100%\",id:\"dPXdABhel\",layoutId:\"dPXdABhel\",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-x7z92v\"),\"data-framer-portal-id\":\"1xpov9a\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"edJj2iZkH\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-10dw5z6-container\"),\"data-framer-portal-id\":\"1xpov9a\",inComponentSlot:true,nodeId:\"Q5gvYg_Bp\",rendersWithMotion:true,scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eq_fd0Xiq:{variant:\"qhzOjsqvj\"},yOkwb38_s:{variant:\"LQ511RkOY\"},ZKxMwaUmB:{variant:\"qhzOjsqvj\"}},children:/*#__PURE__*/_jsx(Modal,{height:\"100%\",id:\"Q5gvYg_Bp\",layoutId:\"Q5gvYg_Bp\",M6hfBDwcn:M6hfBDwcn1wnntms({overlay}),style:{height:\"100%\",width:\"100%\"},variant:\"UBSKp_MgN\",width:\"100%\"})})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pqvbjx\",\"data-framer-name\":\"Contents\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ikcgs1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pjz0lh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eq_fd0Xiq:{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\"}},yOkwb38_s:{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\"}},ZKxMwaUmB:{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-17ixppx\",\"data-framer-name\":\"Background\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ovhk9z\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s13jky\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QVKnYm3rp\"},motionChild:true,nodeId:\"rcF88OfNQ\",scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-pkd2ez framer-1dftly2\",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:\"pen\"})}),className:\"framer-1oy6m6k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nypkcs\",\"data-styles-preset\":\"lUcHdNLe6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5808014c-4a9a-4afb-a0bc-f256f334c74f, rgb(247, 249, 252))\"},children:\"Blog\"})}),className:\"framer-1v15f1f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-154ikkp\",\"data-styles-preset\":\"vQ2MDct2G\",children:\"Operational Readiness and EDR with Brad LaPorte\"})}),className:\"framer-b98wew\",fonts:[\"Inter\"],text:vxEfKhzbr,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xuqywl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dwxfxt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-125d0oj\",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-9aa1b43a-c060-4ebc-ab84-849113e43bad, rgb(199, 203, 207))\"},children:\"Jack\"})}),className:\"framer-6ngb4p\",fonts:[\"Inter\"],text:QUaX6yBmD,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-9aa1b43a-c060-4ebc-ab84-849113e43bad, rgb(199, 203, 207))\"},children:\"Naglieri\"})}),className:\"framer-1kab57s\",fonts:[\"Inter\"],text:pfDeRXG4a,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-9aa1b43a-c060-4ebc-ab84-849113e43bad, rgb(199, 203, 207))\"},children:\"Content\"})}),className:\"framer-1ulcqz0\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rt5e0g\",\"data-styles-preset\":\"uajwtGpbO\",style:{\"--framer-text-color\":\"var(--token-9aa1b43a-c060-4ebc-ab84-849113e43bad, rgb(199, 203, 207))\"},children:\"3 min read\"})}),className:\"framer-1uqrvmg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eq_fd0Xiq:{y:(componentViewport?.y||0)+0+114+0+0+72+0+0+0+0+148.4+0+56}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,y:(componentViewport?.y||0)+0+114+0+0+120+0+0+0+0+148.4+4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vrwn11-container\",nodeId:\"WuS3zKvzY\",scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(ComponentsSocialShare,{Crp0jXyMO:\"https://www.linkedin.com/company/runpanther/\",height:\"100%\",id:\"WuS3zKvzY\",layoutId:\"WuS3zKvzY\",PHwPSmIYs:\"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=\",PyCXz9NTc:\"https://x.com/runpanther\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pl6w0m\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3qkv67\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14rg752\",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(RichTextWithClassw1f4d7,{__fromCanvasComponent:true,children:FFG_2yfJS,className:\"framer-w1f4d7\",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-150bq5y\",p:\"framer-styles-preset-aym67i\",table:\"framer-styles-preset-7dk9ti\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jikti0 hidden-1wozve4 hidden-1hsk8nr\",\"data-framer-name\":\"Navigation\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-5yppft\",\"data-styles-preset\":\"b5SJCtKih\",style:{\"--framer-text-alignment\":\"left\"},children:\"TABLE OF CONTENTS\"})}),className:\"framer-1gdvk2b\",\"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-nfhysv-container\",isAuthoredByUser:true,nodeId:\"MX0THOibQ\",scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(TableOfContents,{enabledColor:\"rgb(0, 0, 0)\",fontName:\"GT Planar Light\",fontSize:\"16px\",height:\"100%\",hoverColor:\"var(--token-63356d00-7fe0-4d91-9b1f-04a339e86f22, rgb(24, 47, 255))\",id:\"MX0THOibQ\",layoutId:\"MX0THOibQ\",lineHeight:\"150%\",listMarginLeft:16,margins:\"4px 8px\",scrollOffset:160,style:{width:\"100%\"},textDecoration:\"None\",width:\"100%\"})})})]})]})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ivflch hidden-1hsk8nr\",\"data-framer-name\":\"Desktop Detection As Code\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nvp60j\"}),/*#__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-5fmco0\",\"data-framer-name\":\"Turn Up the Volume,\\u2028Turn Down the Noise\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xmwp4e\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pdik23-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gFwPl_YGP\",scopeId:\"jtvrOqtz2\",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:\"gFwPl_YGP\",intervalControl:3,itemAmount:1,layoutId:\"gFwPl_YGP\",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-1c4xrqo\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"HusVE6rxT\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"HusVE6rxT\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"HusVE6rxT\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"HusVE6rxT\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"HusVE6rxT\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"HusVE6rxT\",name:\"id\",type:\"Identifier\"},{alias:\"vGbkkpCpz\",arguments:[{from:{alias:\"vGbkkpCpz\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"HusVE6rxT\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"vGbkkpCpz\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"vGbkkpCpz\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"vGbkkpCpz\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"vGbkkpCpz\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"vGbkkpCpz\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"vGbkkpCpz\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"HusVE6rxT\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"HusVE6rxT\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxehxPxo7tAz9},type:\"BinaryOperation\"}}},children:(collection1,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({A2fPVhN9y:A2fPVhN9yHusVE6rxT,hRHUXUylp:hRHUXUylpHusVE6rxT,id:idHusVE6rxT,v0qVdBxeh:v0qVdBxehHusVE6rxT,vGbkkpCpz:collection},index1)=>{A2fPVhN9yHusVE6rxT??=\"\";v0qVdBxehHusVE6rxT??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`HusVE6rxT-${idHusVE6rxT}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehHusVE6rxT},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-c3y9lg\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-v652vf\",children:collection?.map(({id:idvGbkkpCpz,p9YpBgqsf:p9YpBgqsfvGbkkpCpz,ShqM3lrS3:ShqM3lrS3vGbkkpCpz,tbtNVVXli:tbtNVVXlivGbkkpCpz},index)=>{tbtNVVXlivGbkkpCpz??=\"\";ShqM3lrS3vGbkkpCpz??=\"\";p9YpBgqsfvGbkkpCpz??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vGbkkpCpz-${idvGbkkpCpz}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfvGbkkpCpz},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3ndxjc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"565px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1grpdax-container\",inComponentSlot:true,nodeId:\"hGWAuky1e\",rendersWithMotion:true,scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpHusVE6rxT),GufhpoTXH:true,height:\"100%\",id:\"hGWAuky1e\",JixAg97nj:tbtNVVXlivGbkkpCpz,layoutId:\"hGWAuky1e\",owyJ8Ptas:A2fPVhN9yHusVE6rxT,style:{height:\"100%\",width:\"100%\"},variant:\"e4vL9mueg\",width:\"100%\",YoH4tvKtU:ShqM3lrS3vGbkkpCpz})})})})})},idvGbkkpCpz);})})})})},idHusVE6rxT);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g18kja\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"OhhMEHwZ0\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"OhhMEHwZ0\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"OhhMEHwZ0\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"OhhMEHwZ0\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"OhhMEHwZ0\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"OhhMEHwZ0\",name:\"id\",type:\"Identifier\"},{alias:\"BBM37m0bO\",arguments:[{from:{alias:\"BBM37m0bO\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"OhhMEHwZ0\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"BBM37m0bO\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"BBM37m0bO\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"BBM37m0bO\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"BBM37m0bO\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"BBM37m0bO\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"BBM37m0bO\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"OhhMEHwZ0\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"OhhMEHwZ0\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxehxPxo7tAz9},type:\"BinaryOperation\"}}},children:(collection3,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({A2fPVhN9y:A2fPVhN9yOhhMEHwZ0,BBM37m0bO:collection2,hRHUXUylp:hRHUXUylpOhhMEHwZ0,id:idOhhMEHwZ0,v0qVdBxeh:v0qVdBxehOhhMEHwZ0},index3)=>{A2fPVhN9yOhhMEHwZ0??=\"\";v0qVdBxehOhhMEHwZ0??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`OhhMEHwZ0-${idOhhMEHwZ0}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehOhhMEHwZ0},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sc7d7\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ya45yo\",children:collection2?.map(({id:idBBM37m0bO,p9YpBgqsf:p9YpBgqsfBBM37m0bO,ShqM3lrS3:ShqM3lrS3BBM37m0bO,tbtNVVXli:tbtNVVXliBBM37m0bO},index2)=>{tbtNVVXliBBM37m0bO??=\"\";ShqM3lrS3BBM37m0bO??=\"\";p9YpBgqsfBBM37m0bO??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`BBM37m0bO-${idBBM37m0bO}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfBBM37m0bO},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-77rs6i\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"565px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5bewa6-container\",inComponentSlot:true,nodeId:\"PPLjpfF17\",rendersWithMotion:true,scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpOhhMEHwZ0),GufhpoTXH:true,height:\"100%\",id:\"PPLjpfF17\",JixAg97nj:tbtNVVXliBBM37m0bO,layoutId:\"PPLjpfF17\",owyJ8Ptas:A2fPVhN9yOhhMEHwZ0,style:{height:\"100%\",width:\"100%\"},variant:\"e4vL9mueg\",width:\"100%\",YoH4tvKtU:ShqM3lrS3BBM37m0bO})})})})})},idBBM37m0bO);})})})})},idOhhMEHwZ0);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w19wz1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"kXf8aCJv5\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"kXf8aCJv5\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"kXf8aCJv5\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"kXf8aCJv5\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"kXf8aCJv5\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"kXf8aCJv5\",name:\"id\",type:\"Identifier\"},{alias:\"MJ2SJ0SBn\",arguments:[{from:{alias:\"MJ2SJ0SBn\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"kXf8aCJv5\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"MJ2SJ0SBn\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"MJ2SJ0SBn\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"MJ2SJ0SBn\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"MJ2SJ0SBn\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"MJ2SJ0SBn\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"MJ2SJ0SBn\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"kXf8aCJv5\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"kXf8aCJv5\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxehxPxo7tAz9},type:\"BinaryOperation\"}}},children:(collection5,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({A2fPVhN9y:A2fPVhN9ykXf8aCJv5,hRHUXUylp:hRHUXUylpkXf8aCJv5,id:idkXf8aCJv5,MJ2SJ0SBn:collection4,v0qVdBxeh:v0qVdBxehkXf8aCJv5},index5)=>{A2fPVhN9ykXf8aCJv5??=\"\";v0qVdBxehkXf8aCJv5??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`kXf8aCJv5-${idkXf8aCJv5}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehkXf8aCJv5},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-641g8j\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w4fwf2\",children:collection4?.map(({id:idMJ2SJ0SBn,p9YpBgqsf:p9YpBgqsfMJ2SJ0SBn,ShqM3lrS3:ShqM3lrS3MJ2SJ0SBn,tbtNVVXli:tbtNVVXliMJ2SJ0SBn},index4)=>{tbtNVVXliMJ2SJ0SBn??=\"\";ShqM3lrS3MJ2SJ0SBn??=\"\";p9YpBgqsfMJ2SJ0SBn??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`MJ2SJ0SBn-${idMJ2SJ0SBn}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfMJ2SJ0SBn},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ld3uk2\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"565px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-srw61i-container\",inComponentSlot:true,nodeId:\"iIPpOX23z\",rendersWithMotion:true,scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpkXf8aCJv5),GufhpoTXH:true,height:\"100%\",id:\"iIPpOX23z\",JixAg97nj:tbtNVVXliMJ2SJ0SBn,layoutId:\"iIPpOX23z\",owyJ8Ptas:A2fPVhN9ykXf8aCJv5,style:{height:\"100%\",width:\"100%\"},variant:\"e4vL9mueg\",width:\"100%\",YoH4tvKtU:ShqM3lrS3MJ2SJ0SBn})})})})})},idMJ2SJ0SBn);})})})})},idkXf8aCJv5);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o7w2ly\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Pk_o1jcGM\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},orderBy:[{collection:\"Pk_o1jcGM\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"Pk_o1jcGM\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"Pk_o1jcGM\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"Pk_o1jcGM\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"Pk_o1jcGM\",name:\"id\",type:\"Identifier\"},{alias:\"FflN20bnp\",arguments:[{from:{alias:\"FflN20bnp\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"Pk_o1jcGM\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"FflN20bnp\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"FflN20bnp\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"FflN20bnp\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"FflN20bnp\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"FflN20bnp\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"FflN20bnp\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"Pk_o1jcGM\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"Pk_o1jcGM\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxehxPxo7tAz9},type:\"BinaryOperation\"}}},children:(collection7,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({A2fPVhN9y:A2fPVhN9yPk_o1jcGM,FflN20bnp:collection6,hRHUXUylp:hRHUXUylpPk_o1jcGM,id:idPk_o1jcGM,v0qVdBxeh:v0qVdBxehPk_o1jcGM},index7)=>{A2fPVhN9yPk_o1jcGM??=\"\";v0qVdBxehPk_o1jcGM??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Pk_o1jcGM-${idPk_o1jcGM}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehPk_o1jcGM},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-d8j8wv\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ffd1va\",children:collection6?.map(({id:idFflN20bnp,p9YpBgqsf:p9YpBgqsfFflN20bnp,ShqM3lrS3:ShqM3lrS3FflN20bnp,tbtNVVXli:tbtNVVXliFflN20bnp},index6)=>{tbtNVVXliFflN20bnp??=\"\";ShqM3lrS3FflN20bnp??=\"\";p9YpBgqsfFflN20bnp??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FflN20bnp-${idFflN20bnp}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfFflN20bnp},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-180t6gj\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"565px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-15fxtnc-container\",inComponentSlot:true,nodeId:\"fYF93MFlI\",rendersWithMotion:true,scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpPk_o1jcGM),GufhpoTXH:true,height:\"100%\",id:\"fYF93MFlI\",JixAg97nj:tbtNVVXliFflN20bnp,layoutId:\"fYF93MFlI\",owyJ8Ptas:A2fPVhN9yPk_o1jcGM,style:{height:\"100%\",width:\"100%\"},variant:\"e4vL9mueg\",width:\"100%\",YoH4tvKtU:ShqM3lrS3FflN20bnp})})})})})},idFflN20bnp);})})})})},idPk_o1jcGM);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bacxme\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"cT126myHl\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},orderBy:[{collection:\"cT126myHl\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"cT126myHl\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"cT126myHl\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"cT126myHl\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"cT126myHl\",name:\"id\",type:\"Identifier\"},{alias:\"gWBT3WWOb\",arguments:[{from:{alias:\"gWBT3WWOb\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"cT126myHl\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"gWBT3WWOb\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"gWBT3WWOb\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"gWBT3WWOb\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"gWBT3WWOb\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"gWBT3WWOb\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"gWBT3WWOb\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"cT126myHl\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"cT126myHl\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxehxPxo7tAz9},type:\"BinaryOperation\"}}},children:(collection9,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9?.map(({A2fPVhN9y:A2fPVhN9ycT126myHl,gWBT3WWOb:collection8,hRHUXUylp:hRHUXUylpcT126myHl,id:idcT126myHl,v0qVdBxeh:v0qVdBxehcT126myHl},index9)=>{A2fPVhN9ycT126myHl??=\"\";v0qVdBxehcT126myHl??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`cT126myHl-${idcT126myHl}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehcT126myHl},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-g4fx24\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uyv8yg\",children:collection8?.map(({id:idgWBT3WWOb,p9YpBgqsf:p9YpBgqsfgWBT3WWOb,ShqM3lrS3:ShqM3lrS3gWBT3WWOb,tbtNVVXli:tbtNVVXligWBT3WWOb},index8)=>{tbtNVVXligWBT3WWOb??=\"\";ShqM3lrS3gWBT3WWOb??=\"\";p9YpBgqsfgWBT3WWOb??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`gWBT3WWOb-${idgWBT3WWOb}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfgWBT3WWOb},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nssidk\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"565px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-f1mi76-container\",inComponentSlot:true,nodeId:\"lTBnGDmgC\",rendersWithMotion:true,scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpcT126myHl),GufhpoTXH:true,height:\"100%\",id:\"lTBnGDmgC\",JixAg97nj:tbtNVVXligWBT3WWOb,layoutId:\"lTBnGDmgC\",owyJ8Ptas:A2fPVhN9ycT126myHl,style:{height:\"100%\",width:\"100%\"},variant:\"e4vL9mueg\",width:\"100%\",YoH4tvKtU:ShqM3lrS3gWBT3WWOb})})})})})},idgWBT3WWOb);})})})})},idcT126myHl);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10bay6n\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"r1oDNWHav\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:6},orderBy:[{collection:\"r1oDNWHav\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"r1oDNWHav\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"r1oDNWHav\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"r1oDNWHav\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"r1oDNWHav\",name:\"id\",type:\"Identifier\"},{alias:\"JSq2UH6bL\",arguments:[{from:{alias:\"JSq2UH6bL\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"r1oDNWHav\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"JSq2UH6bL\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"JSq2UH6bL\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"JSq2UH6bL\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"JSq2UH6bL\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"JSq2UH6bL\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"JSq2UH6bL\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"r1oDNWHav\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"r1oDNWHav\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxehxPxo7tAz9},type:\"BinaryOperation\"}}},children:(collection11,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection11?.map(({A2fPVhN9y:A2fPVhN9yr1oDNWHav,hRHUXUylp:hRHUXUylpr1oDNWHav,id:idr1oDNWHav,JSq2UH6bL:collection10,v0qVdBxeh:v0qVdBxehr1oDNWHav},index11)=>{A2fPVhN9yr1oDNWHav??=\"\";v0qVdBxehr1oDNWHav??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`r1oDNWHav-${idr1oDNWHav}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehr1oDNWHav},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-113duge\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dnsohf\",children:collection10?.map(({id:idJSq2UH6bL,p9YpBgqsf:p9YpBgqsfJSq2UH6bL,ShqM3lrS3:ShqM3lrS3JSq2UH6bL,tbtNVVXli:tbtNVVXliJSq2UH6bL},index10)=>{tbtNVVXliJSq2UH6bL??=\"\";ShqM3lrS3JSq2UH6bL??=\"\";p9YpBgqsfJSq2UH6bL??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JSq2UH6bL-${idJSq2UH6bL}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfJSq2UH6bL},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-151wddr\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"565px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-oqvdxh-container\",inComponentSlot:true,nodeId:\"a0RPfmANt\",rendersWithMotion:true,scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpr1oDNWHav),GufhpoTXH:true,height:\"100%\",id:\"a0RPfmANt\",JixAg97nj:tbtNVVXliJSq2UH6bL,layoutId:\"a0RPfmANt\",owyJ8Ptas:A2fPVhN9yr1oDNWHav,style:{height:\"100%\",width:\"100%\"},variant:\"e4vL9mueg\",width:\"100%\",YoH4tvKtU:ShqM3lrS3JSq2UH6bL})})})})})},idJSq2UH6bL);})})})})},idr1oDNWHav);})})})})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3isu7f hidden-2fdpx8 hidden-v7r6ig hidden-1wozve4\",\"data-framer-name\":\"Mobile Detection as Code\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qwvsgc\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2kdllc\"}),/*#__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-1roiynf\",\"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-fcbpgy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JfNwnH95T\",scopeId:\"jtvrOqtz2\",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:\"JfNwnH95T\",intervalControl:3,itemAmount:1,layoutId:\"JfNwnH95T\",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-18y17vs\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"KxJSsDzzK\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"KxJSsDzzK\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"KxJSsDzzK\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"KxJSsDzzK\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"KxJSsDzzK\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"KxJSsDzzK\",name:\"id\",type:\"Identifier\"},{alias:\"jHunRQgFu\",arguments:[{from:{alias:\"jHunRQgFu\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"KxJSsDzzK\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"jHunRQgFu\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"jHunRQgFu\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"jHunRQgFu\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"jHunRQgFu\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"jHunRQgFu\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"jHunRQgFu\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"KxJSsDzzK\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"KxJSsDzzK\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxehxPxo7tAz9},type:\"BinaryOperation\"}}},children:(collection13,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection13?.map(({A2fPVhN9y:A2fPVhN9yKxJSsDzzK,hRHUXUylp:hRHUXUylpKxJSsDzzK,id:idKxJSsDzzK,jHunRQgFu:collection12,v0qVdBxeh:v0qVdBxehKxJSsDzzK},index13)=>{A2fPVhN9yKxJSsDzzK??=\"\";v0qVdBxehKxJSsDzzK??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`KxJSsDzzK-${idKxJSsDzzK}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehKxJSsDzzK},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cmc7sh\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wbzzbz\",children:collection12?.map(({id:idjHunRQgFu,p9YpBgqsf:p9YpBgqsfjHunRQgFu,ShqM3lrS3:ShqM3lrS3jHunRQgFu,tbtNVVXli:tbtNVVXlijHunRQgFu},index12)=>{tbtNVVXlijHunRQgFu??=\"\";ShqM3lrS3jHunRQgFu??=\"\";p9YpBgqsfjHunRQgFu??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`jHunRQgFu-${idjHunRQgFu}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfjHunRQgFu},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-aipbcx\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:314,width:\"332px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-gc5060-container\",\"data-framer-name\":\"Mobile Card\",inComponentSlot:true,name:\"Mobile Card\",nodeId:\"Hp8TVfWoK\",rendersWithMotion:true,scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpKxJSsDzzK),GufhpoTXH:true,height:\"100%\",id:\"Hp8TVfWoK\",JixAg97nj:tbtNVVXlijHunRQgFu,layoutId:\"Hp8TVfWoK\",name:\"Mobile Card\",owyJ8Ptas:A2fPVhN9yKxJSsDzzK,style:{height:\"100%\",width:\"100%\"},variant:\"sthrKP2OC\",width:\"100%\",YoH4tvKtU:ShqM3lrS3jHunRQgFu})})})})})},idjHunRQgFu);})})})})},idKxJSsDzzK);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gt02w9\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"UMYACYcPr\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"UMYACYcPr\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"UMYACYcPr\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"UMYACYcPr\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"UMYACYcPr\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"UMYACYcPr\",name:\"id\",type:\"Identifier\"},{alias:\"zVd3fQi8_\",arguments:[{from:{alias:\"zVd3fQi8_\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"UMYACYcPr\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"zVd3fQi8_\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"zVd3fQi8_\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"zVd3fQi8_\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"zVd3fQi8_\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"zVd3fQi8_\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"zVd3fQi8_\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"UMYACYcPr\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"UMYACYcPr\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxehxPxo7tAz9},type:\"BinaryOperation\"}}},children:(collection15,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection15?.map(({A2fPVhN9y:A2fPVhN9yUMYACYcPr,hRHUXUylp:hRHUXUylpUMYACYcPr,id:idUMYACYcPr,v0qVdBxeh:v0qVdBxehUMYACYcPr,zVd3fQi8_:collection14},index15)=>{A2fPVhN9yUMYACYcPr??=\"\";v0qVdBxehUMYACYcPr??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`UMYACYcPr-${idUMYACYcPr}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehUMYACYcPr},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zy8pq1\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6ibu4z\",children:collection14?.map(({id:idzVd3fQi8_,p9YpBgqsf:p9YpBgqsfzVd3fQi8_,ShqM3lrS3:ShqM3lrS3zVd3fQi8_,tbtNVVXli:tbtNVVXlizVd3fQi8_},index14)=>{tbtNVVXlizVd3fQi8_??=\"\";ShqM3lrS3zVd3fQi8_??=\"\";p9YpBgqsfzVd3fQi8_??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`zVd3fQi8_-${idzVd3fQi8_}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfzVd3fQi8_},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-onxwr6\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:314,width:\"332px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vm5n5i-container\",\"data-framer-name\":\"Mobile Card\",inComponentSlot:true,name:\"Mobile Card\",nodeId:\"eJNu4dtf9\",rendersWithMotion:true,scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpUMYACYcPr),GufhpoTXH:true,height:\"100%\",id:\"eJNu4dtf9\",JixAg97nj:tbtNVVXlizVd3fQi8_,layoutId:\"eJNu4dtf9\",name:\"Mobile Card\",owyJ8Ptas:A2fPVhN9yUMYACYcPr,style:{height:\"100%\",width:\"100%\"},variant:\"sthrKP2OC\",width:\"100%\",YoH4tvKtU:ShqM3lrS3zVd3fQi8_})})})})})},idzVd3fQi8_);})})})})},idUMYACYcPr);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ssq8d3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"D9Dqw3lRm\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"D9Dqw3lRm\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"D9Dqw3lRm\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"D9Dqw3lRm\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"D9Dqw3lRm\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"D9Dqw3lRm\",name:\"id\",type:\"Identifier\"},{alias:\"U0cJmGG89\",arguments:[{from:{alias:\"U0cJmGG89\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"D9Dqw3lRm\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"U0cJmGG89\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"U0cJmGG89\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"U0cJmGG89\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"U0cJmGG89\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"U0cJmGG89\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"U0cJmGG89\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"D9Dqw3lRm\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"D9Dqw3lRm\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxehxPxo7tAz9},type:\"BinaryOperation\"}}},children:(collection17,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection17?.map(({A2fPVhN9y:A2fPVhN9yD9Dqw3lRm,hRHUXUylp:hRHUXUylpD9Dqw3lRm,id:idD9Dqw3lRm,U0cJmGG89:collection16,v0qVdBxeh:v0qVdBxehD9Dqw3lRm},index17)=>{A2fPVhN9yD9Dqw3lRm??=\"\";v0qVdBxehD9Dqw3lRm??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`D9Dqw3lRm-${idD9Dqw3lRm}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehD9Dqw3lRm},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qtxlhn\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2s99be\",children:collection16?.map(({id:idU0cJmGG89,p9YpBgqsf:p9YpBgqsfU0cJmGG89,ShqM3lrS3:ShqM3lrS3U0cJmGG89,tbtNVVXli:tbtNVVXliU0cJmGG89},index16)=>{tbtNVVXliU0cJmGG89??=\"\";ShqM3lrS3U0cJmGG89??=\"\";p9YpBgqsfU0cJmGG89??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`U0cJmGG89-${idU0cJmGG89}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfU0cJmGG89},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-q8ilpx\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:314,width:\"332px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f3km7k-container\",\"data-framer-name\":\"Mobile Card\",inComponentSlot:true,name:\"Mobile Card\",nodeId:\"dSJ9kTDJx\",rendersWithMotion:true,scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpD9Dqw3lRm),GufhpoTXH:true,height:\"100%\",id:\"dSJ9kTDJx\",JixAg97nj:tbtNVVXliU0cJmGG89,layoutId:\"dSJ9kTDJx\",name:\"Mobile Card\",owyJ8Ptas:A2fPVhN9yD9Dqw3lRm,style:{height:\"100%\",width:\"100%\"},variant:\"sthrKP2OC\",width:\"100%\",YoH4tvKtU:ShqM3lrS3U0cJmGG89})})})})})},idU0cJmGG89);})})})})},idD9Dqw3lRm);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-277w5y\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"qOIX0Mdxy\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},orderBy:[{collection:\"qOIX0Mdxy\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"qOIX0Mdxy\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"qOIX0Mdxy\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"qOIX0Mdxy\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"qOIX0Mdxy\",name:\"id\",type:\"Identifier\"},{alias:\"taTMAtMsu\",arguments:[{from:{alias:\"taTMAtMsu\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"qOIX0Mdxy\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"taTMAtMsu\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"taTMAtMsu\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"taTMAtMsu\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"taTMAtMsu\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"taTMAtMsu\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"taTMAtMsu\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"qOIX0Mdxy\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"qOIX0Mdxy\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxehxPxo7tAz9},type:\"BinaryOperation\"}}},children:(collection19,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection19?.map(({A2fPVhN9y:A2fPVhN9yqOIX0Mdxy,hRHUXUylp:hRHUXUylpqOIX0Mdxy,id:idqOIX0Mdxy,taTMAtMsu:collection18,v0qVdBxeh:v0qVdBxehqOIX0Mdxy},index19)=>{A2fPVhN9yqOIX0Mdxy??=\"\";v0qVdBxehqOIX0Mdxy??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`qOIX0Mdxy-${idqOIX0Mdxy}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehqOIX0Mdxy},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-x09h7k\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lypxty\",children:collection18?.map(({id:idtaTMAtMsu,p9YpBgqsf:p9YpBgqsftaTMAtMsu,ShqM3lrS3:ShqM3lrS3taTMAtMsu,tbtNVVXli:tbtNVVXlitaTMAtMsu},index18)=>{tbtNVVXlitaTMAtMsu??=\"\";ShqM3lrS3taTMAtMsu??=\"\";p9YpBgqsftaTMAtMsu??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`taTMAtMsu-${idtaTMAtMsu}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsftaTMAtMsu},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rfk0qc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:314,width:\"332px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16c6juf-container\",\"data-framer-name\":\"Mobile Card\",inComponentSlot:true,name:\"Mobile Card\",nodeId:\"BBiwu0EJf\",rendersWithMotion:true,scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpqOIX0Mdxy),GufhpoTXH:true,height:\"100%\",id:\"BBiwu0EJf\",JixAg97nj:tbtNVVXlitaTMAtMsu,layoutId:\"BBiwu0EJf\",name:\"Mobile Card\",owyJ8Ptas:A2fPVhN9yqOIX0Mdxy,style:{height:\"100%\",width:\"100%\"},variant:\"sthrKP2OC\",width:\"100%\",YoH4tvKtU:ShqM3lrS3taTMAtMsu})})})})})},idtaTMAtMsu);})})})})},idqOIX0Mdxy);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ls4a7q\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Xr9bFuUoI\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},orderBy:[{collection:\"Xr9bFuUoI\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"Xr9bFuUoI\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"Xr9bFuUoI\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"Xr9bFuUoI\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"Xr9bFuUoI\",name:\"id\",type:\"Identifier\"},{alias:\"hQ1Bh7iRd\",arguments:[{from:{alias:\"hQ1Bh7iRd\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"Xr9bFuUoI\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"hQ1Bh7iRd\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"hQ1Bh7iRd\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"hQ1Bh7iRd\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"hQ1Bh7iRd\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"hQ1Bh7iRd\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"hQ1Bh7iRd\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"Xr9bFuUoI\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"Xr9bFuUoI\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxehxPxo7tAz9},type:\"BinaryOperation\"}}},children:(collection21,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection21?.map(({A2fPVhN9y:A2fPVhN9yXr9bFuUoI,hQ1Bh7iRd:collection20,hRHUXUylp:hRHUXUylpXr9bFuUoI,id:idXr9bFuUoI,v0qVdBxeh:v0qVdBxehXr9bFuUoI},index21)=>{A2fPVhN9yXr9bFuUoI??=\"\";v0qVdBxehXr9bFuUoI??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Xr9bFuUoI-${idXr9bFuUoI}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehXr9bFuUoI},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-e7uqat\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8vwln6\",children:collection20?.map(({id:idhQ1Bh7iRd,p9YpBgqsf:p9YpBgqsfhQ1Bh7iRd,ShqM3lrS3:ShqM3lrS3hQ1Bh7iRd,tbtNVVXli:tbtNVVXlihQ1Bh7iRd},index20)=>{tbtNVVXlihQ1Bh7iRd??=\"\";ShqM3lrS3hQ1Bh7iRd??=\"\";p9YpBgqsfhQ1Bh7iRd??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`hQ1Bh7iRd-${idhQ1Bh7iRd}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfhQ1Bh7iRd},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-u4v4ay\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:314,width:\"332px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bh41ka-container\",\"data-framer-name\":\"Mobile Card\",inComponentSlot:true,name:\"Mobile Card\",nodeId:\"VkoA6bcBS\",rendersWithMotion:true,scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpXr9bFuUoI),GufhpoTXH:true,height:\"100%\",id:\"VkoA6bcBS\",JixAg97nj:tbtNVVXlihQ1Bh7iRd,layoutId:\"VkoA6bcBS\",name:\"Mobile Card\",owyJ8Ptas:A2fPVhN9yXr9bFuUoI,style:{height:\"100%\",width:\"100%\"},variant:\"sthrKP2OC\",width:\"100%\",YoH4tvKtU:ShqM3lrS3hQ1Bh7iRd})})})})})},idhQ1Bh7iRd);})})})})},idXr9bFuUoI);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c35jnf\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"fPoqKWBWl\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:6},orderBy:[{collection:\"fPoqKWBWl\",direction:\"desc\",name:\"c9LnDl7pN\",type:\"Identifier\"}],select:[{collection:\"fPoqKWBWl\",name:\"hRHUXUylp\",type:\"Identifier\"},{collection:\"fPoqKWBWl\",name:\"A2fPVhN9y\",type:\"Identifier\"},{collection:\"fPoqKWBWl\",name:\"v0qVdBxeh\",type:\"Identifier\"},{collection:\"fPoqKWBWl\",name:\"id\",type:\"Identifier\"},{alias:\"Bm_hlohpK\",arguments:[{from:{alias:\"Bm_hlohpK\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{arguments:[{collection:\"fPoqKWBWl\",name:\"ni7b4Ke19\",type:\"Identifier\"},{collection:\"Bm_hlohpK\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"Bm_hlohpK\",name:\"tbtNVVXli\",type:\"Identifier\"},{collection:\"Bm_hlohpK\",name:\"ShqM3lrS3\",type:\"Identifier\"},{collection:\"Bm_hlohpK\",name:\"p9YpBgqsf\",type:\"Identifier\"},{collection:\"Bm_hlohpK\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"Bm_hlohpK\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"fPoqKWBWl\",name:\"ni7b4Ke19\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"fPoqKWBWl\",name:\"v0qVdBxeh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v0qVdBxehxPxo7tAz9},type:\"BinaryOperation\"}}},children:(collection23,paginationInfo11,loadMore11)=>/*#__PURE__*/_jsx(_Fragment,{children:collection23?.map(({A2fPVhN9y:A2fPVhN9yfPoqKWBWl,Bm_hlohpK:collection22,hRHUXUylp:hRHUXUylpfPoqKWBWl,id:idfPoqKWBWl,v0qVdBxeh:v0qVdBxehfPoqKWBWl},index23)=>{A2fPVhN9yfPoqKWBWl??=\"\";v0qVdBxehfPoqKWBWl??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`fPoqKWBWl-${idfPoqKWBWl}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v0qVdBxeh:v0qVdBxehfPoqKWBWl},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r0rfxt\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-keys4l\",children:collection22?.map(({id:idBm_hlohpK,p9YpBgqsf:p9YpBgqsfBm_hlohpK,ShqM3lrS3:ShqM3lrS3Bm_hlohpK,tbtNVVXli:tbtNVVXliBm_hlohpK},index22)=>{tbtNVVXliBm_hlohpK??=\"\";ShqM3lrS3Bm_hlohpK??=\"\";p9YpBgqsfBm_hlohpK??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Bm_hlohpK-${idBm_hlohpK}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p9YpBgqsf:p9YpBgqsfBm_hlohpK},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ks4gn3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:314,width:\"332px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rec2jf-container\",\"data-framer-name\":\"Mobile Card\",inComponentSlot:true,name:\"Mobile Card\",nodeId:\"E97tl9WFB\",rendersWithMotion:true,scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(PageResourcesArticleCard,{G7LB0ZfMs:toResponsiveImage(hRHUXUylpfPoqKWBWl),GufhpoTXH:true,height:\"100%\",id:\"E97tl9WFB\",JixAg97nj:tbtNVVXliBm_hlohpK,layoutId:\"E97tl9WFB\",name:\"Mobile Card\",owyJ8Ptas:A2fPVhN9yfPoqKWBWl,style:{height:\"100%\",width:\"100%\"},variant:\"sthrKP2OC\",width:\"100%\",YoH4tvKtU:ShqM3lrS3Bm_hlohpK})})})})})},idBm_hlohpK);})})})})},idfPoqKWBWl);})})})})})],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-17vupw7\",\"data-framer-name\":\"Bottom Section\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eq_fd0Xiq:{y:(componentViewport?.y||0)+0+114+0+1138.4+0+0},ZKxMwaUmB:{y:(componentViewport?.y||0)+0+114+0+1454.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+114+0+1816.2+0+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-shumsi-container\",id:\"shumsi\",nodeId:\"CRlRO7cK6\",scopeId:\"jtvrOqtz2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eq_fd0Xiq:{variant:\"uOhEtef1y\"},yOkwb38_s:{variant:\"UQb7Jxzcq\"},ZKxMwaUmB:{variant:\"iBTfcf5lK\"}},children:/*#__PURE__*/_jsx(LayoutsCTABanner,{height:\"100%\",id:\"CRlRO7cK6\",layoutId:\"CRlRO7cK6\",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-1hanl7h\"),\"data-framer-portal-id\":\"shumsi\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"jcpSzBTpH\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1dpkfbr-container\"),\"data-framer-portal-id\":\"shumsi\",inComponentSlot:true,nodeId:\"qbR2NlSD4\",rendersWithMotion:true,scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eq_fd0Xiq:{variant:\"h5kMWrv2l\"},yOkwb38_s:{variant:\"LQ511RkOY\"},ZKxMwaUmB:{variant:\"qhzOjsqvj\"}},children:/*#__PURE__*/_jsx(Modal,{height:\"100%\",id:\"qbR2NlSD4\",layoutId:\"qbR2NlSD4\",M6hfBDwcn:M6hfBDwcn1wnntms({overlay:overlay1}),style:{height:\"100%\",width:\"100%\"},variant:\"UBSKp_MgN\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-t6htqs\"),\"data-framer-portal-id\":\"shumsi\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eq_fd0Xiq:{width:\"322px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"1360px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-snlsq6-container\",inComponentSlot:true,nodeId:\"cgt0fmEFb\",rendersWithMotion:true,scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eq_fd0Xiq:{variant:\"PPGwzYO1M\"},yOkwb38_s:{variant:\"OilJjnHnd\"},ZKxMwaUmB:{variant:\"giUkdhtKV\"}},children:/*#__PURE__*/_jsx(LayoutsTrustedBy,{height:\"100%\",id:\"cgt0fmEFb\",layoutId:\"cgt0fmEFb\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"NO8vNd3bL\",width:\"100%\"})})})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eq_fd0Xiq:{y:(componentViewport?.y||0)+0+114+0+1138.4+0+800},ZKxMwaUmB:{y:(componentViewport?.y||0)+0+114+0+1454.4+0+800}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:518,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+114+0+1816.2+0+800,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mf2y2s-container\",nodeId:\"ADl63qEYQ\",scopeId:\"jtvrOqtz2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eq_fd0Xiq:{variant:\"Q6a6USpm_\"},ZKxMwaUmB:{variant:\"z180CeSS7\"}},children:/*#__PURE__*/_jsx(LayoutsFooter,{height:\"100%\",id:\"ADl63qEYQ\",layoutId:\"ADl63qEYQ\",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-xp0Ey.framer-1dftly2, .framer-xp0Ey .framer-1dftly2 { display: block; }\",\".framer-xp0Ey.framer-2fdpx8 { align-content: center; align-items: center; 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: hidden; padding: 0px; position: relative; width: 1920px; }\",\".framer-xp0Ey .framer-1xpov9a-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-xp0Ey.framer-x7z92v, .framer-xp0Ey.framer-1hanl7h { background-color: rgba(21, 22, 25, 0.6); inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-xp0Ey.framer-10dw5z6-container, .framer-xp0Ey.framer-1dpkfbr-container { bottom: 0px; flex: none; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-xp0Ey .framer-1pqvbjx { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xp0Ey .framer-1ikcgs1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-xp0Ey .framer-pjz0lh { flex: none; height: 150vh; left: 0px; opacity: 0.4; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-xp0Ey .framer-17ixppx { bottom: -200px; flex: none; left: -300px; overflow: hidden; position: absolute; right: -300px; top: -300px; z-index: 0; }\",\".framer-xp0Ey .framer-ovhk9z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xp0Ey .framer-s13jky { 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-xp0Ey .framer-pkd2ez { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-xp0Ey .framer-1oy6m6k, .framer-xp0Ey .framer-1v15f1f, .framer-xp0Ey .framer-6ngb4p, .framer-xp0Ey .framer-1kab57s, .framer-xp0Ey .framer-1ulcqz0, .framer-xp0Ey .framer-1uqrvmg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-xp0Ey .framer-b98wew { --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-xp0Ey .framer-1xuqywl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xp0Ey .framer-1dwxfxt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-xp0Ey .framer-125d0oj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 24px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-xp0Ey .framer-vrwn11-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-xp0Ey .framer-1pl6w0m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xp0Ey .framer-3qkv67 { 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: 92px 72px 140px 72px; position: relative; width: 100%; }\",\".framer-xp0Ey .framer-14rg752 { 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-xp0Ey .framer-w1f4d7 { --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-xp0Ey .framer-jikti0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; 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: 100px; width: 1px; z-index: 1; }\",\".framer-xp0Ey .framer-1gdvk2b, .framer-xp0Ey .framer-5fmco0, .framer-xp0Ey .framer-1roiynf { --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-xp0Ey .framer-nfhysv-container, .framer-xp0Ey .framer-shumsi-container, .framer-xp0Ey .framer-mf2y2s-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-xp0Ey .framer-ivflch { 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-xp0Ey .framer-nvp60j, .framer-xp0Ey .framer-qwvsgc { 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-xp0Ey .framer-xmwp4e, .framer-xp0Ey .framer-2kdllc { 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-xp0Ey .framer-1pdik23-container { flex: none; height: 414px; max-width: 565px; position: relative; width: 100%; }\",\".framer-xp0Ey .framer-1c4xrqo { 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-xp0Ey .framer-c3y9lg, .framer-xp0Ey .framer-3ndxjc, .framer-xp0Ey .framer-1sc7d7, .framer-xp0Ey .framer-77rs6i, .framer-xp0Ey .framer-641g8j, .framer-xp0Ey .framer-1ld3uk2, .framer-xp0Ey .framer-d8j8wv, .framer-xp0Ey .framer-180t6gj, .framer-xp0Ey .framer-g4fx24, .framer-xp0Ey .framer-nssidk, .framer-xp0Ey .framer-113duge, .framer-xp0Ey .framer-151wddr, .framer-xp0Ey .framer-1cmc7sh, .framer-xp0Ey .framer-aipbcx, .framer-xp0Ey .framer-zy8pq1, .framer-xp0Ey .framer-onxwr6, .framer-xp0Ey .framer-1qtxlhn, .framer-xp0Ey .framer-q8ilpx, .framer-xp0Ey .framer-x09h7k, .framer-xp0Ey .framer-1rfk0qc, .framer-xp0Ey .framer-e7uqat, .framer-xp0Ey .framer-u4v4ay, .framer-xp0Ey .framer-1r0rfxt, .framer-xp0Ey .framer-1ks4gn3 { 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-xp0Ey .framer-v652vf, .framer-xp0Ey .framer-ya45yo, .framer-xp0Ey .framer-w4fwf2, .framer-xp0Ey .framer-1ffd1va, .framer-xp0Ey .framer-uyv8yg, .framer-xp0Ey .framer-1dnsohf, .framer-xp0Ey .framer-1wbzzbz, .framer-xp0Ey .framer-6ibu4z, .framer-xp0Ey .framer-2s99be, .framer-xp0Ey .framer-1lypxty, .framer-xp0Ey .framer-8vwln6, .framer-xp0Ey .framer-keys4l { 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-xp0Ey .framer-1grpdax-container, .framer-xp0Ey .framer-5bewa6-container, .framer-xp0Ey .framer-srw61i-container, .framer-xp0Ey .framer-15fxtnc-container, .framer-xp0Ey .framer-f1mi76-container, .framer-xp0Ey .framer-oqvdxh-container { flex: none; height: 414px; position: relative; width: 565px; }\",\".framer-xp0Ey .framer-g18kja, .framer-xp0Ey .framer-w19wz1, .framer-xp0Ey .framer-o7w2ly, .framer-xp0Ey .framer-1bacxme, .framer-xp0Ey .framer-10bay6n { 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-xp0Ey .framer-3isu7f { 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-xp0Ey .framer-fcbpgy-container { flex: none; height: 314px; max-width: 332px; position: relative; width: 100%; }\",\".framer-xp0Ey .framer-18y17vs, .framer-xp0Ey .framer-1gt02w9, .framer-xp0Ey .framer-1ssq8d3, .framer-xp0Ey .framer-277w5y, .framer-xp0Ey .framer-ls4a7q, .framer-xp0Ey .framer-c35jnf { 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-xp0Ey .framer-gc5060-container, .framer-xp0Ey .framer-vm5n5i-container, .framer-xp0Ey .framer-1f3km7k-container, .framer-xp0Ey .framer-16c6juf-container, .framer-xp0Ey .framer-1bh41ka-container, .framer-xp0Ey .framer-rec2jf-container { flex: none; height: 314px; position: relative; width: 332px; }\",\".framer-xp0Ey .framer-17vupw7 { 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-xp0Ey.framer-t6htqs { 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-xp0Ey .framer-snlsq6-container { flex: 1 0 0px; height: auto; max-width: 1360px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xp0Ey.framer-2fdpx8, .framer-xp0Ey .framer-1pqvbjx, .framer-xp0Ey .framer-1ikcgs1, .framer-xp0Ey .framer-ovhk9z, .framer-xp0Ey .framer-s13jky, .framer-xp0Ey .framer-pkd2ez, .framer-xp0Ey .framer-1xuqywl, .framer-xp0Ey .framer-1dwxfxt, .framer-xp0Ey .framer-125d0oj, .framer-xp0Ey .framer-1pl6w0m, .framer-xp0Ey .framer-3qkv67, .framer-xp0Ey .framer-14rg752, .framer-xp0Ey .framer-jikti0, .framer-xp0Ey .framer-ivflch, .framer-xp0Ey .framer-1c4xrqo, .framer-xp0Ey .framer-c3y9lg, .framer-xp0Ey .framer-v652vf, .framer-xp0Ey .framer-3ndxjc, .framer-xp0Ey .framer-g18kja, .framer-xp0Ey .framer-1sc7d7, .framer-xp0Ey .framer-ya45yo, .framer-xp0Ey .framer-77rs6i, .framer-xp0Ey .framer-w19wz1, .framer-xp0Ey .framer-641g8j, .framer-xp0Ey .framer-w4fwf2, .framer-xp0Ey .framer-1ld3uk2, .framer-xp0Ey .framer-o7w2ly, .framer-xp0Ey .framer-d8j8wv, .framer-xp0Ey .framer-1ffd1va, .framer-xp0Ey .framer-180t6gj, .framer-xp0Ey .framer-1bacxme, .framer-xp0Ey .framer-g4fx24, .framer-xp0Ey .framer-uyv8yg, .framer-xp0Ey .framer-nssidk, .framer-xp0Ey .framer-10bay6n, .framer-xp0Ey .framer-113duge, .framer-xp0Ey .framer-1dnsohf, .framer-xp0Ey .framer-151wddr, .framer-xp0Ey .framer-3isu7f, .framer-xp0Ey .framer-18y17vs, .framer-xp0Ey .framer-1cmc7sh, .framer-xp0Ey .framer-1wbzzbz, .framer-xp0Ey .framer-aipbcx, .framer-xp0Ey .framer-1gt02w9, .framer-xp0Ey .framer-zy8pq1, .framer-xp0Ey .framer-6ibu4z, .framer-xp0Ey .framer-onxwr6, .framer-xp0Ey .framer-1ssq8d3, .framer-xp0Ey .framer-1qtxlhn, .framer-xp0Ey .framer-2s99be, .framer-xp0Ey .framer-q8ilpx, .framer-xp0Ey .framer-277w5y, .framer-xp0Ey .framer-x09h7k, .framer-xp0Ey .framer-1lypxty, .framer-xp0Ey .framer-1rfk0qc, .framer-xp0Ey .framer-ls4a7q, .framer-xp0Ey .framer-e7uqat, .framer-xp0Ey .framer-8vwln6, .framer-xp0Ey .framer-u4v4ay, .framer-xp0Ey .framer-c35jnf, .framer-xp0Ey .framer-1r0rfxt, .framer-xp0Ey .framer-keys4l, .framer-xp0Ey .framer-1ks4gn3, .framer-xp0Ey .framer-17vupw7, .framer-xp0Ey.framer-t6htqs { gap: 0px; } .framer-xp0Ey.framer-2fdpx8 > *, .framer-xp0Ey .framer-17vupw7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xp0Ey.framer-2fdpx8 > :first-child, .framer-xp0Ey .framer-1pqvbjx > :first-child, .framer-xp0Ey .framer-1ikcgs1 > :first-child, .framer-xp0Ey .framer-ovhk9z > :first-child, .framer-xp0Ey .framer-s13jky > :first-child, .framer-xp0Ey .framer-1pl6w0m > :first-child, .framer-xp0Ey .framer-3qkv67 > :first-child, .framer-xp0Ey .framer-jikti0 > :first-child, .framer-xp0Ey .framer-ivflch > :first-child, .framer-xp0Ey .framer-1c4xrqo > :first-child, .framer-xp0Ey .framer-v652vf > :first-child, .framer-xp0Ey .framer-g18kja > :first-child, .framer-xp0Ey .framer-ya45yo > :first-child, .framer-xp0Ey .framer-w19wz1 > :first-child, .framer-xp0Ey .framer-w4fwf2 > :first-child, .framer-xp0Ey .framer-o7w2ly > :first-child, .framer-xp0Ey .framer-1ffd1va > :first-child, .framer-xp0Ey .framer-1bacxme > :first-child, .framer-xp0Ey .framer-uyv8yg > :first-child, .framer-xp0Ey .framer-10bay6n > :first-child, .framer-xp0Ey .framer-1dnsohf > :first-child, .framer-xp0Ey .framer-3isu7f > :first-child, .framer-xp0Ey .framer-18y17vs > :first-child, .framer-xp0Ey .framer-1wbzzbz > :first-child, .framer-xp0Ey .framer-1gt02w9 > :first-child, .framer-xp0Ey .framer-6ibu4z > :first-child, .framer-xp0Ey .framer-1ssq8d3 > :first-child, .framer-xp0Ey .framer-2s99be > :first-child, .framer-xp0Ey .framer-277w5y > :first-child, .framer-xp0Ey .framer-1lypxty > :first-child, .framer-xp0Ey .framer-ls4a7q > :first-child, .framer-xp0Ey .framer-8vwln6 > :first-child, .framer-xp0Ey .framer-c35jnf > :first-child, .framer-xp0Ey .framer-keys4l > :first-child, .framer-xp0Ey .framer-17vupw7 > :first-child { margin-top: 0px; } .framer-xp0Ey.framer-2fdpx8 > :last-child, .framer-xp0Ey .framer-1pqvbjx > :last-child, .framer-xp0Ey .framer-1ikcgs1 > :last-child, .framer-xp0Ey .framer-ovhk9z > :last-child, .framer-xp0Ey .framer-s13jky > :last-child, .framer-xp0Ey .framer-1pl6w0m > :last-child, .framer-xp0Ey .framer-3qkv67 > :last-child, .framer-xp0Ey .framer-jikti0 > :last-child, .framer-xp0Ey .framer-ivflch > :last-child, .framer-xp0Ey .framer-1c4xrqo > :last-child, .framer-xp0Ey .framer-v652vf > :last-child, .framer-xp0Ey .framer-g18kja > :last-child, .framer-xp0Ey .framer-ya45yo > :last-child, .framer-xp0Ey .framer-w19wz1 > :last-child, .framer-xp0Ey .framer-w4fwf2 > :last-child, .framer-xp0Ey .framer-o7w2ly > :last-child, .framer-xp0Ey .framer-1ffd1va > :last-child, .framer-xp0Ey .framer-1bacxme > :last-child, .framer-xp0Ey .framer-uyv8yg > :last-child, .framer-xp0Ey .framer-10bay6n > :last-child, .framer-xp0Ey .framer-1dnsohf > :last-child, .framer-xp0Ey .framer-3isu7f > :last-child, .framer-xp0Ey .framer-18y17vs > :last-child, .framer-xp0Ey .framer-1wbzzbz > :last-child, .framer-xp0Ey .framer-1gt02w9 > :last-child, .framer-xp0Ey .framer-6ibu4z > :last-child, .framer-xp0Ey .framer-1ssq8d3 > :last-child, .framer-xp0Ey .framer-2s99be > :last-child, .framer-xp0Ey .framer-277w5y > :last-child, .framer-xp0Ey .framer-1lypxty > :last-child, .framer-xp0Ey .framer-ls4a7q > :last-child, .framer-xp0Ey .framer-8vwln6 > :last-child, .framer-xp0Ey .framer-c35jnf > :last-child, .framer-xp0Ey .framer-keys4l > :last-child, .framer-xp0Ey .framer-17vupw7 > :last-child { margin-bottom: 0px; } .framer-xp0Ey .framer-1pqvbjx > * { margin: 0px; margin-bottom: calc(280px / 2); margin-top: calc(280px / 2); } .framer-xp0Ey .framer-1ikcgs1 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-xp0Ey .framer-ovhk9z > *, .framer-xp0Ey .framer-1pl6w0m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xp0Ey .framer-s13jky > *, .framer-xp0Ey .framer-3qkv67 > *, .framer-xp0Ey .framer-3isu7f > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-xp0Ey .framer-pkd2ez > *, .framer-xp0Ey .framer-c3y9lg > *, .framer-xp0Ey .framer-3ndxjc > *, .framer-xp0Ey .framer-1sc7d7 > *, .framer-xp0Ey .framer-77rs6i > *, .framer-xp0Ey .framer-641g8j > *, .framer-xp0Ey .framer-1ld3uk2 > *, .framer-xp0Ey .framer-d8j8wv > *, .framer-xp0Ey .framer-180t6gj > *, .framer-xp0Ey .framer-g4fx24 > *, .framer-xp0Ey .framer-nssidk > *, .framer-xp0Ey .framer-113duge > *, .framer-xp0Ey .framer-151wddr > *, .framer-xp0Ey .framer-1cmc7sh > *, .framer-xp0Ey .framer-aipbcx > *, .framer-xp0Ey .framer-zy8pq1 > *, .framer-xp0Ey .framer-onxwr6 > *, .framer-xp0Ey .framer-1qtxlhn > *, .framer-xp0Ey .framer-q8ilpx > *, .framer-xp0Ey .framer-x09h7k > *, .framer-xp0Ey .framer-1rfk0qc > *, .framer-xp0Ey .framer-e7uqat > *, .framer-xp0Ey .framer-u4v4ay > *, .framer-xp0Ey .framer-1r0rfxt > *, .framer-xp0Ey .framer-1ks4gn3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xp0Ey .framer-pkd2ez > :first-child, .framer-xp0Ey .framer-1xuqywl > :first-child, .framer-xp0Ey .framer-1dwxfxt > :first-child, .framer-xp0Ey .framer-125d0oj > :first-child, .framer-xp0Ey .framer-14rg752 > :first-child, .framer-xp0Ey .framer-c3y9lg > :first-child, .framer-xp0Ey .framer-3ndxjc > :first-child, .framer-xp0Ey .framer-1sc7d7 > :first-child, .framer-xp0Ey .framer-77rs6i > :first-child, .framer-xp0Ey .framer-641g8j > :first-child, .framer-xp0Ey .framer-1ld3uk2 > :first-child, .framer-xp0Ey .framer-d8j8wv > :first-child, .framer-xp0Ey .framer-180t6gj > :first-child, .framer-xp0Ey .framer-g4fx24 > :first-child, .framer-xp0Ey .framer-nssidk > :first-child, .framer-xp0Ey .framer-113duge > :first-child, .framer-xp0Ey .framer-151wddr > :first-child, .framer-xp0Ey .framer-1cmc7sh > :first-child, .framer-xp0Ey .framer-aipbcx > :first-child, .framer-xp0Ey .framer-zy8pq1 > :first-child, .framer-xp0Ey .framer-onxwr6 > :first-child, .framer-xp0Ey .framer-1qtxlhn > :first-child, .framer-xp0Ey .framer-q8ilpx > :first-child, .framer-xp0Ey .framer-x09h7k > :first-child, .framer-xp0Ey .framer-1rfk0qc > :first-child, .framer-xp0Ey .framer-e7uqat > :first-child, .framer-xp0Ey .framer-u4v4ay > :first-child, .framer-xp0Ey .framer-1r0rfxt > :first-child, .framer-xp0Ey .framer-1ks4gn3 > :first-child, .framer-xp0Ey.framer-t6htqs > :first-child { margin-left: 0px; } .framer-xp0Ey .framer-pkd2ez > :last-child, .framer-xp0Ey .framer-1xuqywl > :last-child, .framer-xp0Ey .framer-1dwxfxt > :last-child, .framer-xp0Ey .framer-125d0oj > :last-child, .framer-xp0Ey .framer-14rg752 > :last-child, .framer-xp0Ey .framer-c3y9lg > :last-child, .framer-xp0Ey .framer-3ndxjc > :last-child, .framer-xp0Ey .framer-1sc7d7 > :last-child, .framer-xp0Ey .framer-77rs6i > :last-child, .framer-xp0Ey .framer-641g8j > :last-child, .framer-xp0Ey .framer-1ld3uk2 > :last-child, .framer-xp0Ey .framer-d8j8wv > :last-child, .framer-xp0Ey .framer-180t6gj > :last-child, .framer-xp0Ey .framer-g4fx24 > :last-child, .framer-xp0Ey .framer-nssidk > :last-child, .framer-xp0Ey .framer-113duge > :last-child, .framer-xp0Ey .framer-151wddr > :last-child, .framer-xp0Ey .framer-1cmc7sh > :last-child, .framer-xp0Ey .framer-aipbcx > :last-child, .framer-xp0Ey .framer-zy8pq1 > :last-child, .framer-xp0Ey .framer-onxwr6 > :last-child, .framer-xp0Ey .framer-1qtxlhn > :last-child, .framer-xp0Ey .framer-q8ilpx > :last-child, .framer-xp0Ey .framer-x09h7k > :last-child, .framer-xp0Ey .framer-1rfk0qc > :last-child, .framer-xp0Ey .framer-e7uqat > :last-child, .framer-xp0Ey .framer-u4v4ay > :last-child, .framer-xp0Ey .framer-1r0rfxt > :last-child, .framer-xp0Ey .framer-1ks4gn3 > :last-child, .framer-xp0Ey.framer-t6htqs > :last-child { margin-right: 0px; } .framer-xp0Ey .framer-1xuqywl > *, .framer-xp0Ey .framer-1dwxfxt > *, .framer-xp0Ey .framer-14rg752 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-xp0Ey .framer-125d0oj > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-xp0Ey .framer-jikti0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-xp0Ey .framer-ivflch > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-xp0Ey .framer-1c4xrqo > *, .framer-xp0Ey .framer-v652vf > *, .framer-xp0Ey .framer-g18kja > *, .framer-xp0Ey .framer-ya45yo > *, .framer-xp0Ey .framer-w19wz1 > *, .framer-xp0Ey .framer-w4fwf2 > *, .framer-xp0Ey .framer-o7w2ly > *, .framer-xp0Ey .framer-1ffd1va > *, .framer-xp0Ey .framer-1bacxme > *, .framer-xp0Ey .framer-uyv8yg > *, .framer-xp0Ey .framer-10bay6n > *, .framer-xp0Ey .framer-1dnsohf > *, .framer-xp0Ey .framer-18y17vs > *, .framer-xp0Ey .framer-1wbzzbz > *, .framer-xp0Ey .framer-1gt02w9 > *, .framer-xp0Ey .framer-6ibu4z > *, .framer-xp0Ey .framer-1ssq8d3 > *, .framer-xp0Ey .framer-2s99be > *, .framer-xp0Ey .framer-277w5y > *, .framer-xp0Ey .framer-1lypxty > *, .framer-xp0Ey .framer-ls4a7q > *, .framer-xp0Ey .framer-8vwln6 > *, .framer-xp0Ey .framer-c35jnf > *, .framer-xp0Ey .framer-keys4l > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-xp0Ey.framer-t6htqs > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css,\"@media (min-width: 1200px) and (max-width: 1919px) { .framer-xp0Ey.framer-2fdpx8 { width: 1200px; } .framer-xp0Ey .framer-17ixppx { left: 0px; right: 0px; top: 0px; } .framer-xp0Ey .framer-s13jky { padding: 0px 40px 0px 40px; } .framer-xp0Ey .framer-3qkv67 { padding: 92px 40px 140px 40px; } .framer-xp0Ey.framer-t6htqs { overflow: visible; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-xp0Ey.framer-2fdpx8 { width: 810px; } .framer-xp0Ey .framer-1pqvbjx { gap: 192px; } .framer-xp0Ey .framer-1ikcgs1 { gap: 64px; justify-content: flex-start; } .framer-xp0Ey .framer-ovhk9z { padding: 0px 40px 0px 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xp0Ey .framer-1pqvbjx, .framer-xp0Ey .framer-1ikcgs1 { gap: 0px; } .framer-xp0Ey .framer-1pqvbjx > * { margin: 0px; margin-bottom: calc(192px / 2); margin-top: calc(192px / 2); } .framer-xp0Ey .framer-1pqvbjx > :first-child, .framer-xp0Ey .framer-1ikcgs1 > :first-child { margin-top: 0px; } .framer-xp0Ey .framer-1pqvbjx > :last-child, .framer-xp0Ey .framer-1ikcgs1 > :last-child { margin-bottom: 0px; } .framer-xp0Ey .framer-1ikcgs1 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }}\",\"@media (max-width: 809px) { .framer-xp0Ey.framer-2fdpx8 { width: 390px; } .framer-xp0Ey .framer-1pqvbjx { gap: 120px; } .framer-xp0Ey .framer-1ikcgs1 { gap: 72px; padding: 72px 0px 0px 0px; } .framer-xp0Ey .framer-s13jky { padding: 0px 24px 0px 24px; } .framer-xp0Ey .framer-1xuqywl { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; } .framer-xp0Ey .framer-3qkv67 { padding: 48px 24px 48px 24px; } .framer-xp0Ey .framer-w1f4d7 { --framer-paragraph-spacing: 16px; } .framer-xp0Ey.framer-t6htqs { bottom: 229px; width: 322px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xp0Ey .framer-1pqvbjx, .framer-xp0Ey .framer-1ikcgs1, .framer-xp0Ey .framer-1xuqywl { gap: 0px; } .framer-xp0Ey .framer-1pqvbjx > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-xp0Ey .framer-1pqvbjx > :first-child, .framer-xp0Ey .framer-1ikcgs1 > :first-child, .framer-xp0Ey .framer-1xuqywl > :first-child { margin-top: 0px; } .framer-xp0Ey .framer-1pqvbjx > :last-child, .framer-xp0Ey .framer-1ikcgs1 > :last-child, .framer-xp0Ey .framer-1xuqywl > :last-child { margin-bottom: 0px; } .framer-xp0Ey .framer-1ikcgs1 > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-xp0Ey .framer-1xuqywl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8048\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yOkwb38_s\":{\"layout\":[\"fixed\",\"auto\"]},\"ZKxMwaUmB\":{\"layout\":[\"fixed\",\"auto\"]},\"eq_fd0Xiq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerjtvrOqtz2=withCSS(Component,css,\"framer-xp0Ey\");export default FramerjtvrOqtz2;FramerjtvrOqtz2.displayName=\"Cyber Explained\";FramerjtvrOqtz2.defaultProps={height:8048,width:1920};addFonts(FramerjtvrOqtz2,[{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,...ComponentsSocialShareFonts,...TableOfContentsFonts,...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),...componentPresets.fonts?.[\"wD9g8qYiN\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"wD9g8qYiN\"]):[],...componentPresets.fonts?.[\"ofvyE1vaC\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"ofvyE1vaC\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjtvrOqtz2\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"8048\",\"framerIntrinsicWidth\":\"1920\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yOkwb38_s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZKxMwaUmB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eq_fd0Xiq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["i", "T", "TableOfContents", "props", "tocItems", "setTocItems", "ye", "activeSectionId", "setActiveSectionId", "canvaDisplay", "setCanvaDisplay", "ue", "headings", "items", "heading", "index", "id", "onScroll", "found", "item", "bounding", "window", "handleScrollToSection", "u", "p", "addPropertyControls", "ControlType", "LayoutsNavigationFonts", "getFonts", "Cz3nnWovF_default", "ModalFonts", "YLBczhZpP_default", "ComponentsSocialShareFonts", "C_aNL712K_default", "RichTextWithClassw1f4d7", "withCodeBoundaryForOverrides", "RichText", "withClass", "TableOfContentsFonts", "TableOfContents", "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", "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", "PW_MPhsVc_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "vxEfKhzbr", "QUaX6yBmD", "pfDeRXG4a", "vE1zTaqph", "FFG_2yfJS", "hRHUXUylpHusVE6rxT", "A2fPVhN9yHusVE6rxT", "tbtNVVXlivGbkkpCpz", "ShqM3lrS3vGbkkpCpz", "p9YpBgqsfvGbkkpCpz", "idvGbkkpCpz", "v0qVdBxehHusVE6rxT", "idHusVE6rxT", "v0qVdBxehxPxo7tAz9", "hRHUXUylpOhhMEHwZ0", "A2fPVhN9yOhhMEHwZ0", "tbtNVVXliBBM37m0bO", "ShqM3lrS3BBM37m0bO", "p9YpBgqsfBBM37m0bO", "idBBM37m0bO", "v0qVdBxehOhhMEHwZ0", "idOhhMEHwZ0", "hRHUXUylpkXf8aCJv5", "A2fPVhN9ykXf8aCJv5", "tbtNVVXliMJ2SJ0SBn", "ShqM3lrS3MJ2SJ0SBn", "p9YpBgqsfMJ2SJ0SBn", "idMJ2SJ0SBn", "v0qVdBxehkXf8aCJv5", "idkXf8aCJv5", "hRHUXUylpPk_o1jcGM", "A2fPVhN9yPk_o1jcGM", "tbtNVVXliFflN20bnp", "ShqM3lrS3FflN20bnp", "p9YpBgqsfFflN20bnp", "idFflN20bnp", "v0qVdBxehPk_o1jcGM", "idPk_o1jcGM", "hRHUXUylpcT126myHl", "A2fPVhN9ycT126myHl", "tbtNVVXligWBT3WWOb", "ShqM3lrS3gWBT3WWOb", "p9YpBgqsfgWBT3WWOb", "idgWBT3WWOb", "v0qVdBxehcT126myHl", "idcT126myHl", "hRHUXUylpr1oDNWHav", "A2fPVhN9yr1oDNWHav", "tbtNVVXliJSq2UH6bL", "ShqM3lrS3JSq2UH6bL", "p9YpBgqsfJSq2UH6bL", "idJSq2UH6bL", "v0qVdBxehr1oDNWHav", "idr1oDNWHav", "hRHUXUylpKxJSsDzzK", "A2fPVhN9yKxJSsDzzK", "tbtNVVXlijHunRQgFu", "ShqM3lrS3jHunRQgFu", "p9YpBgqsfjHunRQgFu", "idjHunRQgFu", "v0qVdBxehKxJSsDzzK", "idKxJSsDzzK", "hRHUXUylpUMYACYcPr", "A2fPVhN9yUMYACYcPr", "tbtNVVXlizVd3fQi8_", "ShqM3lrS3zVd3fQi8_", "p9YpBgqsfzVd3fQi8_", "idzVd3fQi8_", "v0qVdBxehUMYACYcPr", "idUMYACYcPr", "hRHUXUylpD9Dqw3lRm", "A2fPVhN9yD9Dqw3lRm", "tbtNVVXliU0cJmGG89", "ShqM3lrS3U0cJmGG89", "p9YpBgqsfU0cJmGG89", "idU0cJmGG89", "v0qVdBxehD9Dqw3lRm", "idD9Dqw3lRm", "hRHUXUylpqOIX0Mdxy", "A2fPVhN9yqOIX0Mdxy", "tbtNVVXlitaTMAtMsu", "ShqM3lrS3taTMAtMsu", "p9YpBgqsftaTMAtMsu", "idtaTMAtMsu", "v0qVdBxehqOIX0Mdxy", "idqOIX0Mdxy", "hRHUXUylpXr9bFuUoI", "A2fPVhN9yXr9bFuUoI", "tbtNVVXlihQ1Bh7iRd", "ShqM3lrS3hQ1Bh7iRd", "p9YpBgqsfhQ1Bh7iRd", "idhQ1Bh7iRd", "v0qVdBxehXr9bFuUoI", "idXr9bFuUoI", "hRHUXUylpfPoqKWBWl", "A2fPVhN9yfPoqKWBWl", "tbtNVVXliBm_hlohpK", "ShqM3lrS3Bm_hlohpK", "p9YpBgqsfBm_hlohpK", "idBm_hlohpK", "v0qVdBxehfPoqKWBWl", "idfPoqKWBWl", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "V6uV8FYGE3bnx0g", "overlay", "loadMore", "args", "M6hfBDwcn1wnntms", "rzFX3elyE3bnx0g", "scopingClassNames", "cx", "activeLocaleCode", "useLocaleCode", "textContent", "isDisplayed", "isDisplayed1", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "l", "ComponentViewportProvider", "Container", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "getLoadingLazyAtYPosition", "Image2", "Link", "ComponentPresetsProvider", "ChildrenCanSuspend", "YHdMp3byK_default", "wXNrrxR_w_default", "collection1", "paginationInfo", "collection", "index1", "PathVariablesContext", "index", "collection3", "paginationInfo1", "loadMore1", "collection2", "index3", "index2", "collection5", "paginationInfo2", "loadMore2", "collection4", "index5", "index4", "collection7", "paginationInfo3", "loadMore3", "collection6", "index7", "index6", "collection9", "paginationInfo4", "loadMore4", "collection8", "index9", "index8", "collection11", "paginationInfo5", "loadMore5", "collection10", "index11", "index10", "collection13", "paginationInfo6", "loadMore6", "collection12", "index13", "index12", "collection15", "paginationInfo7", "loadMore7", "collection14", "index15", "index14", "collection17", "paginationInfo8", "loadMore8", "collection16", "index17", "index16", "collection19", "paginationInfo9", "loadMore9", "collection18", "index19", "index18", "collection21", "paginationInfo10", "loadMore10", "collection20", "index21", "index20", "collection23", "paginationInfo11", "loadMore11", "collection22", "index23", "index22", "overlay1", "css", "FramerjtvrOqtz2", "withCSS", "jtvrOqtz2_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
