{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/7TGd1p3ywBCNIjLKQSIt/gqmjL7X6u4lDKAGv3zs2/W2jA83GkS.js", "ssg:https://framerusercontent.com/modules/wTEM1h24cV0heLddiKUE/QN5DIRZ5059zMrKX2GEn/vIzMZcN7K.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (a417fcb)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Albert Sans-500\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Albert Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHmZP_qY32TxAj1g.woff2\",weight:\"500\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-n8DPj .framer-styles-preset-gwfxpj:not(.rich-text-wrapper), .framer-n8DPj .framer-styles-preset-gwfxpj.rich-text-wrapper p { --framer-font-family: \"Albert Sans\", \"Albert Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --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: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: rgba(7, 43, 74, 0.83); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-n8DPj\";\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 (20caf11)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3;import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import SectionsFooter from\"#framer/local/canvasComponent/JteY30IOG/JteY30IOG.js\";import NavigationNavBar from\"#framer/local/canvasComponent/qknXK96rG/qknXK96rG.js\";import ComponentsButton from\"#framer/local/canvasComponent/RrgdrGysi/RrgdrGysi.js\";import Blog from\"#framer/local/collection/C5L6zJX4L/C5L6zJX4L.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle1 from\"#framer/local/css/dLBQMaI5i/dLBQMaI5i.js\";import*as sharedStyle from\"#framer/local/css/FS4sBMb6u/FS4sBMb6u.js\";import*as sharedStyle6 from\"#framer/local/css/GmmndZdYF/GmmndZdYF.js\";import*as sharedStyle4 from\"#framer/local/css/iKMhy3WHW/iKMhy3WHW.js\";import*as sharedStyle5 from\"#framer/local/css/l07QN4Cmf/l07QN4Cmf.js\";import*as sharedStyle10 from\"#framer/local/css/Pr28zGEyC/Pr28zGEyC.js\";import*as sharedStyle3 from\"#framer/local/css/r3WR5t9lp/r3WR5t9lp.js\";import*as sharedStyle2 from\"#framer/local/css/tMMjpCiSO/tMMjpCiSO.js\";import*as sharedStyle7 from\"#framer/local/css/W2jA83GkS/W2jA83GkS.js\";import*as sharedStyle8 from\"#framer/local/css/Xip4wOQCL/Xip4wOQCL.js\";import*as sharedStyle9 from\"#framer/local/css/xrRyiZMRi/xrRyiZMRi.js\";import metadataProvider from\"#framer/local/webPageMetadata/vIzMZcN7K/vIzMZcN7K.js\";const ComponentsButtonFonts=getFonts(ComponentsButton);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const NavigationNavBarFonts=getFonts(NavigationNavBar);const NavigationNavBarWithVariantAppearEffect=withVariantAppearEffect(NavigationNavBar);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const EmbedFonts=getFonts(Embed);const SectionsFooterFonts=getFonts(SectionsFooter);const breakpoints={cj4z5FGZ8:\"(min-width: 1440px)\",DInFVdUuQ:\"(min-width: 810px) and (max-width: 1439px)\",e7W8Pmp7R:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BKZdP\";const variantClassNames={cj4z5FGZ8:\"framer-v-m2s8y9\",DInFVdUuQ:\"framer-v-1k2q189\",e7W8Pmp7R:\"framer-v-7b2a5w\"};const transition1={damping:30,delay:.6,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation2={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:50,y:0};const transition2={damping:30,delay:.1,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation2,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const animation3={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition3={damping:40,delay:.075,mass:1,stiffness:400,type:\"spring\"};const textEffect1={effect:animation3,startDelay:.2,tokenization:\"word\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const textEffect2={effect:animation3,repeat:false,startDelay:.4,tokenization:\"word\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const transition5={damping:30,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"cj4z5FGZ8\",Phone:\"e7W8Pmp7R\",Tablet:\"DInFVdUuQ\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"cj4z5FGZ8\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"vIzMZcN7K\",data:Blog,type:\"Collection\"},select:[{collection:\"vIzMZcN7K\",name:\"oDUegG4fx\",type:\"Identifier\"},{collection:\"vIzMZcN7K\",name:\"h4lFYoPYm\",type:\"Identifier\"},{collection:\"vIzMZcN7K\",name:\"DOZX6xxtg\",type:\"Identifier\"},{collection:\"vIzMZcN7K\",name:\"QNzSexXhl\",type:\"Identifier\"},{collection:\"vIzMZcN7K\",name:\"XsEgluG2x\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables)});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,qsA0ZoM0u,oDUegG4fx=getFromCurrentRouteData(\"oDUegG4fx\"),h4lFYoPYm=getFromCurrentRouteData(\"h4lFYoPYm\"),DOZX6xxtg=getFromCurrentRouteData(\"DOZX6xxtg\"),QNzSexXhl=getFromCurrentRouteData(\"QNzSexXhl\"),XsEgluG2x=getFromCurrentRouteData(\"XsEgluG2x\"),tD8ulGSvqGoRehHQln,QNzSexXhlGoRehHQln,oDUegG4fxGoRehHQln,h4lFYoPYmGoRehHQln,idGoRehHQln,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-BKZdP`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-BKZdP`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const visible=isSet(qsA0ZoM0u);const activeLocaleCode=useLocaleCode();const textContent=toDateString(h4lFYoPYm,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const visible1=isSet(QNzSexXhl);const ref2=React.useRef(null);const elementId=useRouteElementId(\"ejBsuHDT1\");const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"cj4z5FGZ8\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-m2s8y9\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y9dmxl\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sdiykp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18vjtq3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-d96qld\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DS84VGzp3\"},implicitPathVariables:undefined},{href:{webPageId:\"DS84VGzp3\"},implicitPathVariables:undefined},{href:{webPageId:\"DS84VGzp3\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,children:/*#__PURE__*/_jsx(Container,{animate:animation,className:\"framer-1ijib86-container\",\"data-framer-appear-id\":\"1ijib86\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DInFVdUuQ:{OoqbxHqfn:resolvedLinks[1]},e7W8Pmp7R:{OoqbxHqfn:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ComponentsButton,{epet1o5uq:\"var(--token-2735c966-0c6a-4fed-b35c-8679797981b1, rgb(251, 247, 244))\",eVwDiYu4I:\"Back to Blog\",FyFYwI9oj:\"var(--token-92390e38-ee1a-4e2f-ba34-77e283418130, rgb(224, 200, 174))\",height:\"100%\",IC0x2k_k3:\"var(--token-fbff182d-4c5e-4dad-a1d4-65a26b88dc6c, rgb(207, 166, 129))\",id:\"wTKDGsJFZ\",layoutId:\"wTKDGsJFZ\",OoqbxHqfn:resolvedLinks[0],Pkql_fltR:false,QbIiBZFM3:\"ArrowArcLeft\",style:{height:\"100%\"},variant:\"y2dbQ1ng1\",vMgcNrApp:\"var(--token-c845962e-76e0-45dc-aa34-36ff217376e7, rgb(185, 115, 80))\",w14FK1K25:\"var(--token-2735c966-0c6a-4fed-b35c-8679797981b1, rgb(251, 247, 244))\",width:\"100%\",xR9aAnqIf:\"var(--token-5c54f363-a431-4d1b-a99c-f2053d68eee4, rgb(12, 153, 235))\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m74f8k\",\"data-framer-name\":\"Post\",name:\"Post\",children:[visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"200px\",...toResponsiveImage(qsA0ZoM0u)},className:\"framer-nstvd1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1dwb8hi\",\"data-styles-preset\":\"FS4sBMb6u\",style:{\"--framer-text-color\":\"var(--token-eab138ca-b89a-47ce-8225-9f8388f023a4, rgb(250, 253, 255))\"},children:\"Elisa's Why\"})}),className:\"framer-ori0ay\",\"data-framer-name\":\"Title\",effect:textEffect,fonts:[\"Inter\"],name:\"Title\",text:oDUegG4fx,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qe9e67\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-129z989\",\"data-styles-preset\":\"dLBQMaI5i\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-92390e38-ee1a-4e2f-ba34-77e283418130, rgb(224, 200, 174))\"},children:\"Apr 17, 2024\"})}),className:\"framer-1ab60bv\",\"data-framer-name\":\"Date\",effect:textEffect1,fonts:[\"Inter\"],name:\"Date\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-129z989\",\"data-styles-preset\":\"dLBQMaI5i\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0b213e37-b1e9-4ec9-9e1f-07e10775f109, rgb(11, 188, 193))\"},children:\"- Elisa Walt with Rachael Lofgren\"})}),className:\"framer-83xru5\",\"data-framer-name\":\"Author\",effect:textEffect2,fonts:[\"Inter\"],name:\"Author\",text:DOZX6xxtg,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DInFVdUuQ:{background:{alt:\"\",fit:\"fill\",sizes:\"max(min(max(100vw - 48px, 1px), 1200px) * 1.5, 1px)\",...toResponsiveImage(QNzSexXhl)}},e7W8Pmp7R:{background:{alt:\"\",fit:\"fill\",sizes:\"min(max(100vw - 32px, 1px), 1200px)\",...toResponsiveImage(QNzSexXhl)}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation4,background:{alt:\"\",fit:\"fill\",sizes:\"max(min(max(100vw - 96px, 1px), 1200px) * 1.5, 1px)\",...toResponsiveImage(QNzSexXhl)},className:\"framer-1atq0p1\",\"data-framer-appear-id\":\"1atq0p1\",initial:animation5,optimized:true})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:109,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g9qrax-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DInFVdUuQ:{variant:\"OALfe_80y\"},e7W8Pmp7R:{__framer__variantAppearEffectEnabled:undefined,variant:\"KG9Sk_k9K\"}},children:/*#__PURE__*/_jsx(NavigationNavBarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"yz8SIoshI\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,Dhh_FIyap:\"pLdgMy7xX\",height:\"100%\",id:\"sSE_ra9oi\",layoutId:\"sSE_ra9oi\",lgJUhGJcQ:\"var(--token-3377be96-56ca-4dac-a7da-4ea5890ea682, rgb(33, 212, 214))\",oQC4n1p6U:\"var(--token-4901aafe-54f2-4a19-aac9-c50296fc91ad, rgb(7, 43, 74))\",QcvelICnO:\"var(--token-53dc97a2-f4ca-434f-b774-38c65c6c00e2, rgb(1, 96, 163))\",rRsoxnHEB:\"Donate\",style:{width:\"100%\"},variant:\"sFB2gFX1Z\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xehnni\",\"data-framer-name\":\"Scroll Nav Trigger\",id:elementId,name:\"Scroll Nav Trigger\",ref:ref2}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ax4aek\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-al6amj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7lf7l\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8ylmho\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"m1cnZZyBE\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"qlEb9wK77\"]},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:XsEgluG2x,className:\"framer-1vtjgkc\",\"data-framer-appear-id\":\"1vtjgkc\",\"data-framer-name\":\"Post Body\",fonts:[\"Inter\"],initial:animation1,name:\"Post Body\",optimized:true,stylesPresetsClassNames:{a:\"framer-styles-preset-1p4vd1a\",blockquote:\"framer-styles-preset-1qmytiu\",h1:\"framer-styles-preset-1dwb8hi\",h2:\"framer-styles-preset-18bkovl\",h3:\"framer-styles-preset-u4lpv9\",h4:\"framer-styles-preset-hav63g\",h5:\"framer-styles-preset-1wx3fag\",h6:\"framer-styles-preset-4anf3o\",img:\"framer-styles-preset-j1271c\",p:\"framer-styles-preset-gwfxpj\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rvqsef-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<style>.framer-image.framer-text {\\n\\n      width: 100% !important;\\n\\n}</style>\",id:\"OzjcDk6Pa\",layoutId:\"OzjcDk6Pa\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uhzcr7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWxiZXJ0IFNhbnMtNjAw\",\"--framer-font-family\":'\"Albert Sans\", \"Albert Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-53dc97a2-f4ca-434f-b774-38c65c6c00e2, rgb(1, 96, 163))\"},children:\"Other Featured Posts\"})}),className:\"framer-tfzdlp\",fonts:[\"GF;Albert Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xl84p5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"GoRehHQln\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:8},select:[{collection:\"GoRehHQln\",name:\"tD8ulGSvq\",type:\"Identifier\"},{collection:\"GoRehHQln\",name:\"QNzSexXhl\",type:\"Identifier\"},{collection:\"GoRehHQln\",name:\"oDUegG4fx\",type:\"Identifier\"},{collection:\"GoRehHQln\",name:\"h4lFYoPYm\",type:\"Identifier\"},{collection:\"GoRehHQln\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"GoRehHQln\",name:\"QNzSexXhl\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"GoRehHQln\",name:\"QNzSexXhl\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"GoRehHQln\",name:\"tcLQ4T_TY\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"tD8ulGSvq\":tD8ulGSvqGoRehHQln,\"QNzSexXhl\":QNzSexXhlGoRehHQln,\"oDUegG4fx\":oDUegG4fxGoRehHQln,\"h4lFYoPYm\":h4lFYoPYmGoRehHQln,\"id\":idGoRehHQln},i)=>{const textContent1=toDateString(h4lFYoPYmGoRehHQln,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`GoRehHQln-${idGoRehHQln}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tD8ulGSvq:tD8ulGSvqGoRehHQln},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{tD8ulGSvq:tD8ulGSvqGoRehHQln},webPageId:\"vIzMZcN7K\"},children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-qqcevy framer-1qzb8nx\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"73px\",...toResponsiveImage(QNzSexXhlGoRehHQln)},className:\"framer-w8c3e0\",\"data-border\":true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tee5wa\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0xlIE1vbmRlIENvdXJyaWVyIFN0ZCBCb2xk\",\"--framer-font-family\":'\"Le Monde Courrier Std Bold\", \"Le Monde Courrier Std Bold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-4901aafe-54f2-4a19-aac9-c50296fc91ad, rgb(7, 43, 74))\"},children:\"A fresh look!\"})}),className:\"framer-1ma6qfw\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Le Monde Courrier Std Bold\"],name:\"Title\",text:oDUegG4fxGoRehHQln,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWxiZXJ0IFNhbnMtNTAw\",\"--framer-font-family\":'\"Albert Sans\", \"Albert Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-53dc97a2-f4ca-434f-b774-38c65c6c00e2, rgb(1, 96, 163))\"},children:\"Jul 25, 2024\"})}),className:\"framer-13i15n0\",\"data-framer-name\":\"Date\",fonts:[\"GF;Albert Sans-500\"],name:\"Date\",text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idGoRehHQln);})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pignlt\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DS84VGzp3\"},implicitPathVariables:undefined},{href:{webPageId:\"DS84VGzp3\"},implicitPathVariables:undefined},{href:{webPageId:\"DS84VGzp3\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m69gex-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DInFVdUuQ:{OoqbxHqfn:resolvedLinks1[1]},e7W8Pmp7R:{OoqbxHqfn:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ComponentsButton,{epet1o5uq:\"var(--token-24a50679-3701-4095-a943-d8d40e8eb293, rgb(11, 68, 111))\",eVwDiYu4I:\"Back to Blog\",FyFYwI9oj:\"var(--token-3377be96-56ca-4dac-a7da-4ea5890ea682, rgb(33, 212, 214))\",height:\"100%\",IC0x2k_k3:\"var(--token-791a2085-3f5b-432d-993a-fb59c7e142ab, rgb(0, 128, 212))\",id:\"ZZ6ma8ciW\",layoutId:\"ZZ6ma8ciW\",OoqbxHqfn:resolvedLinks1[0],Pkql_fltR:false,QbIiBZFM3:\"ArrowArcLeft\",style:{height:\"100%\"},variant:\"y2dbQ1ng1\",vMgcNrApp:\"var(--token-c845962e-76e0-45dc-aa34-36ff217376e7, rgb(185, 115, 80))\",w14FK1K25:\"var(--token-53dc97a2-f4ca-434f-b774-38c65c6c00e2, rgb(1, 96, 163))\",width:\"100%\",xR9aAnqIf:\"var(--token-5c54f363-a431-4d1b-a99c-f2053d68eee4, rgb(12, 153, 235))\"})})})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bksvpp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DInFVdUuQ:{variant:\"BbiJpomho\"},e7W8Pmp7R:{variant:\"mdg54e8Eg\"}},children:/*#__PURE__*/_jsx(SectionsFooter,{height:\"100%\",id:\"moUdQELbz\",layoutId:\"moUdQELbz\",style:{width:\"100%\"},variant:\"S3LfZzX9f\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-BKZdP { background: var(--token-eab138ca-b89a-47ce-8225-9f8388f023a4, rgb(250, 253, 255)) /* {\"name\":\"Blue White\"} */; }`,\".framer-BKZdP.framer-1qzb8nx, .framer-BKZdP .framer-1qzb8nx { display: block; }\",\".framer-BKZdP.framer-m2s8y9 { align-content: center; align-items: center; background-color: var(--token-eab138ca-b89a-47ce-8225-9f8388f023a4, #fafdff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 110px 0px 0px 0px; position: relative; width: 1440px; }\",\".framer-BKZdP .framer-y9dmxl { align-content: flex-end; align-items: flex-end; background-color: var(--token-24a50679-3701-4095-a943-d8d40e8eb293, #0b446f); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 64px 48px 64px 48px; position: relative; width: 100%; }\",\".framer-BKZdP .framer-1sdiykp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BKZdP .framer-18vjtq3 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; min-height: 300px; overflow: hidden; padding: 0px 0px 48px 0px; position: relative; width: 1px; }\",\".framer-BKZdP .framer-d96qld { 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; position: relative; width: 100%; }\",\".framer-BKZdP .framer-1ijib86-container { flex: none; height: 25px; position: relative; width: auto; }\",\".framer-BKZdP .framer-1m74f8k { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1200px; padding: 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-BKZdP .framer-nstvd1 { flex: none; height: 466px; overflow: hidden; position: relative; width: 200px; }\",\".framer-BKZdP .framer-ori0ay, .framer-BKZdP .framer-1ma6qfw, .framer-BKZdP .framer-13i15n0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BKZdP .framer-1qe9e67 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BKZdP .framer-1ab60bv, .framer-BKZdP .framer-83xru5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BKZdP .framer-1atq0p1 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1.5 0 0px; height: 444px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BKZdP .framer-1g9qrax-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-BKZdP .framer-xehnni { flex: none; height: 3px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 100px; width: 100%; z-index: 1; }\",\".framer-BKZdP .framer-ax4aek { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-BKZdP .framer-al6amj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BKZdP .framer-7lf7l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BKZdP .framer-8ylmho { align-content: flex-start; align-items: flex-start; display: flex; flex: 3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-BKZdP .framer-1vtjgkc { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BKZdP .framer-rvqsef-container { flex: none; height: 1px; position: relative; width: 600px; }\",\".framer-BKZdP .framer-1uhzcr7 { align-content: flex-start; align-items: flex-start; background-color: var(--token-f8e73a71-a3e9-4de8-a3b6-aebab6cd4d76, #f0f8ff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: sticky; top: 96px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-BKZdP .framer-tfzdlp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BKZdP .framer-xl84p5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-BKZdP .framer-qqcevy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-BKZdP .framer-w8c3e0 { --border-bottom-width: 1px; --border-color: var(--token-c845962e-76e0-45dc-aa34-36ff217376e7, #b97350); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 73px; position: relative; width: 73px; }\",\".framer-BKZdP .framer-tee5wa { 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; padding: 0px; position: relative; width: 1px; }\",\".framer-BKZdP .framer-1pignlt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BKZdP .framer-m69gex-container { flex: none; height: 48px; position: relative; width: auto; }\",\".framer-BKZdP .framer-bksvpp-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BKZdP.framer-m2s8y9, .framer-BKZdP .framer-y9dmxl, .framer-BKZdP .framer-1sdiykp, .framer-BKZdP .framer-d96qld, .framer-BKZdP .framer-1m74f8k, .framer-BKZdP .framer-1qe9e67, .framer-BKZdP .framer-ax4aek, .framer-BKZdP .framer-al6amj, .framer-BKZdP .framer-7lf7l, .framer-BKZdP .framer-8ylmho, .framer-BKZdP .framer-1uhzcr7, .framer-BKZdP .framer-xl84p5, .framer-BKZdP .framer-qqcevy, .framer-BKZdP .framer-tee5wa, .framer-BKZdP .framer-1pignlt { gap: 0px; } .framer-BKZdP.framer-m2s8y9 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-BKZdP.framer-m2s8y9 > :first-child, .framer-BKZdP .framer-1m74f8k > :first-child, .framer-BKZdP .framer-ax4aek > :first-child, .framer-BKZdP .framer-al6amj > :first-child, .framer-BKZdP .framer-8ylmho > :first-child, .framer-BKZdP .framer-1uhzcr7 > :first-child, .framer-BKZdP .framer-xl84p5 > :first-child, .framer-BKZdP .framer-tee5wa > :first-child { margin-top: 0px; } .framer-BKZdP.framer-m2s8y9 > :last-child, .framer-BKZdP .framer-1m74f8k > :last-child, .framer-BKZdP .framer-ax4aek > :last-child, .framer-BKZdP .framer-al6amj > :last-child, .framer-BKZdP .framer-8ylmho > :last-child, .framer-BKZdP .framer-1uhzcr7 > :last-child, .framer-BKZdP .framer-xl84p5 > :last-child, .framer-BKZdP .framer-tee5wa > :last-child { margin-bottom: 0px; } .framer-BKZdP .framer-y9dmxl > *, .framer-BKZdP .framer-d96qld > *, .framer-BKZdP .framer-1pignlt > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BKZdP .framer-y9dmxl > :first-child, .framer-BKZdP .framer-1sdiykp > :first-child, .framer-BKZdP .framer-d96qld > :first-child, .framer-BKZdP .framer-1qe9e67 > :first-child, .framer-BKZdP .framer-7lf7l > :first-child, .framer-BKZdP .framer-qqcevy > :first-child, .framer-BKZdP .framer-1pignlt > :first-child { margin-left: 0px; } .framer-BKZdP .framer-y9dmxl > :last-child, .framer-BKZdP .framer-1sdiykp > :last-child, .framer-BKZdP .framer-d96qld > :last-child, .framer-BKZdP .framer-1qe9e67 > :last-child, .framer-BKZdP .framer-7lf7l > :last-child, .framer-BKZdP .framer-qqcevy > :last-child, .framer-BKZdP .framer-1pignlt > :last-child { margin-right: 0px; } .framer-BKZdP .framer-1sdiykp > *, .framer-BKZdP .framer-7lf7l > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-BKZdP .framer-1m74f8k > *, .framer-BKZdP .framer-1uhzcr7 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BKZdP .framer-1qe9e67 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-BKZdP .framer-ax4aek > *, .framer-BKZdP .framer-tee5wa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BKZdP .framer-al6amj > * { margin: 0px; margin-bottom: calc(49px / 2); margin-top: calc(49px / 2); } .framer-BKZdP .framer-8ylmho > *, .framer-BKZdP .framer-xl84p5 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-BKZdP .framer-qqcevy > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",`@media (min-width: 810px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-BKZdP { background: var(--token-eab138ca-b89a-47ce-8225-9f8388f023a4, rgb(250, 253, 255)) /* {\"name\":\"Blue White\"} */; } .framer-BKZdP.framer-m2s8y9 { gap: 32px; padding: 116px 0px 0px 0px; width: 810px; } .framer-BKZdP .framer-y9dmxl { padding: 32px 24px 64px 24px; } .framer-BKZdP .framer-1sdiykp, .framer-BKZdP .framer-al6amj { gap: 24px; } .framer-BKZdP .framer-18vjtq3 { padding: 0px 0px 16px 0px; } .framer-BKZdP .framer-d96qld { height: 22px; } .framer-BKZdP .framer-1m74f8k { gap: 8px; } .framer-BKZdP .framer-1atq0p1 { height: 305px; } .framer-BKZdP .framer-ax4aek { gap: 0px; padding: 0px 24px 0px 24px; } .framer-BKZdP .framer-7lf7l { flex-direction: column; gap: 24px; order: 0; } .framer-BKZdP .framer-8ylmho, .framer-BKZdP .framer-1uhzcr7 { flex: none; width: 100%; } .framer-BKZdP .framer-qqcevy { gap: 16px; } .framer-BKZdP .framer-1pignlt { height: 22px; order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BKZdP.framer-m2s8y9, .framer-BKZdP .framer-1sdiykp, .framer-BKZdP .framer-1m74f8k, .framer-BKZdP .framer-ax4aek, .framer-BKZdP .framer-al6amj, .framer-BKZdP .framer-7lf7l, .framer-BKZdP .framer-qqcevy { gap: 0px; } .framer-BKZdP.framer-m2s8y9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-BKZdP.framer-m2s8y9 > :first-child, .framer-BKZdP .framer-1m74f8k > :first-child, .framer-BKZdP .framer-ax4aek > :first-child, .framer-BKZdP .framer-al6amj > :first-child, .framer-BKZdP .framer-7lf7l > :first-child { margin-top: 0px; } .framer-BKZdP.framer-m2s8y9 > :last-child, .framer-BKZdP .framer-1m74f8k > :last-child, .framer-BKZdP .framer-ax4aek > :last-child, .framer-BKZdP .framer-al6amj > :last-child, .framer-BKZdP .framer-7lf7l > :last-child { margin-bottom: 0px; } .framer-BKZdP .framer-1sdiykp > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-BKZdP .framer-1sdiykp > :first-child, .framer-BKZdP .framer-qqcevy > :first-child { margin-left: 0px; } .framer-BKZdP .framer-1sdiykp > :last-child, .framer-BKZdP .framer-qqcevy > :last-child { margin-right: 0px; } .framer-BKZdP .framer-1m74f8k > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-BKZdP .framer-ax4aek > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BKZdP .framer-al6amj > *, .framer-BKZdP .framer-7lf7l > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BKZdP .framer-qqcevy > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-BKZdP { background: var(--token-eab138ca-b89a-47ce-8225-9f8388f023a4, rgb(250, 253, 255)) /* {\"name\":\"Blue White\"} */; } .framer-BKZdP.framer-m2s8y9 { gap: 32px; padding: 66px 0px 0px 0px; width: 390px; } .framer-BKZdP .framer-y9dmxl { padding: 52px 16px 32px 16px; } .framer-BKZdP .framer-1sdiykp { flex-direction: column; gap: 16px; } .framer-BKZdP .framer-18vjtq3 { align-self: unset; flex: none; gap: 36px; height: min-content; justify-content: center; min-height: 150px; order: 1; padding: 0px 0px 15px 0px; width: 100%; } .framer-BKZdP .framer-d96qld { height: 22px; } .framer-BKZdP .framer-1m74f8k, .framer-BKZdP .framer-qqcevy { gap: 16px; } .framer-BKZdP .framer-1atq0p1 { flex: none; height: 224px; order: 0; width: 100%; } .framer-BKZdP .framer-ax4aek { padding: 0px 16px 0px 16px; } .framer-BKZdP .framer-al6amj { gap: 24px; padding: 0px 0px 24px 0px; } .framer-BKZdP .framer-7lf7l { flex-direction: column; gap: 24px; order: 0; } .framer-BKZdP .framer-8ylmho, .framer-BKZdP .framer-1uhzcr7 { flex: none; width: 100%; } .framer-BKZdP .framer-rvqsef-container { width: 100%; } .framer-BKZdP .framer-1pignlt { height: 22px; order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BKZdP.framer-m2s8y9, .framer-BKZdP .framer-1sdiykp, .framer-BKZdP .framer-18vjtq3, .framer-BKZdP .framer-1m74f8k, .framer-BKZdP .framer-al6amj, .framer-BKZdP .framer-7lf7l, .framer-BKZdP .framer-qqcevy { gap: 0px; } .framer-BKZdP.framer-m2s8y9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-BKZdP.framer-m2s8y9 > :first-child, .framer-BKZdP .framer-1sdiykp > :first-child, .framer-BKZdP .framer-18vjtq3 > :first-child, .framer-BKZdP .framer-1m74f8k > :first-child, .framer-BKZdP .framer-al6amj > :first-child, .framer-BKZdP .framer-7lf7l > :first-child { margin-top: 0px; } .framer-BKZdP.framer-m2s8y9 > :last-child, .framer-BKZdP .framer-1sdiykp > :last-child, .framer-BKZdP .framer-18vjtq3 > :last-child, .framer-BKZdP .framer-1m74f8k > :last-child, .framer-BKZdP .framer-al6amj > :last-child, .framer-BKZdP .framer-7lf7l > :last-child { margin-bottom: 0px; } .framer-BKZdP .framer-1sdiykp > *, .framer-BKZdP .framer-1m74f8k > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-BKZdP .framer-18vjtq3 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-BKZdP .framer-al6amj > *, .framer-BKZdP .framer-7lf7l > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BKZdP .framer-qqcevy > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-BKZdP .framer-qqcevy > :first-child { margin-left: 0px; } .framer-BKZdP .framer-qqcevy > :last-child { margin-right: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,'.framer-BKZdP[data-border=\"true\"]::after, .framer-BKZdP [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2341\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DInFVdUuQ\":{\"layout\":[\"fixed\",\"auto\"]},\"e7W8Pmp7R\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramervIzMZcN7K=withCSS(Component,css,\"framer-BKZdP\");export default FramervIzMZcN7K;FramervIzMZcN7K.displayName=\"Page\";FramervIzMZcN7K.defaultProps={height:2341,width:1440};addFonts(FramervIzMZcN7K,[{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\"},{family:\"Albert Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHdZT_qY32TxAj1g.woff2\",weight:\"600\"},{family:\"Le Monde Courrier Std Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/AD4alp10F0TNXdVbQx7CEQ6z1I.woff2\"},{family:\"Albert Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHmZP_qY32TxAj1g.woff2\",weight:\"500\"}]},...ComponentsButtonFonts,...NavigationNavBarFonts,...EmbedFonts,...SectionsFooterFonts,...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),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"qlEb9wK77\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"qlEb9wK77\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"m1cnZZyBE\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"m1cnZZyBE\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervIzMZcN7K\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DInFVdUuQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e7W8Pmp7R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"2341\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "fontStore", "fonts", "css", "className", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "ComponentsButtonFonts", "getFonts", "RrgdrGysi_default", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "NavigationNavBarFonts", "qknXK96rG_default", "NavigationNavBarWithVariantAppearEffect", "withVariantAppearEffect", "RichTextWithOptimizedAppearEffect", "RichText2", "EmbedFonts", "Embed", "SectionsFooterFonts", "JteY30IOG_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "isSet", "value", "toResponsiveImage", "animation2", "transition2", "textEffect", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "animation3", "transition3", "textEffect1", "textEffect2", "transition4", "animation4", "animation5", "transition5", "animation6", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "C5L6zJX4L_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "qsA0ZoM0u", "oDUegG4fx", "h4lFYoPYm", "DOZX6xxtg", "QNzSexXhl", "XsEgluG2x", "tD8ulGSvqGoRehHQln", "QNzSexXhlGoRehHQln", "oDUegG4fxGoRehHQln", "h4lFYoPYmGoRehHQln", "idGoRehHQln", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "router", "useRouter", "visible", "activeLocaleCode", "useLocaleCode", "textContent", "visible1", "ref2", "elementId", "useRouteElementId", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RrgdrGysi_default", "Image2", "RichText2", "ImageWithOptimizedAppearEffect", "NavigationNavBarWithVariantAppearEffect", "ComponentPresetsProvider", "RichTextWithOptimizedAppearEffect", "Embed", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "i", "textContent1", "PathVariablesContext", "Link", "resolvedLinks1", "JteY30IOG_default", "css", "FramervIzMZcN7K", "withCSS", "vIzMZcN7K_default", "addFonts", "ComponentsButtonFonts", "NavigationNavBarFonts", "EmbedFonts", "SectionsFooterFonts", "getFontsFromSharedStyle", "fonts", "_componentPresets_fonts", "getFontsFromComponentPreset", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "__FramerMetadata__"]
}
