{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/tZ4BBLxqep75fqWPDP07/n9RyB3ifxeSooe94Lkru/Scroll_Progress.js", "ssg:https://framerusercontent.com/modules/1ZsMwlBIjIC0d2Tu0p2K/tVt9SfrvRyO2ATZPRttf/Share_Article.js", "ssg:https://framerusercontent.com/modules/3emiKStwa86D0QDtZSgq/otzuaLjCYrB7gdNg2SJl/mE3qYDPim.js", "ssg:https://framerusercontent.com/modules/tSwug6Yu6zHHzuIPpzOT/F3cB2xcURuMycDROmNAO/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 (5bbf1f3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Matita Geometric Semibold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Matita Geometric Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/5tMywKXZRVos8uCmZffZYbOHo.woff2\"}]}];export const css=['.framer-2zrH1 .framer-styles-preset-7ssc7y:not(.rich-text-wrapper), .framer-2zrH1 .framer-styles-preset-7ssc7y.rich-text-wrapper p { --framer-font-family: \"Matita Geometric Semibold\", \"Matita Geometric Semibold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.4px; --framer-line-height: 100%; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: inherit; }'];export const className=\"framer-2zrH1\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5bbf1f3)\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,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,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 EnaBuyTemplateButton from\"#framer/local/canvasComponent/ArHouhF6W/ArHouhF6W.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{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 sharedStyle7 from\"#framer/local/css/t0mPHzmb1/t0mPHzmb1.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 EnaBuyTemplateButtonFonts=getFonts(EnaBuyTemplateButton);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const TextLinkFonts=getFonts(TextLink);const MotionDivClipboard_Share=Clipboard_Share(motion.div);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ContainerWithFX=withFX(Container);const NewsCardFonts=getFonts(NewsCard);const MotionDivWithFX=withFX(motion.div);const FooterFooterFonts=getFonts(FooterFooter);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-8DGNV\";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=()=>{var _document_querySelector,_ref;return(_ref=(_document_querySelector=document.querySelector(\"#template-overlay\"))!==null&&_document_querySelector!==void 0?_document_querySelector:document.querySelector(\"#overlay\"))!==null&&_ref!==void 0?_ref: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.7,duration:.7,ease:[.12,.23,.13,.96],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition3={delay:1.5,duration:1,ease:[.16,1,.3,1],type:\"tween\"};const animation5={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:22};const animation7={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition4={delay:.05,duration:1,ease:[.12,.23,0,.96],type:\"tween\"};const textEffect={effect:animation7,repeat:false,startDelay:.9,threshold:0,tokenization:\"word\",transition:transition4,trigger:\"onInView\",type:\"appear\"};const transition5={delay:1,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation9={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:animation7,repeat:false,startDelay:.2,threshold:0,tokenization:\"word\",transition:transition4,trigger:\"onInView\",type:\"appear\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition6={delay:.2,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const transition7={delay:.4,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition8={delay:.5,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const transition9={delay:.6,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const transition10={delay:.7,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"ifnJut1hB\",Phone:\"Z7XusiK94\",Tablet:\"xYdpOLWaq\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ifnJut1hB\"};};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];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4,_getFromCurrentRouteData5,_getFromCurrentRouteData6,_getFromCurrentRouteData7,_getFromCurrentRouteData8,_getFromCurrentRouteData9;const{style,className,layoutId,variant,CKpLENRDa=(_getFromCurrentRouteData=getFromCurrentRouteData(\"CKpLENRDa\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",zfBlaWI2A=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"zfBlaWI2A\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",uMYUtPsPI=getFromCurrentRouteData(\"uMYUtPsPI\"),tG79kjzNY=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"tG79kjzNY\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",qYQeV8gsh=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"qYQeV8gsh\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",hxZ6KwHJ9=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"hxZ6KwHJ9\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:\"\",kk6K00rhM=(_getFromCurrentRouteData5=getFromCurrentRouteData(\"kk6K00rhM\"))!==null&&_getFromCurrentRouteData5!==void 0?_getFromCurrentRouteData5:\"\",luYbSmIYUB5r6jd_N_,ggXTdKemlB5r6jd_N_,qYQeV8gshB5r6jd_N_,CKpLENRDaB5r6jd_N_,zfBlaWI2AB5r6jd_N_,idB5r6jd_N_,LXrHhpPix=(_getFromCurrentRouteData6=getFromCurrentRouteData(\"LXrHhpPix\"))!==null&&_getFromCurrentRouteData6!==void 0?_getFromCurrentRouteData6:0,luYbSmIYUGxGnJdgTH,ggXTdKemlGxGnJdgTH,qYQeV8gshGxGnJdgTH,CKpLENRDaGxGnJdgTH,zfBlaWI2AGxGnJdgTH,idGxGnJdgTH,l6kl4RH6P=(_getFromCurrentRouteData7=getFromCurrentRouteData(\"l6kl4RH6P\"))!==null&&_getFromCurrentRouteData7!==void 0?_getFromCurrentRouteData7:0,luYbSmIYUzXmTBiluf,ggXTdKemlzXmTBiluf,qYQeV8gshzXmTBiluf,CKpLENRDazXmTBiluf,zfBlaWI2AzXmTBiluf,idzXmTBiluf,CMKSwGq_3=(_getFromCurrentRouteData8=getFromCurrentRouteData(\"CMKSwGq_3\"))!==null&&_getFromCurrentRouteData8!==void 0?_getFromCurrentRouteData8:0,luYbSmIYUBIVkKa6bq,ggXTdKemlBIVkKa6bq,qYQeV8gshBIVkKa6bq,CKpLENRDaBIVkKa6bq,zfBlaWI2ABIVkKa6bq,idBIVkKa6bq,q91cy4DTn=(_getFromCurrentRouteData9=getFromCurrentRouteData(\"q91cy4DTn\"))!==null&&_getFromCurrentRouteData9!==void 0?_getFromCurrentRouteData9: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 metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-8DGNV`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-8DGNV`);};},[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,sharedStyle7.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({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ifnJut1hB\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-17s81c1\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qqkdtf-container\",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,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:\"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\",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,initial:animation2,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__*/_jsx(\"div\",{className:\"framer-1u62x5m\",\"data-framer-name\":\"Buy Template Module (delete this)\",name:\"Buy Template Module (delete this)\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-crfhx3\",\"data-framer-name\":\"Button Wrapper\",name:\"Button Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7XusiK94:{y:902}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:898,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-b4q65x-container\",\"data-framer-appear-id\":\"b4q65x\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(EnaBuyTemplateButton,{ENbTeSegz:\"https://ena.lemonsqueezy.com/buy/6f383fba-41e6-471c-8605-75aba27d89d3\",height:\"100%\",id:\"fzSCchMJz\",layoutId:\"fzSCchMJz\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1sge4iv\",\"data-framer-name\":\"Main\",name:\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-tugpbl\",\"data-framer-name\":\"Section Article\",name:\"Section Article\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iv4erd\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6b6skh\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fcsu83\",\"data-framer-name\":\"Publisher\",name:\"Publisher\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,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:animation6,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:animation8,background:{alt:\"\",fit:\"fill\"},className:\"framer-eixsmj\",\"data-framer-appear-id\":\"eixsmj\",\"data-framer-name\":\"Container\",initial:animation9,name:\"Container\",optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7XusiK94:{background:{alt:\"\",fit:\"fill\",pixelHeight:5152,pixelWidth:7728,sizes:\"calc(100vw - 30px)\",...toResponsiveImage(uMYUtPsPI)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:5152,pixelWidth:7728,sizes:\"calc(100vw - 40px)\",...toResponsiveImage(uMYUtPsPI)},className:\"framer-1aiq98q\",\"data-framer-name\":\"Header Image\",name:\"Header Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1427epi\",\"data-framer-name\":\"Article\",name:\"Article\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yprpii\",\"data-framer-name\":\"Sticky - Left\",name:\"Sticky - Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xyrqmu\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o04fr3\",\"data-framer-name\":\"Author\",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\",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_Share,{className:\"framer-8h6mpd\",\"data-framer-name\":\"Code Override (Share Button)\",name:\"Code Override (Share Button)\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ie6czw-container\",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\",name:\"Article Right\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-zhokcc\",\"data-framer-name\":\"Content Wrapper\",name:\"Content Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:kk6K00rhM,className:\"framer-9byvlv\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-syhbvr\",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,name:\"Section Read More\",ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19nzxbr\",\"data-framer-name\":\"Header\",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\",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:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8t47cd-container\",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\",name:\"News Row\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__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===null||collection===void 0?void 0:collection.map(({CKpLENRDa:CKpLENRDaB5r6jd_N_,ggXTdKeml:ggXTdKemlB5r6jd_N_,id:idB5r6jd_N_,luYbSmIYU:luYbSmIYUB5r6jd_N_,qYQeV8gsh:qYQeV8gshB5r6jd_N_,zfBlaWI2A:zfBlaWI2AB5r6jd_N_},index)=>{luYbSmIYUB5r6jd_N_!==null&&luYbSmIYUB5r6jd_N_!==void 0?luYbSmIYUB5r6jd_N_:luYbSmIYUB5r6jd_N_=\"\";qYQeV8gshB5r6jd_N_!==null&&qYQeV8gshB5r6jd_N_!==void 0?qYQeV8gshB5r6jd_N_:qYQeV8gshB5r6jd_N_=\"\";CKpLENRDaB5r6jd_N_!==null&&CKpLENRDaB5r6jd_N_!==void 0?CKpLENRDaB5r6jd_N_:CKpLENRDaB5r6jd_N_=\"\";zfBlaWI2AB5r6jd_N_!==null&&zfBlaWI2AB5r6jd_N_!==void 0?zfBlaWI2AB5r6jd_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\"},nodeId:\"jbO6G3EWq\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1uc4hlv framer-1m5qymg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYdpOLWaq:{width:\"max((100vw - 50px) / 2, 1px)\"},Z7XusiK94:{width:\"max(100vw - 30px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:\"max((100vw - 70px) / 4, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pdflc0-container\",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:transition8},__framer__animateOnce:true,__framer__enter:animation10,__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===null||collection1===void 0?void 0:collection1.map(({CKpLENRDa:CKpLENRDaGxGnJdgTH,ggXTdKeml:ggXTdKemlGxGnJdgTH,id:idGxGnJdgTH,luYbSmIYU:luYbSmIYUGxGnJdgTH,qYQeV8gsh:qYQeV8gshGxGnJdgTH,zfBlaWI2A:zfBlaWI2AGxGnJdgTH},index1)=>{luYbSmIYUGxGnJdgTH!==null&&luYbSmIYUGxGnJdgTH!==void 0?luYbSmIYUGxGnJdgTH:luYbSmIYUGxGnJdgTH=\"\";qYQeV8gshGxGnJdgTH!==null&&qYQeV8gshGxGnJdgTH!==void 0?qYQeV8gshGxGnJdgTH:qYQeV8gshGxGnJdgTH=\"\";CKpLENRDaGxGnJdgTH!==null&&CKpLENRDaGxGnJdgTH!==void 0?CKpLENRDaGxGnJdgTH:CKpLENRDaGxGnJdgTH=\"\";zfBlaWI2AGxGnJdgTH!==null&&zfBlaWI2AGxGnJdgTH!==void 0?zfBlaWI2AGxGnJdgTH: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\"},nodeId:\"df8w3O3Tc\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-12jbfdg framer-1m5qymg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYdpOLWaq:{width:\"max((100vw - 50px) / 2, 1px)\"},Z7XusiK94:{width:\"max(100vw - 30px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:\"max((100vw - 70px) / 4, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1da6d1h-container\",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:transition9},__framer__animateOnce:true,__framer__enter:animation10,__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===null||collection2===void 0?void 0:collection2.map(({CKpLENRDa:CKpLENRDazXmTBiluf,ggXTdKeml:ggXTdKemlzXmTBiluf,id:idzXmTBiluf,luYbSmIYU:luYbSmIYUzXmTBiluf,qYQeV8gsh:qYQeV8gshzXmTBiluf,zfBlaWI2A:zfBlaWI2AzXmTBiluf},index2)=>{luYbSmIYUzXmTBiluf!==null&&luYbSmIYUzXmTBiluf!==void 0?luYbSmIYUzXmTBiluf:luYbSmIYUzXmTBiluf=\"\";qYQeV8gshzXmTBiluf!==null&&qYQeV8gshzXmTBiluf!==void 0?qYQeV8gshzXmTBiluf:qYQeV8gshzXmTBiluf=\"\";CKpLENRDazXmTBiluf!==null&&CKpLENRDazXmTBiluf!==void 0?CKpLENRDazXmTBiluf:CKpLENRDazXmTBiluf=\"\";zfBlaWI2AzXmTBiluf!==null&&zfBlaWI2AzXmTBiluf!==void 0?zfBlaWI2AzXmTBiluf: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\"},nodeId:\"UCyXqYxs9\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1uiyvj7 framer-1m5qymg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7XusiK94:{width:\"max(100vw - 30px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:\"max((100vw - 70px) / 4, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sxwp2k-container\",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:transition10},__framer__animateOnce:true,__framer__enter:animation10,__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===null||collection3===void 0?void 0:collection3.map(({CKpLENRDa:CKpLENRDaBIVkKa6bq,ggXTdKeml:ggXTdKemlBIVkKa6bq,id:idBIVkKa6bq,luYbSmIYU:luYbSmIYUBIVkKa6bq,qYQeV8gsh:qYQeV8gshBIVkKa6bq,zfBlaWI2A:zfBlaWI2ABIVkKa6bq},index3)=>{luYbSmIYUBIVkKa6bq!==null&&luYbSmIYUBIVkKa6bq!==void 0?luYbSmIYUBIVkKa6bq:luYbSmIYUBIVkKa6bq=\"\";qYQeV8gshBIVkKa6bq!==null&&qYQeV8gshBIVkKa6bq!==void 0?qYQeV8gshBIVkKa6bq:qYQeV8gshBIVkKa6bq=\"\";CKpLENRDaBIVkKa6bq!==null&&CKpLENRDaBIVkKa6bq!==void 0?CKpLENRDaBIVkKa6bq:CKpLENRDaBIVkKa6bq=\"\";zfBlaWI2ABIVkKa6bq!==null&&zfBlaWI2ABIVkKa6bq!==void 0?zfBlaWI2ABIVkKa6bq: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\"},nodeId:\"T5ngTgT8c\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1sa5fpr framer-1m5qymg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7XusiK94:{width:\"max(100vw - 30px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:\"max((100vw - 70px) / 4, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dak46t-container\",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\",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===null||collection4===void 0?void 0:collection4.map(({CKpLENRDa:CKpLENRDah10gknwsQ,ggXTdKeml:ggXTdKemlh10gknwsQ,id:idh10gknwsQ,luYbSmIYU:luYbSmIYUh10gknwsQ,qYQeV8gsh:qYQeV8gshh10gknwsQ,zfBlaWI2A:zfBlaWI2Ah10gknwsQ},index4)=>{luYbSmIYUh10gknwsQ!==null&&luYbSmIYUh10gknwsQ!==void 0?luYbSmIYUh10gknwsQ:luYbSmIYUh10gknwsQ=\"\";qYQeV8gshh10gknwsQ!==null&&qYQeV8gshh10gknwsQ!==void 0?qYQeV8gshh10gknwsQ:qYQeV8gshh10gknwsQ=\"\";CKpLENRDah10gknwsQ!==null&&CKpLENRDah10gknwsQ!==void 0?CKpLENRDah10gknwsQ:CKpLENRDah10gknwsQ=\"\";zfBlaWI2Ah10gknwsQ!==null&&zfBlaWI2Ah10gknwsQ!==void 0?zfBlaWI2Ah10gknwsQ: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\"},nodeId:\"X0LqTCPnE\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1hh0vzg framer-1m5qymg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYdpOLWaq:{width:\"max((100vw - 50px) / 2, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1392i7x-container\",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===null||collection5===void 0?void 0:collection5.map(({CKpLENRDa:CKpLENRDasRFU_w5Ul,ggXTdKeml:ggXTdKemlsRFU_w5Ul,id:idsRFU_w5Ul,luYbSmIYU:luYbSmIYUsRFU_w5Ul,qYQeV8gsh:qYQeV8gshsRFU_w5Ul,zfBlaWI2A:zfBlaWI2AsRFU_w5Ul},index5)=>{luYbSmIYUsRFU_w5Ul!==null&&luYbSmIYUsRFU_w5Ul!==void 0?luYbSmIYUsRFU_w5Ul:luYbSmIYUsRFU_w5Ul=\"\";qYQeV8gshsRFU_w5Ul!==null&&qYQeV8gshsRFU_w5Ul!==void 0?qYQeV8gshsRFU_w5Ul:qYQeV8gshsRFU_w5Ul=\"\";CKpLENRDasRFU_w5Ul!==null&&CKpLENRDasRFU_w5Ul!==void 0?CKpLENRDasRFU_w5Ul:CKpLENRDasRFU_w5Ul=\"\";zfBlaWI2AsRFU_w5Ul!==null&&zfBlaWI2AsRFU_w5Ul!==void 0?zfBlaWI2AsRFU_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\"},nodeId:\"rLkhhqyXe\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-18suedf framer-1m5qymg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYdpOLWaq:{width:\"max((100vw - 50px) / 2, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s795wn-container\",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:261,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-om0lmh-container\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYdpOLWaq:{variant:\"HIywnjDrA\"},Z7XusiK94:{variant:\"L_izBgRUn\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"LdkA2u4wZ\",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; } }\",`.${metadata.bodyClassName}-framer-8DGNV { background: white; }`,\".framer-8DGNV.framer-1m5qymg, .framer-8DGNV .framer-1m5qymg { display: block; }\",\".framer-8DGNV.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-8DGNV .framer-qqkdtf-container { flex: none; height: auto; position: relative; width: auto; z-index: 10; }\",\".framer-8DGNV .framer-dkwgus-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 3; }\",\".framer-8DGNV .framer-t5ibjx-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-8DGNV.framer-reioba { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 6; }\",\".framer-8DGNV.framer-uyc35d-container { flex: none; height: 100vh; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-8DGNV .framer-1u62x5m { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 0px; justify-content: flex-end; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: fixed; width: 100%; z-index: 10; }\",\".framer-8DGNV .framer-crfhx3 { align-content: center; align-items: center; bottom: 66px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 20px; width: min-content; z-index: 1; }\",\".framer-8DGNV .framer-b4q65x-container, .framer-8DGNV .framer-8t47cd-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-8DGNV .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-8DGNV .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-8DGNV .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-8DGNV .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-8DGNV .framer-fcsu83, .framer-8DGNV .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-8DGNV .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-8DGNV .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-8DGNV .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-8DGNV .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-8DGNV .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-8DGNV .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-8DGNV .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-8DGNV .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-8DGNV .framer-1xjhv85, .framer-8DGNV .framer-1462iue, .framer-8DGNV .framer-fd69l, .framer-8DGNV .framer-1rzic0b, .framer-8DGNV .framer-ztj812 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-8DGNV .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-8DGNV .framer-8h6mpd, .framer-8DGNV .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-8DGNV .framer-ie6czw-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; }\",\".framer-8DGNV .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-8DGNV .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-8DGNV .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-8DGNV .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-8DGNV .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-8DGNV .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-8DGNV .framer-txhfao, .framer-8DGNV .framer-1xj2ude, .framer-8DGNV .framer-18k8gzr, .framer-8DGNV .framer-16nx04p, .framer-8DGNV .framer-id6ila, .framer-8DGNV .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-8DGNV .framer-1uc4hlv, .framer-8DGNV .framer-12jbfdg, .framer-8DGNV .framer-1uiyvj7, .framer-8DGNV .framer-1sa5fpr, .framer-8DGNV .framer-1hh0vzg, .framer-8DGNV .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-8DGNV .framer-1pdflc0-container, .framer-8DGNV .framer-1da6d1h-container, .framer-8DGNV .framer-sxwp2k-container, .framer-8DGNV .framer-1dak46t-container, .framer-8DGNV .framer-1392i7x-container, .framer-8DGNV .framer-s795wn-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-8DGNV .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-8DGNV .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-8DGNV.framer-17s81c1, .framer-8DGNV .framer-1u62x5m, .framer-8DGNV .framer-crfhx3, .framer-8DGNV .framer-1sge4iv, .framer-8DGNV .framer-tugpbl, .framer-8DGNV .framer-1iv4erd, .framer-8DGNV .framer-6b6skh, .framer-8DGNV .framer-fcsu83, .framer-8DGNV .framer-eixsmj, .framer-8DGNV .framer-1427epi, .framer-8DGNV .framer-1yprpii, .framer-8DGNV .framer-1xyrqmu, .framer-8DGNV .framer-1o04fr3, .framer-8DGNV .framer-4f0oij, .framer-8DGNV .framer-8h6mpd, .framer-8DGNV .framer-ga7h7o, .framer-8DGNV .framer-zhokcc, .framer-8DGNV .framer-guoppk, .framer-8DGNV .framer-19nzxbr, .framer-8DGNV .framer-dziomz, .framer-8DGNV .framer-5i1sn7, .framer-8DGNV .framer-txhfao, .framer-8DGNV .framer-1uc4hlv, .framer-8DGNV .framer-1xj2ude, .framer-8DGNV .framer-12jbfdg, .framer-8DGNV .framer-18k8gzr, .framer-8DGNV .framer-1uiyvj7, .framer-8DGNV .framer-16nx04p, .framer-8DGNV .framer-1sa5fpr, .framer-8DGNV .framer-1dmu9yv, .framer-8DGNV .framer-id6ila, .framer-8DGNV .framer-1hh0vzg, .framer-8DGNV .framer-1psfk0c, .framer-8DGNV .framer-18suedf { gap: 0px; } .framer-8DGNV.framer-17s81c1 > *, .framer-8DGNV .framer-1sge4iv > *, .framer-8DGNV .framer-tugpbl > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8DGNV.framer-17s81c1 > :first-child, .framer-8DGNV .framer-1sge4iv > :first-child, .framer-8DGNV .framer-tugpbl > :first-child, .framer-8DGNV .framer-6b6skh > :first-child, .framer-8DGNV .framer-eixsmj > :first-child, .framer-8DGNV .framer-1yprpii > :first-child, .framer-8DGNV .framer-1xyrqmu > :first-child, .framer-8DGNV .framer-ga7h7o > :first-child, .framer-8DGNV .framer-zhokcc > :first-child, .framer-8DGNV .framer-guoppk > :first-child { margin-top: 0px; } .framer-8DGNV.framer-17s81c1 > :last-child, .framer-8DGNV .framer-1sge4iv > :last-child, .framer-8DGNV .framer-tugpbl > :last-child, .framer-8DGNV .framer-6b6skh > :last-child, .framer-8DGNV .framer-eixsmj > :last-child, .framer-8DGNV .framer-1yprpii > :last-child, .framer-8DGNV .framer-1xyrqmu > :last-child, .framer-8DGNV .framer-ga7h7o > :last-child, .framer-8DGNV .framer-zhokcc > :last-child, .framer-8DGNV .framer-guoppk > :last-child { margin-bottom: 0px; } .framer-8DGNV .framer-1u62x5m > *, .framer-8DGNV .framer-crfhx3 > *, .framer-8DGNV .framer-1iv4erd > *, .framer-8DGNV .framer-fcsu83 > *, .framer-8DGNV .framer-1427epi > *, .framer-8DGNV .framer-8h6mpd > *, .framer-8DGNV .framer-19nzxbr > *, .framer-8DGNV .framer-dziomz > *, .framer-8DGNV .framer-5i1sn7 > *, .framer-8DGNV .framer-1dmu9yv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-8DGNV .framer-1u62x5m > :first-child, .framer-8DGNV .framer-crfhx3 > :first-child, .framer-8DGNV .framer-1iv4erd > :first-child, .framer-8DGNV .framer-fcsu83 > :first-child, .framer-8DGNV .framer-1427epi > :first-child, .framer-8DGNV .framer-1o04fr3 > :first-child, .framer-8DGNV .framer-4f0oij > :first-child, .framer-8DGNV .framer-8h6mpd > :first-child, .framer-8DGNV .framer-19nzxbr > :first-child, .framer-8DGNV .framer-dziomz > :first-child, .framer-8DGNV .framer-5i1sn7 > :first-child, .framer-8DGNV .framer-txhfao > :first-child, .framer-8DGNV .framer-1uc4hlv > :first-child, .framer-8DGNV .framer-1xj2ude > :first-child, .framer-8DGNV .framer-12jbfdg > :first-child, .framer-8DGNV .framer-18k8gzr > :first-child, .framer-8DGNV .framer-1uiyvj7 > :first-child, .framer-8DGNV .framer-16nx04p > :first-child, .framer-8DGNV .framer-1sa5fpr > :first-child, .framer-8DGNV .framer-1dmu9yv > :first-child, .framer-8DGNV .framer-id6ila > :first-child, .framer-8DGNV .framer-1hh0vzg > :first-child, .framer-8DGNV .framer-1psfk0c > :first-child, .framer-8DGNV .framer-18suedf > :first-child { margin-left: 0px; } .framer-8DGNV .framer-1u62x5m > :last-child, .framer-8DGNV .framer-crfhx3 > :last-child, .framer-8DGNV .framer-1iv4erd > :last-child, .framer-8DGNV .framer-fcsu83 > :last-child, .framer-8DGNV .framer-1427epi > :last-child, .framer-8DGNV .framer-1o04fr3 > :last-child, .framer-8DGNV .framer-4f0oij > :last-child, .framer-8DGNV .framer-8h6mpd > :last-child, .framer-8DGNV .framer-19nzxbr > :last-child, .framer-8DGNV .framer-dziomz > :last-child, .framer-8DGNV .framer-5i1sn7 > :last-child, .framer-8DGNV .framer-txhfao > :last-child, .framer-8DGNV .framer-1uc4hlv > :last-child, .framer-8DGNV .framer-1xj2ude > :last-child, .framer-8DGNV .framer-12jbfdg > :last-child, .framer-8DGNV .framer-18k8gzr > :last-child, .framer-8DGNV .framer-1uiyvj7 > :last-child, .framer-8DGNV .framer-16nx04p > :last-child, .framer-8DGNV .framer-1sa5fpr > :last-child, .framer-8DGNV .framer-1dmu9yv > :last-child, .framer-8DGNV .framer-id6ila > :last-child, .framer-8DGNV .framer-1hh0vzg > :last-child, .framer-8DGNV .framer-1psfk0c > :last-child, .framer-8DGNV .framer-18suedf > :last-child { margin-right: 0px; } .framer-8DGNV .framer-6b6skh > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-8DGNV .framer-eixsmj > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-8DGNV .framer-1yprpii > *, .framer-8DGNV .framer-guoppk > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-8DGNV .framer-1xyrqmu > *, .framer-8DGNV .framer-ga7h7o > *, .framer-8DGNV .framer-zhokcc > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-8DGNV .framer-1o04fr3 > *, .framer-8DGNV .framer-4f0oij > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-8DGNV .framer-txhfao > *, .framer-8DGNV .framer-1xj2ude > *, .framer-8DGNV .framer-18k8gzr > *, .framer-8DGNV .framer-16nx04p > *, .framer-8DGNV .framer-id6ila > *, .framer-8DGNV .framer-1psfk0c > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-8DGNV .framer-1uc4hlv > *, .framer-8DGNV .framer-12jbfdg > *, .framer-8DGNV .framer-1uiyvj7 > *, .framer-8DGNV .framer-1sa5fpr > *, .framer-8DGNV .framer-1hh0vzg > *, .framer-8DGNV .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,...sharedStyle7.css,`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-8DGNV { background: white; } .framer-8DGNV.framer-17s81c1 { width: 810px; } .framer-8DGNV .framer-qqkdtf-container { order: 2; } .framer-8DGNV .framer-dkwgus-container { order: 0; } .framer-8DGNV .framer-1u62x5m { order: 5; } .framer-8DGNV .framer-1sge4iv { order: 1; } .framer-8DGNV .framer-5i1sn7 { padding: 0px 0px 35px 0px; } .framer-8DGNV .framer-om0lmh-container { order: 4; }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-8DGNV { background: white; } .framer-8DGNV.framer-17s81c1 { width: 390px; } .framer-8DGNV .framer-qqkdtf-container { order: 3; } .framer-8DGNV .framer-t5ibjx-container { order: 1; } .framer-8DGNV.framer-reioba { background-color: unset; } .framer-8DGNV.framer-uyc35d-container { z-index: 10; } .framer-8DGNV .framer-1u62x5m { flex-direction: column; order: 5; } .framer-8DGNV .framer-crfhx3 { bottom: 62px; } .framer-8DGNV .framer-1sge4iv { order: 2; } .framer-8DGNV .framer-tugpbl { padding: 200px 15px 150px 15px; } .framer-8DGNV .framer-6b6skh { flex: 1 0 0px; } .framer-8DGNV .framer-1aiq98q { aspect-ratio: 1.44 / 1; height: var(--framer-aspect-ratio-supported, 139px); } .framer-8DGNV .framer-1427epi { flex-direction: column; gap: 50px; } .framer-8DGNV .framer-1yprpii { flex: none; order: 1; position: relative; top: unset; width: 100%; } .framer-8DGNV .framer-ga7h7o { flex: none; order: 0; width: 100%; } .framer-8DGNV .framer-guoppk { padding: 50px 15px 50px 15px; } .framer-8DGNV .framer-5i1sn7 { flex-direction: column; gap: 30px; } .framer-8DGNV .framer-txhfao, .framer-8DGNV .framer-1xj2ude, .framer-8DGNV .framer-18k8gzr, .framer-8DGNV .framer-16nx04p { flex: none; width: 100%; } .framer-8DGNV .framer-om0lmh-container { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8DGNV .framer-1u62x5m, .framer-8DGNV .framer-1427epi, .framer-8DGNV .framer-5i1sn7 { gap: 0px; } .framer-8DGNV .framer-1u62x5m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-8DGNV .framer-1u62x5m > :first-child, .framer-8DGNV .framer-1427epi > :first-child, .framer-8DGNV .framer-5i1sn7 > :first-child { margin-top: 0px; } .framer-8DGNV .framer-1u62x5m > :last-child, .framer-8DGNV .framer-1427epi > :last-child, .framer-8DGNV .framer-5i1sn7 > :last-child { margin-bottom: 0px; } .framer-8DGNV .framer-1427epi > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-8DGNV .framer-5i1sn7 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3522\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 * @framerResponsiveScreen\n */const FramerGjn6ePvso=withCSS(Component,css,\"framer-8DGNV\");export default FramerGjn6ePvso;FramerGjn6ePvso.displayName=\"News\";FramerGjn6ePvso.defaultProps={height:3522,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,...EnaBuyTemplateButtonFonts,...TextLinkFonts,...NewsCardFonts,...FooterFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGjn6ePvso\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xYdpOLWaq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z7XusiK94\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"3522\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__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", "fontStore", "fonts", "css", "className", "Scroll_ProgressFonts", "getFonts", "Scroll_Progress", "NavigationNavigationDesktopFonts", "aY7U7qgIT_default", "NavigationNavigationMobileClosedFonts", "QeOYb5IMX_default", "NavigationNavigationMobileOpenFonts", "HlXwoBHVW_default", "EnaBuyTemplateButtonFonts", "ArHouhF6W_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "TextLinkFonts", "RRkfDyZij_default", "MotionDivClipboard_Share", "Clipboard_Share", "motion", "MotionDivWithOptimizedAppearEffect", "ContainerWithFX", "withFX", "NewsCardFonts", "kE6CFowlr_default", "MotionDivWithFX", "FooterFooterFonts", "Xcfy55KEf_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "getContainer", "_document_querySelector", "_ref", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition2", "animation3", "animation4", "transition3", "animation5", "animation6", "animation7", "transition4", "textEffect", "transition5", "animation8", "animation9", "toResponsiveImage", "value", "textEffect1", "animation10", "transition6", "transition7", "QueryData", "query", "pageSize", "data", "useQueryData", "transition8", "transition9", "transition10", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "vaF7lXotP_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "_getFromCurrentRouteData5", "_getFromCurrentRouteData6", "_getFromCurrentRouteData7", "_getFromCurrentRouteData8", "_getFromCurrentRouteData9", "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", "metadata1", "robotsTag", "ie", "bodyCls", "body", "c", "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", "p", "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__"]
}
