{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/B4O1nBiAiiPRT6ftXGjN/Np2WHfJ62EObOuaPcKAQ/Examples.js", "ssg:https://framerusercontent.com/modules/7JEEt8wywBmt9WTVFjFS/a06vl5VCcXo0UdaEGPPq/c6AnykU43.js", "ssg:https://framerusercontent.com/modules/dyfvdUwil32VsgqoWunG/OcOaoAK2J2XTrkinl6fv/c7LpnarAE.js", "ssg:https://framerusercontent.com/modules/lubg7IbT5Uiw5ekSmnwa/IhxLintw17syZEPYUvqE/kLZDveUYx.js", "ssg:https://framerusercontent.com/modules/umaVuzjzriGyIMhErEFs/3ea1EjNZ2fYD11wRJRIi/nqiC5uVOo.js", "ssg:https://framerusercontent.com/modules/V4oCLiHxEqgdwmdI7mlo/c7o3qTxsfAZMcUTsp3bx/p21DQTQQW.js", "ssg:https://framerusercontent.com/modules/YLqNIOFpZm2oFR6Mte0V/FTWpFoxIKcdLU7sIdpuH/rE9PU2VXa.js", "ssg:https://framerusercontent.com/modules/lEH5bzGUL9C33MukwjfK/cJjmosJW1jfjoo51S4Vl/v8g_M9LsW.js", "ssg:https://framerusercontent.com/modules/ThdWJVPywU0GUKEYTUMT/6q7gqdawW1CziqbYmnFb/Ys34khm7d.js", "ssg:https://framerusercontent.com/modules/4nlZKY4jWOATwipg8ucO/4Z4aPolPIlIkiiZHVf32/fYcaOVC5Y.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", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Custom CSS\nconst styles=`\n.center-images img {\n  display: block !important;\n  margin-left: auto !important;\n  margin-right: auto !important;\n  margin-top: 60px !important;\n  margin-bottom: 30px !important;\n  width: 100% !important;\n}\n\ntable {\n  border-collapse: collapse;\n  width: 100%;\n  margin: 1rem 0;\n}\n\nth, td {\n  padding: 0.75rem;\n  text-align: left;\n  border-bottom: 1px solid #e5e7eb;\n  min-width: 1rem;  /* Ensure empty cells have width */\n  font-size: 1.5em;\n}\n\nth {\n  background-color: #f9fafb;\n  font-weight: 600;\n}\n\ntr:nth-child(even) {\n  background-color: #f9fafb;\n}\n\ntr:hover {\n  background-color: #f3f4f6;\n}\n`;// Inject custom CSS into the document\nconst injectStyles=()=>{if(!document.getElementById(\"custom-framer-styles\")){const styleElement=document.createElement(\"style\");styleElement.id=\"custom-framer-styles\";styleElement.textContent=styles;document.head.appendChild(styleElement);}};// Call this function to inject the styles\ninjectStyles();const useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}function convertMarkdownTables(element){const paragraphs=element.getElementsByTagName(\"p\");const pArray=Array.from(paragraphs);for(let i=0;i<pArray.length;i++){var _currentP_textContent,_pArray_j_textContent;const currentP=pArray[i];if(!(currentP===null||currentP===void 0?void 0:(_currentP_textContent=currentP.textContent)===null||_currentP_textContent===void 0?void 0:_currentP_textContent.includes(\"|\")))continue;// Look ahead for potential table rows\nlet tableLines=[currentP.textContent];let tableParagraphs=[currentP];let j=i+1;while(j<pArray.length&&((_pArray_j_textContent=pArray[j].textContent)===null||_pArray_j_textContent===void 0?void 0:_pArray_j_textContent.includes(\"|\"))){tableLines.push(pArray[j].textContent);tableParagraphs.push(pArray[j]);j++;}// Check if we have what looks like a table\nif(tableLines.length>=3&&// At least header, separator, and one data row\ntableLines[1].replace(/[|-]/g,\"\").trim().length===0){var // Replace first paragraph with table and remove the rest\n_currentP_parentNode;// Second line is separator\n// Parse header\nconst headerCells=tableLines[0].split(\"|\").slice(1,-1)// Remove empty cells from start/end of row\n.map(cell=>cell.trim());// Parse data rows\nconst rows=[];for(let k=2;k<tableLines.length;k++){const cells=tableLines[k].split(\"|\").slice(1,-1)// Remove empty cells from start/end of row\n.map(cell=>cell.trim());if(cells.length>0){rows.push(cells);}}// Create table\nconst table=document.createElement(\"table\");// Add header\nconst thead=document.createElement(\"thead\");const headerRow=document.createElement(\"tr\");headerCells.forEach(cell=>{const th=document.createElement(\"th\");th.textContent=cell||\"\\xa0\"// Use non-breaking space for empty cells\n;headerRow.appendChild(th);});thead.appendChild(headerRow);table.appendChild(thead);// Add body\nconst tbody=document.createElement(\"tbody\");rows.forEach(row=>{const tr=document.createElement(\"tr\");row.forEach(cell=>{const td=document.createElement(\"td\");td.textContent=cell||\"\\xa0\"// Use non-breaking space for empty cells\n;tr.appendChild(td);});tbody.appendChild(tr);});table.appendChild(tbody);(_currentP_parentNode=currentP.parentNode)===null||_currentP_parentNode===void 0?void 0:_currentP_parentNode.replaceChild(table,currentP);tableParagraphs.slice(1).forEach(p=>{var _p_parentNode;return(_p_parentNode=p.parentNode)===null||_p_parentNode===void 0?void 0:_p_parentNode.removeChild(p);});// Skip the paragraphs we just processed\ni=j-1;}}}export function withCenteredImages(Component){return props=>{const newProps={...props,className:`${props.className||\"\"} center-images`.trim(),ref:element=>{if(element){// Wait for next tick to ensure content is rendered\nsetTimeout(()=>convertMarkdownTables(element),0);}}};return /*#__PURE__*/_jsx(Component,{...newProps});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withCenteredImages\":{\"type\":\"reactHoc\",\"name\":\"withCenteredImages\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples.map", "// Generated by Framer (3eae0e1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Nunito Sans-700\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Nunito Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GMS5nsV8kA_Ykqw.woff2\",weight:\"700\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{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/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{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-dSuCx .framer-styles-preset-k96sgq:not(.rich-text-wrapper), .framer-dSuCx .framer-styles-preset-k96sgq.rich-text-wrapper h2 { --framer-font-family: \"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.03125em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-7a86f96d-5695-4de1-b7b2-103786cd867b, #121926); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-dSuCx\";\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 (8c7926c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Nunito Sans-700\",\"GF;Nunito Sans-900\",\"GF;Nunito Sans-900italic\",\"GF;Nunito Sans-700italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Nunito Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GMS5nsV8kA_Ykqw.woff2\",weight:\"700\"},{family:\"Nunito Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4Gfy5nsV8kA_Ykqw.woff2\",weight:\"900\"},{family:\"Nunito Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmom8FUlIfM0qxVd.woff2\",weight:\"900\"},{family:\"Nunito Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpo8FUlIfM0qxVd.woff2\",weight:\"700\"}]}];export const css=['.framer-VrmeK .framer-styles-preset-zkvzd6:not(.rich-text-wrapper), .framer-VrmeK .framer-styles-preset-zkvzd6.rich-text-wrapper h3 { --framer-font-family: \"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Nunito Sans\", sans-serif; --framer-font-family-bold-italic: \"Nunito Sans\", sans-serif; --framer-font-family-italic: \"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -1.5px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-46a7eab9-7592-4859-ae99-7a108ca158db, #202939); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-VrmeK\";\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 (64bc75b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Nunito Sans-700\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Nunito Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GMS5nsV8kA_Ykqw.woff2\",weight:\"700\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{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/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{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-mHnc4 .framer-styles-preset-14fva7h:not(.rich-text-wrapper), .framer-mHnc4 .framer-styles-preset-14fva7h.rich-text-wrapper h1 { --framer-font-family: \"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 60px; --framer-text-alignment: start; --framer-text-color: var(--token-7a86f96d-5695-4de1-b7b2-103786cd867b, #121926); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-mHnc4\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"Inter-SemiBold\"]);export const fonts=[];export const css=['.framer-nataT .framer-styles-preset-7ucwti:not(.rich-text-wrapper), .framer-nataT .framer-styles-preset-7ucwti.rich-text-wrapper h3 { --framer-font-family: \"Inter-SemiBold\", \"Inter\", sans-serif; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: -1.5px; --framer-line-height: 1.25em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-7486ffe5-0125-4a58-bfdd-110bf6bc4f6c, #000000); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-nataT .framer-styles-preset-7ucwti:not(.rich-text-wrapper), .framer-nataT .framer-styles-preset-7ucwti.rich-text-wrapper h3 { --framer-font-family: \"Inter-SemiBold\", \"Inter\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: -1.5px; --framer-line-height: 1.25em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-7486ffe5-0125-4a58-bfdd-110bf6bc4f6c, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-nataT .framer-styles-preset-7ucwti:not(.rich-text-wrapper), .framer-nataT .framer-styles-preset-7ucwti.rich-text-wrapper h3 { --framer-font-family: \"Inter-SemiBold\", \"Inter\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: -1.5px; --framer-line-height: 1.25em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-7486ffe5-0125-4a58-bfdd-110bf6bc4f6c, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-nataT\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3eae0e1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-P92iy .framer-styles-preset-tcdrgn:not(.rich-text-wrapper), .framer-P92iy .framer-styles-preset-tcdrgn.rich-text-wrapper a { --framer-link-current-text-color: var(--token-fa80fbd3-80c5-4287-9ab3-b2eb46c5a42a, #6637ed) /* {\"name\":\"Primary\"} */; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-fa80fbd3-80c5-4287-9ab3-b2eb46c5a42a, #6637ed) /* {\"name\":\"Primary\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-fa80fbd3-80c5-4287-9ab3-b2eb46c5a42a, #6637ed); --framer-link-text-decoration: underline; }'];export const className=\"framer-P92iy\";\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 (3eae0e1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-6QkAF .framer-styles-preset-4hlgzx { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.25); }\"];export const className=\"framer-6QkAF\";\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.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-uwveo .framer-styles-preset-8iar7:not(.rich-text-wrapper), .framer-uwveo .framer-styles-preset-8iar7.rich-text-wrapper a { --framer-link-current-text-color: var(--token-9cfd3521-d6d1-4f91-8c06-9e97f10383a5, #ffffff) /* {\"name\":\"Neutral 1\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-8c85f65c-0737-4884-9abd-f8cdc5ca26e2, #f5f4f8) /* {\"name\":\"Neutral 2\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-9cfd3521-d6d1-4f91-8c06-9e97f10383a5, #ffffff); --framer-link-text-decoration: none; }'];export const className=\"framer-uwveo\";\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 (64bc75b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Nunito Sans-500\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Nunito Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G5ClnsV8kA_Ykqw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-gsDQH .framer-styles-preset-murur1:not(.rich-text-wrapper), .framer-gsDQH .framer-styles-preset-murur1.rich-text-wrapper p { --framer-font-family: \"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-46a7eab9-7592-4859-ae99-7a108ca158db, #202939); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-gsDQH\";\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 (2ca17d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PropertyOverrides,RichText,SVG,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Particles from\"https://framerusercontent.com/modules/wb6ZrZlCLNQ5HHBJtNND/c1GLxCsQBQvlLXhkz7er/Particles.js\";import Footer from\"#framer/local/canvasComponent/lRO0CVrHS/lRO0CVrHS.js\";import Header from\"#framer/local/canvasComponent/VtLgPzjMs/VtLgPzjMs.js\";import SquareButton from\"#framer/local/canvasComponent/y0jyfIUkT/y0jyfIUkT.js\";import{withCenteredImages}from\"#framer/local/codeFile/csPSmS6/Examples.js\";import Blog from\"#framer/local/collection/DtW8hGBcs/DtW8hGBcs.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle17 from\"#framer/local/css/BktRgDhkz/BktRgDhkz.js\";import*as sharedStyle3 from\"#framer/local/css/c6AnykU43/c6AnykU43.js\";import*as sharedStyle4 from\"#framer/local/css/c7LpnarAE/c7LpnarAE.js\";import*as sharedStyle20 from\"#framer/local/css/cFxqi7Igp/cFxqi7Igp.js\";import*as sharedStyle15 from\"#framer/local/css/EFF65NIYC/EFF65NIYC.js\";import*as sharedStyle18 from\"#framer/local/css/eZbz5fOOq/eZbz5fOOq.js\";import*as sharedStyle21 from\"#framer/local/css/Gng75vinL/Gng75vinL.js\";import*as sharedStyle13 from\"#framer/local/css/HbDJl7I2U/HbDJl7I2U.js\";import*as sharedStyle2 from\"#framer/local/css/HHGRs8NGN/HHGRs8NGN.js\";import*as sharedStyle from\"#framer/local/css/isJ9LvhuF/isJ9LvhuF.js\";import*as sharedStyle9 from\"#framer/local/css/KeTyuG1Ah/KeTyuG1Ah.js\";import*as sharedStyle22 from\"#framer/local/css/khzjfNLDO/khzjfNLDO.js\";import*as sharedStyle12 from\"#framer/local/css/kLZDveUYx/kLZDveUYx.js\";import*as sharedStyle14 from\"#framer/local/css/nqiC5uVOo/nqiC5uVOo.js\";import*as sharedStyle8 from\"#framer/local/css/p21DQTQQW/p21DQTQQW.js\";import*as sharedStyle1 from\"#framer/local/css/PmHYvoHVS/PmHYvoHVS.js\";import*as sharedStyle11 from\"#framer/local/css/rE9PU2VXa/rE9PU2VXa.js\";import*as sharedStyle6 from\"#framer/local/css/Rhp5Tkl2Q/Rhp5Tkl2Q.js\";import*as sharedStyle5 from\"#framer/local/css/UczCWz7zq/UczCWz7zq.js\";import*as sharedStyle10 from\"#framer/local/css/uRikvzs0O/uRikvzs0O.js\";import*as sharedStyle16 from\"#framer/local/css/v8g_M9LsW/v8g_M9LsW.js\";import*as sharedStyle19 from\"#framer/local/css/YBSnNiCWU/YBSnNiCWU.js\";import*as sharedStyle7 from\"#framer/local/css/Ys34khm7d/Ys34khm7d.js\";import metadataProvider from\"#framer/local/webPageMetadata/fYcaOVC5Y/fYcaOVC5Y.js\";const HeaderFonts=getFonts(Header);const RichTextWithCenteredImages=withCenteredImages(RichText);const SquareButtonFonts=getFonts(SquareButton);const ParticlesFonts=getFonts(Particles);const FooterFonts=getFonts(Footer);const breakpoints={dL_39nYJy:\"(max-width: 809px)\",KcrDDRYAu:\"(min-width: 992px) and (max-width: 1439px)\",tvXrXVDVS:\"(min-width: 1440px)\",Uv9aHz5H9:\"(min-width: 810px) and (max-width: 991px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-LkAho\";const variantClassNames={dL_39nYJy:\"framer-v-15g6vu9\",KcrDDRYAu:\"framer-v-z2zaec\",tvXrXVDVS:\"framer-v-1lx9nrm\",Uv9aHz5H9:\"framer-v-14qlhnu\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Large Desktop\":\"tvXrXVDVS\",Desktops:\"KcrDDRYAu\",Phone:\"dL_39nYJy\",Tablet:\"Uv9aHz5H9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"tvXrXVDVS\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"fYcaOVC5Y\",data:Blog,type:\"Collection\"},select:[{collection:\"fYcaOVC5Y\",name:\"n714MuCeX\",type:\"Identifier\"},{collection:\"fYcaOVC5Y\",name:\"C4UOLI08a\",type:\"Identifier\"},{collection:\"fYcaOVC5Y\",name:\"HNU9HXexQ\",type:\"Identifier\"},{collection:\"fYcaOVC5Y\",name:\"gDDSiW_HL\",type:\"Identifier\"},{collection:\"fYcaOVC5Y\",name:\"AURIYkt4C\",type:\"Identifier\"},{collection:\"fYcaOVC5Y\",name:\"SVCLvdyaG\",type:\"Identifier\"},{collection:\"fYcaOVC5Y\",name:\"ewBUVF5zC\",type:\"Identifier\"},{collection:\"fYcaOVC5Y\",name:\"Us_Wzgvcj\",type:\"Identifier\"},{collection:\"fYcaOVC5Y\",name:\"kQCe539y3\",type:\"Identifier\"},{collection:\"fYcaOVC5Y\",name:\"tXyG2gisV\",type:\"Identifier\"},{collection:\"fYcaOVC5Y\",name:\"CLx7ZRoe5\",type:\"Identifier\"},{collection:\"fYcaOVC5Y\",name:\"DUtJbc0BF\",type:\"Identifier\"},{collection:\"fYcaOVC5Y\",name:\"OQ06YnMcT\",type:\"Identifier\"},{collection:\"fYcaOVC5Y\",name:\"fcqvzioFU\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"fYcaOVC5Y\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,ewBUVF5zC=getFromCurrentRouteData(\"ewBUVF5zC\"),n714MuCeX=getFromCurrentRouteData(\"n714MuCeX\")??\"\",HNU9HXexQ=getFromCurrentRouteData(\"HNU9HXexQ\")??\"\",tXyG2gisV=getFromCurrentRouteData(\"tXyG2gisV\"),Us_Wzgvcj=getFromCurrentRouteData(\"Us_Wzgvcj\")??\"\",kQCe539y3=getFromCurrentRouteData(\"kQCe539y3\")??\"\",CLx7ZRoe5=getFromCurrentRouteData(\"CLx7ZRoe5\")??\"\",AURIYkt4C=getFromCurrentRouteData(\"AURIYkt4C\")??true,fcqvzioFU=getFromCurrentRouteData(\"fcqvzioFU\")??\"\",DUtJbc0BF=getFromCurrentRouteData(\"DUtJbc0BF\")??\"\",SVCLvdyaG=getFromCurrentRouteData(\"SVCLvdyaG\")??true,gDDSiW_HL=getFromCurrentRouteData(\"gDDSiW_HL\"),OQ06YnMcT=getFromCurrentRouteData(\"OQ06YnMcT\")??\"\",...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,sharedStyle16.className,sharedStyle17.className,sharedStyle18.className,sharedStyle19.className,sharedStyle20.className,sharedStyle21.className,sharedStyle22.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"KcrDDRYAu\",\"Uv9aHz5H9\",\"dL_39nYJy\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"KcrDDRYAu\",\"Uv9aHz5H9\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"dL_39nYJy\")return true;return false;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"tvXrXVDVS\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-9cfd3521-d6d1-4f91-8c06-9e97f10383a5, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1lx9nrm\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6yyepu\",\"data-framer-name\":\"Header Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dL_39nYJy:{width:`max(${componentViewport?.width||\"100vw\"} - 20px, 1px)`,y:(componentViewport?.y||0)+10+0+8},KcrDDRYAu:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`},Uv9aHz5H9:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+10+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-adap-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dL_39nYJy:{dtKqtHzf7:\"Se5MqcIIy\"}},children:/*#__PURE__*/_jsx(Header,{dtKqtHzf7:\"ZNLT9N91j\",height:\"100%\",id:\"vbNCUsCS7\",layoutId:\"vbNCUsCS7\",style:{width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g12p7i\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ftft4v\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-129o33t\",\"data-framer-name\":\"Content Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-dbysy4\",\"data-framer-name\":\"Text Block\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b84o39\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dL_39nYJy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+96+30+0+0+0+0+0+0+0+0),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1195px) - 60px, 1px)`,...toResponsiveImage(ewBUVF5zC)}},KcrDDRYAu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+100+56+0+0+0+0+0+0+0+0),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1195px) - 160px, 1px)`,...toResponsiveImage(ewBUVF5zC)}},Uv9aHz5H9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+100+60+0+0+0+0+0+0+0+0),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1195px) - 120px, 1px)`,...toResponsiveImage(ewBUVF5zC)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+100+0+0+0+0+0+48+0+0+0),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1195px) - 80px, 1px)`,...toResponsiveImage(ewBUVF5zC)},className:\"framer-430fgs\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xyar8m\",\"data-framer-name\":\"Content Card Stat\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-h1w6ay\",\"data-styles-preset\":\"isJ9LvhuF\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7a86f96d-5695-4de1-b7b2-103786cd867b, rgb(18, 25, 38))\"},children:\"How We Plan Software Development Projects: Our Project Plan Template For Success\"})}),className:\"framer-iw9u6e\",\"data-framer-name\":\"Darlene closes 21% of her deal using Clowd.\",fonts:[\"Inter\"],text:n714MuCeX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7awi0e\",\"data-styles-preset\":\"PmHYvoHVS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7a86f96d-5695-4de1-b7b2-103786cd867b, rgb(18, 25, 38))\"},children:\"Follow along with a detailed software project planning template we\u2019ve built and use to plan out changes to our software, which has ensured the success of both our users and our team.\"})}),className:\"framer-wevnhw\",\"data-framer-name\":\"Get the power of a SaaS website without any of the coding. Clowd is the perfect template for Framer.\",fonts:[\"Inter\"],text:HNU9HXexQ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m4sy53\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dL_39nYJy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+96+30+0+0+0+0+0+0+0+543.4+0),sizes:\"48px\",...toResponsiveImage(tXyG2gisV)}},KcrDDRYAu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+100+56+0+0+0+0+0+0+0+582.4+0),sizes:\"48px\",...toResponsiveImage(tXyG2gisV)}},Uv9aHz5H9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+100+60+0+0+0+0+0+0+0+582.4+0),sizes:\"48px\",...toResponsiveImage(tXyG2gisV)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+100+0+0+0+0+0+48+0+0+582.4+0),sizes:\"48px\",...toResponsiveImage(tXyG2gisV)},className:\"framer-2vvyc2\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1trsysk\",\"data-framer-name\":\"Content Card Stat\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dL_39nYJy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-7a86f96d-5695-4de1-b7b2-103786cd867b, rgb(18, 25, 38))\"},children:\"Max Garner\"})})},Uv9aHz5H9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-7a86f96d-5695-4de1-b7b2-103786cd867b, rgb(18, 25, 38))\"},children:\"Max Garner\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-7a86f96d-5695-4de1-b7b2-103786cd867b, rgb(18, 25, 38))\"},children:\"Max Garner\"})}),className:\"framer-1ns33zx\",fonts:[\"Inter-SemiBold\"],text:Us_Wzgvcj,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dL_39nYJy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-669ffca9-df1c-4e53-af90-8382dd93d93d, rgb(48, 48, 52))\"},children:\"Senior Developer\"})})},Uv9aHz5H9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-669ffca9-df1c-4e53-af90-8382dd93d93d, rgb(48, 48, 52))\"},children:\"Senior Developer\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-669ffca9-df1c-4e53-af90-8382dd93d93d, rgb(48, 48, 52))\"},children:\"Senior Developer\"})}),className:\"framer-k9veio\",fonts:[\"Inter\"],text:kQCe539y3,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tufa9t\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-a1807l\",\"data-framer-name\":\"Post Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s4l1jg\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"LJieA46aO\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"IDcWlh1El\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dL_39nYJy:{stylesPresetsClassNames:{a:\"framer-styles-preset-tcdrgn\",blockquote:\"framer-styles-preset-oge2i3\",code:\"framer-styles-preset-15rkce\",h1:\"framer-styles-preset-14fva7h\",h2:\"framer-styles-preset-k96sgq\",h3:\"framer-styles-preset-zkvzd6\",h4:\"framer-styles-preset-1cco2m0\",h5:\"framer-styles-preset-1f18v9b\",img:\"framer-styles-preset-4hlgzx\",p:\"framer-styles-preset-murur1\"}}},children:/*#__PURE__*/_jsx(RichTextWithCenteredImages,{__fromCanvasComponent:true,children:CLx7ZRoe5,className:\"framer-1ykr6qn\",\"data-framer-name\":\"Content Top\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-tcdrgn\",blockquote:\"framer-styles-preset-oge2i3\",code:\"framer-styles-preset-15rkce\",h1:\"framer-styles-preset-18yx7ok\",h2:\"framer-styles-preset-k96sgq\",h3:\"framer-styles-preset-zkvzd6\",h4:\"framer-styles-preset-1cco2m0\",h5:\"framer-styles-preset-1f18v9b\",img:\"framer-styles-preset-4hlgzx\",p:\"framer-styles-preset-murur1\"},verticalAlignment:\"top\",withExternalLayout:true})})}),AURIYkt4C&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n0o4e9\",\"data-framer-name\":\"Quote\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jcic9q\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2dwmuk\",\"data-framer-name\":\"Content Row\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tdi2wc\",\"data-framer-name\":\"Content Section Text Block\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1iz77gg\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:65,intrinsicWidth:82,svg:'<svg width=\"82\" height=\"65\" viewBox=\"0 0 82 65\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.2\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.6922 62.9256C18.3658 63.3849 14.0318 62.121 10.6246 59.4066C7.21748 56.6922 5.01021 52.7447 4.47877 48.4153C3.62161 44.3744 3.04443 38.3454 5.06255 31.0907C7.12117 23.6789 11.7972 15.34 21.024 6.73843C21.4795 6.31378 22.014 5.98328 22.597 5.76579C23.1801 5.54831 23.8002 5.4481 24.422 5.4709C25.6778 5.51694 26.8641 6.06119 27.7201 6.98392C28.5761 7.90665 29.0315 9.13228 28.9863 10.3912C28.941 11.6501 28.3988 12.8391 27.4788 13.6968C20.6975 20.0186 17.0427 25.8561 15.1292 30.8165C17.4991 29.9319 20.0397 29.6023 22.5568 29.8526C25.0739 30.1029 27.501 30.9267 29.6526 32.2609C31.8042 33.5951 33.6234 35.4045 34.9713 37.5509C36.3191 39.6973 37.16 42.1238 37.4297 44.6452C37.8945 49.0299 36.6029 53.4191 33.8391 56.8474C31.0753 60.2756 27.0656 62.462 22.6922 62.9256ZM65.095 58.4307C60.7686 58.8899 56.4345 57.626 53.0274 54.9116C49.6203 52.1972 47.413 48.2497 46.8815 43.9203C46.0244 39.8794 45.4472 33.8504 47.4653 26.5957C49.5239 19.1839 54.2 10.845 63.4267 2.24347C63.8822 1.81882 64.4168 1.48831 64.9998 1.27083C65.5828 1.05335 66.203 0.953139 66.8248 0.975935C68.0805 1.02197 69.2669 1.56622 70.1229 2.48895C70.9788 3.41169 71.4343 4.63732 71.389 5.89622C71.3438 7.15512 70.8015 8.34416 69.8816 9.20179C63.1003 15.5236 59.4455 21.3612 57.5319 26.3215C59.9019 25.438 62.4423 25.109 64.959 25.3598C67.4758 25.6105 69.9024 26.4344 72.0538 27.7685C74.2051 29.1025 76.0243 30.9115 77.3724 33.0574C78.7205 35.2033 79.5619 37.6293 79.8324 40.1502C80.2972 44.5349 79.0057 48.9241 76.2419 52.3524C73.4781 55.7806 69.4684 57.967 65.095 58.4307ZM21.6908 53.4786C23.0581 53.3339 24.3539 52.7946 25.4213 51.9263C26.4886 51.0579 27.2816 49.8976 27.7041 48.5861C28.1266 47.2746 28.1605 45.8681 27.8016 44.5373C27.4428 43.2065 26.7066 42.0083 25.6823 41.0882C24.6581 40.168 23.3897 39.5654 22.031 39.3532C20.6723 39.1411 19.2816 39.3286 18.0275 39.893C16.7734 40.4574 15.7097 41.3745 14.9654 42.5331C14.2211 43.6917 13.8281 45.042 13.8341 46.4204L13.8776 47.1897C14.0883 49.0593 15.0282 50.7698 16.4919 51.948C17.9557 53.1262 19.8246 53.6764 21.6908 53.4786ZM64.0935 48.9836C65.4608 48.8389 66.7567 48.2997 67.824 47.4313C68.8914 46.5629 69.6844 45.4026 70.1069 44.0911C70.5294 42.7796 70.5632 41.3732 70.2044 40.0423C69.8455 38.7115 69.1093 37.5134 68.0851 36.5932C67.0608 35.6731 65.7925 35.0704 64.4338 34.8582C63.0751 34.6461 61.6844 34.8336 60.4303 35.398C59.1761 35.9624 58.1125 36.8795 57.3682 38.0381C56.6239 39.1967 56.2309 40.5471 56.2369 41.9255L56.2803 42.6947C56.4911 44.5643 57.4309 46.2749 58.8947 47.4531C60.3585 48.6313 62.2274 49.1815 64.0935 48.9836Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"LJieA46aO\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"IDcWlh1El\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:fcqvzioFU,className:\"framer-1dx89eg\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-8iar7\",blockquote:\"framer-styles-preset-oge2i3\",code:\"framer-styles-preset-15rkce\",h1:\"framer-styles-preset-h1w6ay\",h2:\"framer-styles-preset-1ptrt8d\",h3:\"framer-styles-preset-7ucwti\",h4:\"framer-styles-preset-1cco2m0\",h5:\"framer-styles-preset-1f18v9b\",img:\"framer-styles-preset-l1455m\",p:\"framer-styles-preset-1n0p56d\"},verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ouf1c5\",\"data-framer-name\":\"Particles\"})]})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"LJieA46aO\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"IDcWlh1El\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:DUtJbc0BF,className:\"framer-1a1dfnp\",\"data-framer-name\":\"Content Middle\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-11gzsop\",blockquote:\"framer-styles-preset-oge2i3\",code:\"framer-styles-preset-15rkce\",h3:\"framer-styles-preset-w3wfrl\",h4:\"framer-styles-preset-1cco2m0\",h5:\"framer-styles-preset-1f18v9b\",img:\"framer-styles-preset-l1455m\",p:\"framer-styles-preset-sexxcd\"},verticalAlignment:\"top\",withExternalLayout:true})}),SVCLvdyaG&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dL_39nYJy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+747.4+30+0+0+0+0+34.5),sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1192px), 1356px) - 64px)`,...toResponsiveImage(gDDSiW_HL)}},KcrDDRYAu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+840.4+60+0+0+0+0+43.5),sizes:`calc(min(min(${componentViewport?.width||\"100vw\"} - 160px, 1192px), 992px) - 60px)`,...toResponsiveImage(gDDSiW_HL)}},Uv9aHz5H9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+850.4+60+0+0+0+0+48.5),sizes:`calc(min(min(${componentViewport?.width||\"100vw\"} - 80px, 1192px), 810px) - 100px)`,...toResponsiveImage(gDDSiW_HL)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+842.4+60+0+0+0+0+48.5),sizes:`calc(min(min(${componentViewport?.width||\"100vw\"} - 240px, 1192px), 1356px) - 100px)`,...toResponsiveImage(gDDSiW_HL)},className:\"framer-1w66ik6\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"LJieA46aO\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"IDcWlh1El\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:OQ06YnMcT,className:\"framer-c578bz\",\"data-framer-name\":\"Content Bottom\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-11gzsop\",blockquote:\"framer-styles-preset-oge2i3\",code:\"framer-styles-preset-15rkce\",h1:\"framer-styles-preset-h1w6ay\",h2:\"framer-styles-preset-txjqw1\",h3:\"framer-styles-preset-w3wfrl\",h4:\"framer-styles-preset-1cco2m0\",h5:\"framer-styles-preset-1f18v9b\",img:\"framer-styles-preset-l1455m\",p:\"framer-styles-preset-sexxcd\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7qtnmp\",\"data-framer-name\":\"CTA Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19rjyoi\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wsfhkg\",\"data-framer-name\":\"CTA\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dL_39nYJy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtNzAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7a86f96d-5695-4de1-b7b2-103786cd867b, rgb(18, 25, 38))\"},children:\"Show your bugs who's boss with Dummi\"})}),fonts:[\"GF;Nunito Sans-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-nzfyvt\",\"data-styles-preset\":\"khzjfNLDO\",children:\"Show your bugs who's boss with Dummi\"})}),className:\"framer-dzmqjm\",\"data-framer-name\":\"Footer Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rzwg2m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dL_39nYJy:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 500px)`,y:(componentViewport?.y||0)+10+1185.4+0+0+0+0+0+44.2+0+0},KcrDDRYAu:{y:(componentViewport?.y||0)+10+1308.4+0+0+183+0+0+73+0+0},Uv9aHz5H9:{y:(componentViewport?.y||0)+10+1318.4+0+0+183+0+0+73+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:\"500px\",y:(componentViewport?.y||0)+10+1310.4+0+0+183+0+0+73+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hzcidl-container\",children:/*#__PURE__*/_jsx(SquareButton,{f2zeEOWZn:false,height:\"100%\",id:\"RnpoqHSBe\",layoutId:\"RnpoqHSBe\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"rRto8Lwre\",width:\"100%\",XtSKKqe6K:\"GET STARTED FOR FREE!\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hjobnq\",\"data-framer-name\":\"Info\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-669ffca9-df1c-4e53-af90-8382dd93d93d, rgb(48, 48, 52))\"},children:\"Install the browser extension in under 30 seconds!\"})}),className:\"framer-10wr3n2\",\"data-framer-name\":\"Join other 12k+ Marketers and start building brands reputation now.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:408,intrinsicWidth:1392,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+1310.4+0+0+183+293),pixelHeight:510,pixelWidth:1740,sizes:\"1296px\",src:\"https://framerusercontent.com/images/j54Ul4Ox3Iu1lg1XyASfEMWSi2A.png\",srcSet:\"https://framerusercontent.com/images/j54Ul4Ox3Iu1lg1XyASfEMWSi2A.png?scale-down-to=512 512w,https://framerusercontent.com/images/j54Ul4Ox3Iu1lg1XyASfEMWSi2A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j54Ul4Ox3Iu1lg1XyASfEMWSi2A.png 1740w\"},className:\"framer-1fa3bze hidden-z2zaec hidden-14qlhnu hidden-15g6vu9\",\"data-framer-name\":\"Frame_59487_1_\"}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KcrDDRYAu:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:408,intrinsicWidth:761.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+1308.4+0+0+183+293),pixelHeight:510,pixelWidth:952,sizes:\"762px\",src:\"https://framerusercontent.com/images/jwg8rrwcRDmxkwD4GsEuL5ZjCY.png\",srcSet:\"https://framerusercontent.com/images/jwg8rrwcRDmxkwD4GsEuL5ZjCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/jwg8rrwcRDmxkwD4GsEuL5ZjCY.png 952w\"}},Uv9aHz5H9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:408,intrinsicWidth:761.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+1318.4+0+0+183+293),pixelHeight:510,pixelWidth:952,sizes:\"635px\",src:\"https://framerusercontent.com/images/jwg8rrwcRDmxkwD4GsEuL5ZjCY.png\",srcSet:\"https://framerusercontent.com/images/jwg8rrwcRDmxkwD4GsEuL5ZjCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/jwg8rrwcRDmxkwD4GsEuL5ZjCY.png 952w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:408,intrinsicWidth:761.6,pixelHeight:510,pixelWidth:952,src:\"https://framerusercontent.com/images/jwg8rrwcRDmxkwD4GsEuL5ZjCY.png\",srcSet:\"https://framerusercontent.com/images/jwg8rrwcRDmxkwD4GsEuL5ZjCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/jwg8rrwcRDmxkwD4GsEuL5ZjCY.png 952w\"},className:\"framer-17cvk47 hidden-1lx9nrm hidden-15g6vu9\",\"data-framer-name\":\"pile_medium\"})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dL_39nYJy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:392,intrinsicWidth:606.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+1185.4+0+0+0+264.2),pixelHeight:490,pixelWidth:758,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6641)`,src:\"https://framerusercontent.com/images/C7FTtNm7YLzAIWMNnxo2mh4j07Q.png\",srcSet:\"https://framerusercontent.com/images/C7FTtNm7YLzAIWMNnxo2mh4j07Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/C7FTtNm7YLzAIWMNnxo2mh4j07Q.png 758w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:392,intrinsicWidth:606.4,pixelHeight:490,pixelWidth:758,src:\"https://framerusercontent.com/images/C7FTtNm7YLzAIWMNnxo2mh4j07Q.png\",srcSet:\"https://framerusercontent.com/images/C7FTtNm7YLzAIWMNnxo2mh4j07Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/C7FTtNm7YLzAIWMNnxo2mh4j07Q.png 758w\"},className:\"framer-1cjo8ir hidden-1lx9nrm hidden-z2zaec hidden-14qlhnu\",\"data-framer-name\":\"pile_small\"})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wtgxw6-container\",children:/*#__PURE__*/_jsx(Particles,{background:\"rgba(0, 0, 0, 0)\",clickOptions:{clickEnabled:false,clickModes:\"push\"},color:\"rgb(255, 255, 255)\",colors:[],densityOptions:{densityArea:3260,densityEnable:false,densityFactor:50},fpsOptions:60,height:\"100%\",hoverOptions:{hoverEnabled:false,hoverForce:10,hoverModes:\"none\",hoverParallax:true,hoverSmooth:10},id:\"wTrwBvcZ9\",layoutId:\"wTrwBvcZ9\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:100,linksEnabled:false,linksOpacity:.2,linksWidth:1},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"none\",moveEnabled:true,moveGravityAcceleration:100,moveGravityEnabled:true,moveGravityMaxSpeed:10,moveOut:\"out\",moveRandom:true,moveSpeed:10,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:10,opacityOptions:{opacity:1,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"One\",radius:0,rotateOptions:{rotateAnimation:true,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:1},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:77,imageSource:\"https://framerusercontent.com/images/DhChCCLalQCXkOmBnTMclZgZxwM.png\",imageWidth:70,shapeType:\"image\"},sizeOptions:{size:38,sizeMax:30,sizeMin:20,sizeType:false},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j5ipip\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dL_39nYJy:{y:(componentViewport?.y||0)+10+1616.6000000000001+0},KcrDDRYAu:{y:(componentViewport?.y||0)+10+2192.4+0},Uv9aHz5H9:{y:(componentViewport?.y||0)+10+2134.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:177,width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+10+2194.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rjp4kj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dL_39nYJy:{variant:\"Z8ojGvvdk\"},Uv9aHz5H9:{variant:\"Ap7O3kj0T\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Cl0SXjY7v\",layoutId:\"Cl0SXjY7v\",style:{width:\"100%\"},variant:\"NrwHfXqiZ\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LkAho.framer-kqnw55, .framer-LkAho .framer-kqnw55 { display: block; }\",\".framer-LkAho.framer-1lx9nrm { align-content: center; align-items: center; background-color: var(--token-9cfd3521-d6d1-4f91-8c06-9e97f10383a5, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 0px 30px 0px; position: relative; width: 1440px; }\",\".framer-LkAho .framer-6yyepu { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 30px 20px 30px; position: relative; width: 100%; z-index: 10; }\",\".framer-LkAho .framer-adap-container, .framer-LkAho .framer-1rjp4kj-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-LkAho .framer-1g12p7i { align-content: center; align-items: center; background-color: var(--token-8c85f65c-0737-4884-9abd-f8cdc5ca26e2, #f7f7f9); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-LkAho .framer-ftft4v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1195px; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-LkAho .framer-129o33t { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 143px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-LkAho .framer-dbysy4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-LkAho .framer-b84o39 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-LkAho .framer-430fgs { aspect-ratio: 2.5265486725663715 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 441px); position: relative; width: 100%; }\",\".framer-LkAho .framer-1xyar8m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LkAho .framer-iw9u6e, .framer-LkAho .framer-wevnhw, .framer-LkAho .framer-1dx89eg, .framer-LkAho .framer-10wr3n2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LkAho .framer-m4sy53 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LkAho .framer-2vvyc2 { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 48px; }\",\".framer-LkAho .framer-1trsysk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-LkAho .framer-1ns33zx, .framer-LkAho .framer-k9veio { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-LkAho .framer-tufa9t { align-content: center; align-items: center; background-color: var(--token-9cfd3521-d6d1-4f91-8c06-9e97f10383a5, #ffffff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 60px 120px 60px 120px; position: relative; width: 100%; }\",\".framer-LkAho .framer-a1807l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1192px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LkAho .framer-s4l1jg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1356px; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-LkAho .framer-1ykr6qn, .framer-LkAho .framer-1a1dfnp, .framer-LkAho .framer-c578bz { --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-LkAho .framer-1n0o4e9 { align-content: center; align-items: center; background-color: var(--token-fa80fbd3-80c5-4287-9ab3-b2eb46c5a42a, #143ed9); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 28px 0px 60px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-LkAho .framer-1jcic9q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-LkAho .framer-2dwmuk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 175px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-LkAho .framer-tdi2wc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 20px; position: relative; width: 1px; }\",\".framer-LkAho .framer-1iz77gg { aspect-ratio: 1.0384615384615385 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 65px); position: relative; width: 76px; }\",\".framer-LkAho .framer-1ouf1c5 { aspect-ratio: 0.2972972972972973 / 1; bottom: -140px; flex: none; height: var(--framer-aspect-ratio-supported, 185px); overflow: hidden; position: absolute; right: 278px; width: 55px; z-index: 1; }\",\".framer-LkAho .framer-1w66ik6 { aspect-ratio: 1.68955223880597 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 647px); position: relative; width: 100%; }\",'.framer-LkAho .framer-7qtnmp { align-content: center; align-items: center; background: radial-gradient(50% 78% at 50% 101.29999999999998%, var(--token-fe1f5679-4fb9-4d91-a1f7-f35333625b38, #b9e6fe) /* {\"name\":\"Brand Blue\"} */ 0%, var(--token-9cfd3521-d6d1-4f91-8c06-9e97f10383a5, rgb(255, 255, 255)) /* {\"name\":\"Neutral 1\"} */ 100%); border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; will-change: var(--framer-will-change-override, transform); z-index: 1; }',\".framer-LkAho .framer-19rjyoi { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 183px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-LkAho .framer-wsfhkg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-LkAho .framer-dzmqjm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-LkAho .framer-rzwg2m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LkAho .framer-hzcidl-container { flex: none; height: auto; max-width: 500px; position: relative; width: 35%; }\",\".framer-LkAho .framer-hjobnq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-LkAho .framer-1fa3bze { aspect-ratio: 3.411764705882353 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 380px); max-width: 1380px; overflow: visible; position: relative; width: 90%; z-index: 1; }\",\".framer-LkAho .framer-17cvk47 { aspect-ratio: 1.8666666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 107px); overflow: visible; position: relative; width: 53%; z-index: 1; }\",\".framer-LkAho .framer-1cjo8ir { aspect-ratio: 1.546938775510204 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 53px); overflow: visible; position: relative; width: 66%; z-index: 1; }\",\".framer-LkAho .framer-wtgxw6-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-LkAho .framer-j5ipip { 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 0px 20px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LkAho.framer-1lx9nrm, .framer-LkAho .framer-6yyepu, .framer-LkAho .framer-1g12p7i, .framer-LkAho .framer-ftft4v, .framer-LkAho .framer-129o33t, .framer-LkAho .framer-dbysy4, .framer-LkAho .framer-b84o39, .framer-LkAho .framer-1xyar8m, .framer-LkAho .framer-m4sy53, .framer-LkAho .framer-1trsysk, .framer-LkAho .framer-tufa9t, .framer-LkAho .framer-a1807l, .framer-LkAho .framer-s4l1jg, .framer-LkAho .framer-1n0o4e9, .framer-LkAho .framer-1jcic9q, .framer-LkAho .framer-2dwmuk, .framer-LkAho .framer-tdi2wc, .framer-LkAho .framer-7qtnmp, .framer-LkAho .framer-19rjyoi, .framer-LkAho .framer-wsfhkg, .framer-LkAho .framer-rzwg2m, .framer-LkAho .framer-hjobnq, .framer-LkAho .framer-j5ipip { gap: 0px; } .framer-LkAho.framer-1lx9nrm > *, .framer-LkAho .framer-1g12p7i > *, .framer-LkAho .framer-1jcic9q > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-LkAho.framer-1lx9nrm > :first-child, .framer-LkAho .framer-1g12p7i > :first-child, .framer-LkAho .framer-129o33t > :first-child, .framer-LkAho .framer-dbysy4 > :first-child, .framer-LkAho .framer-b84o39 > :first-child, .framer-LkAho .framer-1xyar8m > :first-child, .framer-LkAho .framer-1trsysk > :first-child, .framer-LkAho .framer-tufa9t > :first-child, .framer-LkAho .framer-a1807l > :first-child, .framer-LkAho .framer-s4l1jg > :first-child, .framer-LkAho .framer-1jcic9q > :first-child, .framer-LkAho .framer-tdi2wc > :first-child, .framer-LkAho .framer-7qtnmp > :first-child, .framer-LkAho .framer-19rjyoi > :first-child, .framer-LkAho .framer-wsfhkg > :first-child, .framer-LkAho .framer-rzwg2m > :first-child, .framer-LkAho .framer-hjobnq > :first-child { margin-top: 0px; } .framer-LkAho.framer-1lx9nrm > :last-child, .framer-LkAho .framer-1g12p7i > :last-child, .framer-LkAho .framer-129o33t > :last-child, .framer-LkAho .framer-dbysy4 > :last-child, .framer-LkAho .framer-b84o39 > :last-child, .framer-LkAho .framer-1xyar8m > :last-child, .framer-LkAho .framer-1trsysk > :last-child, .framer-LkAho .framer-tufa9t > :last-child, .framer-LkAho .framer-a1807l > :last-child, .framer-LkAho .framer-s4l1jg > :last-child, .framer-LkAho .framer-1jcic9q > :last-child, .framer-LkAho .framer-tdi2wc > :last-child, .framer-LkAho .framer-7qtnmp > :last-child, .framer-LkAho .framer-19rjyoi > :last-child, .framer-LkAho .framer-wsfhkg > :last-child, .framer-LkAho .framer-rzwg2m > :last-child, .framer-LkAho .framer-hjobnq > :last-child { margin-bottom: 0px; } .framer-LkAho .framer-6yyepu > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-LkAho .framer-6yyepu > :first-child, .framer-LkAho .framer-ftft4v > :first-child, .framer-LkAho .framer-m4sy53 > :first-child, .framer-LkAho .framer-1n0o4e9 > :first-child, .framer-LkAho .framer-2dwmuk > :first-child, .framer-LkAho .framer-j5ipip > :first-child { margin-left: 0px; } .framer-LkAho .framer-6yyepu > :last-child, .framer-LkAho .framer-ftft4v > :last-child, .framer-LkAho .framer-m4sy53 > :last-child, .framer-LkAho .framer-1n0o4e9 > :last-child, .framer-LkAho .framer-2dwmuk > :last-child, .framer-LkAho .framer-j5ipip > :last-child { margin-right: 0px; } .framer-LkAho .framer-ftft4v > *, .framer-LkAho .framer-1n0o4e9 > *, .framer-LkAho .framer-j5ipip > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-LkAho .framer-129o33t > * { margin: 0px; margin-bottom: calc(143px / 2); margin-top: calc(143px / 2); } .framer-LkAho .framer-dbysy4 > *, .framer-LkAho .framer-b84o39 > *, .framer-LkAho .framer-tufa9t > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-LkAho .framer-1xyar8m > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-LkAho .framer-m4sy53 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-LkAho .framer-1trsysk > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-LkAho .framer-a1807l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-LkAho .framer-s4l1jg > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-LkAho .framer-2dwmuk > * { margin: 0px; margin-left: calc(175px / 2); margin-right: calc(175px / 2); } .framer-LkAho .framer-tdi2wc > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-LkAho .framer-7qtnmp > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-LkAho .framer-19rjyoi > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-LkAho .framer-wsfhkg > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-LkAho .framer-rzwg2m > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-LkAho .framer-hjobnq > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 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,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css,...sharedStyle17.css,...sharedStyle18.css,...sharedStyle19.css,...sharedStyle20.css,...sharedStyle21.css,...sharedStyle22.css,\"@media (min-width: 992px) and (max-width: 1439px) { .framer-LkAho.framer-1lx9nrm { width: 992px; } .framer-LkAho .framer-6yyepu { padding: 0px 20px 20px 20px; } .framer-LkAho .framer-1g12p7i { padding: 56px 0px 54px 0px; } .framer-LkAho .framer-ftft4v { padding: 0px 80px 0px 80px; } .framer-LkAho .framer-129o33t { gap: 71px; } .framer-LkAho .framer-dbysy4 { padding: 0px; } .framer-LkAho .framer-430fgs { height: var(--framer-aspect-ratio-supported, 329px); } .framer-LkAho .framer-tufa9t { padding: 60px 80px 60px 80px; } .framer-LkAho .framer-s4l1jg { max-width: 992px; padding: 0px 30px 0px 30px; } .framer-LkAho .framer-1n0o4e9 { padding: 32px 0px 46px 0px; } .framer-LkAho .framer-2dwmuk { gap: 42px; } .framer-LkAho .framer-1w66ik6 { height: var(--framer-aspect-ratio-supported, 457px); } .framer-LkAho .framer-17cvk47 { height: var(--framer-aspect-ratio-supported, 408px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LkAho .framer-129o33t, .framer-LkAho .framer-2dwmuk { gap: 0px; } .framer-LkAho .framer-129o33t > * { margin: 0px; margin-bottom: calc(71px / 2); margin-top: calc(71px / 2); } .framer-LkAho .framer-129o33t > :first-child { margin-top: 0px; } .framer-LkAho .framer-129o33t > :last-child { margin-bottom: 0px; } .framer-LkAho .framer-2dwmuk > * { margin: 0px; margin-left: calc(42px / 2); margin-right: calc(42px / 2); } .framer-LkAho .framer-2dwmuk > :first-child { margin-left: 0px; } .framer-LkAho .framer-2dwmuk > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 991px) { .framer-LkAho.framer-1lx9nrm { width: 810px; } .framer-LkAho .framer-6yyepu { padding: 0px 20px 20px 20px; } .framer-LkAho .framer-1g12p7i { padding: 60px 0px 60px 0px; } .framer-LkAho .framer-ftft4v { padding: 0px 60px 0px 60px; } .framer-LkAho .framer-dbysy4, .framer-LkAho .framer-tdi2wc { padding: 0px; } .framer-LkAho .framer-430fgs { height: var(--framer-aspect-ratio-supported, 273px); } .framer-LkAho .framer-tufa9t { padding: 60px 40px 60px 40px; } .framer-LkAho .framer-s4l1jg { max-width: 810px; } .framer-LkAho .framer-2dwmuk { gap: 51px; } .framer-LkAho .framer-1w66ik6 { height: var(--framer-aspect-ratio-supported, 118px); } .framer-LkAho .framer-17cvk47 { height: var(--framer-aspect-ratio-supported, 340px); width: 44%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LkAho .framer-2dwmuk { gap: 0px; } .framer-LkAho .framer-2dwmuk > * { margin: 0px; margin-left: calc(51px / 2); margin-right: calc(51px / 2); } .framer-LkAho .framer-2dwmuk > :first-child { margin-left: 0px; } .framer-LkAho .framer-2dwmuk > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-LkAho.framer-1lx9nrm { width: 390px; } .framer-LkAho .framer-6yyepu { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; order: 0; padding: 8px 10px 8px 10px; } .framer-LkAho .framer-1g12p7i { order: 1; padding: 30px 0px 30px 0px; } .framer-LkAho .framer-ftft4v { padding: 0px 30px 0px 30px; } .framer-LkAho .framer-129o33t { gap: 50px; } .framer-LkAho .framer-dbysy4 { gap: 20px; padding: 0px; } .framer-LkAho .framer-b84o39 { gap: 20px; } .framer-LkAho .framer-430fgs { height: var(--framer-aspect-ratio-supported, 131px); } .framer-LkAho .framer-1xyar8m { gap: 17px; padding: 10px 0px 0px 0px; } .framer-LkAho .framer-tufa9t { gap: 0px; order: 2; padding: 30px 0px 60px 0px; } .framer-LkAho .framer-a1807l { gap: 0px; } .framer-LkAho .framer-s4l1jg { padding: 0px 32px 0px 32px; } .framer-LkAho .framer-1n0o4e9 { padding: 38px 0px 22px 0px; } .framer-LkAho .framer-2dwmuk { flex-direction: column; gap: 47px; } .framer-LkAho .framer-tdi2wc { flex: none; padding: 0px; width: 100%; } .framer-LkAho .framer-1w66ik6 { height: var(--framer-aspect-ratio-supported, 118px); } .framer-LkAho .framer-7qtnmp { order: 3; width: 100%; } .framer-LkAho .framer-19rjyoi { padding: 0px; } .framer-LkAho .framer-dzmqjm { width: 100%; } .framer-LkAho .framer-hzcidl-container { width: 90%; } .framer-LkAho .framer-1cjo8ir { height: var(--framer-aspect-ratio-supported, 168px); } .framer-LkAho .framer-wtgxw6-container { bottom: 0px; height: 66%; top: unset; } .framer-LkAho .framer-j5ipip { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LkAho .framer-129o33t, .framer-LkAho .framer-dbysy4, .framer-LkAho .framer-b84o39, .framer-LkAho .framer-1xyar8m, .framer-LkAho .framer-tufa9t, .framer-LkAho .framer-a1807l, .framer-LkAho .framer-2dwmuk { gap: 0px; } .framer-LkAho .framer-129o33t > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-LkAho .framer-129o33t > :first-child, .framer-LkAho .framer-dbysy4 > :first-child, .framer-LkAho .framer-b84o39 > :first-child, .framer-LkAho .framer-1xyar8m > :first-child, .framer-LkAho .framer-tufa9t > :first-child, .framer-LkAho .framer-a1807l > :first-child, .framer-LkAho .framer-2dwmuk > :first-child { margin-top: 0px; } .framer-LkAho .framer-129o33t > :last-child, .framer-LkAho .framer-dbysy4 > :last-child, .framer-LkAho .framer-b84o39 > :last-child, .framer-LkAho .framer-1xyar8m > :last-child, .framer-LkAho .framer-tufa9t > :last-child, .framer-LkAho .framer-a1807l > :last-child, .framer-LkAho .framer-2dwmuk > :last-child { margin-bottom: 0px; } .framer-LkAho .framer-dbysy4 > *, .framer-LkAho .framer-b84o39 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-LkAho .framer-1xyar8m > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-LkAho .framer-tufa9t > *, .framer-LkAho .framer-a1807l > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-LkAho .framer-2dwmuk > * { margin: 0px; margin-bottom: calc(47px / 2); margin-top: calc(47px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7418\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KcrDDRYAu\":{\"layout\":[\"fixed\",\"auto\"]},\"Uv9aHz5H9\":{\"layout\":[\"fixed\",\"auto\"]},\"dL_39nYJy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerfYcaOVC5Y=withCSS(Component,css,\"framer-LkAho\");export default FramerfYcaOVC5Y;FramerfYcaOVC5Y.displayName=\"case-study\";FramerfYcaOVC5Y.defaultProps={height:7418,width:1440};addFonts(FramerfYcaOVC5Y,[{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:\"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:\"Nunito Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GMS5nsV8kA_Ykqw.woff2\",weight:\"700\"},{family:\"Nunito Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilnsV8kA_Ykqw.woff2\",weight:\"400\"}]},...HeaderFonts,...SquareButtonFonts,...ParticlesFonts,...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),...getFontsFromSharedStyle(sharedStyle16.fonts),...getFontsFromSharedStyle(sharedStyle17.fonts),...getFontsFromSharedStyle(sharedStyle18.fonts),...getFontsFromSharedStyle(sharedStyle19.fonts),...getFontsFromSharedStyle(sharedStyle20.fonts),...getFontsFromSharedStyle(sharedStyle21.fonts),...getFontsFromSharedStyle(sharedStyle22.fonts),...componentPresets.fonts?.[\"IDcWlh1El\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"IDcWlh1El\"]):[],...componentPresets.fonts?.[\"LJieA46aO\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"LJieA46aO\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfYcaOVC5Y\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"7418\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KcrDDRYAu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Uv9aHz5H9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dL_39nYJy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\"}},\"__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", "centerContent", "defaultContainerStyles", "centerContent", "styles", "injectStyles", "styleElement", "useStore", "createStore", "convertMarkdownTables", "element", "paragraphs", "pArray", "i", "_currentP_textContent", "_pArray_j_textContent", "currentP", "tableLines", "tableParagraphs", "j", "_currentP_parentNode", "headerCells", "cell", "rows", "k", "cells", "table", "thead", "headerRow", "th", "tbody", "row", "tr", "td", "_p_parentNode", "withCenteredImages", "Component", "props", "newProps", "p", "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", "HeaderFonts", "getFonts", "VtLgPzjMs_default", "RichTextWithCenteredImages", "withCenteredImages", "RichText2", "SquareButtonFonts", "y0jyfIUkT_default", "ParticlesFonts", "ParticleWrapper", "FooterFonts", "lRO0CVrHS_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "DtW8hGBcs_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "ewBUVF5zC", "n714MuCeX", "HNU9HXexQ", "tXyG2gisV", "Us_Wzgvcj", "kQCe539y3", "CLx7ZRoe5", "AURIYkt4C", "fcqvzioFU", "DUtJbc0BF", "SVCLvdyaG", "gDDSiW_HL", "OQ06YnMcT", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "getLoadingLazyAtYPosition", "Image2", "x", "ComponentPresetsProvider", "SVG", "css", "FramerfYcaOVC5Y", "withCSS", "fYcaOVC5Y_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
