{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/iNM06L2fu5l24ntAFs5m/GEFlb5BcVrrycVSO3D7m/CMS_Markdown_Table.js", "ssg:https://framerusercontent.com/modules/uRdQDCkSQxQjU5C9kRhD/Mhy4uCRIvA16DjKCRfGX/componentPresets.js", "ssg:https://framerusercontent.com/modules/CFgGFCzPiaG5U92DOzIq/SPqXT55kbqg5UOW17Q8n/f4PLtQw_4.js", "ssg:https://framerusercontent.com/modules/L3bu2wBcjHfHdTxHMDx8/ML070I1rGF5EQtkaOoQj/m8wj3G5tS.js", "ssg:https://framerusercontent.com/modules/vlIDI0WvpB0GXrroug4D/5CsV8d0UOwB8oNgKdCX9/OxsgPNEqW.js", "ssg:https://framerusercontent.com/modules/42uNFNfMNLFwMmpaC843/LPLMQQKhUru0p2Dhhzrf/zPs9aOkYc.js", "ssg:https://framerusercontent.com/modules/AUVNLA0ETlinRkkphejv/IOgiGEJGsUYTFv76QGX7/XmgoLj41C.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\",headerFont:\"Red Hat Display, sans-serif\",headerBackground:\"#1F1F1F\",headerTextColor:\"#FFFFFF\",headerSeparatorColor:\"#868686\"});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){const framerCbDiv=codeBlock.querySelector(\".framer-cb\");if(!framerCbDiv)return;const 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;}});const colorScheme=cssVars[\"--cb-color-scheme-dark\"]===\"light\"?\"light\":\"dark\";const borderDiv=codeBlock.querySelector(\".sp-layout\");if(!borderDiv)return;const borderStyle=window.getComputedStyle(borderDiv);const borderWidth=borderStyle.borderWidth;const borderColor=borderStyle.borderColor;const borderRadius=borderStyle.borderRadius;const padding=borderStyle.getPropertyValue(\"--cb-padding\")||\"27px\";const outerContainer=document.createElement(\"div\");outerContainer.style.cssText=`\n                            border: ${borderWidth} solid ${borderColor};\n                            border-radius: ${borderRadius};\n                            overflow: hidden;\n                            width: 100%;\n                            height: auto;\n                        `;const innerContainer=document.createElement(\"div\");innerContainer.style.cssText=`\n                            overflow-x: auto; /* Enable horizontal scrolling only */\n                            overflow-y: hidden; /* Disable vertical scrolling */\n                            width: 100%; /* Ensure the container takes the full width */\n                            height: auto; /* Allow the container to grow vertically if needed */\n                            white-space: nowrap; /* Prevent table wrapping to enable horizontal scrolling */\n                        `;const table=document.createElement(\"table\");table.style.cssText=`\n                            border-collapse: separate;\n                            border-spacing: 0;\n                            min-width: 100%; /* Ensure the table's width might exceed the container */\n                        `;const codeContent=codeBlock.textContent||\"\";const tableLines=codeContent.split(/\\r?\\n/).filter(line=>line.trim()!==\"\").map(line=>line.trim())// Trim extra spaces\n.filter(line=>line.trim()!==\"\")// Remove empty lines\n;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=>`<th>${cell}</th>`).join(\"\")}</tr>`;}else if(index===1){return\"\"// Skip separator\n;}else{while(cells.length<4){cells.push(\"\");}return`<tr>${cells.map(cell=>`<td>${cell}</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                        `;const 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}; /* Default border color */\n                                border-bottom: 1px solid ${borderColor};\n                            }\n                            table th {\n                                font-family: ${store.headerFont};\n                                background-color: ${store.headerBackground};\n                                color: ${store.headerTextColor};\n                                font-weight: bold;\n                                position: sticky;\n                                top: 0;\n                                z-index: 1;\n                                border-right: 1px solid ${store.headerSeparatorColor||borderColor}; /* Custom header separator color */\n                            }\n                            table td {\n                                border-right: 1px solid ${borderColor}; /* Reset for non-header rows */\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);innerContainer.appendChild(table);outerContainer.appendChild(innerContainer);codeBlock.innerHTML=\"\";codeBlock.appendChild(outerContainer);}});});},[store]);React.useEffect(()=>{extractAndFormatTable();const 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});});const 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=./CMS_Markdown_Table.map", "// Generated by Framer (98479f1)\nexport const props={jL6HaCLLO:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:false,isRed:true,topLeftRadius:0,topRightRadius:0},x805qwS9d:{background:\"var(--token-f9f0d0d6-2496-415f-bb5a-29a41a84c28b, rgb(255, 255, 255))\",border:{borderColor:\"var(--token-2adbc9ad-d693-45bf-a31a-d5a11da549c7, rgb(31, 31, 31))\",borderStyle:\"solid\",borderWidth:1,borderWidthBottom:1,borderWidthLeft:1,borderWidthRight:1,borderWidthTop:1,isMixedBorderWidth:false},borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,darkTheme:\"framerDark\",font:{fontFamily:'\"Red Hat Text\", \"Red Hat Text Placeholder\", sans-serif',fontSize:\"13px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"framerLight\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,theme:\"magic\",themeMode:\"Static\",topLeftRadius:10,topRightRadius:10}};export const fonts={x805qwS9d:[{explicitInter:true,fonts:[{family:\"Red Hat Text\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/redhattext/v18/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwVrPacYVFtIY.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7e4cc89)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-B6c0E .framer-styles-preset-1kcfg3z:not(.rich-text-wrapper), .framer-B6c0E .framer-styles-preset-1kcfg3z.rich-text-wrapper a { --framer-link-hover-text-color: var(--token-f67f3322-0e94-4709-aa7d-d74a55395922, #00835a) /* {\"name\":\"Primary / Hover\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-f67f3322-0e94-4709-aa7d-d74a55395922, #00835a); --framer-link-text-decoration: none; }'];export const className=\"framer-B6c0E\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const 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-p5Uxl .framer-styles-preset-ho4gw3 { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --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-p5Uxl\";\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 (98479f1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Italic\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{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\"},{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\"}]}];export const css=['.framer-UbB39 .framer-styles-preset-1pe8yie { --framer-blockquote-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-size: 18px; --framer-blockquote-font-style: italic; --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: 400; --framer-blockquote-font-weight-bold: 700; --framer-blockquote-font-weight-bold-italic: 700; --framer-blockquote-font-weight-italic: 400; --framer-blockquote-letter-spacing: 0em; --framer-blockquote-line-height: 2em; --framer-blockquote-paragraph-spacing: 20px; --framer-blockquote-text-color: var(--token-af6a03a8-5a4c-4780-9097-7d34504d1f0a, #fafafa); --framer-blockquote-text-stroke-color: initial; --framer-blockquote-text-stroke-width: initial; --framer-font-open-type-features: normal; padding: 0px 0px 0px 22px; position: relative; }','.framer-UbB39 .framer-styles-preset-1pe8yie::before { background-color: #ddd; border-radius: 1px; content: \" \"; display: block; height: 100%; left: 0px; position: absolute; top: 0px; width: 2px; }'];export const className=\"framer-UbB39\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-b6pLB .framer-styles-preset-13vag13 {  }\"];export const className=\"framer-b6pLB\";\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 (7e4cc89)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCodeBoundaryForOverrides,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Footer from\"#framer/local/canvasComponent/eiPgZaCBK/eiPgZaCBK.js\";import Topbar from\"#framer/local/canvasComponent/pcY6wZnRq/pcY6wZnRq.js\";import{TableOverride}from\"#framer/local/codeFile/ZDxR3oL/CMS_Markdown_Table.js\";import Blog from\"#framer/local/collection/EYMXVavFJ/EYMXVavFJ.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle13 from\"#framer/local/css/Dax01rUJp/Dax01rUJp.js\";import*as sharedStyle9 from\"#framer/local/css/f4PLtQw_4/f4PLtQw_4.js\";import*as sharedStyle4 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle6 from\"#framer/local/css/kyKUG8cTx/kyKUG8cTx.js\";import*as sharedStyle11 from\"#framer/local/css/m8wj3G5tS/m8wj3G5tS.js\";import*as sharedStyle2 from\"#framer/local/css/oS9bfa1uo/oS9bfa1uo.js\";import*as sharedStyle10 from\"#framer/local/css/OxsgPNEqW/OxsgPNEqW.js\";import*as sharedStyle from\"#framer/local/css/vB1SYcZe4/vB1SYcZe4.js\";import*as sharedStyle7 from\"#framer/local/css/w1Kuva1sR/w1Kuva1sR.js\";import*as sharedStyle3 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle1 from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle5 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import*as sharedStyle8 from\"#framer/local/css/ZPOpO2qZv/ZPOpO2qZv.js\";import*as sharedStyle12 from\"#framer/local/css/zPs9aOkYc/zPs9aOkYc.js\";import metadataProvider from\"#framer/local/webPageMetadata/XmgoLj41C/XmgoLj41C.js\";const TopbarFonts=getFonts(Topbar);const RichTextTableOverride121vf4h=withCodeBoundaryForOverrides(RichText,{nodeId:\"rpNdReQv3\",override:TableOverride,scopeId:\"XmgoLj41C\"});const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const FooterFonts=getFonts(Footer);const breakpoints={ETsDvcjRZ:\"(min-width: 810px) and (max-width: 1199px)\",O4ubehVFO:\"(min-width: 1200px)\",QboIUBL0I:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Um7aC\";const variantClassNames={ETsDvcjRZ:\"framer-v-1nfpmuh\",O4ubehVFO:\"framer-v-1phg4x0\",QboIUBL0I:\"framer-v-13ri89g\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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 transition1={damping:100,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"O4ubehVFO\",Phone:\"QboIUBL0I\",Tablet:\"ETsDvcjRZ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"O4ubehVFO\"};};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:\"XmgoLj41C\",data:Blog,type:\"Collection\"},select:[{collection:\"XmgoLj41C\",name:\"T6rpnMDQ5\",type:\"Identifier\"},{collection:\"XmgoLj41C\",name:\"FL77TjRRJ\",type:\"Identifier\"},{collection:\"XmgoLj41C\",name:\"o0WYLpobw\",type:\"Identifier\"},{collection:\"XmgoLj41C\",name:\"ESv0i6ays\",type:\"Identifier\"},{collection:\"XmgoLj41C\",name:\"s1aqoBzsH\",type:\"Identifier\"},{collection:\"XmgoLj41C\",name:\"eHyBMpaK_\",type:\"Identifier\"},{collection:\"XmgoLj41C\",name:\"WX8TP_XhE\",type:\"Identifier\"},{collection:\"XmgoLj41C\",name:\"aLZPtUuiE\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"XmgoLj41C\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,T6rpnMDQ5=getFromCurrentRouteData(\"T6rpnMDQ5\")??\"\",FL77TjRRJ=getFromCurrentRouteData(\"FL77TjRRJ\")??\"\",o0WYLpobw=getFromCurrentRouteData(\"o0WYLpobw\"),ESv0i6ays=getFromCurrentRouteData(\"ESv0i6ays\")??\"\",s1aqoBzsH=getFromCurrentRouteData(\"s1aqoBzsH\")??\"\",eHyBMpaK_=getFromCurrentRouteData(\"eHyBMpaK_\"),WX8TP_XhE=getFromCurrentRouteData(\"WX8TP_XhE\"),aLZPtUuiE=getFromCurrentRouteData(\"aLZPtUuiE\")??\"\",...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const activeLocaleCode=useLocaleCode();const textContent=toDateString(eHyBMpaK_,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"O4ubehVFO\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(249, 248, 245); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1phg4x0\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":bQXV9xpbc\",webPageId:\"oGvlspaow\"},implicitPathVariables:undefined},{href:{hash:\":bQXV9xpbc\",webPageId:\"oGvlspaow\"},implicitPathVariables:undefined},{href:{hash:\":bQXV9xpbc\",webPageId:\"oGvlspaow\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wu8fc1-container\",nodeId:\"N7zgiColr\",scopeId:\"XmgoLj41C\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ETsDvcjRZ:{EM1Mhm9Sl:resolvedLinks[1],variant:\"tKtVuZ9z1\"},QboIUBL0I:{EM1Mhm9Sl:resolvedLinks[2],variant:\"WeP9nFuH3\"}},children:/*#__PURE__*/_jsx(Topbar,{EM1Mhm9Sl:resolvedLinks[0],height:\"100%\",id:\"N7zgiColr\",layoutId:\"N7zgiColr\",style:{width:\"100%\"},variant:\"o9ekZ70aI\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16s3ijw\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w2cpjw\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8nw7m3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4cv8de\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6iur69\",\"data-styles-preset\":\"vB1SYcZe4\",style:{\"--framer-text-color\":\"var(--token-2adbc9ad-d693-45bf-a31a-d5a11da549c7, rgb(31, 31, 31))\"},children:\"Product\"})}),className:\"framer-1t4vfhb\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:T6rpnMDQ5,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"left\"},children:\"Starting and Growing a Career in Web Design\"})}),className:\"framer-ni31ge\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:FL77TjRRJ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iyx154\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ETsDvcjRZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+182+0+0+0+0+0+167.6+1.6999999999999993),sizes:\"40px\",...toResponsiveImage(o0WYLpobw)}},QboIUBL0I:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+182+0+0+0+0+0+167.6+1.6999999999999993),sizes:\"40px\",...toResponsiveImage(o0WYLpobw)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+182+0+0+67+0+167.6+1.6999999999999993),sizes:\"40px\",...toResponsiveImage(o0WYLpobw)},className:\"framer-pcr8sc\",\"data-framer-name\":\"Author photo\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13usnx3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15m5jec\",\"data-styles-preset\":\"oS9bfa1uo\",children:\"Eva Elle\"})}),className:\"framer-k0zbg9\",\"data-framer-name\":\"Author name\",fonts:[\"Inter\"],text:ESv0i6ays,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"@evaelle\"})}),className:\"framer-wowj6w\",\"data-framer-name\":\"Author job\",fonts:[\"GF;Inter-500\"],text:s1aqoBzsH,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Apr 8, 2022\"})}),className:\"framer-nj86si\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ETsDvcjRZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+182+0+0+0+403),sizes:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,...toResponsiveImage(WX8TP_XhE),...{positionX:\"center\",positionY:\"center\"}}},QboIUBL0I:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+182+0+0+0+403),sizes:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,...toResponsiveImage(WX8TP_XhE)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+182+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 200px) / 2, 1px)`,...toResponsiveImage(WX8TP_XhE)},className:\"framer-y93fj7\",\"data-framer-name\":\"Banner\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qfr8q4\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3hbba4\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js:Youtube\":componentPresets.props[\"jL6HaCLLO\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"x805qwS9d\"]},children:/*#__PURE__*/_jsx(RichTextTableOverride121vf4h,{__fromCanvasComponent:true,children:aLZPtUuiE,className:\"framer-121vf4h\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kcfg3z\",blockquote:\"framer-styles-preset-1pe8yie\",code:\"framer-styles-preset-ho4gw3\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-1wml6uu\",h3:\"framer-styles-preset-12lj5ox\",h4:\"framer-styles-preset-arwh66\",h5:\"framer-styles-preset-r0gilt\",h6:\"framer-styles-preset-hfkvcg\",img:\"framer-styles-preset-13vag13\",p:\"framer-styles-preset-21ogod\"},verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-su7e7x\",\"data-framer-appear-id\":\"su7e7x\",\"data-framer-name\":\"Sign up\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11937dl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:\"No more juggling multiple systems or drowning in spreadsheets.\"})}),className:\"framer-8jfgtz\",\"data-framer-name\":\"The People Operating System for\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://app.givver.io/p/register\",motionChild:true,nodeId:\"g5jGbG1DI\",openInNewTab:true,scopeId:\"XmgoLj41C\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1b85vgi framer-l65o1d\",\"data-framer-name\":\"Button Primary Small\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1z0qdqu\",\"data-styles-preset\":\"Dax01rUJp\",style:{\"--framer-text-color\":\"var(--token-f9f0d0d6-2496-415f-bb5a-29a41a84c28b, rgb(255, 255, 255))\"},children:\"Sign up for free\"})}),className:\"framer-1i5vv87\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a5prr9\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ETsDvcjRZ:{y:(componentViewport?.y||0)+0+1611+0},QboIUBL0I:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1571+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:584,width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+0+1295+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ysliur-container\",nodeId:\"ZU8ClN5YM\",scopeId:\"XmgoLj41C\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ETsDvcjRZ:{variant:\"dcogv32Ho\"},QboIUBL0I:{variant:\"tY6UJdc4V\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"ZU8ClN5YM\",layoutId:\"ZU8ClN5YM\",style:{width:\"100%\"},variant:\"gGyD42l4B\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Um7aC.framer-l65o1d, .framer-Um7aC .framer-l65o1d { display: block; }\",\".framer-Um7aC.framer-1phg4x0 { align-content: center; align-items: center; background-color: #f9f8f5; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Um7aC .framer-wu8fc1-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-Um7aC .framer-16s3ijw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-Um7aC .framer-w2cpjw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 150px; position: relative; width: 100%; }\",\".framer-Um7aC .framer-8nw7m3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Um7aC .framer-4cv8de { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Um7aC .framer-1t4vfhb, .framer-Um7aC .framer-ni31ge, .framer-Um7aC .framer-nj86si { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Um7aC .framer-iyx154 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Um7aC .framer-pcr8sc { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Um7aC .framer-13usnx3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 200px; }\",\".framer-Um7aC .framer-k0zbg9, .framer-Um7aC .framer-wowj6w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Um7aC .framer-y93fj7 { aspect-ratio: 1.15 / 1; border-bottom-left-radius: 10px; border-top-left-radius: 10px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 435px); position: relative; width: 1px; }\",\".framer-Um7aC .framer-1qfr8q4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 700px; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-Um7aC .framer-3hbba4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 2px 0px 2px; position: relative; width: 700px; }\",\".framer-Um7aC .framer-121vf4h { --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-Um7aC .framer-su7e7x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 812px; }\",\".framer-Um7aC .framer-11937dl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Um7aC .framer-8jfgtz { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Um7aC .framer-1b85vgi { align-content: center; align-items: center; background-color: var(--token-2adbc9ad-d693-45bf-a31a-d5a11da549c7, #1f1f1f); border-bottom-left-radius: 65px; border-bottom-right-radius: 65px; border-top-left-radius: 65px; border-top-right-radius: 65px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 10px 20px 10px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Um7aC .framer-1i5vv87 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Um7aC .framer-1a5prr9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 20px 20px; position: relative; width: 100%; }\",\".framer-Um7aC .framer-1ysliur-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Um7aC.framer-1phg4x0, .framer-Um7aC .framer-16s3ijw, .framer-Um7aC .framer-w2cpjw, .framer-Um7aC .framer-8nw7m3, .framer-Um7aC .framer-4cv8de, .framer-Um7aC .framer-iyx154, .framer-Um7aC .framer-13usnx3, .framer-Um7aC .framer-1qfr8q4, .framer-Um7aC .framer-3hbba4, .framer-Um7aC .framer-su7e7x, .framer-Um7aC .framer-11937dl, .framer-Um7aC .framer-1b85vgi, .framer-Um7aC .framer-1a5prr9 { gap: 0px; } .framer-Um7aC.framer-1phg4x0 > *, .framer-Um7aC .framer-16s3ijw > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-Um7aC.framer-1phg4x0 > :first-child, .framer-Um7aC .framer-16s3ijw > :first-child, .framer-Um7aC .framer-8nw7m3 > :first-child, .framer-Um7aC .framer-4cv8de > :first-child, .framer-Um7aC .framer-13usnx3 > :first-child, .framer-Um7aC .framer-3hbba4 > :first-child, .framer-Um7aC .framer-su7e7x > :first-child, .framer-Um7aC .framer-11937dl > :first-child, .framer-Um7aC .framer-1b85vgi > :first-child { margin-top: 0px; } .framer-Um7aC.framer-1phg4x0 > :last-child, .framer-Um7aC .framer-16s3ijw > :last-child, .framer-Um7aC .framer-8nw7m3 > :last-child, .framer-Um7aC .framer-4cv8de > :last-child, .framer-Um7aC .framer-13usnx3 > :last-child, .framer-Um7aC .framer-3hbba4 > :last-child, .framer-Um7aC .framer-su7e7x > :last-child, .framer-Um7aC .framer-11937dl > :last-child, .framer-Um7aC .framer-1b85vgi > :last-child { margin-bottom: 0px; } .framer-Um7aC .framer-w2cpjw > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-Um7aC .framer-w2cpjw > :first-child, .framer-Um7aC .framer-iyx154 > :first-child, .framer-Um7aC .framer-1qfr8q4 > :first-child, .framer-Um7aC .framer-1a5prr9 > :first-child { margin-left: 0px; } .framer-Um7aC .framer-w2cpjw > :last-child, .framer-Um7aC .framer-iyx154 > :last-child, .framer-Um7aC .framer-1qfr8q4 > :last-child, .framer-Um7aC .framer-1a5prr9 > :last-child { margin-right: 0px; } .framer-Um7aC .framer-8nw7m3 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Um7aC .framer-4cv8de > *, .framer-Um7aC .framer-1b85vgi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Um7aC .framer-iyx154 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-Um7aC .framer-13usnx3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Um7aC .framer-1qfr8q4 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-Um7aC .framer-3hbba4 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Um7aC .framer-su7e7x > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Um7aC .framer-11937dl > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Um7aC .framer-1a5prr9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...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,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Um7aC.framer-1phg4x0 { width: 810px; } .framer-Um7aC .framer-w2cpjw { flex-direction: column; padding: 0px 50px 0px 50px; } .framer-Um7aC .framer-8nw7m3 { flex: none; width: 100%; } .framer-Um7aC .framer-iyx154, .framer-Um7aC .framer-nj86si { width: 550px; } .framer-Um7aC .framer-y93fj7 { aspect-ratio: 1.775 / 1; border-bottom-right-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 400px); width: 100%; } .framer-Um7aC .framer-su7e7x { padding: 0px 50px 0px 50px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Um7aC .framer-w2cpjw { gap: 0px; } .framer-Um7aC .framer-w2cpjw > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Um7aC .framer-w2cpjw > :first-child { margin-top: 0px; } .framer-Um7aC .framer-w2cpjw > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-Um7aC.framer-1phg4x0 { width: 390px; } .framer-Um7aC .framer-16s3ijw { gap: 50px; } .framer-Um7aC .framer-w2cpjw { flex-direction: column; padding: 0px 50px 0px 50px; } .framer-Um7aC .framer-8nw7m3, .framer-Um7aC .framer-1ysliur-container { flex: none; width: 100%; } .framer-Um7aC .framer-y93fj7 { aspect-ratio: 1.775 / 1; border-bottom-right-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 164px); width: 100%; } .framer-Um7aC .framer-1qfr8q4 { padding: 50px; } .framer-Um7aC .framer-3hbba4 { flex: 1 0 0px; width: 1px; } .framer-Um7aC .framer-su7e7x { gap: 50px; padding: 0px 70px 0px 70px; width: 100%; } .framer-Um7aC .framer-1a5prr9 { flex-direction: column; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Um7aC .framer-16s3ijw, .framer-Um7aC .framer-w2cpjw, .framer-Um7aC .framer-su7e7x, .framer-Um7aC .framer-1a5prr9 { gap: 0px; } .framer-Um7aC .framer-16s3ijw > *, .framer-Um7aC .framer-w2cpjw > *, .framer-Um7aC .framer-su7e7x > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Um7aC .framer-16s3ijw > :first-child, .framer-Um7aC .framer-w2cpjw > :first-child, .framer-Um7aC .framer-su7e7x > :first-child, .framer-Um7aC .framer-1a5prr9 > :first-child { margin-top: 0px; } .framer-Um7aC .framer-16s3ijw > :last-child, .framer-Um7aC .framer-w2cpjw > :last-child, .framer-Um7aC .framer-su7e7x > :last-child, .framer-Um7aC .framer-1a5prr9 > :last-child { margin-bottom: 0px; } .framer-Um7aC .framer-1a5prr9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2133\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ETsDvcjRZ\":{\"layout\":[\"fixed\",\"auto\"]},\"QboIUBL0I\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerXmgoLj41C=withCSS(Component,css,\"framer-Um7aC\");export default FramerXmgoLj41C;FramerXmgoLj41C.displayName=\"Page\";FramerXmgoLj41C.defaultProps={height:2133,width:1200};addFonts(FramerXmgoLj41C,[{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:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...TopbarFonts,...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),...componentPresets.fonts?.[\"x805qwS9d\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"x805qwS9d\"]):[],...componentPresets.fonts?.[\"jL6HaCLLO\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"jL6HaCLLO\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXmgoLj41C\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ETsDvcjRZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QboIUBL0I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"2133\",\"framerComponentViewportWidth\":\"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", "style", "ue", "observer", "p", "props", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "TopbarFonts", "getFonts", "pcY6wZnRq_default", "RichTextTableOverride121vf4h", "withCodeBoundaryForOverrides", "RichText2", "TableOverride", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "FooterFonts", "eiPgZaCBK_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "transition1", "animation", "animation1", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "EYMXVavFJ_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "T6rpnMDQ5", "FL77TjRRJ", "o0WYLpobw", "ESv0i6ays", "s1aqoBzsH", "eHyBMpaK_", "WX8TP_XhE", "aLZPtUuiE", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "textContent", "useCustomCursors", "GeneratedComponentContext", "LayoutGroup", "motion", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "PropertyOverrides2", "pcY6wZnRq_default", "RichText2", "x", "getLoadingLazyAtYPosition", "Image2", "ComponentPresetsProvider", "RichTextTableOverride121vf4h", "MotionDivWithOptimizedAppearEffect", "Link", "eiPgZaCBK_default", "css", "FramerXmgoLj41C", "withCSS", "XmgoLj41C_default", "addFonts", "TopbarFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
