{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/yPg83KeIjNMBJIC5wmri/5hrQIsJV3VJxAczeI7j1/Markdown_Table.js", "ssg:https://framerusercontent.com/modules/8wvZw06fpTTZcDGjiM4p/FxK2SyTk85KrfezVSpyK/componentPresets.js", "ssg:https://framerusercontent.com/modules/hiifyFAVYbaRdounlUFW/dRGnyx4gBnSFK2WOmJNB/ChM0xliQe.js", "ssg:https://framerusercontent.com/modules/pJy6HHxBzWNrJ07ymUJ1/nM6AbzBNDNZELtndwVmy/cjculWY1R.js", "ssg:https://framerusercontent.com/modules/N3PRFAMSRODAYByu4kwA/tPoGIAdRvieJXfaNjZ68/IEOjlghLf.js", "ssg:https://framerusercontent.com/modules/wSoEhBE2C5EJCy7gDw0s/QsnVCe9qDU2wevojJVxb/kQWCG5Kgn.js", "ssg:https://framerusercontent.com/modules/zOoHSrwZlaZ8OIdej5PX/wXxquSLNfb6DQ6imSV1l/MYeHPJQFJ.js", "ssg:https://framerusercontent.com/modules/iO8I5i5isZwm8IASDqaM/lPur4PXiwVBCBhC7YgWO/nCObwBS41.js", "ssg:https://framerusercontent.com/modules/TxDRjM4VJtjzHUXuo0Pw/Od5EsPunBYRsNTjxElOV/ooUMiOYa7.js", "ssg:https://framerusercontent.com/modules/rlNsCypCZ9IAz9lMjUjg/TkGu9RwHqXzKsCLCH9iv/x7fdUIm4P.js", "ssg:https://framerusercontent.com/modules/PE9Z0N2HtGXEktWGcQ6w/U30Pn18Mzu2mnPOlaju0/ZUVBjso6N.js", "ssg:https://framerusercontent.com/modules/ZRy9WvJUB8UJlTr56o6C/0IklDPhnWEOCwkbyha7A/gdUEAgVPR.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useStore=createStore({background:\"#f0f0f0\"});export function TableOverride(Component){return props=>{const[store]=useStore();const extractAndFormatTable=React.useCallback(()=>{const contentDivs=document.querySelectorAll('[data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"]');contentDivs.forEach(contentDiv=>{const codeBlocks=contentDiv.querySelectorAll(\".framer-text.framer-text-module\");codeBlocks.forEach(codeBlock=>{if(codeBlock instanceof HTMLElement){// Get the framer-cb div to access CSS variables\nconst framerCbDiv=codeBlock.querySelector(\".framer-cb\");if(!framerCbDiv)return;// Extract CSS variables from the style attribute\nconst styleAttr=framerCbDiv.getAttribute(\"style\")||\"\";const cssVars={};styleAttr.split(\";\").forEach(pair=>{const[key,value]=pair.split(\":\").map(s=>s.trim());if(key.startsWith(\"--\")){cssVars[key]=value;}});// Determine if we're in light or dark mode\nconst colorScheme=cssVars[\"--cb-color-scheme-dark\"]===\"light\"?\"light\":\"dark\";// Find the div with the border (sp-layout)\nconst borderDiv=codeBlock.querySelector(\".sp-layout\");if(!borderDiv)return;// Extract the border properties and padding from the style attribute\nconst borderStyle=window.getComputedStyle(borderDiv);const borderWidth=borderStyle.borderWidth;const borderColor=borderStyle.borderColor;const borderRadius=borderStyle.borderRadius;const padding=borderStyle.getPropertyValue(\"--cb-padding\")||\"27px\"// Default to 27px if not set\n;// Create an outer container for the border\nconst outerContainer=document.createElement(\"div\");outerContainer.style.cssText=`\n                            border: ${borderWidth} solid ${borderColor};\n                            border-radius: ${borderRadius};\n                            overflow: hidden;\n                            width: 100%;\n                            height: 100%;\n                        `;// Create an inner container for the scrollable content\nconst innerContainer=document.createElement(\"div\");innerContainer.style.cssText=`\n                            overflow: auto;\n                            width: 100%;\n                            height: 100%;\n                        `;// Create the table\nconst table=document.createElement(\"table\");table.style.cssText=`\n                            border-collapse: separate;\n                            border-spacing: 0;\n                            width: 100%;\n                        `;// Convert extracted content to HTML table\nconst codeContent=codeBlock.textContent||\"\";const tableLines=codeContent.split(/\\r?\\n/).filter(line=>line.trim()!==\"\");const tableHtml=tableLines.map((row,index)=>{const cells=row.split(\"|\").map(cell=>cell.trim()).filter(cell=>cell!==\"\");if(index===0){return`<tr>${cells.map((cell,cellIndex)=>`<th${cellIndex===0?' class=\"first-column\"':\"\"}>${cell}</th>`).join(\"\")}</tr>`;}else if(index===1){return\"\"// Skip the separator row\n;}else{while(cells.length<4){cells.push(\"\");}return`<tr>${cells.map((cell,cellIndex)=>`<td${cellIndex===0?' class=\"first-column\"':\"\"}>${cell.replace(/\\<br\\>/g,\"<br>\")}</td>`).join(\"\")}</tr>`;}}).filter(row=>row!==\"\").join(\"\");table.innerHTML=`\n                            <table style=\"width: 100%; border-collapse: separate; border-spacing: 0;\">\n                                ${tableHtml}\n                            </table>\n                        `;// Add styles\nconst style=document.createElement(\"style\");style.textContent=`\n                            table th, table td {\n                                padding: ${padding};\n                                text-align: left;\n                                background-color: ${cssVars[`--cb-colors-surface1-${colorScheme}`]};\n                                border-right: 1px solid ${borderColor};\n                                border-bottom: 1px solid ${borderColor};\n                            }\n                            table th {\n                                font-weight: bold;\n                                color: ${cssVars[`--cb-syntax-color-plain-${colorScheme}`]};\n                                position: sticky;\n                                top: 0;\n                                z-index: 1;\n                            }\n                            .first-column {\n                                white-space: nowrap;\n                                overflow: hidden;\n                                text-overflow: ellipsis;\n                            }\n                            table tr:last-child td {\n                                border-bottom: none;\n                            }\n                            table th:last-child,\n                            table td:last-child {\n                                border-right: none;\n                            }\n                        `;outerContainer.appendChild(style);// Assemble the structure\ninnerContainer.appendChild(table);outerContainer.appendChild(innerContainer);// Replace the content of the code block with the new structure\ncodeBlock.innerHTML=\"\";codeBlock.appendChild(outerContainer);}});});},[store.background]);React.useEffect(()=>{extractAndFormatTable();// Add a MutationObserver to handle dynamic content changes\nconst observer=new MutationObserver(extractAndFormatTable);const contentDivs=document.querySelectorAll('[data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"]');contentDivs.forEach(contentDiv=>{observer.observe(contentDiv,{childList:true,subtree:true});});// Remove white-space: pre-wrap from the Content div and set opacity to 1\nconst style=document.createElement(\"style\");style.textContent=`\n                [data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"] {\n                    white-space: normal !important;\n                    opacity: 1 !important;\n                }\n                [data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"] > div {\n                    white-space: normal !important;\n                    opacity: 1 !important;\n                }\n            `;document.head.appendChild(style);return()=>{observer.disconnect();document.head.removeChild(style);};},[extractAndFormatTable]);return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"TableOverride\":{\"type\":\"reactHoc\",\"name\":\"TableOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Markdown_Table.map", "// Generated by Framer (455587d)\nexport const props={q_gx40il2:{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,isMixedBorderRadius:false,isRed:false,topLeftRadius:20,topRightRadius:20},z3VtE6gqQ:{border:{borderColor:\"#eee\",borderStyle:\"solid\",borderWidth:2,borderWidthBottom:2,borderWidthLeft:2,borderWidthRight:2,borderWidthTop:2,isMixedBorderWidth:false},borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"framerLight\",padding:15,paddingBottom:10,paddingLeft:15,paddingPerSide:true,paddingRight:15,paddingTop:10,theme:\"framerLight\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15}};export const fonts={z3VtE6gqQ:[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (455587d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}];export const css=['.framer-LMUEm .framer-styles-preset-1g0lumw:not(.rich-text-wrapper), .framer-LMUEm .framer-styles-preset-1g0lumw.rich-text-wrapper code { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #327ef0; --framer-font-size-scale: 1; background-color: rgba(188, 215, 255, 0.3); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.2em; padding-left: 0.5em; padding-right: 0.5em; padding-top: 0.2em; }'];export const className=\"framer-LMUEm\";\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 (455587d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-regular\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-JDW32RmYJpso5.woff2\",weight:\"400\"}]}];export const css=['.framer-gjDO5 .framer-styles-preset-cr5jqe:not(.rich-text-wrapper), .framer-gjDO5 .framer-styles-preset-cr5jqe.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --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: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-319e4b45-9226-4274-994e-e77be1f7c7ea, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-gjDO5\";\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 (d65f646)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-jhCxp .framer-styles-preset-v5fnta {  }\"];export const className=\"framer-jhCxp\";\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 (6aa4fc0)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{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/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]}];export const css=['.framer-WLfyE .framer-styles-preset-es7aos:not(.rich-text-wrapper), .framer-WLfyE .framer-styles-preset-es7aos.rich-text-wrapper h6 { --framer-font-family: \"Inter\", \"Inter 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: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: calc(var(--framer-root-font-size, 1rem) * 1); --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.02em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --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-WLfyE\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2306ade)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-XEDXj .framer-styles-preset-5f643r:not(.rich-text-wrapper), .framer-XEDXj .framer-styles-preset-5f643r.rich-text-wrapper table { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-color: rgba(153, 153, 153, 0.25); border-style: solid; border-top-left-radius: 8px; border-top-right-radius: 8px; border-width: 1px; overflow: hidden; }\",\".framer-XEDXj .framer-styles-preset-5f643r:not(.rich-text-wrapper) th, .framer-XEDXj .framer-styles-preset-5f643r.rich-text-wrapper table th, .framer-XEDXj .framer-styles-preset-5f643r:not(.rich-text-wrapper) td, .framer-XEDXj .framer-styles-preset-5f643r.rich-text-wrapper table td { padding: 10px; }\",\".framer-XEDXj .framer-styles-preset-5f643r:not(.rich-text-wrapper) th, .framer-XEDXj .framer-styles-preset-5f643r.rich-text-wrapper table th { background-color: rgba(153, 153, 153, 0.1); }\",\".framer-XEDXj .framer-styles-preset-5f643r:not(.rich-text-wrapper) tr + tr td, .framer-XEDXj .framer-styles-preset-5f643r:not(.rich-text-wrapper) tr + tr th, .framer-XEDXj .framer-styles-preset-5f643r.rich-text-wrapper table tr + tr td, .framer-XEDXj .framer-styles-preset-5f643r.rich-text-wrapper table tr + tr th { border-top-color: rgba(153, 153, 153, 0.25); border-top-style: solid; border-top-width: 1px; }\",\".framer-XEDXj .framer-styles-preset-5f643r:not(.rich-text-wrapper) td + td, .framer-XEDXj .framer-styles-preset-5f643r:not(.rich-text-wrapper) th + th, .framer-XEDXj .framer-styles-preset-5f643r:not(.rich-text-wrapper) td + th, .framer-XEDXj .framer-styles-preset-5f643r:not(.rich-text-wrapper) th + td, .framer-XEDXj .framer-styles-preset-5f643r.rich-text-wrapper table td + td, .framer-XEDXj .framer-styles-preset-5f643r.rich-text-wrapper table th + th, .framer-XEDXj .framer-styles-preset-5f643r.rich-text-wrapper table td + th, .framer-XEDXj .framer-styles-preset-5f643r.rich-text-wrapper table th + td { border-left-color: rgba(153, 153, 153, 0.25); border-left-style: solid; border-left-width: 1px; }\"];export const className=\"framer-XEDXj\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{family:\"Fragment Mono\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}];export const css=['.framer-BCVmk .framer-styles-preset-tls9hx { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #000000; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-BCVmk\";\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 (6aa4fc0)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-regular\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-JDW32RmYJpso5.woff2\",weight:\"400\"}]}];export const css=['.framer-znvaE .framer-styles-preset-1v5sl8i:not(.rich-text-wrapper), .framer-znvaE .framer-styles-preset-1v5sl8i.rich-text-wrapper h4 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: calc(var(--framer-root-font-size, 1rem) * 1.25); --framer-font-style: normal; --framer-font-style-bold: normal; --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: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-319e4b45-9226-4274-994e-e77be1f7c7ea, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1023px) and (min-width: 810px) { .framer-znvaE .framer-styles-preset-1v5sl8i:not(.rich-text-wrapper), .framer-znvaE .framer-styles-preset-1v5sl8i.rich-text-wrapper h4 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: calc(var(--framer-root-font-size, 1rem) * 1.25); --framer-font-style: normal; --framer-font-style-bold: normal; --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: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-319e4b45-9226-4274-994e-e77be1f7c7ea, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-znvaE .framer-styles-preset-1v5sl8i:not(.rich-text-wrapper), .framer-znvaE .framer-styles-preset-1v5sl8i.rich-text-wrapper h4 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: calc(var(--framer-root-font-size, 1rem) * 1.25); --framer-font-style: normal; --framer-font-style-bold: normal; --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: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-319e4b45-9226-4274-994e-e77be1f7c7ea, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-znvaE\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6aa4fc0)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Bricolage Grotesque-500\",\"GF;Bricolage Grotesque-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Bricolage Grotesque\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bricolagegrotesque/v8/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvSniyMgvs-wJDtw.woff2\",weight:\"500\"},{family:\"Bricolage Grotesque\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bricolagegrotesque/v8/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvfzlyMgvs-wJDtw.woff2\",weight:\"700\"}]}];export const css=['.framer-Bd6Or .framer-styles-preset-1yq2kq8:not(.rich-text-wrapper), .framer-Bd6Or .framer-styles-preset-1yq2kq8.rich-text-wrapper h1 { --framer-font-family: \"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif; --framer-font-family-bold: \"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: calc(var(--framer-root-font-size, 1rem) * 2.75); --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 110%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-4e50c0f5-9235-4a35-94aa-fe8b2687fb81, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1023px) and (min-width: 810px) { .framer-Bd6Or .framer-styles-preset-1yq2kq8:not(.rich-text-wrapper), .framer-Bd6Or .framer-styles-preset-1yq2kq8.rich-text-wrapper h1 { --framer-font-family: \"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif; --framer-font-family-bold: \"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: calc(var(--framer-root-font-size, 1rem) * 2.75); --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 110%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-4e50c0f5-9235-4a35-94aa-fe8b2687fb81, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Bd6Or .framer-styles-preset-1yq2kq8:not(.rich-text-wrapper), .framer-Bd6Or .framer-styles-preset-1yq2kq8.rich-text-wrapper h1 { --framer-font-family: \"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif; --framer-font-family-bold: \"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: calc(var(--framer-root-font-size, 1rem) * 2); --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-4e50c0f5-9235-4a35-94aa-fe8b2687fb81, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Bd6Or\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (455587d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;EB Garamond-500\",\"GF;EB Garamond-700\",\"GF;EB Garamond-700italic\",\"GF;EB Garamond-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"EB Garamond\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ebgaramond/v30/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-2fRUBoV-e6yHgQ.woff2\",weight:\"500\"},{family:\"EB Garamond\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ebgaramond/v30/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNUBoV-e6yHgQ.woff2\",weight:\"700\"},{family:\"EB Garamond\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ebgaramond/v30/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7dbR49_WamXgXFI.woff2\",weight:\"700\"},{family:\"EB Garamond\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ebgaramond/v30/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7eOQI9_WamXgXFI.woff2\",weight:\"500\"}]}];export const css=['.framer-ciPo7 .framer-styles-preset-k4yxkh:not(.rich-text-wrapper), .framer-ciPo7 .framer-styles-preset-k4yxkh.rich-text-wrapper blockquote { --framer-blockquote-font-family: \"EB Garamond\", \"EB Garamond Placeholder\", serif; --framer-blockquote-font-family-bold: \"EB Garamond\", \"EB Garamond Placeholder\", serif; --framer-blockquote-font-family-bold-italic: \"EB Garamond\", \"EB Garamond Placeholder\", serif; --framer-blockquote-font-family-italic: \"EB Garamond\", \"EB Garamond Placeholder\", serif; --framer-blockquote-font-size: 22px; --framer-blockquote-font-style: normal; --framer-blockquote-font-style-bold: normal; --framer-blockquote-font-style-bold-italic: italic; --framer-blockquote-font-style-italic: italic; --framer-blockquote-font-variation-axes: normal; --framer-blockquote-font-weight: 500; --framer-blockquote-font-weight-bold: 700; --framer-blockquote-font-weight-bold-italic: 700; --framer-blockquote-font-weight-italic: 500; --framer-blockquote-letter-spacing: 0px; --framer-blockquote-line-height: 1.5em; --framer-blockquote-paragraph-spacing: 20px; --framer-blockquote-text-color: #3b89ff; --framer-blockquote-text-stroke-color: initial; --framer-blockquote-text-stroke-width: initial; --framer-blockquote-text-transform: inherit; --framer-font-open-type-features: normal; background-color: rgba(40, 131, 237, 0.05); padding: 25px 25px 25px 28px; position: relative; }','.framer-ciPo7 .framer-styles-preset-k4yxkh:not(.rich-text-wrapper)::before, .framer-ciPo7 .framer-styles-preset-k4yxkh.rich-text-wrapper blockquote::before { background-color: rgba(40, 131, 237, 0.25); border-radius: 1px; content: \" \"; display: block; height: 100%; left: 0px; position: absolute; top: 0px; width: 3px; }'];export const className=\"framer-ciPo7\";\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 (fa64c25)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import CardArticle from\"#framer/local/canvasComponent/kHS0CCoLU/kHS0CCoLU.js\";import CardMore from\"#framer/local/canvasComponent/pzXbaW1YZ/pzXbaW1YZ.js\";import Footer from\"#framer/local/canvasComponent/tSaxaTOCi/tSaxaTOCi.js\";import NavbarCopy from\"#framer/local/canvasComponent/WiCJHXLqu/WiCJHXLqu.js\";import{TableOverride}from\"#framer/local/codeFile/ssrjxX3/Markdown_Table.js\";import Blog,{enumToDisplayNameFunctions}from\"#framer/local/collection/baTdmtKwg/baTdmtKwg.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle11 from\"#framer/local/css/BAD6RcxEE/BAD6RcxEE.js\";import*as sharedStyle13 from\"#framer/local/css/ChM0xliQe/ChM0xliQe.js\";import*as sharedStyle3 from\"#framer/local/css/cjculWY1R/cjculWY1R.js\";import*as sharedStyle5 from\"#framer/local/css/IEOjlghLf/IEOjlghLf.js\";import*as sharedStyle2 from\"#framer/local/css/kQWCG5Kgn/kQWCG5Kgn.js\";import*as sharedStyle4 from\"#framer/local/css/MYeHPJQFJ/MYeHPJQFJ.js\";import*as sharedStyle14 from\"#framer/local/css/nCObwBS41/nCObwBS41.js\";import*as sharedStyle8 from\"#framer/local/css/ooUMiOYa7/ooUMiOYa7.js\";import*as sharedStyle7 from\"#framer/local/css/ub1YKsh6s/ub1YKsh6s.js\";import*as sharedStyle from\"#framer/local/css/ubqEuc1l3/ubqEuc1l3.js\";import*as sharedStyle6 from\"#framer/local/css/uftHLgRnO/uftHLgRnO.js\";import*as sharedStyle10 from\"#framer/local/css/vbZipDVlt/vbZipDVlt.js\";import*as sharedStyle9 from\"#framer/local/css/vlJa6S4Sf/vlJa6S4Sf.js\";import*as sharedStyle15 from\"#framer/local/css/vO01g9xPJ/vO01g9xPJ.js\";import*as sharedStyle1 from\"#framer/local/css/x7fdUIm4P/x7fdUIm4P.js\";import*as sharedStyle12 from\"#framer/local/css/ZUVBjso6N/ZUVBjso6N.js\";import metadataProvider from\"#framer/local/webPageMetadata/gdUEAgVPR/gdUEAgVPR.js\";const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const NavbarCopyFonts=getFonts(NavbarCopy);const SmoothScrollFonts=getFonts(SmoothScroll);const RichTextTableOverride8ftcpt=withCodeBoundaryForOverrides(RichText,{nodeId:\"AC8QM8reU\",override:TableOverride,scopeId:\"gdUEAgVPR\"});const CardMoreFonts=getFonts(CardMore);const ContainerWithFX=withFX(Container);const RichTextTableOverride1lmahfj=withCodeBoundaryForOverrides(RichText,{nodeId:\"VnSeRviCA\",override:TableOverride,scopeId:\"gdUEAgVPR\"});const CardArticleFonts=getFonts(CardArticle);const FooterFonts=getFonts(Footer);const breakpoints={AZ3xp5rN8:\"(min-width: 810px) and (max-width: 1023px)\",KMH2o72ra:\"(min-width: 1024px)\",oVR6Pk68B:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-7ZDJ7\";const variantClassNames={AZ3xp5rN8:\"framer-v-149ahtm\",KMH2o72ra:\"framer-v-c6svgk\",oVR6Pk68B:\"framer-v-1j81qii\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:0,delay:.1,duration:.4,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:.2,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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;try{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const animation2={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:.075,duration:.4,type:\"spring\"};const textEffect={effect:animation2,startDelay:.1,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition4={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const transition5={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:.7,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:0,transition:transition5};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:\"KMH2o72ra\",Phone:\"oVR6Pk68B\",Tablet:\"AZ3xp5rN8\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KMH2o72ra\"};};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:\"gdUEAgVPR\",data:Blog,type:\"Collection\"},select:[{collection:\"gdUEAgVPR\",name:\"aRsDZYt0I\",type:\"Identifier\"},{collection:\"gdUEAgVPR\",name:\"z73Iw8W3B\",type:\"Identifier\"},{collection:\"gdUEAgVPR\",name:\"LXPPb0mj_\",type:\"Identifier\"},{collection:\"gdUEAgVPR\",name:\"myCpIa2DT\",type:\"Identifier\"},{collection:\"gdUEAgVPR\",name:\"GPd_6snHp\",type:\"Identifier\"},{collection:\"gdUEAgVPR\",name:\"MJoGirltk\",type:\"Identifier\"},{collection:\"gdUEAgVPR\",name:\"A7fG8L4rv\",type:\"Identifier\"},{collection:\"gdUEAgVPR\",name:\"s_JxTDFle\",type:\"Identifier\"},{collection:\"gdUEAgVPR\",name:\"xt1rryj9L\",type:\"Identifier\"},{collection:\"gdUEAgVPR\",name:\"pUIoovP4y\",type:\"Identifier\"},{collection:\"gdUEAgVPR\",name:\"nFBtwp2h8\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"gdUEAgVPR\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,aRsDZYt0I=getFromCurrentRouteData(\"aRsDZYt0I\"),A7fG8L4rv=getFromCurrentRouteData(\"A7fG8L4rv\"),MJoGirltk=getFromCurrentRouteData(\"MJoGirltk\"),myCpIa2DT=getFromCurrentRouteData(\"myCpIa2DT\")??\"\",z73Iw8W3B=getFromCurrentRouteData(\"z73Iw8W3B\")??\"\",s_JxTDFle=getFromCurrentRouteData(\"s_JxTDFle\")??\"\",xt1rryj9L=getFromCurrentRouteData(\"xt1rryj9L\")??\"\",pUIoovP4y=getFromCurrentRouteData(\"pUIoovP4y\")??\"\",nFBtwp2h8=getFromCurrentRouteData(\"nFBtwp2h8\")??\"\",LXPPb0mj_iAYNA3Ncv,CceDysV3liAYNA3Ncv,A7fG8L4rviAYNA3Ncv,z73Iw8W3BiAYNA3Ncv,xtQsaUzj1iAYNA3Ncv,MJoGirltkiAYNA3Ncv,idiAYNA3Ncv,...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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const textContent=enumToDisplayNameFunctions[\"A7fG8L4rv\"]?.(A7fG8L4rv,activeLocale);const activeLocaleCode=useLocaleCode();const textContent1=toDateString(MJoGirltk,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const elementId=useRouteElementId(\"ebdCwPbyS\");const ref1=React.useRef(null);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"KMH2o72ra\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-c6svgk\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oVR6Pk68B:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(aRsDZYt0I)}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+84+0),sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.95)`,...toResponsiveImage(aRsDZYt0I)},className:\"framer-gulljv\",\"data-framer-appear-id\":\"gulljv\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-szjej5\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ryktz7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14d684i\",\"data-styles-preset\":\"ubqEuc1l3\",children:\"\uD83D\uDCA1 Ideas & Tips\"})}),className:\"framer-1pxy58t\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8854668f-23c1-431b-a5e8-bd5bd61a8482, rgb(0, 0, 0))\"},children:\"\u2022\"})}),className:\"framer-13qgv4d\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AZ3xp5rN8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14d684i\",\"data-styles-preset\":\"ubqEuc1l3\",children:\"\uD83D\uDCA1 Ideas & Tips\"})})},oVR6Pk68B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14d684i\",\"data-styles-preset\":\"ubqEuc1l3\",children:\"\uD83D\uDCA1 Ideas & Tips\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14d684i\",\"data-styles-preset\":\"ubqEuc1l3\",children:\"Content\"})}),className:\"framer-bq35yc\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8854668f-23c1-431b-a5e8-bd5bd61a8482, rgb(0, 0, 0))\"},children:\"\u2022\"})}),className:\"framer-1hh73zj\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v6tslg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14d684i\",\"data-styles-preset\":\"ubqEuc1l3\",children:\"5\"})}),className:\"framer-1cde4a2\",fonts:[\"Inter\"],text:myCpIa2DT,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14d684i\",\"data-styles-preset\":\"ubqEuc1l3\",children:\"min reading\"})}),className:\"framer-66yf8b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5zm0yd-container\",\"data-framer-name\":\"Section/NavBar\",layoutScroll:true,name:\"Section/NavBar\",nodeId:\"KHpbZd8VX\",scopeId:\"gdUEAgVPR\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oVR6Pk68B:{variant:\"In3o6SS9G\"}},children:/*#__PURE__*/_jsx(NavbarCopy,{height:\"100%\",id:\"KHpbZd8VX\",layoutId:\"KHpbZd8VX\",name:\"Section/NavBar\",style:{width:\"100%\"},variant:\"h7hxfvihw\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-71a1g0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Vp5c_LLXm\",scopeId:\"gdUEAgVPR\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"Vp5c_LLXm\",intensity:4,layoutId:\"Vp5c_LLXm\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aak9gx\",\"data-framer-name\":\"Post\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k1okfz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1yq2kq8\",\"data-styles-preset\":\"x7fdUIm4P\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-319e4b45-9226-4274-994e-e77be1f7c7ea, rgb(0, 0, 0))\"},children:\"Title\"})}),className:\"framer-1kcfo92\",effect:textEffect,fonts:[\"Inter\"],text:z73Iw8W3B,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"q_gx40il2\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"z3VtE6gqQ\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:s_JxTDFle,className:\"framer-iki00\",fonts:[\"Inter\"],stylesPresetsClassNames:{h6:\"framer-styles-preset-es7aos\",img:\"framer-styles-preset-v5fnta\",p:\"framer-styles-preset-cr5jqe\",table:\"framer-styles-preset-5f643r\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"q_gx40il2\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"z3VtE6gqQ\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AZ3xp5rN8:{stylesPresetsClassNames:{a:\"framer-styles-preset-1fii7px\",blockquote:\"framer-styles-preset-k4yxkh\",code:\"framer-styles-preset-tls9hx\",h1:\"framer-styles-preset-1yq2kq8\",h2:\"framer-styles-preset-y0g8y5\",h3:\"framer-styles-preset-179z5w7\",h4:\"framer-styles-preset-1v5sl8i\",h5:\"framer-styles-preset-45lhp0\",h6:\"framer-styles-preset-es7aos\",img:\"framer-styles-preset-v5fnta\",p:\"framer-styles-preset-1ks4f8i\",table:\"framer-styles-preset-5f643r\"}},oVR6Pk68B:{stylesPresetsClassNames:{a:\"framer-styles-preset-1fii7px\",blockquote:\"framer-styles-preset-k4yxkh\",code:\"framer-styles-preset-tls9hx\",h1:\"framer-styles-preset-1yq2kq8\",h2:\"framer-styles-preset-y0g8y5\",h3:\"framer-styles-preset-179z5w7\",h4:\"framer-styles-preset-1v5sl8i\",h5:\"framer-styles-preset-45lhp0\",h6:\"framer-styles-preset-es7aos\",img:\"framer-styles-preset-v5fnta\",p:\"framer-styles-preset-1ks4f8i\",table:\"framer-styles-preset-5f643r\"}}},children:/*#__PURE__*/_jsx(RichTextTableOverride8ftcpt,{__fromCanvasComponent:true,children:xt1rryj9L,className:\"framer-8ftcpt\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1fii7px\",blockquote:\"framer-styles-preset-k4yxkh\",code:\"framer-styles-preset-1g0lumw\",h1:\"framer-styles-preset-1yq2kq8\",h2:\"framer-styles-preset-y0g8y5\",h3:\"framer-styles-preset-179z5w7\",h4:\"framer-styles-preset-1v5sl8i\",h5:\"framer-styles-preset-45lhp0\",h6:\"framer-styles-preset-es7aos\",img:\"framer-styles-preset-v5fnta\",p:\"framer-styles-preset-1ks4f8i\",table:\"framer-styles-preset-5f643r\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AZ3xp5rN8:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.75)`,y:(componentViewport?.y||0)+84+500+0+368.4},oVR6Pk68B:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,y:(componentViewport?.y||0)+0+600+0+388.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:`min(${componentViewport?.width||\"100vw\"} / 2, 1000px)`,y:(componentViewport?.y||0)+84+600+0+368.4,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17d810z-container\",nodeId:\"v6CYsBkSb\",rendersWithMotion:true,scopeId:\"gdUEAgVPR\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oVR6Pk68B:{variant:\"sHeKWLQq5\"}},children:/*#__PURE__*/_jsx(CardMore,{height:\"100%\",IBxKM0jT8:\"Block apps. Limit time. Grow better habits. Endless possibilities.\",id:\"v6CYsBkSb\",KyPsnWbaR:addImageAlt({pixelHeight:2048,pixelWidth:2048,src:\"https://framerusercontent.com/images/tc0fmtaACjyVvnMRgQGDocU8ds.gif\",srcSet:\"https://framerusercontent.com/images/tc0fmtaACjyVvnMRgQGDocU8ds.gif?scale-down-to=512 512w,https://framerusercontent.com/images/tc0fmtaACjyVvnMRgQGDocU8ds.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/tc0fmtaACjyVvnMRgQGDocU8ds.gif 2048w\"},\"\"),layoutId:\"v6CYsBkSb\",mem0gck6V:\"app.jomo.so\",MKfaoWCVW:\"Your Phone, Your Rules.\",style:{width:\"100%\"},variant:\"XNWYMC0j1\",width:\"100%\",Z1rFgYL2F:\"Try for free\"})})})})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"q_gx40il2\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"z3VtE6gqQ\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AZ3xp5rN8:{stylesPresetsClassNames:{a:\"framer-styles-preset-1fii7px\",blockquote:\"framer-styles-preset-k4yxkh\",code:\"framer-styles-preset-tls9hx\",h1:\"framer-styles-preset-1yq2kq8\",h2:\"framer-styles-preset-y0g8y5\",h3:\"framer-styles-preset-179z5w7\",h4:\"framer-styles-preset-1v5sl8i\",h5:\"framer-styles-preset-45lhp0\",h6:\"framer-styles-preset-es7aos\",img:\"framer-styles-preset-v5fnta\",p:\"framer-styles-preset-1ks4f8i\",table:\"framer-styles-preset-5f643r\"}},oVR6Pk68B:{stylesPresetsClassNames:{a:\"framer-styles-preset-1fii7px\",blockquote:\"framer-styles-preset-k4yxkh\",code:\"framer-styles-preset-tls9hx\",h1:\"framer-styles-preset-1yq2kq8\",h2:\"framer-styles-preset-y0g8y5\",h3:\"framer-styles-preset-179z5w7\",h4:\"framer-styles-preset-1v5sl8i\",h5:\"framer-styles-preset-45lhp0\",h6:\"framer-styles-preset-es7aos\",img:\"framer-styles-preset-v5fnta\",p:\"framer-styles-preset-1ks4f8i\",table:\"framer-styles-preset-5f643r\"}}},children:/*#__PURE__*/_jsx(RichTextTableOverride1lmahfj,{__fromCanvasComponent:true,children:pUIoovP4y,className:\"framer-1lmahfj\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1fii7px\",blockquote:\"framer-styles-preset-k4yxkh\",code:\"framer-styles-preset-1g0lumw\",h1:\"framer-styles-preset-1yq2kq8\",h2:\"framer-styles-preset-y0g8y5\",h3:\"framer-styles-preset-179z5w7\",h4:\"framer-styles-preset-1v5sl8i\",h5:\"framer-styles-preset-45lhp0\",h6:\"framer-styles-preset-es7aos\",img:\"framer-styles-preset-v5fnta\",p:\"framer-styles-preset-1ks4f8i\",table:\"framer-styles-preset-5f643r\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4rs1d5\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"q_gx40il2\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"z3VtE6gqQ\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:nFBtwp2h8,className:\"framer-kgedol\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1fii7px\",h5:\"framer-styles-preset-45lhp0\",h6:\"framer-styles-preset-es7aos\",img:\"framer-styles-preset-v5fnta\",table:\"framer-styles-preset-5f643r\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f37kut\",\"data-framer-name\":\"Continue-reading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AZ3xp5rN8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-bhp44f\",\"data-styles-preset\":\"vO01g9xPJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Continue Reading\u2026\"})})},oVR6Pk68B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-bhp44f\",\"data-styles-preset\":\"vO01g9xPJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Continue Reading\u2026\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-bhp44f\",\"data-styles-preset\":\"vO01g9xPJ\",style:{\"--framer-text-alignment\":\"left\"},children:\"Continue Reading\u2026\"})}),className:\"framer-18jxt2\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h94v06\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AZ3xp5rN8:{query:{from:{alias:\"iAYNA3Ncv\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"iAYNA3Ncv\",direction:\"desc\",name:\"MJoGirltk\",type:\"Identifier\"}],select:[{collection:\"iAYNA3Ncv\",name:\"LXPPb0mj_\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"CceDysV3l\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"A7fG8L4rv\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"z73Iw8W3B\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"xtQsaUzj1\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"MJoGirltk\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"id\",type:\"Identifier\"}],where:{left:{dataType:\"DATE\",type:\"TypeCast\",value:{collection:\"iAYNA3Ncv\",name:\"MJoGirltk\",type:\"Identifier\"}},operator:\"<=\",right:{dataType:\"DATE\",type:\"TypeCast\",value:{type:\"LiteralValue\",value:\"2025-05-05T00:00:00.000Z\"}},type:\"BinaryOperation\"}}},oVR6Pk68B:{query:{from:{alias:\"iAYNA3Ncv\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"iAYNA3Ncv\",direction:\"desc\",name:\"MJoGirltk\",type:\"Identifier\"}],select:[{collection:\"iAYNA3Ncv\",name:\"LXPPb0mj_\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"CceDysV3l\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"A7fG8L4rv\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"z73Iw8W3B\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"xtQsaUzj1\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"MJoGirltk\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"id\",type:\"Identifier\"}],where:{left:{dataType:\"DATE\",type:\"TypeCast\",value:{collection:\"iAYNA3Ncv\",name:\"MJoGirltk\",type:\"Identifier\"}},operator:\"<=\",right:{dataType:\"DATE\",type:\"TypeCast\",value:{type:\"LiteralValue\",value:\"2025-05-05T00:00:00.000Z\"}},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"iAYNA3Ncv\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"iAYNA3Ncv\",direction:\"desc\",name:\"MJoGirltk\",type:\"Identifier\"}],select:[{collection:\"iAYNA3Ncv\",name:\"LXPPb0mj_\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"CceDysV3l\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"A7fG8L4rv\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"z73Iw8W3B\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"xtQsaUzj1\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"MJoGirltk\",type:\"Identifier\"},{collection:\"iAYNA3Ncv\",name:\"id\",type:\"Identifier\"}],where:{left:{dataType:\"DATE\",type:\"TypeCast\",value:{collection:\"iAYNA3Ncv\",name:\"MJoGirltk\",type:\"Identifier\"}},operator:\"<=\",right:{dataType:\"DATE\",type:\"TypeCast\",value:{type:\"LiteralValue\",value:\"2025-05-05T00:00:00.000Z\"}},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({A7fG8L4rv:A7fG8L4rviAYNA3Ncv,CceDysV3l:CceDysV3liAYNA3Ncv,id:idiAYNA3Ncv,LXPPb0mj_:LXPPb0mj_iAYNA3Ncv,MJoGirltk:MJoGirltkiAYNA3Ncv,xtQsaUzj1:xtQsaUzj1iAYNA3Ncv,z73Iw8W3B:z73Iw8W3BiAYNA3Ncv},index)=>{LXPPb0mj_iAYNA3Ncv??=\"\";z73Iw8W3BiAYNA3Ncv??=\"\";xtQsaUzj1iAYNA3Ncv??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`iAYNA3Ncv-${idiAYNA3Ncv}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{LXPPb0mj_:LXPPb0mj_iAYNA3Ncv},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{LXPPb0mj_:LXPPb0mj_iAYNA3Ncv},webPageId:\"gdUEAgVPR\"},implicitPathVariables:undefined},{href:{pathVariables:{LXPPb0mj_:LXPPb0mj_iAYNA3Ncv},webPageId:\"gdUEAgVPR\"},implicitPathVariables:undefined},{href:{pathVariables:{LXPPb0mj_:LXPPb0mj_iAYNA3Ncv},webPageId:\"gdUEAgVPR\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AZ3xp5rN8:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1400px) * 0.75 - 16px) / 2, 200px)`,y:(componentViewport?.y||0)+84+1460.4+44+68+0+0},oVR6Pk68B:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1400px) * 0.9, 200px)`,y:(componentViewport?.y||0)+0+1620.4+44+68+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,width:`max((min(${componentViewport?.width||\"100vw\"}, 1400px) * 0.7 - 32px) / 3, 200px)`,y:(componentViewport?.y||0)+84+1560.4+44+68+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lpjgub-container\",nodeId:\"LT1AK2nRz\",rendersWithMotion:true,scopeId:\"gdUEAgVPR\",whileHover:animation5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AZ3xp5rN8:{No1f21M3n:resolvedLinks[1]},oVR6Pk68B:{No1f21M3n:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(CardArticle,{height:\"100%\",i3gN3wFwy:z73Iw8W3BiAYNA3Ncv,id:\"LT1AK2nRz\",layoutId:\"LT1AK2nRz\",LDu3kGNIJ:xtQsaUzj1iAYNA3Ncv,No1f21M3n:resolvedLinks[0],oqb2i472G:toDateString(MJoGirltkiAYNA3Ncv,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),sCSWo2iGB:enumToDisplayNameFunctions[\"A7fG8L4rv\"]?.(A7fG8L4rviAYNA3Ncv,activeLocale),style:{height:\"100%\",width:\"100%\"},VVTEUuFaN:toResponsiveImage(CceDysV3liAYNA3Ncv),width:\"100%\"})})})})})})})},idiAYNA3Ncv);})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AZ3xp5rN8:{y:(componentViewport?.y||0)+84+2132.4},oVR6Pk68B:{height:270,y:(componentViewport?.y||0)+0+2292.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+84+2232.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14p8qxl-container\",nodeId:\"zn7FVMzh5\",scopeId:\"gdUEAgVPR\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oVR6Pk68B:{style:{width:\"100%\"},variant:\"jgK0LiajS\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"zn7FVMzh5\",layoutId:\"zn7FVMzh5\",style:{height:\"100%\",width:\"100%\"},variant:\"xaUcfiD1e\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7ZDJ7.framer-1mnlkxd, .framer-7ZDJ7 .framer-1mnlkxd { display: block; }\",\".framer-7ZDJ7.framer-c6svgk { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 84px 0px 0px 0px; position: relative; width: 1024px; }\",\".framer-7ZDJ7 .framer-gulljv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40vh; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 95%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-7ZDJ7 .framer-szjej5 { background-color: var(--token-20ec76f0-d65e-4170-9d03-333b75a65993, #ffffff); border-top-left-radius: 34px; border-top-right-radius: 34px; box-shadow: 0px -0.6021873017743928px 0.6021873017743928px -1.3333333333333333px rgba(0, 0, 0, 0.19), 0px -2.288533303243457px 2.288533303243457px -2.6666666666666665px rgba(0, 0, 0, 0.17), 0px -10px 10px -4px rgba(0, 0, 0, 0.05); flex: none; height: 60px; overflow: hidden; position: relative; width: 65%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7ZDJ7 .framer-1ryktz7 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; transform: translateX(-50%); width: min-content; }\",\".framer-7ZDJ7 .framer-1pxy58t, .framer-7ZDJ7 .framer-bq35yc, .framer-7ZDJ7 .framer-1cde4a2, .framer-7ZDJ7 .framer-66yf8b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7ZDJ7 .framer-13qgv4d, .framer-7ZDJ7 .framer-1hh73zj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.3; position: relative; white-space: pre; width: auto; }\",\".framer-7ZDJ7 .framer-1v6tslg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7ZDJ7 .framer-5zm0yd-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-7ZDJ7 .framer-71a1g0-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-7ZDJ7 .framer-aak9gx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: flex-start; max-width: 1000px; padding: 0px 0px 24px 0px; position: relative; width: 50%; }\",\".framer-7ZDJ7 .framer-1k1okfz { 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: 44px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-7ZDJ7 .framer-1kcfo92, .framer-7ZDJ7 .framer-iki00 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7ZDJ7 .framer-8ftcpt, .framer-7ZDJ7 .framer-1lmahfj { --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-7ZDJ7 .framer-17d810z-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-7ZDJ7 .framer-4rs1d5 { align-content: center; align-items: center; background-color: var(--token-30cd65c1-e72c-461f-902b-b254993bb979, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7ZDJ7 .framer-kgedol { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7ZDJ7 .framer-1f37kut { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 44px 0px 44px 0px; position: relative; width: 100%; }\",\".framer-7ZDJ7 .framer-18jxt2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-7ZDJ7 .framer-1h94v06 { display: grid; flex: none; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 70%; }\",\".framer-7ZDJ7 .framer-1lpjgub-container { align-self: start; flex: none; height: 500px; justify-self: start; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-7ZDJ7 .framer-14p8qxl-container { flex: none; height: 240px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,\"@media (min-width: 810px) and (max-width: 1023px) { .framer-7ZDJ7.framer-c6svgk { width: 810px; } .framer-7ZDJ7 .framer-gulljv { height: 30vh; order: 0; } .framer-7ZDJ7 .framer-szjej5 { height: 64px; width: 95%; } .framer-7ZDJ7 .framer-5zm0yd-container { order: 1; } .framer-7ZDJ7 .framer-71a1g0-container { order: 2; } .framer-7ZDJ7 .framer-aak9gx { max-width: unset; order: 3; width: 75%; } .framer-7ZDJ7 .framer-1f37kut { order: 4; } .framer-7ZDJ7 .framer-18jxt2 { width: 75%; } .framer-7ZDJ7 .framer-1h94v06 { grid-template-columns: repeat(2, minmax(200px, 1fr)); width: 75%; } .framer-7ZDJ7 .framer-14p8qxl-container { order: 5; }}\",\"@media (max-width: 809px) { .framer-7ZDJ7.framer-c6svgk { padding: 0px; width: 390px; } .framer-7ZDJ7 .framer-gulljv { order: 0; width: 100%; } .framer-7ZDJ7 .framer-szjej5 { height: 64px; width: 100%; } .framer-7ZDJ7 .framer-5zm0yd-container, .framer-7ZDJ7 .framer-17d810z-container { order: 1; } .framer-7ZDJ7 .framer-71a1g0-container, .framer-7ZDJ7 .framer-1lmahfj { order: 2; } .framer-7ZDJ7 .framer-aak9gx { gap: 64px; max-width: unset; order: 3; width: 90%; } .framer-7ZDJ7 .framer-1k1okfz { order: 0; } .framer-7ZDJ7 .framer-4rs1d5 { order: 3; } .framer-7ZDJ7 .framer-1f37kut { order: 4; } .framer-7ZDJ7 .framer-1h94v06 { grid-template-columns: repeat(1, minmax(200px, 1fr)); width: 90%; } .framer-7ZDJ7 .framer-14p8qxl-container { height: auto; order: 5; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 15384\n * @framerIntrinsicWidth 1024\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AZ3xp5rN8\":{\"layout\":[\"fixed\",\"auto\"]},\"oVR6Pk68B\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ebdCwPbyS\":{\"pattern\":\":ebdCwPbyS\",\"name\":\"test\"}}\n * @framerResponsiveScreen\n */const FramergdUEAgVPR=withCSS(Component,css,\"framer-7ZDJ7\");export default FramergdUEAgVPR;FramergdUEAgVPR.displayName=\"Page\";FramergdUEAgVPR.defaultProps={height:15384,width:1024};addFonts(FramergdUEAgVPR,[{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:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]},...NavbarCopyFonts,...SmoothScrollFonts,...CardMoreFonts,...CardArticleFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...componentPresets.fonts?.[\"z3VtE6gqQ\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"z3VtE6gqQ\"]):[],...componentPresets.fonts?.[\"q_gx40il2\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"q_gx40il2\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergdUEAgVPR\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1024\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AZ3xp5rN8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oVR6Pk68B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"ebdCwPbyS\\\":{\\\"pattern\\\":\\\":ebdCwPbyS\\\",\\\"name\\\":\\\"test\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"15384\",\"framerAutoSizeImages\":\"true\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useStore", "createStore", "TableOverride", "Component", "props", "store", "extractAndFormatTable", "te", "contentDiv", "codeBlock", "framerCbDiv", "styleAttr", "cssVars", "pair", "key", "value", "s", "colorScheme", "borderDiv", "borderStyle", "window", "borderWidth", "borderColor", "borderRadius", "padding", "outerContainer", "innerContainer", "table", "tableHtml", "line", "row", "index", "cells", "cell", "cellIndex", "style", "ue", "observer", "p", "props", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "ImageWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "Image2", "NavbarCopyFonts", "getFonts", "WiCJHXLqu_default", "SmoothScrollFonts", "SmoothScroll", "RichTextTableOverride8ftcpt", "withCodeBoundaryForOverrides", "RichText2", "TableOverride", "CardMoreFonts", "pzXbaW1YZ_default", "ContainerWithFX", "Container", "RichTextTableOverride1lmahfj", "CardArticleFonts", "kHS0CCoLU_default", "FooterFonts", "tSaxaTOCi_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "animation", "animation1", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "animation2", "transition2", "textEffect", "animation3", "transition3", "addImageAlt", "image", "alt", "animation4", "transition4", "transition5", "animation5", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "baTdmtKwg_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "aRsDZYt0I", "A7fG8L4rv", "MJoGirltk", "myCpIa2DT", "z73Iw8W3B", "s_JxTDFle", "xt1rryj9L", "pUIoovP4y", "nFBtwp2h8", "LXPPb0mj_iAYNA3Ncv", "CceDysV3liAYNA3Ncv", "A7fG8L4rviAYNA3Ncv", "z73Iw8W3BiAYNA3Ncv", "xtQsaUzj1iAYNA3Ncv", "MJoGirltkiAYNA3Ncv", "idiAYNA3Ncv", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "textContent", "enumToDisplayNameFunctions", "activeLocaleCode", "useLocaleCode", "textContent1", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "getLoadingLazyAtYPosition", "ImageWithFXWithOptimizedAppearEffect", "RichText2", "x", "ComponentViewportProvider", "Container", "WiCJHXLqu_default", "SmoothScroll", "ComponentPresetsProvider", "RichTextTableOverride8ftcpt", "ContainerWithFX", "pzXbaW1YZ_default", "RichTextTableOverride1lmahfj", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "kHS0CCoLU_default", "tSaxaTOCi_default", "css", "FramergdUEAgVPR", "withCSS", "gdUEAgVPR_default", "addFonts", "NavbarCopyFonts", "SmoothScrollFonts", "CardMoreFonts", "CardArticleFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
