{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/tZ4BBLxqep75fqWPDP07/n9RyB3ifxeSooe94Lkru/Scroll_Progress.js", "ssg:https://framerusercontent.com/modules/jYRIJttsILwZLdkC0wtQ/Hxdr3UTdtfUg8Ac6YHoV/Share_Article.js", "ssg:https://framerusercontent.com/modules/g6ikCqr9puopgiN1UENs/2CpJH0CFMyFl9SbqPeFC/Gjn6ePvso.js"],
  "sourcesContent": ["/*\n\nScroll Progress for Framer\nMIT License\n\n// The MIT License\n\nCopyright (c) 2023 Yann Bellot, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n*/ import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{motion,useScroll}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";export default function Scroll_Progress(props){const{scrollYProgress}=useScroll();let progressOrigin;if(props.Origin==\"l\"){progressOrigin=\"0%\";}if(props.Origin==\"c\"){progressOrigin=\"50%\";}if(props.Origin==\"r\"){progressOrigin=\"100%\";}if(props.progressPosition==true){return /*#__PURE__*/ _jsx(_Fragment,{children:/*#__PURE__*/ _jsx(motion.div,{style:{position:\"fixed\",top:props.progressMargin,left:\"0\",right:\"0\",height:props.progressHeight+\"px\",width:\"100%\",background:props.backgroundColor,scaleX:scrollYProgress,transformOrigin:progressOrigin}})});}if(props.progressPosition==false){return /*#__PURE__*/ _jsx(_Fragment,{children:/*#__PURE__*/ _jsx(motion.div,{style:{position:\"fixed\",bottom:props.progressMargin,left:\"0\",right:\"0\",height:props.progressHeight+\"px\",width:\"100%\",background:props.backgroundColor,scaleX:scrollYProgress,transformOrigin:progressOrigin}})});}};addPropertyControls(Scroll_Progress,{backgroundColor:{type:ControlType.Color,defaultValue:\"#00F\"},progressHeight:{type:ControlType.Number,title:\"Height\",defaultValue:10,min:0,step:1,displayStepper:true},progressPosition:{type:ControlType.Boolean,title:\"Recycle\",defaultValue:true,enabledTitle:\"Top\",disabledTitle:\"Bottom\"},progressMargin:{type:ControlType.Number,title:\"Margin\",defaultValue:0,min:0,step:1,displayStepper:true},Origin:{type:ControlType.Enum,defaultValue:\"l\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"l\",\"c\",\"r\"],optionTitles:[\"Left\",\"Center\",\"Right\"]}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Scroll_Progress\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Scroll_Progress.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";export function Twitter_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title)// Set the page title after component mounts\n;},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://twitter.com/intent/tweet?text=${encodeURIComponent(`Check out this insightful blog post: ${pageTitle}. Read it here:`)}&url=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}`);}});};}export function LinkedIn_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title);},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://www.linkedin.com/shareArticle?mini=true&url=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}&title=${encodeURIComponent(pageTitle)}&source=framer.com`);},style:{...props.style,cursor:\"pointer\"}});};}export function Facebook_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title);},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}&quote=${encodeURIComponent(`Check out this awesome site \"${pageTitle}\".`)}`);}});};}export function Email_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title);},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;const subject=encodeURIComponent(`Check out this link: ${pageTitle}`);const body=encodeURIComponent(`Hi,\n\nI wanted to share this link with you: ${(_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href}`);window.open(`mailto:?subject=${subject}&body=${body}`);}});};}export function Clipboard_Share(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{const textField=document.createElement(\"textarea\");textField.innerText=window.location.href;document.body.appendChild(textField);textField.select();document.execCommand(\"copy\");textField.remove();alert(\"URL copied to clipboard!\");}});};}export function Whatsapp_Share(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://api.whatsapp.com/send?text=${encodeURIComponent(`Check out this link: ${(_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href}`)}`);}});};}export function Tumblr_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title);},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://www.tumblr.com/widgets/share/tool?canonicalUrl=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}&title=${encodeURIComponent(pageTitle)}`);}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"Email_Share\":{\"type\":\"reactHoc\",\"name\":\"Email_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"LinkedIn_Share\":{\"type\":\"reactHoc\",\"name\":\"LinkedIn_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Facebook_Share\":{\"type\":\"reactHoc\",\"name\":\"Facebook_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Twitter_Share\":{\"type\":\"reactHoc\",\"name\":\"Twitter_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Whatsapp_Share\":{\"type\":\"reactHoc\",\"name\":\"Whatsapp_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Clipboard_Share\":{\"type\":\"reactHoc\",\"name\":\"Clipboard_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Tumblr_Share\":{\"type\":\"reactHoc\",\"name\":\"Tumblr_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Share_Article.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Scroll_Progress from\"https://framerusercontent.com/modules/tZ4BBLxqep75fqWPDP07/n9RyB3ifxeSooe94Lkru/Scroll_Progress.js\";import NavigationNavigationDesktop from\"#framer/local/canvasComponent/aY7U7qgIT/aY7U7qgIT.js\";import NavigationNavigationMobileOpen from\"#framer/local/canvasComponent/HlXwoBHVW/HlXwoBHVW.js\";import NewsCard from\"#framer/local/canvasComponent/kE6CFowlr/kE6CFowlr.js\";import NavigationNavigationMobileClosed from\"#framer/local/canvasComponent/QeOYb5IMX/QeOYb5IMX.js\";import TextLink from\"#framer/local/canvasComponent/RRkfDyZij/RRkfDyZij.js\";import FooterFooter from\"#framer/local/canvasComponent/Xcfy55KEf/Xcfy55KEf.js\";import EnaLogo from\"#framer/local/canvasComponent/zLod6FAMt/zLod6FAMt.js\";import{Clipboard_Share}from\"#framer/local/codeFile/gJxFqd8/Share_Article.js\";import News from\"#framer/local/collection/vaF7lXotP/vaF7lXotP.js\";import*as sharedStyle1 from\"#framer/local/css/FzAGLwn1W/FzAGLwn1W.js\";import*as sharedStyle3 from\"#framer/local/css/mE3qYDPim/mE3qYDPim.js\";import*as sharedStyle6 from\"#framer/local/css/NYRlQvDJ2/NYRlQvDJ2.js\";import*as sharedStyle2 from\"#framer/local/css/S68JOAEbj/S68JOAEbj.js\";import*as sharedStyle from\"#framer/local/css/tgGHheGwX/tgGHheGwX.js\";import*as sharedStyle4 from\"#framer/local/css/u004vSsEl/u004vSsEl.js\";import*as sharedStyle5 from\"#framer/local/css/uph92Uc35/uph92Uc35.js\";import metadataProvider from\"#framer/local/webPageMetadata/Gjn6ePvso/Gjn6ePvso.js\";const Scroll_ProgressFonts=getFonts(Scroll_Progress);const NavigationNavigationDesktopFonts=getFonts(NavigationNavigationDesktop);const NavigationNavigationMobileClosedFonts=getFonts(NavigationNavigationMobileClosed);const NavigationNavigationMobileOpenFonts=getFonts(NavigationNavigationMobileOpen);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const TextLinkFonts=getFonts(TextLink);const MotionDivClipboard_Share8h6mpd=withCodeBoundaryForOverrides(motion.div,{nodeId:\"e6zQdve69\",override:Clipboard_Share,scopeId:\"Gjn6ePvso\"});const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ContainerWithFX=withFX(Container);const NewsCardFonts=getFonts(NewsCard);const MotionDivWithFX=withFX(motion.div);const FooterFooterFonts=getFonts(FooterFooter);const EnaLogoFonts=getFonts(EnaLogo);const breakpoints={ifnJut1hB:\"(min-width: 1200px)\",xYdpOLWaq:\"(min-width: 810px) and (max-width: 1199px)\",Z7XusiK94:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-lDpGA\";const variantClassNames={ifnJut1hB:\"framer-v-17s81c1\",xYdpOLWaq:\"framer-v-di3f4q\",Z7XusiK94:\"framer-v-1fzf338\"};const transition1={delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};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 transition2={delay:1.5,duration:1,ease:[.16,1,.3,1],type:\"tween\"};const animation3={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:22};const animation5={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition3={delay:.05,duration:1,ease:[.12,.23,0,.96],type:\"tween\"};const textEffect={effect:animation5,repeat:false,startDelay:.9,threshold:0,tokenization:\"word\",transition:transition3,trigger:\"onInView\",type:\"appear\"};const transition4={delay:1,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const textEffect1={effect:animation5,repeat:false,startDelay:.2,threshold:0,tokenization:\"word\",transition:transition3,trigger:\"onInView\",type:\"appear\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition5={delay:.2,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const transition6={delay:.4,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition7={delay:.5,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const transition8={delay:.6,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const transition9={delay:.7,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ifnJut1hB\",Phone:\"Z7XusiK94\",Tablet:\"xYdpOLWaq\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ifnJut1hB\"};};const cursor={alignment:\"start\",component:EnaLogo,offset:{x:15,y:-15},placement:\"top\",variant:\"jctk7DScp\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"Gjn6ePvso\",data:News,type:\"Collection\"},select:[{collection:\"Gjn6ePvso\",name:\"zfBlaWI2A\",type:\"Identifier\"},{collection:\"Gjn6ePvso\",name:\"qYQeV8gsh\",type:\"Identifier\"},{collection:\"Gjn6ePvso\",name:\"hxZ6KwHJ9\",type:\"Identifier\"},{collection:\"Gjn6ePvso\",name:\"uMYUtPsPI\",type:\"Identifier\"},{collection:\"Gjn6ePvso\",name:\"CKpLENRDa\",type:\"Identifier\"},{collection:\"Gjn6ePvso\",name:\"kk6K00rhM\",type:\"Identifier\"},{collection:\"Gjn6ePvso\",name:\"tG79kjzNY\",type:\"Identifier\"},{collection:\"Gjn6ePvso\",name:\"LXrHhpPix\",type:\"Identifier\"},{collection:\"Gjn6ePvso\",name:\"l6kl4RH6P\",type:\"Identifier\"},{collection:\"Gjn6ePvso\",name:\"CMKSwGq_3\",type:\"Identifier\"},{collection:\"Gjn6ePvso\",name:\"q91cy4DTn\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"Gjn6ePvso\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,CKpLENRDa=getFromCurrentRouteData(\"CKpLENRDa\")??\"\",zfBlaWI2A=getFromCurrentRouteData(\"zfBlaWI2A\")??\"\",uMYUtPsPI=getFromCurrentRouteData(\"uMYUtPsPI\"),tG79kjzNY=getFromCurrentRouteData(\"tG79kjzNY\")??\"\",qYQeV8gsh=getFromCurrentRouteData(\"qYQeV8gsh\")??\"\",hxZ6KwHJ9=getFromCurrentRouteData(\"hxZ6KwHJ9\")??\"\",kk6K00rhM=getFromCurrentRouteData(\"kk6K00rhM\")??\"\",luYbSmIYUB5r6jd_N_,ggXTdKemlB5r6jd_N_,qYQeV8gshB5r6jd_N_,CKpLENRDaB5r6jd_N_,zfBlaWI2AB5r6jd_N_,idB5r6jd_N_,LXrHhpPix=getFromCurrentRouteData(\"LXrHhpPix\")??0,luYbSmIYUGxGnJdgTH,ggXTdKemlGxGnJdgTH,qYQeV8gshGxGnJdgTH,CKpLENRDaGxGnJdgTH,zfBlaWI2AGxGnJdgTH,idGxGnJdgTH,l6kl4RH6P=getFromCurrentRouteData(\"l6kl4RH6P\")??0,luYbSmIYUzXmTBiluf,ggXTdKemlzXmTBiluf,qYQeV8gshzXmTBiluf,CKpLENRDazXmTBiluf,zfBlaWI2AzXmTBiluf,idzXmTBiluf,CMKSwGq_3=getFromCurrentRouteData(\"CMKSwGq_3\")??0,luYbSmIYUBIVkKa6bq,ggXTdKemlBIVkKa6bq,qYQeV8gshBIVkKa6bq,CKpLENRDaBIVkKa6bq,zfBlaWI2ABIVkKa6bq,idBIVkKa6bq,q91cy4DTn=getFromCurrentRouteData(\"q91cy4DTn\")??0,luYbSmIYUh10gknwsQ,ggXTdKemlh10gknwsQ,qYQeV8gshh10gknwsQ,CKpLENRDah10gknwsQ,zfBlaWI2Ah10gknwsQ,idh10gknwsQ,luYbSmIYUsRFU_w5Ul,ggXTdKemlsRFU_w5Ul,qYQeV8gshsRFU_w5Ul,CKpLENRDasRFU_w5Ul,zfBlaWI2AsRFU_w5Ul,idsRFU_w5Ul,...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 EHMhKGDpT3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const wCQM1JsQO1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Z7XusiK94\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Z7XusiK94\")return true;return false;};const elementId=useRouteElementId(\"tBoX32rh3\");const ref2=React.useRef(null);const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"xYdpOLWaq\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"xYdpOLWaq\")return true;return false;};const elementId1=useRouteElementId(\"LdkA2u4wZ\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({\"1dtjyus\":cursor});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ifnJut1hB\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-17s81c1\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qqkdtf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"S9tDTxDry\",scopeId:\"Gjn6ePvso\",children:/*#__PURE__*/_jsx(Scroll_Progress,{backgroundColor:\"rgb(23, 23, 23)\",height:\"100%\",id:\"S9tDTxDry\",layoutId:\"S9tDTxDry\",Origin:\"l\",progressHeight:2,progressMargin:0,progressPosition:true,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dkwgus-container hidden-1fzf338\",layoutScroll:true,nodeId:\"qhPabVR2n\",scopeId:\"Gjn6ePvso\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYdpOLWaq:{variant:\"YH7bj33Bn\"}},children:/*#__PURE__*/_jsx(NavigationNavigationDesktop,{height:\"100%\",id:\"qhPabVR2n\",layoutId:\"qhPabVR2n\",style:{width:\"100%\"},variant:\"vm6SGQ0VB\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7XusiK94:{height:58,width:componentViewport?.width||\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-t5ibjx-container hidden-17s81c1 hidden-di3f4q\",\"data-framer-name\":\"Navigation Mobile\",id:\"t5ibjx\",layoutScroll:true,name:\"Navigation Mobile\",nodeId:\"XFwdZ6Gb_\",scopeId:\"Gjn6ePvso\",children:[/*#__PURE__*/_jsx(NavigationNavigationMobileClosed,{EHMhKGDpT:EHMhKGDpT3bnx0g({overlay}),height:\"100%\",id:\"XFwdZ6Gb_\",layoutId:\"XFwdZ6Gb_\",name:\"Navigation Mobile\",style:{width:\"100%\"},variant:overlay.visible?\"RaOGEbZq9\":\"WO5xWIs5f\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-reioba\"),\"data-framer-portal-id\":\"t5ibjx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"ozim3a5MO\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation1,className:cx(scopingClassNames,\"framer-uyc35d-container\"),\"data-framer-portal-id\":\"t5ibjx\",exit:animation,inComponentSlot:true,initial:animation2,nodeId:\"RkYZjMfbh\",rendersWithMotion:true,scopeId:\"Gjn6ePvso\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(NavigationNavigationMobileOpen,{height:\"100%\",id:\"RkYZjMfbh\",layoutId:\"RkYZjMfbh\",style:{height:\"100%\",width:\"100%\"},wCQM1JsQO:wCQM1JsQO1wnntms({overlay}),width:\"100%\"})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1sge4iv\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-tugpbl\",\"data-framer-name\":\"Section Article\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iv4erd\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6b6skh\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fcsu83\",\"data-framer-name\":\"Publisher\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7z0e3a\",\"data-styles-preset\":\"tgGHheGwX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Awwwards\"})}),className:\"framer-1eh7gb3\",\"data-framer-appear-id\":\"1eh7gb3\",fonts:[\"Inter\"],initial:animation4,optimized:true,text:CKpLENRDa,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-u3eri6\",\"data-styles-preset\":\"FzAGLwn1W\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"New project launch\"})}),className:\"framer-1s0wllq\",effect:textEffect,fonts:[\"Inter\"],text:zfBlaWI2A,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation6,background:{alt:\"\",fit:\"fill\"},className:\"framer-eixsmj\",\"data-framer-appear-id\":\"eixsmj\",\"data-framer-name\":\"Container\",initial:animation7,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7XusiK94:{background:{alt:\"\",fit:\"fill\",pixelHeight:5152,pixelWidth:7728,sizes:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,...toResponsiveImage(uMYUtPsPI)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:5152,pixelWidth:7728,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(uMYUtPsPI)},className:\"framer-1aiq98q\",\"data-framer-name\":\"Header Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1427epi\",\"data-framer-name\":\"Article\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yprpii\",\"data-framer-name\":\"Sticky - Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xyrqmu\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o04fr3\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lf63h4\",\"data-styles-preset\":\"S68JOAEbj\",children:\"By\"})}),className:\"framer-1xjhv85\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7ssc7y\",\"data-styles-preset\":\"mE3qYDPim\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Mark Welling, Partner\"})}),className:\"framer-1462iue\",fonts:[\"Inter\"],text:tG79kjzNY,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4f0oij\",\"data-framer-name\":\"Date & Time\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lf63h4\",\"data-styles-preset\":\"S68JOAEbj\",children:\"24.11.24\"})}),className:\"framer-fd69l\",fonts:[\"Inter\"],text:qYQeV8gsh,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lf63h4\",\"data-styles-preset\":\"S68JOAEbj\",children:\"/\"})}),className:\"framer-1rzic0b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lf63h4\",\"data-styles-preset\":\"S68JOAEbj\",children:\"5 min.\"})}),className:\"framer-ztj812\",fonts:[\"Inter\"],text:hxZ6KwHJ9,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(MotionDivClipboard_Share8h6mpd,{className:\"framer-8h6mpd\",\"data-framer-name\":\"Code Override (Share Button)\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ie6czw-container\",nodeId:\"FJJBWPBHD\",rendersWithMotion:true,scopeId:\"Gjn6ePvso\",children:/*#__PURE__*/_jsx(TextLink,{aPy89ItM2:\"Share\",height:\"100%\",IBYcjioAb:\"rgb(0, 0, 0)\",id:\"FJJBWPBHD\",layoutId:\"FJJBWPBHD\",variant:\"NoL_9pC9I\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ga7h7o\",\"data-framer-name\":\"Article Right\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-zhokcc\",\"data-framer-name\":\"Content Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:kk6K00rhM,className:\"framer-9byvlv\",fonts:[\"Inter\"],stylesPresetsClassNames:{h1:\"framer-styles-preset-u3eri6\",h2:\"framer-styles-preset-1nh5yw1\",h3:\"framer-styles-preset-yynjf7\",p:\"framer-styles-preset-xwutq1\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-guoppk\",\"data-framer-name\":\"Section Read More\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19nzxbr\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nh5yw1\",\"data-styles-preset\":\"u004vSsEl\",children:\"Read more\"})}),className:\"framer-cwkwi4\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dziomz\",\"data-framer-name\":\"Link Wrapper\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"A6u7IhHdZ\"},implicitPathVariables:undefined},{href:{webPageId:\"A6u7IhHdZ\"},implicitPathVariables:undefined},{href:{webPageId:\"A6u7IhHdZ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8t47cd-container\",nodeId:\"dkojZfAQA\",rendersWithMotion:true,scopeId:\"Gjn6ePvso\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYdpOLWaq:{gI_7elcTO:resolvedLinks[1]},Z7XusiK94:{gI_7elcTO:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(TextLink,{aPy89ItM2:\"All Articles\",gI_7elcTO:resolvedLinks[0],height:\"100%\",IBYcjioAb:\"rgb(0, 0, 0)\",id:\"dkojZfAQA\",layoutId:\"dkojZfAQA\",variant:\"NoL_9pC9I\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5i1sn7\",\"data-framer-name\":\"News Row\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-txhfao\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"B5r6jd_N_\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"B5r6jd_N_\",name:\"luYbSmIYU\",type:\"Identifier\"},{collection:\"B5r6jd_N_\",name:\"ggXTdKeml\",type:\"Identifier\"},{collection:\"B5r6jd_N_\",name:\"qYQeV8gsh\",type:\"Identifier\"},{collection:\"B5r6jd_N_\",name:\"CKpLENRDa\",type:\"Identifier\"},{collection:\"B5r6jd_N_\",name:\"zfBlaWI2A\",type:\"Identifier\"},{collection:\"B5r6jd_N_\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"B5r6jd_N_\",name:\"vLSJHpvdP\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:LXrHhpPix},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({CKpLENRDa:CKpLENRDaB5r6jd_N_,ggXTdKeml:ggXTdKemlB5r6jd_N_,id:idB5r6jd_N_,luYbSmIYU:luYbSmIYUB5r6jd_N_,qYQeV8gsh:qYQeV8gshB5r6jd_N_,zfBlaWI2A:zfBlaWI2AB5r6jd_N_},index)=>{luYbSmIYUB5r6jd_N_??=\"\";qYQeV8gshB5r6jd_N_??=\"\";CKpLENRDaB5r6jd_N_??=\"\";zfBlaWI2AB5r6jd_N_??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`B5r6jd_N_-${idB5r6jd_N_}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{luYbSmIYU:luYbSmIYUB5r6jd_N_},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{luYbSmIYU:luYbSmIYUB5r6jd_N_},webPageId:\"Gjn6ePvso\"},motionChild:true,nodeId:\"jbO6G3EWq\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1uc4hlv framer-1m5qymg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYdpOLWaq:{width:`max((${componentViewport?.width||\"100vw\"} - 50px) / 2, 1px)`},Z7XusiK94:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:`max((${componentViewport?.width||\"100vw\"} - 70px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pdflc0-container\",nodeId:\"c9Q4nY2_A\",scopeId:\"Gjn6ePvso\",children:/*#__PURE__*/_jsx(NewsCard,{bsADRtJb9:toResponsiveImage(ggXTdKemlB5r6jd_N_),height:\"100%\",id:\"c9Q4nY2_A\",layoutId:\"c9Q4nY2_A\",P8bAm6u1h:CKpLENRDaB5r6jd_N_,RkXn3SxKd:qYQeV8gshB5r6jd_N_,style:{width:\"100%\"},UD1tmkBrN:zfBlaWI2AB5r6jd_N_,variant:\"h9ro8Nu6Y\",width:\"100%\"})})})})})})})},idB5r6jd_N_);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xj2ude\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"GxGnJdgTH\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"GxGnJdgTH\",name:\"luYbSmIYU\",type:\"Identifier\"},{collection:\"GxGnJdgTH\",name:\"ggXTdKeml\",type:\"Identifier\"},{collection:\"GxGnJdgTH\",name:\"qYQeV8gsh\",type:\"Identifier\"},{collection:\"GxGnJdgTH\",name:\"CKpLENRDa\",type:\"Identifier\"},{collection:\"GxGnJdgTH\",name:\"zfBlaWI2A\",type:\"Identifier\"},{collection:\"GxGnJdgTH\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"GxGnJdgTH\",name:\"vLSJHpvdP\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:l6kl4RH6P},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({CKpLENRDa:CKpLENRDaGxGnJdgTH,ggXTdKeml:ggXTdKemlGxGnJdgTH,id:idGxGnJdgTH,luYbSmIYU:luYbSmIYUGxGnJdgTH,qYQeV8gsh:qYQeV8gshGxGnJdgTH,zfBlaWI2A:zfBlaWI2AGxGnJdgTH},index1)=>{luYbSmIYUGxGnJdgTH??=\"\";qYQeV8gshGxGnJdgTH??=\"\";CKpLENRDaGxGnJdgTH??=\"\";zfBlaWI2AGxGnJdgTH??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`GxGnJdgTH-${idGxGnJdgTH}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{luYbSmIYU:luYbSmIYUGxGnJdgTH},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{luYbSmIYU:luYbSmIYUGxGnJdgTH},webPageId:\"Gjn6ePvso\"},motionChild:true,nodeId:\"df8w3O3Tc\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-12jbfdg framer-1m5qymg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYdpOLWaq:{width:`max((${componentViewport?.width||\"100vw\"} - 50px) / 2, 1px)`},Z7XusiK94:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:`max((${componentViewport?.width||\"100vw\"} - 70px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1da6d1h-container\",nodeId:\"kPpDjnWeT\",scopeId:\"Gjn6ePvso\",children:/*#__PURE__*/_jsx(NewsCard,{bsADRtJb9:toResponsiveImage(ggXTdKemlGxGnJdgTH),height:\"100%\",id:\"kPpDjnWeT\",layoutId:\"kPpDjnWeT\",P8bAm6u1h:CKpLENRDaGxGnJdgTH,RkXn3SxKd:qYQeV8gshGxGnJdgTH,style:{width:\"100%\"},UD1tmkBrN:zfBlaWI2AGxGnJdgTH,variant:\"h9ro8Nu6Y\",width:\"100%\"})})})})})})})},idGxGnJdgTH);})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18k8gzr hidden-di3f4q\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"zXmTBiluf\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"zXmTBiluf\",name:\"luYbSmIYU\",type:\"Identifier\"},{collection:\"zXmTBiluf\",name:\"ggXTdKeml\",type:\"Identifier\"},{collection:\"zXmTBiluf\",name:\"qYQeV8gsh\",type:\"Identifier\"},{collection:\"zXmTBiluf\",name:\"CKpLENRDa\",type:\"Identifier\"},{collection:\"zXmTBiluf\",name:\"zfBlaWI2A\",type:\"Identifier\"},{collection:\"zXmTBiluf\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"zXmTBiluf\",name:\"vLSJHpvdP\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:CMKSwGq_3},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({CKpLENRDa:CKpLENRDazXmTBiluf,ggXTdKeml:ggXTdKemlzXmTBiluf,id:idzXmTBiluf,luYbSmIYU:luYbSmIYUzXmTBiluf,qYQeV8gsh:qYQeV8gshzXmTBiluf,zfBlaWI2A:zfBlaWI2AzXmTBiluf},index2)=>{luYbSmIYUzXmTBiluf??=\"\";qYQeV8gshzXmTBiluf??=\"\";CKpLENRDazXmTBiluf??=\"\";zfBlaWI2AzXmTBiluf??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`zXmTBiluf-${idzXmTBiluf}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{luYbSmIYU:luYbSmIYUzXmTBiluf},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{luYbSmIYU:luYbSmIYUzXmTBiluf},webPageId:\"Gjn6ePvso\"},motionChild:true,nodeId:\"UCyXqYxs9\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1uiyvj7 framer-1m5qymg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7XusiK94:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:`max((${componentViewport?.width||\"100vw\"} - 70px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sxwp2k-container\",nodeId:\"bVFFx1n2L\",scopeId:\"Gjn6ePvso\",children:/*#__PURE__*/_jsx(NewsCard,{bsADRtJb9:toResponsiveImage(ggXTdKemlzXmTBiluf),height:\"100%\",id:\"bVFFx1n2L\",layoutId:\"bVFFx1n2L\",P8bAm6u1h:CKpLENRDazXmTBiluf,RkXn3SxKd:qYQeV8gshzXmTBiluf,style:{width:\"100%\"},UD1tmkBrN:zfBlaWI2AzXmTBiluf,variant:\"h9ro8Nu6Y\",width:\"100%\"})})})})})})})},idzXmTBiluf);})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16nx04p hidden-di3f4q\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"BIVkKa6bq\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"BIVkKa6bq\",name:\"luYbSmIYU\",type:\"Identifier\"},{collection:\"BIVkKa6bq\",name:\"ggXTdKeml\",type:\"Identifier\"},{collection:\"BIVkKa6bq\",name:\"qYQeV8gsh\",type:\"Identifier\"},{collection:\"BIVkKa6bq\",name:\"CKpLENRDa\",type:\"Identifier\"},{collection:\"BIVkKa6bq\",name:\"zfBlaWI2A\",type:\"Identifier\"},{collection:\"BIVkKa6bq\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"BIVkKa6bq\",name:\"vLSJHpvdP\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:q91cy4DTn},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({CKpLENRDa:CKpLENRDaBIVkKa6bq,ggXTdKeml:ggXTdKemlBIVkKa6bq,id:idBIVkKa6bq,luYbSmIYU:luYbSmIYUBIVkKa6bq,qYQeV8gsh:qYQeV8gshBIVkKa6bq,zfBlaWI2A:zfBlaWI2ABIVkKa6bq},index3)=>{luYbSmIYUBIVkKa6bq??=\"\";qYQeV8gshBIVkKa6bq??=\"\";CKpLENRDaBIVkKa6bq??=\"\";zfBlaWI2ABIVkKa6bq??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`BIVkKa6bq-${idBIVkKa6bq}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{luYbSmIYU:luYbSmIYUBIVkKa6bq},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{luYbSmIYU:luYbSmIYUBIVkKa6bq},webPageId:\"Gjn6ePvso\"},motionChild:true,nodeId:\"T5ngTgT8c\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1sa5fpr framer-1m5qymg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7XusiK94:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:`max((${componentViewport?.width||\"100vw\"} - 70px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dak46t-container\",nodeId:\"AYhffsaeg\",scopeId:\"Gjn6ePvso\",children:/*#__PURE__*/_jsx(NewsCard,{bsADRtJb9:toResponsiveImage(ggXTdKemlBIVkKa6bq),height:\"100%\",id:\"AYhffsaeg\",layoutId:\"AYhffsaeg\",P8bAm6u1h:CKpLENRDaBIVkKa6bq,RkXn3SxKd:qYQeV8gshBIVkKa6bq,style:{width:\"100%\"},UD1tmkBrN:zfBlaWI2ABIVkKa6bq,variant:\"h9ro8Nu6Y\",width:\"100%\"})})})})})})})},idBIVkKa6bq);})})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dmu9yv hidden-17s81c1 hidden-1fzf338\",\"data-framer-name\":\"News Row - Tablet\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-id6ila\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"h10gknwsQ\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"h10gknwsQ\",name:\"luYbSmIYU\",type:\"Identifier\"},{collection:\"h10gknwsQ\",name:\"ggXTdKeml\",type:\"Identifier\"},{collection:\"h10gknwsQ\",name:\"qYQeV8gsh\",type:\"Identifier\"},{collection:\"h10gknwsQ\",name:\"CKpLENRDa\",type:\"Identifier\"},{collection:\"h10gknwsQ\",name:\"zfBlaWI2A\",type:\"Identifier\"},{collection:\"h10gknwsQ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"h10gknwsQ\",name:\"vLSJHpvdP\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:CMKSwGq_3},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({CKpLENRDa:CKpLENRDah10gknwsQ,ggXTdKeml:ggXTdKemlh10gknwsQ,id:idh10gknwsQ,luYbSmIYU:luYbSmIYUh10gknwsQ,qYQeV8gsh:qYQeV8gshh10gknwsQ,zfBlaWI2A:zfBlaWI2Ah10gknwsQ},index4)=>{luYbSmIYUh10gknwsQ??=\"\";qYQeV8gshh10gknwsQ??=\"\";CKpLENRDah10gknwsQ??=\"\";zfBlaWI2Ah10gknwsQ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`h10gknwsQ-${idh10gknwsQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{luYbSmIYU:luYbSmIYUh10gknwsQ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{luYbSmIYU:luYbSmIYUh10gknwsQ},webPageId:\"Gjn6ePvso\"},motionChild:true,nodeId:\"X0LqTCPnE\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1hh0vzg framer-1m5qymg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYdpOLWaq:{width:`max((${componentViewport?.width||\"100vw\"} - 50px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1392i7x-container\",nodeId:\"EzLiQq0Gy\",scopeId:\"Gjn6ePvso\",children:/*#__PURE__*/_jsx(NewsCard,{bsADRtJb9:toResponsiveImage(ggXTdKemlh10gknwsQ),height:\"100%\",id:\"EzLiQq0Gy\",layoutId:\"EzLiQq0Gy\",P8bAm6u1h:CKpLENRDah10gknwsQ,RkXn3SxKd:qYQeV8gshh10gknwsQ,style:{width:\"100%\"},UD1tmkBrN:zfBlaWI2Ah10gknwsQ,variant:\"h9ro8Nu6Y\",width:\"100%\"})})})})})})})},idh10gknwsQ);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1psfk0c\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"sRFU_w5Ul\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"sRFU_w5Ul\",name:\"luYbSmIYU\",type:\"Identifier\"},{collection:\"sRFU_w5Ul\",name:\"ggXTdKeml\",type:\"Identifier\"},{collection:\"sRFU_w5Ul\",name:\"qYQeV8gsh\",type:\"Identifier\"},{collection:\"sRFU_w5Ul\",name:\"CKpLENRDa\",type:\"Identifier\"},{collection:\"sRFU_w5Ul\",name:\"zfBlaWI2A\",type:\"Identifier\"},{collection:\"sRFU_w5Ul\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"sRFU_w5Ul\",name:\"vLSJHpvdP\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:q91cy4DTn},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({CKpLENRDa:CKpLENRDasRFU_w5Ul,ggXTdKeml:ggXTdKemlsRFU_w5Ul,id:idsRFU_w5Ul,luYbSmIYU:luYbSmIYUsRFU_w5Ul,qYQeV8gsh:qYQeV8gshsRFU_w5Ul,zfBlaWI2A:zfBlaWI2AsRFU_w5Ul},index5)=>{luYbSmIYUsRFU_w5Ul??=\"\";qYQeV8gshsRFU_w5Ul??=\"\";CKpLENRDasRFU_w5Ul??=\"\";zfBlaWI2AsRFU_w5Ul??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`sRFU_w5Ul-${idsRFU_w5Ul}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{luYbSmIYU:luYbSmIYUsRFU_w5Ul},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{luYbSmIYU:luYbSmIYUsRFU_w5Ul},webPageId:\"Gjn6ePvso\"},motionChild:true,nodeId:\"rLkhhqyXe\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-18suedf framer-1m5qymg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYdpOLWaq:{width:`max((${componentViewport?.width||\"100vw\"} - 50px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s795wn-container\",nodeId:\"drQeDFf7h\",scopeId:\"Gjn6ePvso\",children:/*#__PURE__*/_jsx(NewsCard,{bsADRtJb9:toResponsiveImage(ggXTdKemlsRFU_w5Ul),height:\"100%\",id:\"drQeDFf7h\",layoutId:\"drQeDFf7h\",P8bAm6u1h:CKpLENRDasRFU_w5Ul,RkXn3SxKd:qYQeV8gshsRFU_w5Ul,style:{width:\"100%\"},UD1tmkBrN:zfBlaWI2AsRFU_w5Ul,variant:\"h9ro8Nu6Y\",width:\"100%\"})})})})})})})},idsRFU_w5Ul);})})})})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:579,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-om0lmh-container\",id:elementId1,nodeId:\"LdkA2u4wZ\",ref:ref3,scopeId:\"Gjn6ePvso\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYdpOLWaq:{variant:\"HIywnjDrA\"},Z7XusiK94:{variant:\"L_izBgRUn\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"LdkA2u4wZ\",KC7RinsLF:\"1dtjyus\",layoutId:\"LdkA2u4wZ\",style:{width:\"100%\"},unktgf8Fd:ref3,variant:\"C6VpDW4k9\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lDpGA.framer-1m5qymg, .framer-lDpGA .framer-1m5qymg { display: block; }\",\".framer-lDpGA.framer-17s81c1 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-lDpGA .framer-qqkdtf-container { flex: none; height: auto; position: relative; width: auto; z-index: 10; }\",\".framer-lDpGA .framer-dkwgus-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 3; }\",\".framer-lDpGA .framer-t5ibjx-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-lDpGA.framer-reioba { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 6; }\",\".framer-lDpGA.framer-uyc35d-container { flex: none; height: 100vh; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-lDpGA .framer-1sge4iv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lDpGA .framer-tugpbl { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 200px 20px 200px 20px; position: relative; width: 100%; z-index: 2; }\",\".framer-lDpGA .framer-1iv4erd { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lDpGA .framer-6b6skh { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 50px 0px; position: relative; width: 1px; }\",\".framer-lDpGA .framer-fcsu83, .framer-lDpGA .framer-19nzxbr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lDpGA .framer-1eh7gb3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; opacity: 0.5; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-lDpGA .framer-1s0wllq { --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-lDpGA .framer-eixsmj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lDpGA .framer-1aiq98q { aspect-ratio: 1.6714697406340058 / 1; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: var(--framer-aspect-ratio-supported, 120px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-lDpGA .framer-1427epi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lDpGA .framer-1yprpii { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: sticky; top: 70px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-lDpGA .framer-1xyrqmu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lDpGA .framer-1o04fr3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lDpGA .framer-1xjhv85, .framer-lDpGA .framer-1462iue, .framer-lDpGA .framer-fd69l, .framer-lDpGA .framer-1rzic0b, .framer-lDpGA .framer-ztj812 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-lDpGA .framer-4f0oij { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lDpGA .framer-8h6mpd, .framer-lDpGA .framer-dziomz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-lDpGA .framer-ie6czw-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; }\",\".framer-lDpGA .framer-ga7h7o { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-lDpGA .framer-zhokcc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lDpGA .framer-9byvlv { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-lDpGA .framer-guoppk { align-content: flex-end; align-items: flex-end; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-end; overflow: visible; padding: 50px 20px 50px 20px; position: relative; width: 100%; z-index: 2; }\",\".framer-lDpGA .framer-cwkwi4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-lDpGA .framer-8t47cd-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-lDpGA .framer-5i1sn7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-lDpGA .framer-txhfao, .framer-lDpGA .framer-1xj2ude, .framer-lDpGA .framer-18k8gzr, .framer-lDpGA .framer-16nx04p, .framer-lDpGA .framer-id6ila, .framer-lDpGA .framer-1psfk0c { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-lDpGA .framer-1uc4hlv, .framer-lDpGA .framer-12jbfdg, .framer-lDpGA .framer-1uiyvj7, .framer-lDpGA .framer-1sa5fpr, .framer-lDpGA .framer-1hh0vzg, .framer-lDpGA .framer-18suedf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-lDpGA .framer-1pdflc0-container, .framer-lDpGA .framer-1da6d1h-container, .framer-lDpGA .framer-sxwp2k-container, .framer-lDpGA .framer-1dak46t-container, .framer-lDpGA .framer-1392i7x-container, .framer-lDpGA .framer-s795wn-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-lDpGA .framer-1dmu9yv { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-lDpGA .framer-om0lmh-container { flex: none; height: auto; position: relative; width: 100%; z-index: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-lDpGA.framer-17s81c1, .framer-lDpGA .framer-1sge4iv, .framer-lDpGA .framer-tugpbl, .framer-lDpGA .framer-1iv4erd, .framer-lDpGA .framer-6b6skh, .framer-lDpGA .framer-fcsu83, .framer-lDpGA .framer-eixsmj, .framer-lDpGA .framer-1427epi, .framer-lDpGA .framer-1yprpii, .framer-lDpGA .framer-1xyrqmu, .framer-lDpGA .framer-1o04fr3, .framer-lDpGA .framer-4f0oij, .framer-lDpGA .framer-8h6mpd, .framer-lDpGA .framer-ga7h7o, .framer-lDpGA .framer-zhokcc, .framer-lDpGA .framer-guoppk, .framer-lDpGA .framer-19nzxbr, .framer-lDpGA .framer-dziomz, .framer-lDpGA .framer-5i1sn7, .framer-lDpGA .framer-txhfao, .framer-lDpGA .framer-1uc4hlv, .framer-lDpGA .framer-1xj2ude, .framer-lDpGA .framer-12jbfdg, .framer-lDpGA .framer-18k8gzr, .framer-lDpGA .framer-1uiyvj7, .framer-lDpGA .framer-16nx04p, .framer-lDpGA .framer-1sa5fpr, .framer-lDpGA .framer-1dmu9yv, .framer-lDpGA .framer-id6ila, .framer-lDpGA .framer-1hh0vzg, .framer-lDpGA .framer-1psfk0c, .framer-lDpGA .framer-18suedf { gap: 0px; } .framer-lDpGA.framer-17s81c1 > *, .framer-lDpGA .framer-1sge4iv > *, .framer-lDpGA .framer-tugpbl > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lDpGA.framer-17s81c1 > :first-child, .framer-lDpGA .framer-1sge4iv > :first-child, .framer-lDpGA .framer-tugpbl > :first-child, .framer-lDpGA .framer-6b6skh > :first-child, .framer-lDpGA .framer-eixsmj > :first-child, .framer-lDpGA .framer-1yprpii > :first-child, .framer-lDpGA .framer-1xyrqmu > :first-child, .framer-lDpGA .framer-ga7h7o > :first-child, .framer-lDpGA .framer-zhokcc > :first-child, .framer-lDpGA .framer-guoppk > :first-child { margin-top: 0px; } .framer-lDpGA.framer-17s81c1 > :last-child, .framer-lDpGA .framer-1sge4iv > :last-child, .framer-lDpGA .framer-tugpbl > :last-child, .framer-lDpGA .framer-6b6skh > :last-child, .framer-lDpGA .framer-eixsmj > :last-child, .framer-lDpGA .framer-1yprpii > :last-child, .framer-lDpGA .framer-1xyrqmu > :last-child, .framer-lDpGA .framer-ga7h7o > :last-child, .framer-lDpGA .framer-zhokcc > :last-child, .framer-lDpGA .framer-guoppk > :last-child { margin-bottom: 0px; } .framer-lDpGA .framer-1iv4erd > *, .framer-lDpGA .framer-fcsu83 > *, .framer-lDpGA .framer-1427epi > *, .framer-lDpGA .framer-8h6mpd > *, .framer-lDpGA .framer-19nzxbr > *, .framer-lDpGA .framer-dziomz > *, .framer-lDpGA .framer-5i1sn7 > *, .framer-lDpGA .framer-1dmu9yv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-lDpGA .framer-1iv4erd > :first-child, .framer-lDpGA .framer-fcsu83 > :first-child, .framer-lDpGA .framer-1427epi > :first-child, .framer-lDpGA .framer-1o04fr3 > :first-child, .framer-lDpGA .framer-4f0oij > :first-child, .framer-lDpGA .framer-8h6mpd > :first-child, .framer-lDpGA .framer-19nzxbr > :first-child, .framer-lDpGA .framer-dziomz > :first-child, .framer-lDpGA .framer-5i1sn7 > :first-child, .framer-lDpGA .framer-txhfao > :first-child, .framer-lDpGA .framer-1uc4hlv > :first-child, .framer-lDpGA .framer-1xj2ude > :first-child, .framer-lDpGA .framer-12jbfdg > :first-child, .framer-lDpGA .framer-18k8gzr > :first-child, .framer-lDpGA .framer-1uiyvj7 > :first-child, .framer-lDpGA .framer-16nx04p > :first-child, .framer-lDpGA .framer-1sa5fpr > :first-child, .framer-lDpGA .framer-1dmu9yv > :first-child, .framer-lDpGA .framer-id6ila > :first-child, .framer-lDpGA .framer-1hh0vzg > :first-child, .framer-lDpGA .framer-1psfk0c > :first-child, .framer-lDpGA .framer-18suedf > :first-child { margin-left: 0px; } .framer-lDpGA .framer-1iv4erd > :last-child, .framer-lDpGA .framer-fcsu83 > :last-child, .framer-lDpGA .framer-1427epi > :last-child, .framer-lDpGA .framer-1o04fr3 > :last-child, .framer-lDpGA .framer-4f0oij > :last-child, .framer-lDpGA .framer-8h6mpd > :last-child, .framer-lDpGA .framer-19nzxbr > :last-child, .framer-lDpGA .framer-dziomz > :last-child, .framer-lDpGA .framer-5i1sn7 > :last-child, .framer-lDpGA .framer-txhfao > :last-child, .framer-lDpGA .framer-1uc4hlv > :last-child, .framer-lDpGA .framer-1xj2ude > :last-child, .framer-lDpGA .framer-12jbfdg > :last-child, .framer-lDpGA .framer-18k8gzr > :last-child, .framer-lDpGA .framer-1uiyvj7 > :last-child, .framer-lDpGA .framer-16nx04p > :last-child, .framer-lDpGA .framer-1sa5fpr > :last-child, .framer-lDpGA .framer-1dmu9yv > :last-child, .framer-lDpGA .framer-id6ila > :last-child, .framer-lDpGA .framer-1hh0vzg > :last-child, .framer-lDpGA .framer-1psfk0c > :last-child, .framer-lDpGA .framer-18suedf > :last-child { margin-right: 0px; } .framer-lDpGA .framer-6b6skh > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-lDpGA .framer-eixsmj > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-lDpGA .framer-1yprpii > *, .framer-lDpGA .framer-guoppk > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-lDpGA .framer-1xyrqmu > *, .framer-lDpGA .framer-ga7h7o > *, .framer-lDpGA .framer-zhokcc > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-lDpGA .framer-1o04fr3 > *, .framer-lDpGA .framer-4f0oij > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-lDpGA .framer-txhfao > *, .framer-lDpGA .framer-1xj2ude > *, .framer-lDpGA .framer-18k8gzr > *, .framer-lDpGA .framer-16nx04p > *, .framer-lDpGA .framer-id6ila > *, .framer-lDpGA .framer-1psfk0c > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-lDpGA .framer-1uc4hlv > *, .framer-lDpGA .framer-12jbfdg > *, .framer-lDpGA .framer-1uiyvj7 > *, .framer-lDpGA .framer-1sa5fpr > *, .framer-lDpGA .framer-1hh0vzg > *, .framer-lDpGA .framer-18suedf > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-lDpGA.framer-17s81c1 { width: 810px; } .framer-lDpGA .framer-qqkdtf-container { order: 2; } .framer-lDpGA .framer-dkwgus-container { order: 0; } .framer-lDpGA .framer-1sge4iv { order: 1; } .framer-lDpGA .framer-5i1sn7 { padding: 0px 0px 35px 0px; } .framer-lDpGA .framer-om0lmh-container { order: 4; }}\",\"@media (max-width: 809px) { .framer-lDpGA.framer-17s81c1 { width: 390px; } .framer-lDpGA .framer-qqkdtf-container { order: 3; } .framer-lDpGA .framer-t5ibjx-container { order: 1; } .framer-lDpGA.framer-reioba { background-color: unset; } .framer-lDpGA.framer-uyc35d-container { z-index: 10; } .framer-lDpGA .framer-1sge4iv { order: 2; } .framer-lDpGA .framer-tugpbl { padding: 200px 15px 150px 15px; } .framer-lDpGA .framer-6b6skh { flex: 1 0 0px; } .framer-lDpGA .framer-1aiq98q { aspect-ratio: 1.44 / 1; height: var(--framer-aspect-ratio-supported, 139px); } .framer-lDpGA .framer-1427epi { flex-direction: column; gap: 50px; } .framer-lDpGA .framer-1yprpii { flex: none; order: 1; position: relative; top: unset; width: 100%; } .framer-lDpGA .framer-ga7h7o { flex: none; order: 0; width: 100%; } .framer-lDpGA .framer-guoppk { padding: 50px 15px 50px 15px; } .framer-lDpGA .framer-5i1sn7 { flex-direction: column; gap: 30px; } .framer-lDpGA .framer-txhfao, .framer-lDpGA .framer-1xj2ude, .framer-lDpGA .framer-18k8gzr, .framer-lDpGA .framer-16nx04p { flex: none; width: 100%; } .framer-lDpGA .framer-om0lmh-container { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-lDpGA .framer-1427epi, .framer-lDpGA .framer-5i1sn7 { gap: 0px; } .framer-lDpGA .framer-1427epi > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-lDpGA .framer-1427epi > :first-child, .framer-lDpGA .framer-5i1sn7 > :first-child { margin-top: 0px; } .framer-lDpGA .framer-1427epi > :last-child, .framer-lDpGA .framer-5i1sn7 > :last-child { margin-bottom: 0px; } .framer-lDpGA .framer-5i1sn7 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3617\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xYdpOLWaq\":{\"layout\":[\"fixed\",\"auto\"]},\"Z7XusiK94\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"tBoX32rh3\":{\"pattern\":\":tBoX32rh3\",\"name\":\"more-articles\"},\"LdkA2u4wZ\":{\"pattern\":\":LdkA2u4wZ\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FramerGjn6ePvso=withCSS(Component,css,\"framer-lDpGA\");export default FramerGjn6ePvso;FramerGjn6ePvso.displayName=\"News\";FramerGjn6ePvso.defaultProps={height:3617,width:1200};addFonts(FramerGjn6ePvso,[{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\"}]},...Scroll_ProgressFonts,...NavigationNavigationDesktopFonts,...NavigationNavigationMobileClosedFonts,...NavigationNavigationMobileOpenFonts,...TextLinkFonts,...NewsCardFonts,...FooterFooterFonts,...EnaLogoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGjn6ePvso\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xYdpOLWaq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z7XusiK94\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"3617\",\"framerScrollSections\":\"{\\\"tBoX32rh3\\\":{\\\"pattern\\\":\\\":tBoX32rh3\\\",\\\"name\\\":\\\"more-articles\\\"},\\\"LdkA2u4wZ\\\":{\\\"pattern\\\":\\\":LdkA2u4wZ\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Scroll_Progress", "props", "scrollYProgress", "useScroll", "progressOrigin", "p", "l", "motion", "addPropertyControls", "ControlType", "Clipboard_Share", "Component", "props", "p", "textField", "window", "Scroll_ProgressFonts", "getFonts", "Scroll_Progress", "NavigationNavigationDesktopFonts", "aY7U7qgIT_default", "NavigationNavigationMobileClosedFonts", "QeOYb5IMX_default", "NavigationNavigationMobileOpenFonts", "HlXwoBHVW_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "TextLinkFonts", "RRkfDyZij_default", "MotionDivClipboard_Share8h6mpd", "withCodeBoundaryForOverrides", "motion", "Clipboard_Share", "MotionDivWithOptimizedAppearEffect", "ContainerWithFX", "withFX", "Container", "NewsCardFonts", "kE6CFowlr_default", "MotionDivWithFX", "FooterFooterFonts", "Xcfy55KEf_default", "EnaLogoFonts", "zLod6FAMt_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition2", "animation3", "animation4", "animation5", "transition3", "textEffect", "transition4", "animation6", "animation7", "toResponsiveImage", "value", "textEffect1", "animation8", "transition5", "transition6", "QueryData", "query", "pageSize", "data", "useQueryData", "transition7", "transition8", "transition9", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "vaF7lXotP_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "CKpLENRDa", "zfBlaWI2A", "uMYUtPsPI", "tG79kjzNY", "qYQeV8gsh", "hxZ6KwHJ9", "kk6K00rhM", "luYbSmIYUB5r6jd_N_", "ggXTdKemlB5r6jd_N_", "qYQeV8gshB5r6jd_N_", "CKpLENRDaB5r6jd_N_", "zfBlaWI2AB5r6jd_N_", "idB5r6jd_N_", "LXrHhpPix", "luYbSmIYUGxGnJdgTH", "ggXTdKemlGxGnJdgTH", "qYQeV8gshGxGnJdgTH", "CKpLENRDaGxGnJdgTH", "zfBlaWI2AGxGnJdgTH", "idGxGnJdgTH", "l6kl4RH6P", "luYbSmIYUzXmTBiluf", "ggXTdKemlzXmTBiluf", "qYQeV8gshzXmTBiluf", "CKpLENRDazXmTBiluf", "zfBlaWI2AzXmTBiluf", "idzXmTBiluf", "CMKSwGq_3", "luYbSmIYUBIVkKa6bq", "ggXTdKemlBIVkKa6bq", "qYQeV8gshBIVkKa6bq", "CKpLENRDaBIVkKa6bq", "zfBlaWI2ABIVkKa6bq", "idBIVkKa6bq", "q91cy4DTn", "luYbSmIYUh10gknwsQ", "ggXTdKemlh10gknwsQ", "qYQeV8gshh10gknwsQ", "CKpLENRDah10gknwsQ", "zfBlaWI2Ah10gknwsQ", "idh10gknwsQ", "luYbSmIYUsRFU_w5Ul", "ggXTdKemlsRFU_w5Ul", "qYQeV8gshsRFU_w5Ul", "CKpLENRDasRFU_w5Ul", "zfBlaWI2AsRFU_w5Ul", "idsRFU_w5Ul", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "EHMhKGDpT3bnx0g", "overlay", "loadMore", "args", "wCQM1JsQO1wnntms", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "isDisplayed2", "isDisplayed3", "elementId1", "ref3", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "l", "AnimatePresence", "Ga", "x", "Image2", "ResolveLinks", "resolvedLinks", "ChildrenCanSuspend", "collection", "paginationInfo", "index", "PathVariablesContext", "Link", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "collection5", "paginationInfo5", "loadMore5", "index5", "css", "FramerGjn6ePvso", "withCSS", "Gjn6ePvso_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
