{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/tZ4BBLxqep75fqWPDP07/n9RyB3ifxeSooe94Lkru/Scroll_Progress.js", "ssg:https://framerusercontent.com/modules/4Znyw5OGehNnFlMa93or/CLXTV3Np0iID6jXyhHEb/Share_button.js", "ssg:https://framerusercontent.com/modules/yo0XVrVMFWiFd3rZWS6M/KPgZm1oPBSnAWnu3EzDf/a_1YkxEaI.js", "ssg:https://framerusercontent.com/modules/nHVjtCBVuV7t0IuXUtKQ/RXgNqLJPim13M2LVvfiQ/OxbPoMWWx.js", "ssg:https://framerusercontent.com/modules/nGMpIZNfJB6SwKICwRob/esSavCsOQxrrl17uwtLn/O5Ydpvb5y.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\":{\"LinkedIn_Share\":{\"type\":\"reactHoc\",\"name\":\"LinkedIn_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Tumblr_Share\":{\"type\":\"reactHoc\",\"name\":\"Tumblr_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Facebook_Share\":{\"type\":\"reactHoc\",\"name\":\"Facebook_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Whatsapp_Share\":{\"type\":\"reactHoc\",\"name\":\"Whatsapp_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Email_Share\":{\"type\":\"reactHoc\",\"name\":\"Email_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Clipboard_Share\":{\"type\":\"reactHoc\",\"name\":\"Clipboard_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Twitter_Share\":{\"type\":\"reactHoc\",\"name\":\"Twitter_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Share_button.map", "// Generated by Framer (6807895)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Switzer-italic\",\"FS;Switzer-bold italic\",\"FS;Switzer-bold italic\",\"FS;Switzer-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XVUY2PHYBA6KMN4RMEMJPHQSTKCQ267G/UICOQA6KCSHFOSCPYDVVDNNCDKYFXHJB/O34WRFYO7JNWEBBA2LRV2XYRUSYXYDKH.woff2\",weight:\"400\"},{family:\"Switzer\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LVPXCMXCWY3V7PSXRMGRQUJDAS2DT47E/BPEVRT2HG7PPVVUS7A67MZQQZW6LR6A5/A7AS3UPAGLC7MDVC67SBNTE5FGF2Z2RG.woff2\",weight:\"700\"}]}];export const css=['.framer-5G8U5 .framer-styles-preset-1sa6y1y:not(.rich-text-wrapper), .framer-5G8U5 .framer-styles-preset-1sa6y1y.rich-text-wrapper p { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 15px; --framer-font-style: italic; --framer-font-style-bold: italic; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.25px; --framer-line-height: 100%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-5G8U5\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (838580a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Switzer-regular\",\"FS;Switzer-bold\",\"FS;Switzer-bold italic\",\"FS;Switzer-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BLNB4FAQFNK56DWWNF7PMGTCOTZHOEII/ST3WKSSDMBK2MIQQO3MAVYWLF4FTOLFV/6IN5WOLRCYP4G4MOCOHOMXNON6Q7MDAR.woff2\",weight:\"400\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/HBNTRIISA5MEXGL5WPYI7CV2HIWTDV3Q/YDPDINVT673XLXNSTMLG4JNCZZMVVNPN/Y7SCNZJOT2MW5ADSGOFLDGH4TNL4JCQY.woff2\",weight:\"700\"},{family:\"Switzer\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LVPXCMXCWY3V7PSXRMGRQUJDAS2DT47E/BPEVRT2HG7PPVVUS7A67MZQQZW6LR6A5/A7AS3UPAGLC7MDVC67SBNTE5FGF2Z2RG.woff2\",weight:\"700\"},{family:\"Switzer\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XVUY2PHYBA6KMN4RMEMJPHQSTKCQ267G/UICOQA6KCSHFOSCPYDVVDNNCDKYFXHJB/O34WRFYO7JNWEBBA2LRV2XYRUSYXYDKH.woff2\",weight:\"400\"}]}];export const css=['.framer-EDPJm .framer-styles-preset-avne60:not(.rich-text-wrapper), .framer-EDPJm .framer-styles-preset-avne60.rich-text-wrapper p { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-EDPJm\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cf4c6d7)\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,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Scroll_Progress from\"https://framerusercontent.com/modules/tZ4BBLxqep75fqWPDP07/n9RyB3ifxeSooe94Lkru/Scroll_Progress.js\";import FooterFooter from\"#framer/local/canvasComponent/Ecu_gXdKa/Ecu_gXdKa.js\";import FooterEnaLogo from\"#framer/local/canvasComponent/eQjg1x09h/eQjg1x09h.js\";import NavigationNavigationMobile from\"#framer/local/canvasComponent/HIFff2Yck/HIFff2Yck.js\";import NavigationMobileNavigationOpenState from\"#framer/local/canvasComponent/PRwLzu4zV/PRwLzu4zV.js\";import NewsNewsArticle from\"#framer/local/canvasComponent/rbn6MRyRS/rbn6MRyRS.js\";import Buttons from\"#framer/local/canvasComponent/uAtBbCQvP/uAtBbCQvP.js\";import NavigationDesktopNavigation from\"#framer/local/canvasComponent/vlEshtzG5/vlEshtzG5.js\";import GlobalLineAnimationGlobal from\"#framer/local/canvasComponent/VNUD5DB4s/VNUD5DB4s.js\";import TextLinkTextLinkUnderline from\"#framer/local/canvasComponent/ZvxdVgpCY/ZvxdVgpCY.js\";import{Clipboard_Share}from\"#framer/local/codeFile/mf3TvPh/Share_button.js\";import News from\"#framer/local/collection/jvwoU9JnZ/jvwoU9JnZ.js\";import*as sharedStyle9 from\"#framer/local/css/a_1YkxEaI/a_1YkxEaI.js\";import*as sharedStyle8 from\"#framer/local/css/ihc2HQTw5/ihc2HQTw5.js\";import*as sharedStyle10 from\"#framer/local/css/Izc9F6vKJ/Izc9F6vKJ.js\";import*as sharedStyle2 from\"#framer/local/css/jS3cIXaLJ/jS3cIXaLJ.js\";import*as sharedStyle5 from\"#framer/local/css/JTAI5I2Oi/JTAI5I2Oi.js\";import*as sharedStyle from\"#framer/local/css/lIR2awgFS/lIR2awgFS.js\";import*as sharedStyle7 from\"#framer/local/css/nIqa7FfGE/nIqa7FfGE.js\";import*as sharedStyle6 from\"#framer/local/css/OxbPoMWWx/OxbPoMWWx.js\";import*as sharedStyle4 from\"#framer/local/css/r7Jhn1Lmu/r7Jhn1Lmu.js\";import*as sharedStyle3 from\"#framer/local/css/rx7ftaEU9/rx7ftaEU9.js\";import*as sharedStyle1 from\"#framer/local/css/vijqTpVGD/vijqTpVGD.js\";import metadataProvider from\"#framer/local/webPageMetadata/O5Ydpvb5y/O5Ydpvb5y.js\";const Scroll_ProgressFonts=getFonts(Scroll_Progress);const NavigationDesktopNavigationFonts=getFonts(NavigationDesktopNavigation);const NavigationNavigationMobileFonts=getFonts(NavigationNavigationMobile);const NavigationMobileNavigationOpenStateFonts=getFonts(NavigationMobileNavigationOpenState);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const GlobalLineAnimationGlobalFonts=getFonts(GlobalLineAnimationGlobal);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const TextLinkTextLinkUnderlineFonts=getFonts(TextLinkTextLinkUnderline);const MotionDivClipboard_Share82d5poWithOptimizedAppearEffect=withOptimizedAppearEffect(withCodeBoundaryForOverrides(motion.div,{nodeId:\"piShwvLns\",override:Clipboard_Share,scopeId:\"O5Ydpvb5y\"}));const ButtonsFonts=getFonts(Buttons);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivClipboard_Sharef6sf9dWithOptimizedAppearEffect=withOptimizedAppearEffect(withCodeBoundaryForOverrides(motion.div,{nodeId:\"DB5TnfAZW\",override:Clipboard_Share,scopeId:\"O5Ydpvb5y\"}));const NewsNewsArticleFonts=getFonts(NewsNewsArticle);const FooterFooterFonts=getFonts(FooterFooter);const FooterEnaLogoFonts=getFonts(FooterEnaLogo);const breakpoints={hwZPdkVb6:\"(min-width: 810px) and (max-width: 1199px)\",P4iIvSylq:\"(min-width: 1200px)\",rEVmTkxUd:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-QOXw4\";const variantClassNames={hwZPdkVb6:\"framer-v-1qszyy9\",P4iIvSylq:\"framer-v-10ugcwu\",rEVmTkxUd:\"framer-v-1f761yg\"};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:.3,duration:1.5,ease:[.16,1,.3,1],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:40};const transition3={delay:.4,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition4={delay:.55,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:.6,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={delay:.65,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transition7={delay:.7,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition8={delay:.8,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const transition9={delay:.9,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const transition10={delay:1,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const transition11={delay:1.1,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:0};const transition12={delay:1.2,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:0,y:0};const animation17={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:74};const textEffect={effect:animation17,repeat:false,startDelay:0,threshold:.5,tokenization:\"word\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"ek9MYVdoz\";}else{return\"AuYWJD_yp\";}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"P4iIvSylq\",Phone:\"rEVmTkxUd\",Tablet:\"hwZPdkVb6\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"P4iIvSylq\"};};const cursor={alignment:\"start\",component:FooterEnaLogo,offset:{x:15,y:-15},placement:\"top\",variant:\"pHBzX2lRH\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"O5Ydpvb5y\",data:News,type:\"Collection\"},select:[{collection:\"O5Ydpvb5y\",name:\"qcBwbQzoh\",type:\"Identifier\"},{collection:\"O5Ydpvb5y\",name:\"hYsUenESD\",type:\"Identifier\"},{collection:\"O5Ydpvb5y\",name:\"lCc9E8itj\",type:\"Identifier\"},{collection:\"O5Ydpvb5y\",name:\"hveO5726T\",type:\"Identifier\"},{collection:\"O5Ydpvb5y\",name:\"rA5CeeNR5\",type:\"Identifier\"},{collection:\"O5Ydpvb5y\",name:\"IV4OoeQwD\",type:\"Identifier\"},{collection:\"O5Ydpvb5y\",name:\"aAYgSPyif\",type:\"Identifier\"},{collection:\"O5Ydpvb5y\",name:\"LYJcYsuB6\",type:\"Identifier\"},{collection:\"O5Ydpvb5y\",name:\"uMP_xDu0k\",type:\"Identifier\"},{collection:\"O5Ydpvb5y\",name:\"Ac5TDJz2e\",type:\"Identifier\"},{collection:\"O5Ydpvb5y\",name:\"UkT_A2Hym\",type:\"Identifier\"},{collection:\"O5Ydpvb5y\",name:\"jn1arYzHH\",type:\"Identifier\"},{collection:\"O5Ydpvb5y\",name:\"yqKo1sMxK\",type:\"Identifier\"},{collection:\"O5Ydpvb5y\",name:\"ijpr8OOIZ\",type:\"Identifier\"},{collection:\"O5Ydpvb5y\",name:\"gtyfVqgjt\",type:\"Identifier\"},{collection:\"O5Ydpvb5y\",name:\"BlSnBKir5\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"O5Ydpvb5y\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,aAYgSPyif=getFromCurrentRouteData(\"aAYgSPyif\")??\"\",qcBwbQzoh=getFromCurrentRouteData(\"qcBwbQzoh\")??\"\",uMP_xDu0k=getFromCurrentRouteData(\"uMP_xDu0k\"),LYJcYsuB6=getFromCurrentRouteData(\"LYJcYsuB6\")??\"\",Ac5TDJz2e=getFromCurrentRouteData(\"Ac5TDJz2e\")??\"\",hYsUenESD=getFromCurrentRouteData(\"hYsUenESD\"),UkT_A2Hym=getFromCurrentRouteData(\"UkT_A2Hym\")??\"\",jn1arYzHH=getFromCurrentRouteData(\"jn1arYzHH\")??\"\",yqKo1sMxK=getFromCurrentRouteData(\"yqKo1sMxK\")??\"\",ijpr8OOIZ=getFromCurrentRouteData(\"ijpr8OOIZ\"),gtyfVqgjt=getFromCurrentRouteData(\"gtyfVqgjt\"),BlSnBKir5=getFromCurrentRouteData(\"BlSnBKir5\")??\"\",b28zECxredk9eUOEne,fcXAfK8sOdk9eUOEne,hYsUenESDdk9eUOEne,qcBwbQzohdk9eUOEne,b867KhqTRdk9eUOEne,iddk9eUOEne,lCc9E8itj=getFromCurrentRouteData(\"lCc9E8itj\")??0,b28zECxreYpwCz7zVX,fcXAfK8sOYpwCz7zVX,hYsUenESDYpwCz7zVX,qcBwbQzohYpwCz7zVX,b867KhqTRYpwCz7zVX,idYpwCz7zVX,hveO5726T=getFromCurrentRouteData(\"hveO5726T\")??0,b28zECxrebuiVqvPQE,fcXAfK8sObuiVqvPQE,hYsUenESDbuiVqvPQE,qcBwbQzohbuiVqvPQE,b867KhqTRbuiVqvPQE,idbuiVqvPQE,rA5CeeNR5=getFromCurrentRouteData(\"rA5CeeNR5\")??0,b28zECxreOFYuTVWb7,fcXAfK8sOOFYuTVWb7,hYsUenESDOFYuTVWb7,qcBwbQzohOFYuTVWb7,b867KhqTROFYuTVWb7,idOFYuTVWb7,IV4OoeQwD=getFromCurrentRouteData(\"IV4OoeQwD\")??0,...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,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"rEVmTkxUd\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"rEVmTkxUd\")return true;return false;};const router=useRouter();const elementId=useRouteElementId(\"Xzp6Y0Sv0\");const ref1=React.useRef(null);useCustomCursors({cvhjml:cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"P4iIvSylq\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(247, 247, 247); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-10ugcwu\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qqkdtf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"S9tDTxDry\",scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(Scroll_Progress,{backgroundColor:\"var(--token-33277ac4-9b91-4864-a626-82c1057457de, rgb(252, 118, 45))\",height:\"100%\",id:\"S9tDTxDry\",layoutId:\"S9tDTxDry\",Origin:\"l\",progressHeight:2,progressMargin:0,progressPosition:true,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qnfnxq-container hidden-1f761yg\",layoutScroll:true,nodeId:\"TDVHIMDQv\",scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(NavigationDesktopNavigation,{height:\"100%\",id:\"TDVHIMDQv\",layoutId:\"TDVHIMDQv\",style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rEVmTkxUd:{height:64,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-tjbxdq-container hidden-10ugcwu hidden-1qszyy9\",\"data-framer-name\":\"Navigation Mobile\",id:\"tjbxdq\",layoutScroll:true,name:\"Navigation Mobile\",nodeId:\"ja0Vcp05c\",scopeId:\"O5Ydpvb5y\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rEVmTkxUd:{variant:overlay.visible?\"PPFOyo3m8\":undefined}},children:/*#__PURE__*/_jsx(NavigationNavigationMobile,{EHMhKGDpT:EHMhKGDpT3bnx0g({overlay}),height:\"100%\",id:\"ja0Vcp05c\",layoutId:\"ja0Vcp05c\",name:\"Navigation Mobile\",style:{width:\"100%\"},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-1gk2uny\"),\"data-framer-portal-id\":\"tjbxdq\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"SjPEss7Uy\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation1,className:cx(scopingClassNames,\"framer-1sry6ig-container\"),\"data-framer-portal-id\":\"tjbxdq\",exit:animation,inComponentSlot:true,initial:animation2,nodeId:\"qMk9jcTfy\",rendersWithMotion:true,scopeId:\"O5Ydpvb5y\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(NavigationMobileNavigationOpenState,{height:\"100%\",id:\"qMk9jcTfy\",layoutId:\"qMk9jcTfy\",style:{height:\"100%\",width:\"100%\"},wCQM1JsQO:wCQM1JsQO1wnntms({overlay}),width:\"100%\"})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-narixi\",\"data-framer-name\":\"Buy Template Module\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-182qswy\",\"data-framer-name\":\"Button Wrapper\"})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-eue00g\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1335l7v\",\"data-framer-name\":\"Section Article\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-sr3x4y\",\"data-framer-name\":\"Left Column\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11hzind\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qp56lh\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-12rzbfw\",\"data-framer-appear-id\":\"12rzbfw\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dimix\",\"data-styles-preset\":\"lIR2awgFS\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Dezeen\"})}),className:\"framer-lewf2q\",fonts:[\"Inter\"],text:aAYgSPyif,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-164ymaf\",\"data-framer-appear-id\":\"164ymaf\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13k0sal\",\"data-styles-preset\":\"vijqTpVGD\",children:\"Nostalgia in Modern Branding\"})}),className:\"framer-12gxh44\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:qcBwbQzoh,verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwZPdkVb6:{width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 20px) / 2, 1px) - 20px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px) / 2, 1px) - 20px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y473yu-container hidden-1f761yg\",nodeId:\"jJXUZized\",scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobal,{height:\"100%\",id:\"jJXUZized\",jO4qx5iFC:{borderBottomWidth:1,borderColor:\"rgba(0, 0, 0, 0.2)\",borderLeftWidth:1,borderRightWidth:0,borderStyle:\"dashed\",borderTopWidth:2},layoutId:\"jJXUZized\",sjMku05M0:\"var(--token-98dd2e4b-2534-4771-a0e9-0adcb7a05c7c, rgba(0, 0, 0, 0.2))\",style:{height:\"100%\",width:\"100%\"},variant:\"sG0P8FssP\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t0p8b5 hidden-1f761yg\",\"data-framer-name\":\"Author - Desktop\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vtlmrc\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation6,background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:32,pixelHeight:4272,pixelWidth:2848,sizes:\"65px\",...toResponsiveImage(uMP_xDu0k)},className:\"framer-g9ob8n\",\"data-framer-appear-id\":\"g9ob8n\",\"data-framer-name\":\"Image\",initial:animation4,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-etyep1\",\"data-styles-preset\":\"jS3cIXaLJ\",children:\"Marc Griffin\"})}),className:\"framer-194ubnd\",\"data-framer-appear-id\":\"194ubnd\",fonts:[\"Inter\"],initial:animation4,optimized:true,style:{transformPerspective:1200},text:LYJcYsuB6,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1svfi91\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1fzhqew\",\"data-framer-appear-id\":\"1fzhqew\",\"data-framer-name\":\"Date & Time Read\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dimix\",\"data-styles-preset\":\"lIR2awgFS\",children:\"23rd of September, 2025\"})}),className:\"framer-xubgc8\",fonts:[\"Inter\"],text:Ac5TDJz2e,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivClipboard_Share82d5poWithOptimizedAppearEffect,{animate:animation9,className:\"framer-82d5po\",\"data-framer-appear-id\":\"82d5po\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vibaeh-container\",nodeId:\"a9_fgFp9O\",rendersWithMotion:true,scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(TextLinkTextLinkUnderline,{height:\"100%\",id:\"a9_fgFp9O\",layoutId:\"a9_fgFp9O\",lQ_FXk_nD:false,UvO00kpP1:\"Partager l'article\",variant:\"qz5D2mL2r\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"p6C2Q_pFQ\"},implicitPathVariables:undefined},{href:{webPageId:\"p6C2Q_pFQ\"},implicitPathVariables:undefined},{href:{webPageId:\"p6C2Q_pFQ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,width:\"160px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwZPdkVb6:{transformTemplate:undefined},rEVmTkxUd:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-4zf2c7-container\",\"data-framer-appear-id\":\"4zf2c7\",initial:animation11,nodeId:\"qnmxEXiI3\",optimized:true,rendersWithMotion:true,scopeId:\"O5Ydpvb5y\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwZPdkVb6:{RfvyNXQf9:resolvedLinks[1]},rEVmTkxUd:{RfvyNXQf9:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"qnmxEXiI3\",layoutId:\"qnmxEXiI3\",ppAJCDvAA:false,RfvyNXQf9:resolvedLinks[0],s1xSjgAh4:\"Parlons de votre projet\",style:{width:\"100%\"},variant:\"i8Lre3Ffw\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"article\",{className:\"framer-1jebivy\",\"data-framer-name\":\"Article\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-124q54j\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwZPdkVb6:{background:{alt:\"\",fit:\"fill\",sizes:`max(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 20px) / 2, 1px) - 20px, 1px)`,...toResponsiveImage(hYsUenESD)}},rEVmTkxUd:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 30px)`,...toResponsiveImage(hYsUenESD)}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation9,background:{alt:\"\",fit:\"fill\",sizes:`max(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px) / 2, 1px) - 20px, 1px)`,...toResponsiveImage(hYsUenESD)},className:\"framer-1omyuxv\",\"data-framer-appear-id\":\"1omyuxv\",\"data-framer-name\":\"Intro Image\",initial:animation4,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation12,className:\"framer-k1urc3\",\"data-framer-appear-id\":\"k1urc3\",\"data-framer-name\":\"Chapter 1\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:UkT_A2Hym,className:\"framer-wlrf5n\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-dwhjcr\",h2:\"framer-styles-preset-gwcr4c\",h3:\"framer-styles-preset-1n4uypm\",h4:\"framer-styles-preset-1q9ex6z\",img:\"framer-styles-preset-jdiamp\",p:\"framer-styles-preset-avne60\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation13,className:\"framer-nmgjrj\",\"data-framer-appear-id\":\"nmgjrj\",\"data-framer-name\":\"Quote\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sa6y1y\",\"data-styles-preset\":\"a_1YkxEaI\",children:'\"These fundamentals apply to everything, whether you\\'re creating a simple logo animation or a complex scene.\"'})}),className:\"framer-i0c0el\",fonts:[\"Inter\"],text:jn1arYzHH,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation14,className:\"framer-15tzu50\",\"data-framer-appear-id\":\"15tzu50\",\"data-framer-name\":\"Chapter 2\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:yqKo1sMxK,className:\"framer-6rzffc\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-dwhjcr\",h2:\"framer-styles-preset-gwcr4c\",h3:\"framer-styles-preset-1n4uypm\",h4:\"framer-styles-preset-1q9ex6z\",img:\"framer-styles-preset-jdiamp\",p:\"framer-styles-preset-avne60\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation15,className:\"framer-4sq335\",\"data-framer-appear-id\":\"4sq335\",\"data-framer-name\":\"Chapter Images\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1efpu5n\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwZPdkVb6:{background:{alt:\"\",fit:\"fill\",pixelHeight:5730,pixelWidth:4e3,sizes:`max((max(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 20px) / 2, 1px) - 20px, 1px) - 10px) / 2, 1px)`,...toResponsiveImage(ijpr8OOIZ)}},rEVmTkxUd:{background:{alt:\"\",fit:\"fill\",pixelHeight:5730,pixelWidth:4e3,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px) / 2, 1px)`,...toResponsiveImage(ijpr8OOIZ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:5730,pixelWidth:4e3,sizes:`max((max(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px) / 2, 1px) - 20px, 1px) - 10px) / 2, 1px)`,...toResponsiveImage(ijpr8OOIZ)},className:\"framer-a0qyuk\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11jusa0\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwZPdkVb6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2556,pixelWidth:3831,sizes:`max((max(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 20px) / 2, 1px) - 20px, 1px) - 10px) / 2, 1px)`,...toResponsiveImage(gtyfVqgjt)}},rEVmTkxUd:{background:{alt:\"\",fit:\"fill\",pixelHeight:2556,pixelWidth:3831,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px) / 2, 1px)`,...toResponsiveImage(gtyfVqgjt)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2556,pixelWidth:3831,sizes:`max((max(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px) / 2, 1px) - 20px, 1px) - 10px) / 2, 1px)`,...toResponsiveImage(gtyfVqgjt)},className:\"framer-1lqpqav\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation16,className:\"framer-w0rjhy\",\"data-framer-appear-id\":\"w0rjhy\",\"data-framer-name\":\"Conclusion\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:BlSnBKir5,className:\"framer-1ngho2\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-dwhjcr\",h3:\"framer-styles-preset-1n4uypm\",h4:\"framer-styles-preset-1q9ex6z\",img:\"framer-styles-preset-jdiamp\",p:\"framer-styles-preset-avne60\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cbtusy hidden-10ugcwu hidden-1qszyy9\",\"data-framer-name\":\"Author - Mobile\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h9smfm\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation6,background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:32,pixelHeight:4272,pixelWidth:2848,sizes:\"65px\",...toResponsiveImage(uMP_xDu0k)},className:\"framer-1qa0i9f\",\"data-framer-appear-id\":\"1qa0i9f\",\"data-framer-name\":\"Image\",initial:animation4,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-etyep1\",\"data-styles-preset\":\"jS3cIXaLJ\",children:\"Marc Griffin\"})}),className:\"framer-1vve43z\",\"data-framer-appear-id\":\"1vve43z\",fonts:[\"Inter\"],initial:animation4,optimized:true,style:{transformPerspective:1200},text:LYJcYsuB6,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4er07q\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-b2pn\",\"data-framer-appear-id\":\"b2pn\",\"data-framer-name\":\"Date & Time Read\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dimix\",\"data-styles-preset\":\"lIR2awgFS\",children:\"23rd of September, 2025\"})}),className:\"framer-1h9wo1i\",fonts:[\"Inter\"],text:Ac5TDJz2e,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivClipboard_Sharef6sf9dWithOptimizedAppearEffect,{animate:animation9,className:\"framer-f6sf9d\",\"data-framer-appear-id\":\"f6sf9d\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yosc26-container\",nodeId:\"w7U7CUZLH\",rendersWithMotion:true,scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(TextLinkTextLinkUnderline,{height:\"100%\",id:\"w7U7CUZLH\",layoutId:\"w7U7CUZLH\",lQ_FXk_nD:false,UvO00kpP1:\"Share Article\",variant:\"qz5D2mL2r\",width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rEVmTkxUd:{height:1,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 30px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gppood-container hidden-10ugcwu\",nodeId:\"Cvtit6Gb4\",scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rEVmTkxUd:{variant:\"mQVtK0ziv\"}},children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobal,{height:\"100%\",id:\"Cvtit6Gb4\",jO4qx5iFC:{borderBottomWidth:1,borderColor:\"rgba(0, 0, 0, 0.2)\",borderLeftWidth:1,borderRightWidth:0,borderStyle:\"dashed\",borderTopWidth:2},layoutId:\"Cvtit6Gb4\",sjMku05M0:\"var(--token-98dd2e4b-2534-4771-a0e9-0adcb7a05c7c, rgba(0, 0, 0, 0.2))\",style:{height:\"100%\",width:\"100%\"},variant:\"sG0P8FssP\",width:\"100%\"})})})})})]})]})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1u5phfi\",\"data-framer-name\":\"Section More Articles\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2j97ex\",\"data-framer-name\":\"Heading Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ezn3v1-container\",nodeId:\"ONdzGsAk8\",scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobal,{height:\"100%\",id:\"ONdzGsAk8\",jO4qx5iFC:{borderBottomWidth:1,borderColor:\"rgba(0, 0, 0, 0.2)\",borderLeftWidth:1,borderRightWidth:0,borderStyle:\"dashed\",borderTopWidth:2},layoutId:\"ONdzGsAk8\",sjMku05M0:\"var(--token-98dd2e4b-2534-4771-a0e9-0adcb7a05c7c, rgba(0, 0, 0, 0.2))\",style:{height:\"100%\",width:\"100%\"},variant:\"EZQ5yO3L2\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x3veep\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-9pbo33\",\"data-styles-preset\":\"Izc9F6vKJ\",children:\"Plus d'articles\"})}),className:\"framer-mwtwym\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Q_XUUCVlv\"},implicitPathVariables:undefined},{href:{webPageId:\"Q_XUUCVlv\"},implicitPathVariables:undefined},{href:{webPageId:\"Q_XUUCVlv\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xqazl6-container\",nodeId:\"FqQUI5c86\",scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwZPdkVb6:{RfvyNXQf9:resolvedLinks1[1]},rEVmTkxUd:{RfvyNXQf9:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"FqQUI5c86\",layoutId:\"FqQUI5c86\",ppAJCDvAA:false,RfvyNXQf9:resolvedLinks1[0],s1xSjgAh4:\"Tous les articles\",variant:\"bBoZ0FMGm\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9wcp7s\",\"data-framer-name\":\"Articles Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s15ib6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"dk9eUOEne\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"dk9eUOEne\",name:\"b28zECxre\",type:\"Identifier\"},{collection:\"dk9eUOEne\",name:\"fcXAfK8sO\",type:\"Identifier\"},{collection:\"dk9eUOEne\",name:\"hYsUenESD\",type:\"Identifier\"},{collection:\"dk9eUOEne\",name:\"qcBwbQzoh\",type:\"Identifier\"},{collection:\"dk9eUOEne\",name:\"b867KhqTR\",type:\"Identifier\"},{collection:\"dk9eUOEne\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"dk9eUOEne\",name:\"z6RiVm3Ch\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:lCc9E8itj},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({b28zECxre:b28zECxredk9eUOEne,b867KhqTR:b867KhqTRdk9eUOEne,fcXAfK8sO:fcXAfK8sOdk9eUOEne,hYsUenESD:hYsUenESDdk9eUOEne,id:iddk9eUOEne,qcBwbQzoh:qcBwbQzohdk9eUOEne},index)=>{b28zECxredk9eUOEne??=\"\";fcXAfK8sOdk9eUOEne??=true;qcBwbQzohdk9eUOEne??=\"\";b867KhqTRdk9eUOEne??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`dk9eUOEne-${iddk9eUOEne}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{b28zECxre:b28zECxredk9eUOEne},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{b28zECxre:b28zECxredk9eUOEne},webPageId:\"O5Ydpvb5y\"},motionChild:true,nodeId:\"xVS4V1Q3M\",scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-n4vcg framer-ji2q9m\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rEVmTkxUd:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:482,width:`max((${componentViewport?.width||\"100vw\"} - 70px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tfyhuq-container\",nodeId:\"LNUl8oU2w\",scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwZPdkVb6:{variant:\"plJryGGGN\"},rEVmTkxUd:{variant:\"plJryGGGN\"}},children:/*#__PURE__*/_jsx(NewsNewsArticle,{GdNar7EyN:qcBwbQzohdk9eUOEne,height:\"100%\",id:\"LNUl8oU2w\",layoutId:\"LNUl8oU2w\",Omtc4De91:b867KhqTRdk9eUOEne,style:{width:\"100%\"},variant:convertFromBoolean(equals(fcXAfK8sOdk9eUOEne,true),activeLocale),width:\"100%\",ZYZ194zvr:toResponsiveImage(hYsUenESDdk9eUOEne)})})})})})})})})},iddk9eUOEne);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-iumeok\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"YpwCz7zVX\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"YpwCz7zVX\",name:\"b28zECxre\",type:\"Identifier\"},{collection:\"YpwCz7zVX\",name:\"fcXAfK8sO\",type:\"Identifier\"},{collection:\"YpwCz7zVX\",name:\"hYsUenESD\",type:\"Identifier\"},{collection:\"YpwCz7zVX\",name:\"qcBwbQzoh\",type:\"Identifier\"},{collection:\"YpwCz7zVX\",name:\"b867KhqTR\",type:\"Identifier\"},{collection:\"YpwCz7zVX\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"YpwCz7zVX\",name:\"z6RiVm3Ch\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:hveO5726T},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({b28zECxre:b28zECxreYpwCz7zVX,b867KhqTR:b867KhqTRYpwCz7zVX,fcXAfK8sO:fcXAfK8sOYpwCz7zVX,hYsUenESD:hYsUenESDYpwCz7zVX,id:idYpwCz7zVX,qcBwbQzoh:qcBwbQzohYpwCz7zVX},index1)=>{b28zECxreYpwCz7zVX??=\"\";fcXAfK8sOYpwCz7zVX??=true;qcBwbQzohYpwCz7zVX??=\"\";b867KhqTRYpwCz7zVX??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`YpwCz7zVX-${idYpwCz7zVX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{b28zECxre:b28zECxreYpwCz7zVX},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{b28zECxre:b28zECxreYpwCz7zVX},webPageId:\"O5Ydpvb5y\"},motionChild:true,nodeId:\"m6fseUFRF\",scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1kpto19 framer-ji2q9m\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rEVmTkxUd:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:482,width:`max((${componentViewport?.width||\"100vw\"} - 70px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17vvgw3-container\",nodeId:\"mwXfRtdNy\",scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwZPdkVb6:{variant:\"OQfD1a2J4\"},rEVmTkxUd:{variant:\"ek9MYVdoz\"}},children:/*#__PURE__*/_jsx(NewsNewsArticle,{GdNar7EyN:qcBwbQzohYpwCz7zVX,height:\"100%\",id:\"mwXfRtdNy\",layoutId:\"mwXfRtdNy\",Omtc4De91:b867KhqTRYpwCz7zVX,style:{width:\"100%\"},variant:convertFromBoolean(fcXAfK8sOYpwCz7zVX,activeLocale),width:\"100%\",ZYZ194zvr:toResponsiveImage(hYsUenESDYpwCz7zVX)})})})})})})})})},idYpwCz7zVX);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9xppfm\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"buiVqvPQE\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"buiVqvPQE\",name:\"b28zECxre\",type:\"Identifier\"},{collection:\"buiVqvPQE\",name:\"fcXAfK8sO\",type:\"Identifier\"},{collection:\"buiVqvPQE\",name:\"hYsUenESD\",type:\"Identifier\"},{collection:\"buiVqvPQE\",name:\"qcBwbQzoh\",type:\"Identifier\"},{collection:\"buiVqvPQE\",name:\"b867KhqTR\",type:\"Identifier\"},{collection:\"buiVqvPQE\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"buiVqvPQE\",name:\"z6RiVm3Ch\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:rA5CeeNR5},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({b28zECxre:b28zECxrebuiVqvPQE,b867KhqTR:b867KhqTRbuiVqvPQE,fcXAfK8sO:fcXAfK8sObuiVqvPQE,hYsUenESD:hYsUenESDbuiVqvPQE,id:idbuiVqvPQE,qcBwbQzoh:qcBwbQzohbuiVqvPQE},index2)=>{b28zECxrebuiVqvPQE??=\"\";fcXAfK8sObuiVqvPQE??=true;qcBwbQzohbuiVqvPQE??=\"\";b867KhqTRbuiVqvPQE??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`buiVqvPQE-${idbuiVqvPQE}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{b28zECxre:b28zECxrebuiVqvPQE},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{b28zECxre:b28zECxrebuiVqvPQE},webPageId:\"O5Ydpvb5y\"},motionChild:true,nodeId:\"hzqMRhORW\",scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-15fvxav framer-ji2q9m\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rEVmTkxUd:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:482,width:`max((${componentViewport?.width||\"100vw\"} - 70px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4fcgau-container\",nodeId:\"Xhjo_SiZV\",scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwZPdkVb6:{variant:\"plJryGGGN\"},rEVmTkxUd:{variant:\"plJryGGGN\"}},children:/*#__PURE__*/_jsx(NewsNewsArticle,{GdNar7EyN:qcBwbQzohbuiVqvPQE,height:\"100%\",id:\"Xhjo_SiZV\",layoutId:\"Xhjo_SiZV\",Omtc4De91:b867KhqTRbuiVqvPQE,style:{width:\"100%\"},variant:convertFromBoolean(fcXAfK8sObuiVqvPQE,activeLocale),width:\"100%\",ZYZ194zvr:toResponsiveImage(hYsUenESDbuiVqvPQE)})})})})})})})})},idbuiVqvPQE);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ri8hf\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"OFYuTVWb7\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"OFYuTVWb7\",name:\"b28zECxre\",type:\"Identifier\"},{collection:\"OFYuTVWb7\",name:\"fcXAfK8sO\",type:\"Identifier\"},{collection:\"OFYuTVWb7\",name:\"hYsUenESD\",type:\"Identifier\"},{collection:\"OFYuTVWb7\",name:\"qcBwbQzoh\",type:\"Identifier\"},{collection:\"OFYuTVWb7\",name:\"b867KhqTR\",type:\"Identifier\"},{collection:\"OFYuTVWb7\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"OFYuTVWb7\",name:\"z6RiVm3Ch\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:IV4OoeQwD},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({b28zECxre:b28zECxreOFYuTVWb7,b867KhqTR:b867KhqTROFYuTVWb7,fcXAfK8sO:fcXAfK8sOOFYuTVWb7,hYsUenESD:hYsUenESDOFYuTVWb7,id:idOFYuTVWb7,qcBwbQzoh:qcBwbQzohOFYuTVWb7},index3)=>{b28zECxreOFYuTVWb7??=\"\";fcXAfK8sOOFYuTVWb7??=true;qcBwbQzohOFYuTVWb7??=\"\";b867KhqTROFYuTVWb7??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`OFYuTVWb7-${idOFYuTVWb7}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{b28zECxre:b28zECxreOFYuTVWb7},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{b28zECxre:b28zECxreOFYuTVWb7},webPageId:\"O5Ydpvb5y\"},motionChild:true,nodeId:\"yjtSQtTre\",scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1co5m14 framer-ji2q9m\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rEVmTkxUd:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:482,width:`max((${componentViewport?.width||\"100vw\"} - 70px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mre9t3-container\",nodeId:\"xgXNBiFAV\",scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwZPdkVb6:{variant:\"OQfD1a2J4\"},rEVmTkxUd:{variant:\"ek9MYVdoz\"}},children:/*#__PURE__*/_jsx(NewsNewsArticle,{GdNar7EyN:qcBwbQzohOFYuTVWb7,height:\"100%\",id:\"xgXNBiFAV\",layoutId:\"xgXNBiFAV\",Omtc4De91:b867KhqTROFYuTVWb7,style:{width:\"100%\"},variant:convertFromBoolean(fcXAfK8sOOFYuTVWb7,activeLocale),width:\"100%\",ZYZ194zvr:toResponsiveImage(hYsUenESDOFYuTVWb7)})})})})})})})})},idOFYuTVWb7);})})})})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:474,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fm93k3-container\",id:elementId,nodeId:\"Xzp6Y0Sv0\",ref:ref1,scopeId:\"O5Ydpvb5y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwZPdkVb6:{variant:\"qazcbMyGd\"},rEVmTkxUd:{variant:\"Fg1Q1eOuR\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"Xzp6Y0Sv0\",layoutId:\"Xzp6Y0Sv0\",QBaefKmHe:\"cvhjml\",style:{width:\"100%\"},variant:\"iDrl6GYeD\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QOXw4.framer-ji2q9m, .framer-QOXw4 .framer-ji2q9m { display: block; }\",\".framer-QOXw4.framer-10ugcwu { align-content: center; align-items: center; background-color: #f7f7f7; 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-QOXw4 .framer-qqkdtf-container { flex: none; height: auto; position: relative; width: auto; z-index: 10; }\",\".framer-QOXw4 .framer-1qnfnxq-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-QOXw4 .framer-tjbxdq-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 9; }\",\".framer-QOXw4.framer-1gk2uny { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 6; }\",\".framer-QOXw4.framer-1sry6ig-container { flex: none; height: 100vh; left: 0px; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-QOXw4 .framer-narixi { 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-QOXw4 .framer-182qswy { 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; min-height: 36px; min-width: 142px; overflow: visible; padding: 0px; position: absolute; right: 20px; width: min-content; z-index: 1; }\",\".framer-QOXw4 .framer-eue00g { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 160px 0px 120px 0px; position: relative; width: 100%; z-index: 8; }\",\".framer-QOXw4 .framer-1335l7v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QOXw4 .framer-sr3x4y { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px 0px 120px 20px; position: relative; width: 1px; }\",\".framer-QOXw4 .framer-11hzind { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 90px; width: 100%; z-index: 1; }\",\".framer-QOXw4 .framer-1qp56lh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QOXw4 .framer-12rzbfw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 17px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QOXw4 .framer-lewf2q { flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre; width: auto; }\",\".framer-QOXw4 .framer-164ymaf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 8px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QOXw4 .framer-12gxh44 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-QOXw4 .framer-y473yu-container, .framer-QOXw4 .framer-gppood-container, .framer-QOXw4 .framer-ezn3v1-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-QOXw4 .framer-1t0p8b5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QOXw4 .framer-1vtlmrc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QOXw4 .framer-g9ob8n { aspect-ratio: 1 / 1; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; flex: none; height: var(--framer-aspect-ratio-supported, 65px); position: relative; width: 65px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QOXw4 .framer-194ubnd, .framer-QOXw4 .framer-1vve43z { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-QOXw4 .framer-1svfi91 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QOXw4 .framer-1fzhqew, .framer-QOXw4 .framer-b2pn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QOXw4 .framer-xubgc8, .framer-QOXw4 .framer-1h9wo1i { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QOXw4 .framer-82d5po, .framer-QOXw4 .framer-f6sf9d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QOXw4 .framer-1vibaeh-container, .framer-QOXw4 .framer-1yosc26-container, .framer-QOXw4 .framer-1xqazl6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-QOXw4 .framer-4zf2c7-container { bottom: 0px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: 160px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-QOXw4 .framer-1jebivy { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 120px 0px; position: relative; width: 1px; }\",\".framer-QOXw4 .framer-124q54j { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QOXw4 .framer-1omyuxv { aspect-ratio: 1.4743589743589745 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 380px); position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QOXw4 .framer-k1urc3, .framer-QOXw4 .framer-15tzu50, .framer-QOXw4 .framer-w0rjhy { 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%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QOXw4 .framer-wlrf5n, .framer-QOXw4 .framer-6rzffc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-QOXw4 .framer-nmgjrj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QOXw4 .framer-i0c0el { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QOXw4 .framer-4sq335 { 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: 10px 0px 10px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QOXw4 .framer-1efpu5n, .framer-QOXw4 .framer-11jusa0 { align-content: center; align-items: center; aspect-ratio: 0.8103448275862069 / 1; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 340px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QOXw4 .framer-a0qyuk, .framer-QOXw4 .framer-1lqpqav { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; }\",\".framer-QOXw4 .framer-1ngho2 { --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-QOXw4 .framer-1cbtusy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-QOXw4 .framer-h9smfm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-QOXw4 .framer-1qa0i9f { aspect-ratio: 1 / 1; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; flex: none; height: 65px; position: relative; width: var(--framer-aspect-ratio-supported, 65px); will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QOXw4 .framer-4er07q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QOXw4 .framer-1u5phfi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-QOXw4 .framer-2j97ex { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QOXw4 .framer-1x3veep { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QOXw4 .framer-mwtwym { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-QOXw4 .framer-9wcp7s { 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: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QOXw4 .framer-s15ib6, .framer-QOXw4 .framer-iumeok, .framer-QOXw4 .framer-9xppfm, .framer-QOXw4 .framer-2ri8hf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-QOXw4 .framer-n4vcg, .framer-QOXw4 .framer-1kpto19, .framer-QOXw4 .framer-15fvxav, .framer-QOXw4 .framer-1co5m14 { 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-QOXw4 .framer-tfyhuq-container, .framer-QOXw4 .framer-17vvgw3-container, .framer-QOXw4 .framer-4fcgau-container, .framer-QOXw4 .framer-mre9t3-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-QOXw4 .framer-1fm93k3-container { bottom: 0px; flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QOXw4.framer-10ugcwu, .framer-QOXw4 .framer-narixi, .framer-QOXw4 .framer-182qswy, .framer-QOXw4 .framer-eue00g, .framer-QOXw4 .framer-1335l7v, .framer-QOXw4 .framer-sr3x4y, .framer-QOXw4 .framer-11hzind, .framer-QOXw4 .framer-1qp56lh, .framer-QOXw4 .framer-12rzbfw, .framer-QOXw4 .framer-164ymaf, .framer-QOXw4 .framer-1t0p8b5, .framer-QOXw4 .framer-1vtlmrc, .framer-QOXw4 .framer-1svfi91, .framer-QOXw4 .framer-1fzhqew, .framer-QOXw4 .framer-82d5po, .framer-QOXw4 .framer-1jebivy, .framer-QOXw4 .framer-124q54j, .framer-QOXw4 .framer-k1urc3, .framer-QOXw4 .framer-nmgjrj, .framer-QOXw4 .framer-15tzu50, .framer-QOXw4 .framer-4sq335, .framer-QOXw4 .framer-1efpu5n, .framer-QOXw4 .framer-11jusa0, .framer-QOXw4 .framer-w0rjhy, .framer-QOXw4 .framer-1cbtusy, .framer-QOXw4 .framer-h9smfm, .framer-QOXw4 .framer-4er07q, .framer-QOXw4 .framer-b2pn, .framer-QOXw4 .framer-f6sf9d, .framer-QOXw4 .framer-1u5phfi, .framer-QOXw4 .framer-2j97ex, .framer-QOXw4 .framer-1x3veep, .framer-QOXw4 .framer-9wcp7s, .framer-QOXw4 .framer-s15ib6, .framer-QOXw4 .framer-n4vcg, .framer-QOXw4 .framer-iumeok, .framer-QOXw4 .framer-1kpto19, .framer-QOXw4 .framer-9xppfm, .framer-QOXw4 .framer-15fvxav, .framer-QOXw4 .framer-2ri8hf, .framer-QOXw4 .framer-1co5m14 { gap: 0px; } .framer-QOXw4.framer-10ugcwu > *, .framer-QOXw4 .framer-eue00g > *, .framer-QOXw4 .framer-1cbtusy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-QOXw4.framer-10ugcwu > :first-child, .framer-QOXw4 .framer-eue00g > :first-child, .framer-QOXw4 .framer-sr3x4y > :first-child, .framer-QOXw4 .framer-11hzind > :first-child, .framer-QOXw4 .framer-1qp56lh > :first-child, .framer-QOXw4 .framer-1t0p8b5 > :first-child, .framer-QOXw4 .framer-1vtlmrc > :first-child, .framer-QOXw4 .framer-1svfi91 > :first-child, .framer-QOXw4 .framer-1fzhqew > :first-child, .framer-QOXw4 .framer-124q54j > :first-child, .framer-QOXw4 .framer-nmgjrj > :first-child, .framer-QOXw4 .framer-1cbtusy > :first-child, .framer-QOXw4 .framer-h9smfm > :first-child, .framer-QOXw4 .framer-4er07q > :first-child, .framer-QOXw4 .framer-b2pn > :first-child, .framer-QOXw4 .framer-1u5phfi > :first-child, .framer-QOXw4 .framer-2j97ex > :first-child { margin-top: 0px; } .framer-QOXw4.framer-10ugcwu > :last-child, .framer-QOXw4 .framer-eue00g > :last-child, .framer-QOXw4 .framer-sr3x4y > :last-child, .framer-QOXw4 .framer-11hzind > :last-child, .framer-QOXw4 .framer-1qp56lh > :last-child, .framer-QOXw4 .framer-1t0p8b5 > :last-child, .framer-QOXw4 .framer-1vtlmrc > :last-child, .framer-QOXw4 .framer-1svfi91 > :last-child, .framer-QOXw4 .framer-1fzhqew > :last-child, .framer-QOXw4 .framer-124q54j > :last-child, .framer-QOXw4 .framer-nmgjrj > :last-child, .framer-QOXw4 .framer-1cbtusy > :last-child, .framer-QOXw4 .framer-h9smfm > :last-child, .framer-QOXw4 .framer-4er07q > :last-child, .framer-QOXw4 .framer-b2pn > :last-child, .framer-QOXw4 .framer-1u5phfi > :last-child, .framer-QOXw4 .framer-2j97ex > :last-child { margin-bottom: 0px; } .framer-QOXw4 .framer-narixi > *, .framer-QOXw4 .framer-182qswy > *, .framer-QOXw4 .framer-12rzbfw > *, .framer-QOXw4 .framer-164ymaf > *, .framer-QOXw4 .framer-82d5po > *, .framer-QOXw4 .framer-k1urc3 > *, .framer-QOXw4 .framer-15tzu50 > *, .framer-QOXw4 .framer-4sq335 > *, .framer-QOXw4 .framer-1efpu5n > *, .framer-QOXw4 .framer-11jusa0 > *, .framer-QOXw4 .framer-w0rjhy > *, .framer-QOXw4 .framer-f6sf9d > *, .framer-QOXw4 .framer-9wcp7s > *, .framer-QOXw4 .framer-s15ib6 > *, .framer-QOXw4 .framer-iumeok > *, .framer-QOXw4 .framer-9xppfm > *, .framer-QOXw4 .framer-2ri8hf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QOXw4 .framer-narixi > :first-child, .framer-QOXw4 .framer-182qswy > :first-child, .framer-QOXw4 .framer-1335l7v > :first-child, .framer-QOXw4 .framer-12rzbfw > :first-child, .framer-QOXw4 .framer-164ymaf > :first-child, .framer-QOXw4 .framer-82d5po > :first-child, .framer-QOXw4 .framer-1jebivy > :first-child, .framer-QOXw4 .framer-k1urc3 > :first-child, .framer-QOXw4 .framer-15tzu50 > :first-child, .framer-QOXw4 .framer-4sq335 > :first-child, .framer-QOXw4 .framer-1efpu5n > :first-child, .framer-QOXw4 .framer-11jusa0 > :first-child, .framer-QOXw4 .framer-w0rjhy > :first-child, .framer-QOXw4 .framer-f6sf9d > :first-child, .framer-QOXw4 .framer-1x3veep > :first-child, .framer-QOXw4 .framer-9wcp7s > :first-child, .framer-QOXw4 .framer-s15ib6 > :first-child, .framer-QOXw4 .framer-n4vcg > :first-child, .framer-QOXw4 .framer-iumeok > :first-child, .framer-QOXw4 .framer-1kpto19 > :first-child, .framer-QOXw4 .framer-9xppfm > :first-child, .framer-QOXw4 .framer-15fvxav > :first-child, .framer-QOXw4 .framer-2ri8hf > :first-child, .framer-QOXw4 .framer-1co5m14 > :first-child { margin-left: 0px; } .framer-QOXw4 .framer-narixi > :last-child, .framer-QOXw4 .framer-182qswy > :last-child, .framer-QOXw4 .framer-1335l7v > :last-child, .framer-QOXw4 .framer-12rzbfw > :last-child, .framer-QOXw4 .framer-164ymaf > :last-child, .framer-QOXw4 .framer-82d5po > :last-child, .framer-QOXw4 .framer-1jebivy > :last-child, .framer-QOXw4 .framer-k1urc3 > :last-child, .framer-QOXw4 .framer-15tzu50 > :last-child, .framer-QOXw4 .framer-4sq335 > :last-child, .framer-QOXw4 .framer-1efpu5n > :last-child, .framer-QOXw4 .framer-11jusa0 > :last-child, .framer-QOXw4 .framer-w0rjhy > :last-child, .framer-QOXw4 .framer-f6sf9d > :last-child, .framer-QOXw4 .framer-1x3veep > :last-child, .framer-QOXw4 .framer-9wcp7s > :last-child, .framer-QOXw4 .framer-s15ib6 > :last-child, .framer-QOXw4 .framer-n4vcg > :last-child, .framer-QOXw4 .framer-iumeok > :last-child, .framer-QOXw4 .framer-1kpto19 > :last-child, .framer-QOXw4 .framer-9xppfm > :last-child, .framer-QOXw4 .framer-15fvxav > :last-child, .framer-QOXw4 .framer-2ri8hf > :last-child, .framer-QOXw4 .framer-1co5m14 > :last-child { margin-right: 0px; } .framer-QOXw4 .framer-1335l7v > *, .framer-QOXw4 .framer-n4vcg > *, .framer-QOXw4 .framer-1kpto19 > *, .framer-QOXw4 .framer-15fvxav > *, .framer-QOXw4 .framer-1co5m14 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-QOXw4 .framer-sr3x4y > *, .framer-QOXw4 .framer-1u5phfi > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-QOXw4 .framer-11hzind > *, .framer-QOXw4 .framer-2j97ex > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-QOXw4 .framer-1qp56lh > *, .framer-QOXw4 .framer-1fzhqew > *, .framer-QOXw4 .framer-b2pn > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-QOXw4 .framer-1t0p8b5 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-QOXw4 .framer-1vtlmrc > *, .framer-QOXw4 .framer-124q54j > *, .framer-QOXw4 .framer-nmgjrj > *, .framer-QOXw4 .framer-h9smfm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QOXw4 .framer-1svfi91 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-QOXw4 .framer-1jebivy > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-QOXw4 .framer-4er07q > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-QOXw4 .framer-1x3veep > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-QOXw4.framer-10ugcwu { width: 810px; } .framer-QOXw4 .framer-1335l7v { gap: 20px; } .framer-QOXw4 .framer-4zf2c7-container { left: 215px; transform: unset; } .framer-QOXw4 .framer-1omyuxv { aspect-ratio: 1.9743589743589745 / 1; height: var(--framer-aspect-ratio-supported, 190px); } .framer-QOXw4 .framer-1efpu5n, .framer-QOXw4 .framer-11jusa0 { height: var(--framer-aspect-ratio-supported, 225px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QOXw4 .framer-1335l7v { gap: 0px; } .framer-QOXw4 .framer-1335l7v > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-QOXw4 .framer-1335l7v > :first-child { margin-left: 0px; } .framer-QOXw4 .framer-1335l7v > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-QOXw4.framer-10ugcwu { width: 390px; } .framer-QOXw4.framer-1gk2uny { background-color: unset; } .framer-QOXw4 .framer-narixi { flex-direction: column; } .framer-QOXw4 .framer-182qswy { bottom: 62px; } .framer-QOXw4 .framer-eue00g { padding: 160px 0px 90px 0px; } .framer-QOXw4 .framer-1335l7v { flex-direction: column; gap: 0px; } .framer-QOXw4 .framer-sr3x4y { align-self: unset; flex: none; height: min-content; padding: 0px 15px 20px 15px; width: 100%; } .framer-QOXw4 .framer-11hzind { gap: 10px; } .framer-QOXw4 .framer-4zf2c7-container { bottom: unset; left: unset; position: relative; transform: unset; } .framer-QOXw4 .framer-1jebivy { flex: none; flex-direction: column; gap: 40px; padding: 0px 15px 120px 15px; width: 100%; } .framer-QOXw4 .framer-124q54j { flex: none; gap: 20px; width: 100%; } .framer-QOXw4 .framer-1omyuxv { aspect-ratio: unset; height: 490px; order: 0; } .framer-QOXw4 .framer-k1urc3, .framer-QOXw4 .framer-h9smfm { order: 1; } .framer-QOXw4 .framer-nmgjrj, .framer-QOXw4 .framer-4er07q { order: 2; } .framer-QOXw4 .framer-15tzu50 { order: 3; } .framer-QOXw4 .framer-4sq335 { order: 4; } .framer-QOXw4 .framer-1efpu5n, .framer-QOXw4 .framer-11jusa0 { height: var(--framer-aspect-ratio-supported, 247px); } .framer-QOXw4 .framer-w0rjhy { order: 5; } .framer-QOXw4 .framer-1cbtusy { order: 6; } .framer-QOXw4 .framer-gppood-container { order: 0; } .framer-QOXw4 .framer-9wcp7s { flex-direction: column; gap: 40px; } .framer-QOXw4 .framer-s15ib6, .framer-QOXw4 .framer-iumeok, .framer-QOXw4 .framer-9xppfm, .framer-QOXw4 .framer-2ri8hf { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QOXw4 .framer-narixi, .framer-QOXw4 .framer-1335l7v, .framer-QOXw4 .framer-11hzind, .framer-QOXw4 .framer-1jebivy, .framer-QOXw4 .framer-124q54j, .framer-QOXw4 .framer-9wcp7s { gap: 0px; } .framer-QOXw4 .framer-narixi > *, .framer-QOXw4 .framer-11hzind > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QOXw4 .framer-narixi > :first-child, .framer-QOXw4 .framer-1335l7v > :first-child, .framer-QOXw4 .framer-11hzind > :first-child, .framer-QOXw4 .framer-1jebivy > :first-child, .framer-QOXw4 .framer-124q54j > :first-child, .framer-QOXw4 .framer-9wcp7s > :first-child { margin-top: 0px; } .framer-QOXw4 .framer-narixi > :last-child, .framer-QOXw4 .framer-1335l7v > :last-child, .framer-QOXw4 .framer-11hzind > :last-child, .framer-QOXw4 .framer-1jebivy > :last-child, .framer-QOXw4 .framer-124q54j > :last-child, .framer-QOXw4 .framer-9wcp7s > :last-child { margin-bottom: 0px; } .framer-QOXw4 .framer-1335l7v > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-QOXw4 .framer-1jebivy > *, .framer-QOXw4 .framer-9wcp7s > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-QOXw4 .framer-124q54j > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6702.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hwZPdkVb6\":{\"layout\":[\"fixed\",\"auto\"]},\"rEVmTkxUd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Xzp6Y0Sv0\":{\"pattern\":\":Xzp6Y0Sv0\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FramerO5Ydpvb5y=withCSS(Component,css,\"framer-QOXw4\");export default FramerO5Ydpvb5y;FramerO5Ydpvb5y.displayName=\"Page\";FramerO5Ydpvb5y.defaultProps={height:6702.5,width:1200};addFonts(FramerO5Ydpvb5y,[{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,...NavigationDesktopNavigationFonts,...NavigationNavigationMobileFonts,...NavigationMobileNavigationOpenStateFonts,...GlobalLineAnimationGlobalFonts,...TextLinkTextLinkUnderlineFonts,...ButtonsFonts,...NewsNewsArticleFonts,...FooterFooterFonts,...FooterEnaLogoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO5Ydpvb5y\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hwZPdkVb6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rEVmTkxUd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"Xzp6Y0Sv0\\\":{\\\"pattern\\\":\\\":Xzp6Y0Sv0\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"6702.5\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"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", "fontStore", "fonts", "css", "className", "Scroll_ProgressFonts", "getFonts", "Scroll_Progress", "NavigationDesktopNavigationFonts", "vlEshtzG5_default", "NavigationNavigationMobileFonts", "HIFff2Yck_default", "NavigationMobileNavigationOpenStateFonts", "PRwLzu4zV_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "GlobalLineAnimationGlobalFonts", "VNUD5DB4s_default", "ImageWithOptimizedAppearEffect", "Image2", "RichTextWithOptimizedAppearEffect", "RichText2", "TextLinkTextLinkUnderlineFonts", "ZvxdVgpCY_default", "MotionDivClipboard_Share82d5poWithOptimizedAppearEffect", "withCodeBoundaryForOverrides", "Clipboard_Share", "ButtonsFonts", "uAtBbCQvP_default", "ContainerWithOptimizedAppearEffect", "Container", "MotionDivClipboard_Sharef6sf9dWithOptimizedAppearEffect", "NewsNewsArticleFonts", "rbn6MRyRS_default", "FooterFooterFonts", "Ecu_gXdKa_default", "FooterEnaLogoFonts", "eQjg1x09h_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition2", "animation3", "animation4", "transition3", "animation5", "toResponsiveImage", "value", "transition4", "animation6", "transition5", "animation7", "transition6", "animation8", "transition7", "animation9", "transformTemplate1", "_", "t", "animation10", "animation11", "transition8", "animation12", "transition9", "animation13", "transition10", "animation14", "transition11", "animation15", "transition12", "animation16", "animation17", "textEffect", "equals", "a", "b", "convertFromBoolean", "activeLocale", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "jvwoU9JnZ_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "aAYgSPyif", "qcBwbQzoh", "uMP_xDu0k", "LYJcYsuB6", "Ac5TDJz2e", "hYsUenESD", "UkT_A2Hym", "jn1arYzHH", "yqKo1sMxK", "ijpr8OOIZ", "gtyfVqgjt", "BlSnBKir5", "b28zECxredk9eUOEne", "fcXAfK8sOdk9eUOEne", "hYsUenESDdk9eUOEne", "qcBwbQzohdk9eUOEne", "b867KhqTRdk9eUOEne", "iddk9eUOEne", "lCc9E8itj", "b28zECxreYpwCz7zVX", "fcXAfK8sOYpwCz7zVX", "hYsUenESDYpwCz7zVX", "qcBwbQzohYpwCz7zVX", "b867KhqTRYpwCz7zVX", "idYpwCz7zVX", "hveO5726T", "b28zECxrebuiVqvPQE", "fcXAfK8sObuiVqvPQE", "hYsUenESDbuiVqvPQE", "qcBwbQzohbuiVqvPQE", "b867KhqTRbuiVqvPQE", "idbuiVqvPQE", "rA5CeeNR5", "b28zECxreOFYuTVWb7", "fcXAfK8sOOFYuTVWb7", "hYsUenESDOFYuTVWb7", "qcBwbQzohOFYuTVWb7", "b867KhqTROFYuTVWb7", "idOFYuTVWb7", "IV4OoeQwD", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "EHMhKGDpT3bnx0g", "overlay", "loadMore", "args", "wCQM1JsQO1wnntms", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "l", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "ChildrenCanSuspend", "collection", "paginationInfo", "index", "PathVariablesContext", "Link", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "css", "FramerO5Ydpvb5y", "withCSS", "O5Ydpvb5y_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
