{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/Utlis-SwIN.js@U9vmYX0zDZtz999aDBu4", "ssg:https://framerusercontent.com/modules/xAd1LKohiF1easgr2BFb/eG4yeCgFAQEKJGwWdSl0/RandomCollection.js", "ssg:https://framerusercontent.com/modules/8okOy811PUJ5xxoai4AX/1Kqp1hx62MptkxC1g0g7/Markdown_Table_CMS.js", "ssg:https://framerusercontent.com/modules/xJp74Vs8wbhmAom7QbHZ/tHmthftSPpVt8RrSn1Wc/O_gCF8qVJ.js", "ssg:https://framerusercontent.com/modules/WngpAO0TvtYZy2qhO6Y2/IoRLRHCQS9fMlrrH047T/eNL8pxTP2.js", "ssg:https://framerusercontent.com/modules/KTp4y3hzbtep1bnydygC/ddEft3oufkIzSz7zlo0t/eNL8pxTP2.js"],
  "sourcesContent": ["// new utils\nexport const findQueryInProps=obj=>{if(obj==null)return null;// Check if `query` exists in the current level\nif(obj.hasOwnProperty(\"query\"))return obj.query;// Iterate over the properties\nfor(let key in obj){if(obj.hasOwnProperty(key)&&typeof obj[key]===\"object\"){let result=findQueryInProps(obj[key]);if(result!==null)return result;}}// If `query` is not found\nreturn null;};export const updateQueryInProps=(obj,newQuery)=>{if(obj==null)return obj;// Check if `query` exists in the current level\nif(obj.hasOwnProperty(\"query\"))return{...obj,query:newQuery};// Iterate over the properties\nfor(let key in obj){if(obj.hasOwnProperty(key)&&typeof obj[key]===\"object\"){const updatedChild=updateQueryInProps(obj[key],newQuery);if(updatedChild!==obj[key]){return{...obj,[key]:updatedChild};}}}return obj;};export const findPropsBeforeQuery=obj=>{if(obj==null)return null;// Check if `query` exists in the current level\nif(obj.hasOwnProperty(\"query\"))return obj;// Iterate over the properties\nfor(let key in obj){if(obj.hasOwnProperty(key)&&typeof obj[key]===\"object\"){let result=findPropsBeforeQuery(obj[key]);if(result!==null)return result;}}// If `query` is not found\nreturn null;};\nexport const __FramerMetadata__ = {\"exports\":{\"findQueryInProps\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updateQueryInProps\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"findPropsBeforeQuery\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Utlis.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,// @ts-ignore\nuseQueryData}from\"framer\";import{cloneElement,useEffect,useState}from\"react\";import{findPropsBeforeQuery}from\"https://framer.com/m/Utlis-SwIN.js@U9vmYX0zDZtz999aDBu4\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerIntrinsicWidth 600\n * @framerSupportedLayoutHeight auto\n */export default function RandomCMSItemsDisplay(props){var _collectionList_;const{collectionList,maxItems,layoutDirection,itemSpacing,wrap,sizing,fixedWidth,cycle,cycleInterval}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const clProps=!isCanvas?findPropsBeforeQuery(collectionList===null||collectionList===void 0?void 0:(_collectionList_=collectionList[0])===null||_collectionList_===void 0?void 0:_collectionList_.props):undefined;const data=(clProps===null||clProps===void 0?void 0:clProps.query)?useQueryData(clProps.query):[];const[renderedItems,setRenderedItems]=useState([]);useEffect(()=>{const fetchData=()=>{if(data){const randomItems=getRandomItems(clProps===null||clProps===void 0?void 0:clProps.children(data).props.children,maxItems);const styledItems=randomItems.map((item,index)=>/*#__PURE__*/_jsx(\"div\",{style:{marginRight:layoutDirection===\"horizontal\"?itemSpacing:0,marginBottom:wrap&&layoutDirection===\"horizontal\"?itemSpacing:layoutDirection===\"vertical\"?itemSpacing:0,width:sizing===\"fixed\"?fixedWidth:\"100%\",boxSizing:sizing===\"fixed\"?\"border-box\":undefined,minWidth:50,minHeight:50},children:/*#__PURE__*/cloneElement(item,{style:{...item.props.style}})},index));setRenderedItems(styledItems);}else{setRenderedItems([]);}};!isCanvas&&fetchData();const intervalId=cycle?setInterval(fetchData,cycleInterval*1e3):null;return()=>{if(intervalId){clearInterval(intervalId);}};},[collectionList,maxItems,layoutDirection,itemSpacing,wrap,sizing,fixedWidth,cycle,cycleInterval]);const containerStyle={...props.style,display:isCanvas?\"flex\":layoutDirection===\"horizontal\"?\"flex\":\"block\",flexDirection:isCanvas?\"column\":layoutDirection===\"horizontal\"?\"row\":undefined,justifyContent:isCanvas?\"center\":undefined,alignItems:isCanvas?\"center\":undefined,flexWrap:wrap?\"wrap\":\"nowrap\"};if(isCanvas){containerStyle.padding=10;containerStyle.border=\"1px dashed #594FEE\";containerStyle.borderRadius=\"8px\";containerStyle.backgroundColor=\"#EEEDFD\";}return /*#__PURE__*/_jsx(\"div\",{style:containerStyle,children:isCanvas?renderedItems.length>0?renderedItems:/*#__PURE__*/_jsx(\"div\",{style:{color:\"#594FEE\",padding:\"20px\",textAlign:\"center\",fontFamily:\"Arial, sans-serif\"},children:\"CMS Random Items - Connect, configure & preview to see the component\"}):renderedItems.length>0?renderedItems:/*#__PURE__*/_jsx(\"div\",{children:\"Connect, configure and preview\"})});}RandomCMSItemsDisplay.displayName=\"Random CMS Items Display\";addPropertyControls(RandomCMSItemsDisplay,{collectionList:{type:ControlType.ComponentInstance},maxItems:{type:ControlType.Number,defaultValue:1,min:1},layoutDirection:{type:ControlType.Enum,defaultValue:\"vertical\",options:[\"vertical\",\"horizontal\"],displaySegmentedControl:true,segmentedControlDirection:\"horizontal\"},itemSpacing:{type:ControlType.Number,defaultValue:0,min:0},wrap:{type:ControlType.Boolean,defaultValue:false},sizing:{type:ControlType.Enum,defaultValue:\"fill\",options:[\"fill\",\"fixed\"],displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",description:\"Please ensure that the connected CMS is vertically stacked\"},fixedWidth:{type:ControlType.Number,defaultValue:100,min:0,hidden:props=>props.sizing!==\"fixed\"},cycle:{type:ControlType.Boolean,defaultValue:false,title:\"Cycle\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"v2.0 \\n[via SegmentUI](https://www.segmentUI.com)\"},cycleInterval:{type:ControlType.Number,defaultValue:5,min:1,hidden:props=>!props.cycle}});function getRandomItems(items,maxItems){if(!items||items.length===0){return[];}const shuffledItems=items.sort(()=>.5-Math.random());return shuffledItems.slice(0,maxItems);}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RandomCMSItemsDisplay\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RandomCollection.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useStore=createStore({background:\"#f0f0f0\"});export function TableOverride(Component){return props=>{const[store]=useStore();const parseMarkdownFormatting=text=>{if(!text)return\"\"// Handle empty or null strings\n;// Replace markdown links [text](url) with anchor tags\ntext=text.replace(/\\[([^\\]]+)\\]\\(([^\\)]+)\\)/g,'<a href=\"$2\" target=\"_blank\" rel=\"noopener noreferrer\">$1</a>');// Replace **bold** with <strong> tags\ntext=text.replace(/\\*\\*([^\\*]+)\\*\\*/g,\"<strong>$1</strong>\");return text;};const extractAndFormatTable=React.useCallback(()=>{// Ensure this only runs in the browser\nif(typeof window===\"undefined\"||typeof document===\"undefined\"){return;}const isMobile=window.innerWidth<=768// Detect mobile screens\n;const firstColumnWidth=isMobile?\"150px\":\"225px\"// Adjust width dynamically\n;const otherColumnsWidth=isMobile?\"200px\":\"250px\"// Adjust other column width dynamically\n;const padding=\"16px\";const contentDivs=document.querySelectorAll('[data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"]');contentDivs.forEach(contentDiv=>{const codeBlocks=contentDiv.querySelectorAll(\".framer-text.framer-text-module\");codeBlocks.forEach(codeBlock=>{if(codeBlock instanceof HTMLElement){const framerCbDiv=codeBlock.querySelector(\".framer-cb\");if(!framerCbDiv)return;const styleAttr=framerCbDiv.getAttribute(\"style\")||\"\";const cssVars={};styleAttr.split(\";\").forEach(pair=>{const[key,value]=pair.split(\":\").map(s=>s.trim());if(key.startsWith(\"--\")){cssVars[key]=value;}});const colorScheme=cssVars[\"--cb-color-scheme-dark\"]===\"light\"?\"light\":\"dark\";const borderDiv=codeBlock.querySelector(\".sp-layout\");if(!borderDiv)return;const borderStyle=window.getComputedStyle(borderDiv);const borderWidth=borderStyle.borderWidth;const borderColor=borderStyle.borderColor;const borderRadius=borderStyle.borderRadius;const outerContainer=document.createElement(\"div\");outerContainer.style.cssText=`\n                            border: ${borderWidth} solid ${borderColor};\n                            border-radius: ${borderRadius};\n                            overflow: hidden;\n                            width: 100%;\n                            height: 100%;\n                        `;const innerContainer=document.createElement(\"div\");innerContainer.style.cssText=`\n                            overflow: auto;\n                            width: 100%;\n                            height: 100%;\n                        `;const table=document.createElement(\"table\");table.style.cssText=`\n                            border-collapse: separate;\n                            border-spacing: 0;\n                            width: 100%;\n                        `;const codeContent=codeBlock.textContent||\"\";const tableLines=codeContent.split(/\\r?\\n/).filter(line=>line.trim()!==\"\");const tableHtml=tableLines.map((row,index)=>{const cells=row.split(\"|\").map(cell=>parseMarkdownFormatting(cell.trim())).filter(cell=>cell!==\"\");if(cells.length===0)return\"\";if(index===0){return`<tr>${cells.map((cell,cellIndex)=>`<th style=\"min-width: ${cellIndex===0?firstColumnWidth:otherColumnsWidth}; padding: ${padding}; border-bottom: 1px solid ${borderColor}; text-align: left; ${cellIndex===0?\"position: sticky; left: 0; background-color: \"+cssVars[`--cb-colors-surface1-${colorScheme}`]+\"; z-index: 2;\":\"\"}\">${cell}</th>`).join(\"\")}</tr>`;}else{return`<tr>${cells.map((cell,cellIndex)=>`<td style=\"min-width: ${cellIndex===0?firstColumnWidth:otherColumnsWidth}; padding: ${padding}; border-bottom: 1px solid ${borderColor}; text-align: left; ${cellIndex===0?\"position: sticky; left: 0; background-color: \"+cssVars[`--cb-colors-surface1-${colorScheme}`]+\"; z-index: 1;\":\"\"}\">${cell}</td>`).join(\"\")}</tr>`;}}).filter(row=>row!==\"\").join(\"\");table.innerHTML=`\n                            <table style=\"width: 100%; border-collapse: separate; border-spacing: 0;\">\n                                ${tableHtml}\n                            </table>\n                        `;const style=document.createElement(\"style\");style.textContent=`\n                            table th, table td {\n                                text-align: left;\n                                padding: ${padding};\n                                border-right: 1px solid ${borderColor};\n                                border-bottom: 1px solid ${borderColor};\n                            }\n                            table th {\n                                font-weight: bold;\n                            }\n                            table th:last-child,\n                            table td:last-child {\n                                border-right: none;\n                            }\n                            table tr:last-child td {\n                                border-bottom: none;\n                            }\n                        `;outerContainer.appendChild(style);innerContainer.appendChild(table);outerContainer.appendChild(innerContainer);codeBlock.innerHTML=\"\";codeBlock.appendChild(outerContainer);}});});},[store.background]);React.useEffect(()=>{extractAndFormatTable();const observer=new MutationObserver(extractAndFormatTable);if(typeof window!==\"undefined\"&&typeof document!==\"undefined\"){const contentDivs=document.querySelectorAll('[data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"]');contentDivs.forEach(contentDiv=>{observer.observe(contentDiv,{childList:true,subtree:true});});}const style=document.createElement(\"style\");style.textContent=`\n                [data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"] {\n                    white-space: normal !important;\n                    opacity: 1 !important;\n                }\n                [data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"] > div {\n                    white-space: normal !important;\n                    opacity: 1 !important;\n                }\n            `;document.head.appendChild(style);return()=>{observer.disconnect();document.head.removeChild(style);};},[extractAndFormatTable]);return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"TableOverride\":{\"type\":\"reactHoc\",\"name\":\"TableOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Markdown_Table_CMS.map", "// Generated by Framer (01933e6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-SnAi5 .framer-styles-preset-e23j2u:not(.rich-text-wrapper), .framer-SnAi5 .framer-styles-preset-e23j2u.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-01803eae-6bb5-4aa5-a87b-4b780f3b6fb0, #3b3b3b) /* {\"name\":\"Neutral 03\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-834413c1-7886-40c2-905d-025892d495c7, #3d0099); --framer-link-text-decoration: none; }'];export const className=\"framer-SnAi5\";\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 (c126521)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={OrESh_VUl:new LazyValue(()=>import(\"./eNL8pxTP2-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c126521)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import RandomCMSItemsDisplay from\"https://framerusercontent.com/modules/xAd1LKohiF1easgr2BFb/eG4yeCgFAQEKJGwWdSl0/RandomCollection.js\";import Footer from\"#framer/local/canvasComponent/BRq5t_PBR/BRq5t_PBR.js\";import HeaderHeader from\"#framer/local/canvasComponent/buEaYiWpT/buEaYiWpT.js\";import ButtonButton from\"#framer/local/canvasComponent/HDzVzBPa_/HDzVzBPa_.js\";import{cardPaginator}from\"#framer/local/codeFile/MoQkaqW/Full_Pagination.js\";import{TableOverride}from\"#framer/local/codeFile/hJwal2L/Markdown_Table_CMS.js\";import Blog,{enumToDisplayNameFunctions}from\"#framer/local/collection/IaQcRZ3KE/IaQcRZ3KE.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle14 from\"#framer/local/css/Be4uvq1no/Be4uvq1no.js\";import*as sharedStyle4 from\"#framer/local/css/BeG0EG1YC/BeG0EG1YC.js\";import*as sharedStyle8 from\"#framer/local/css/emFCZG4LW/emFCZG4LW.js\";import*as sharedStyle1 from\"#framer/local/css/eou5pqMfW/eou5pqMfW.js\";import*as sharedStyle12 from\"#framer/local/css/fQCJR4k21/fQCJR4k21.js\";import*as sharedStyle9 from\"#framer/local/css/HcOWOTyno/HcOWOTyno.js\";import*as sharedStyle10 from\"#framer/local/css/IUuIQB2wW/IUuIQB2wW.js\";import*as sharedStyle3 from\"#framer/local/css/k428Wz_WF/k428Wz_WF.js\";import*as sharedStyle7 from\"#framer/local/css/LGT6tkNZd/LGT6tkNZd.js\";import*as sharedStyle6 from\"#framer/local/css/MK5pIrolI/MK5pIrolI.js\";import*as sharedStyle from\"#framer/local/css/O_gCF8qVJ/O_gCF8qVJ.js\";import*as sharedStyle5 from\"#framer/local/css/slcNrRtrf/slcNrRtrf.js\";import*as sharedStyle15 from\"#framer/local/css/WjNU59xp1/WjNU59xp1.js\";import*as sharedStyle13 from\"#framer/local/css/wLr46MaPe/wLr46MaPe.js\";import*as sharedStyle11 from\"#framer/local/css/WRRf2cMr4/WRRf2cMr4.js\";import*as sharedStyle2 from\"#framer/local/css/YhVA_26g4/YhVA_26g4.js\";import*as sharedStyle16 from\"#framer/local/css/ziZ34Xd3C/ziZ34Xd3C.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/eNL8pxTP2/eNL8pxTP2.js\";import metadataProvider from\"#framer/local/webPageMetadata/eNL8pxTP2/eNL8pxTP2.js\";const HeaderHeaderFonts=getFonts(HeaderHeader);const MotionDivTableOverride=TableOverride(motion.div);const ImageCardPaginator=cardPaginator(Image);const RandomCMSItemsDisplayFonts=getFonts(RandomCMSItemsDisplay);const MotionDivWithFX=withFX(motion.div);const ButtonButtonFonts=getFonts(ButtonButton);const FooterFonts=getFonts(Footer);const breakpoints={GZYmzOU0N:\"(min-width: 768px) and (max-width: 1199px)\",Hzl93vsmd:\"(max-width: 767px)\",I9KvogCsq:\"(min-width: 1200px) and (max-width: 1439px)\",R0oPPC6h7:\"(min-width: 1440px) and (max-width: 1879px)\",SwForuJq1:\"(min-width: 1880px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ZYMZe\";const variantClassNames={GZYmzOU0N:\"framer-v-62tu44\",Hzl93vsmd:\"framer-v-1tlwd8k\",I9KvogCsq:\"framer-v-1yx0igz\",R0oPPC6h7:\"framer-v-h4q18b\",SwForuJq1:\"framer-v-1bcd2bm\"};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition1={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={delay:0,duration:.1,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition3={damping:60,delay:.2,mass:1,stiffness:400,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"SwForuJq1\",Desktop:\"R0oPPC6h7\",Laptop:\"I9KvogCsq\",Phone:\"Hzl93vsmd\",Tablet:\"GZYmzOU0N\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"R0oPPC6h7\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"eNL8pxTP2\",data:Blog,type:\"Collection\"},select:[{collection:\"eNL8pxTP2\",name:\"HKA3vYOls\",type:\"Identifier\"},{collection:\"eNL8pxTP2\",name:\"L4CJXaYAQ\",type:\"Identifier\"},{collection:\"eNL8pxTP2\",name:\"Cg_hWlK4E\",type:\"Identifier\"},{collection:\"eNL8pxTP2\",name:\"Xq5a_SvLT\",type:\"Identifier\"},{collection:\"eNL8pxTP2\",name:\"DfpNCsd4X\",type:\"Identifier\"},{collection:\"eNL8pxTP2\",name:\"KcGkOmfE5\",type:\"Identifier\"},{collection:\"eNL8pxTP2\",name:\"F5GeRydQn\",type:\"Identifier\"},{collection:\"eNL8pxTP2\",name:\"NHG7PSWWP\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"eNL8pxTP2\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,DfpNCsd4X=getFromCurrentRouteData(\"DfpNCsd4X\"),HKA3vYOls=getFromCurrentRouteData(\"HKA3vYOls\")??\"\",Xq5a_SvLT=getFromCurrentRouteData(\"Xq5a_SvLT\")??0,KcGkOmfE5=getFromCurrentRouteData(\"KcGkOmfE5\"),F5GeRydQn=getFromCurrentRouteData(\"F5GeRydQn\"),NHG7PSWWP=getFromCurrentRouteData(\"NHG7PSWWP\")??\"\",xNdilgXeBSyVtP0UQh,Cg_hWlK4EbyvQbMdZ0,F5GeRydQnbyvQbMdZ0,DfpNCsd4XbyvQbMdZ0,HKA3vYOlsbyvQbMdZ0,L4CJXaYAQbyvQbMdZ0,KcGkOmfE5byvQbMdZ0,Xq5a_SvLTbyvQbMdZ0,idbyvQbMdZ0,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);usePreloadLocalizedValues(activeLocale);const textContent=enumToDisplayNameFunctions[\"DfpNCsd4X\"]?.(DfpNCsd4X,activeLocale);const activeLocaleCode=useLocaleCode();const textContent1=numberToString(Xq5a_SvLT,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode);const textContent2=toDateString(KcGkOmfE5,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const router=useRouter();const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"R0oPPC6h7\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-h4q18b\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GZYmzOU0N:{y:(componentViewport?.y||0)+0+0},Hzl93vsmd:{y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:99,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u1x81k-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GZYmzOU0N:{variant:\"jKXjzvrPM\"},Hzl93vsmd:{variant:\"SXUN4x14q\"},I9KvogCsq:{variant:\"yAVjSHKT3\"}},children:/*#__PURE__*/_jsx(HeaderHeader,{height:\"100%\",id:\"Fynph0Q4n\",layoutId:\"Fynph0Q4n\",style:{width:\"100%\"},variant:\"O_opcX6E_\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b2nwa9\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-113ylj1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__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-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-834413c1-7886-40c2-905d-025892d495c7, rgb(61, 0, 153))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jKa52zpVY\"},nodeId:\"zYaliq4NC\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-e23j2u\",\"data-styles-preset\":\"O_gCF8qVJ\",children:\"Home\"})})})}),className:\"framer-xma0qk\",\"data-framer-name\":\"COMPANY\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__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-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-01803eae-6bb5-4aa5-a87b-4b780f3b6fb0, rgb(59, 59, 59))\"},children:\">\"})}),className:\"framer-n8cud3\",\"data-framer-name\":\"COMPANY\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__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-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-834413c1-7886-40c2-905d-025892d495c7, rgb(61, 0, 153))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Kg6Wl7H3O\"},nodeId:\"coIuKbCbo\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-e23j2u\",\"data-styles-preset\":\"O_gCF8qVJ\",children:\"Blog\"})})})}),className:\"framer-9o1cig\",\"data-framer-name\":\"COMPANY\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__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-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-01803eae-6bb5-4aa5-a87b-4b780f3b6fb0, rgb(59, 59, 59))\"},children:\">\"})}),className:\"framer-16kxz7v\",\"data-framer-name\":\"COMPANY\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__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-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-01803eae-6bb5-4aa5-a87b-4b780f3b6fb0, rgb(59, 59, 59))\"},children:/*#__PURE__*/_jsx(Link,{nodeId:\"NdAh8Nwz8\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1evpg25\",\"data-styles-preset\":\"eou5pqMfW\",children:\"Restaurant Software\"})})})}),className:\"framer-cq1w3z\",\"data-framer-name\":\"COMPANY\",fonts:[\"Inter-SemiBold\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(MotionDivTableOverride,{className:\"framer-r4zfuu\",\"data-framer-name\":\"Section Title \",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-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-834413c1-7886-40c2-905d-025892d495c7, rgb(61, 0, 153))\"},children:\"Customer Stories\"})}),className:\"framer-1gnlvoe\",\"data-framer-name\":\"COMPANY\",fonts:[\"Inter-SemiBold\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-88joag\",\"data-styles-preset\":\"YhVA_26g4\",style:{\"--framer-text-alignment\":\"center\"},children:\"Why Every Restaurant Needs Its Own Online Ordering System (And Why Oddle Is the Perfect Partner)\"})}),className:\"framer-1i2sex0\",\"data-framer-name\":\"5 Ways AI is Revolutionizing Digital Marketing in 2024.\",fonts:[\"Inter\"],text:HKA3vYOls,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-horcxf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17mvq42\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zea6ny\",\"data-styles-preset\":\"k428Wz_WF\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"5\"})}),className:\"framer-o8dtmu\",\"data-framer-name\":\"Read Time\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zea6ny\",\"data-styles-preset\":\"k428Wz_WF\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"min read\"})}),className:\"framer-1mtsl2e\",\"data-framer-name\":\"min read\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zea6ny\",\"data-styles-preset\":\"k428Wz_WF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"|\"})}),className:\"framer-1x0hg5l\",\"data-framer-name\":\"|\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zea6ny\",\"data-styles-preset\":\"k428Wz_WF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Date\"})}),className:\"framer-1bozn85\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent2,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17auylr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GZYmzOU0N:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+581.2+0+0),sizes:`min(1400px, ${componentViewport?.width||\"100vw\"})`,...toResponsiveImage(F5GeRydQn),...{positionX:\"center\",positionY:\"center\"}}},Hzl93vsmd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+514+0+0),sizes:`min(350px, ${componentViewport?.width||\"100vw\"})`,...toResponsiveImage(F5GeRydQn),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:`min(1400px, ${componentViewport?.width||\"100vw\"})`,...toResponsiveImage(F5GeRydQn),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1vf6224\",\"data-framer-name\":\"Banner\"})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"ndvUTB4zl\"],\"module:pVk4QsoHxASnVtUBp6jr/F3DAaPbkrr19izpZS3jO/CodeBlock.js:default\":componentPresets.props[\"flL8kSE0r\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:NHG7PSWWP,className:\"framer-3eakwu\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-e23j2u\",blockquote:\"framer-styles-preset-1ic2zb8\",code:\"framer-styles-preset-1ehz1ce\",h1:\"framer-styles-preset-1li64lq\",h2:\"framer-styles-preset-jowkvr\",h3:\"framer-styles-preset-1aj58uy\",h4:\"framer-styles-preset-1jtsy47\",h5:\"framer-styles-preset-k6834s\",h6:\"framer-styles-preset-1080km4\",img:\"framer-styles-preset-19d57h\",p:\"framer-styles-preset-igr2q\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rgzkx3\",\"data-framer-name\":\"Articles Section \",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-f940c5\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a0dfda\",\"data-framer-name\":\"Section Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1aj58uy\",\"data-styles-preset\":\"MK5pIrolI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Read More Articles\"})}),className:\"framer-in2j9t\",\"data-framer-name\":\"Convert Extra Customers from Social Media.\",fonts:[\"Inter\"],text:xNdilgXeBSyVtP0UQh,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10vyrzo-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GZYmzOU0N:{itemSpacing:15,maxItems:2},Hzl93vsmd:{layoutDirection:\"vertical\"}},children:/*#__PURE__*/_jsx(RandomCMSItemsDisplay,{collectionList:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-emq68s\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"byvQbMdZ0\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"byvQbMdZ0\",name:\"Cg_hWlK4E\",type:\"Identifier\"},{collection:\"byvQbMdZ0\",name:\"F5GeRydQn\",type:\"Identifier\"},{collection:\"byvQbMdZ0\",name:\"DfpNCsd4X\",type:\"Identifier\"},{collection:\"byvQbMdZ0\",name:\"HKA3vYOls\",type:\"Identifier\"},{collection:\"byvQbMdZ0\",name:\"L4CJXaYAQ\",type:\"Identifier\"},{collection:\"byvQbMdZ0\",name:\"KcGkOmfE5\",type:\"Identifier\"},{collection:\"byvQbMdZ0\",name:\"Xq5a_SvLT\",type:\"Identifier\"},{collection:\"byvQbMdZ0\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"byvQbMdZ0\",name:\"tLzVmdXUU\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:true},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({Cg_hWlK4E:Cg_hWlK4EbyvQbMdZ0,DfpNCsd4X:DfpNCsd4XbyvQbMdZ0,F5GeRydQn:F5GeRydQnbyvQbMdZ0,HKA3vYOls:HKA3vYOlsbyvQbMdZ0,id:idbyvQbMdZ0,KcGkOmfE5:KcGkOmfE5byvQbMdZ0,L4CJXaYAQ:L4CJXaYAQbyvQbMdZ0,Xq5a_SvLT:Xq5a_SvLTbyvQbMdZ0},index)=>{Cg_hWlK4EbyvQbMdZ0??=\"\";HKA3vYOlsbyvQbMdZ0??=\"\";L4CJXaYAQbyvQbMdZ0??=\"\";Xq5a_SvLTbyvQbMdZ0??=0;const textContent3=enumToDisplayNameFunctions[\"DfpNCsd4X\"]?.(DfpNCsd4XbyvQbMdZ0,activeLocale);const textContent4=toDateString(KcGkOmfE5byvQbMdZ0,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const textContent5=numberToString(Xq5a_SvLTbyvQbMdZ0,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`byvQbMdZ0-${idbyvQbMdZ0}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Cg_hWlK4E:Cg_hWlK4EbyvQbMdZ0},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Cg_hWlK4E:Cg_hWlK4EbyvQbMdZ0},webPageId:\"eNL8pxTP2\"},nodeId:\"ywLNKL47U\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{\"aria-label\":\"cmsitem\",className:\"framer-1fi3kwy framer-ysyf1t\",\"data-border\":true,\"data-framer-name\":\"sds\",whileHover:animation1,children:[/*#__PURE__*/_jsx(ImageCardPaginator,{background:{alt:\"\",fit:\"fill\",sizes:\"320px\",...toResponsiveImage(F5GeRydQnbyvQbMdZ0)},className:\"framer-63jrq2\"}),/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"filter-Type\",className:\"framer-1jv7dwt\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(122, 114, 241)\"},children:\"Content\"})}),className:\"framer-pz4i0b\",fonts:[\"GF;Inter-700\"],text:textContent3,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-4cfb3a28-a190-4230-b1db-5025cd040ee9, rgb(38, 44, 55))\"},children:\"Increase Restaurant Revenue with these Major Sales Channels\"})}),className:\"framer-y8tnzn\",\"data-framer-name\":\"Title\",fonts:[\"GF;Inter-600\"],text:HKA3vYOlsbyvQbMdZ0,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-01803eae-6bb5-4aa5-a87b-4b780f3b6fb0, rgb(59, 59, 59))\"},children:\"Boost restaurant sales with personalized dine-in experiences, marketplace apps for reach, and your own e-Shop for data-driven growth.\"})}),className:\"framer-12eidvf\",\"data-framer-name\":\"Title\",fonts:[\"GF;Inter-500\"],text:L4CJXaYAQbyvQbMdZ0,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19aviiw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-01803eae-6bb5-4aa5-a87b-4b780f3b6fb0, rgb(59, 59, 59))\"},children:\"Content\"})}),className:\"framer-15adcxs\",\"data-framer-name\":\"Title\",fonts:[\"GF;Inter-500\"],text:textContent4,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-01803eae-6bb5-4aa5-a87b-4b780f3b6fb0, rgb(59, 59, 59))\"},children:\"|\"})}),className:\"framer-116ukwf\",\"data-framer-name\":\"Title\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ryes6r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-240ee465-bf3f-4349-91dd-83de2034898a, rgb(0, 0, 0))\"},children:\"NaN\"})}),className:\"framer-l9awbo\",fonts:[\"Inter\"],text:textContent5,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-240ee465-bf3f-4349-91dd-83de2034898a, rgb(0, 0, 0))\"},children:\"min read\"})}),className:\"framer-iygugw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})},idbyvQbMdZ0);})})})})})],cycle:false,cycleInterval:5,fixedWidth:100,height:\"100%\",id:\"IDI2obw1e\",itemSpacing:10,layoutDirection:\"horizontal\",layoutId:\"IDI2obw1e\",maxItems:3,sizing:\"fill\",style:{width:\"100%\"},width:\"100%\",wrap:false})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eix3v5\",\"data-framer-name\":\"Reserve\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cqhy69\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GZYmzOU0N:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+581.2+0+1173.6+0+0+20+0),pixelHeight:600,pixelWidth:600,sizes:\"631px\",src:\"https://framerusercontent.com/images/qMhXQmdO6IObtpQkvskShNwOdp4.jpg\",srcSet:\"https://framerusercontent.com/images/qMhXQmdO6IObtpQkvskShNwOdp4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qMhXQmdO6IObtpQkvskShNwOdp4.jpg 600w\"}},Hzl93vsmd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+514+0+878.1+20+0+20+0),pixelHeight:600,pixelWidth:600,sizes:\"249px\",src:\"https://framerusercontent.com/images/qMhXQmdO6IObtpQkvskShNwOdp4.jpg\",srcSet:\"https://framerusercontent.com/images/qMhXQmdO6IObtpQkvskShNwOdp4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qMhXQmdO6IObtpQkvskShNwOdp4.jpg 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:600,sizes:\"571px\",src:\"https://framerusercontent.com/images/qMhXQmdO6IObtpQkvskShNwOdp4.jpg\",srcSet:\"https://framerusercontent.com/images/qMhXQmdO6IObtpQkvskShNwOdp4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qMhXQmdO6IObtpQkvskShNwOdp4.jpg 600w\"},className:\"framer-f07z1o\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hlx3e0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GZYmzOU0N:{children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1qlxmvl\",\"data-styles-preset\":\"Be4uvq1no\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Grow Your Business with Reservation\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1li64lq\",\"data-styles-preset\":\"BeG0EG1YC\",style:{\"--framer-text-color\":\"var(--token-240ee465-bf3f-4349-91dd-83de2034898a, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Grow Your Business with Reservation\"})})}),className:\"framer-1sy9jqb\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GZYmzOU0N:{children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2ddazt\",\"data-styles-preset\":\"ziZ34Xd3C\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-240ee465-bf3f-4349-91dd-83de2034898a, rgb(0, 0, 0))\"},children:\"Upscale dining meets smart solutions! Popular Italian restaurants in KL like Zenzero switched from Umai to Oddle, cutting subscription costs by 50% with a flexible usage-based model. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2ddazt\",\"data-styles-preset\":\"ziZ34Xd3C\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-240ee465-bf3f-4349-91dd-83de2034898a, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2ddazt\",\"data-styles-preset\":\"ziZ34Xd3C\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-240ee465-bf3f-4349-91dd-83de2034898a, rgb(0, 0, 0))\"},children:\"Oddle made selling tickets for Italian Week a breeze, reducing no-shows and simplifying deposit collection for large bookings.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tuvbza\",\"data-styles-preset\":\"WjNU59xp1\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-240ee465-bf3f-4349-91dd-83de2034898a, rgb(0, 0, 0))\"},children:\"Upscale dining meets smart solutions! Popular Italian restaurants in KL like Zenzero switched from Umai to Oddle, cutting subscription costs by 50% with a flexible usage-based model. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tuvbza\",\"data-styles-preset\":\"WjNU59xp1\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-240ee465-bf3f-4349-91dd-83de2034898a, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tuvbza\",\"data-styles-preset\":\"WjNU59xp1\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-240ee465-bf3f-4349-91dd-83de2034898a, rgb(0, 0, 0))\"},children:\"Oddle made selling tickets for Italian Week a breeze, reducing no-shows and simplifying deposit collection for large bookings.\"})]}),className:\"framer-1c9s01v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o5pdii\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"g3mclgugv\"},implicitPathVariables:undefined},{href:{webPageId:\"g3mclgugv\"},implicitPathVariables:undefined},{href:{webPageId:\"g3mclgugv\"},implicitPathVariables:undefined},{href:{webPageId:\"g3mclgugv\"},implicitPathVariables:undefined},{href:{webPageId:\"g3mclgugv\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GZYmzOU0N:{y:(componentViewport?.y||0)+0+581.2+0+1173.6+0+0+20+657+0+499+0},Hzl93vsmd:{y:(componentViewport?.y||0)+0+514+0+878.1+20+0+20+287+0+565.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eh241t-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GZYmzOU0N:{AqBN4cJ_t:resolvedLinks[1]},Hzl93vsmd:{AqBN4cJ_t:resolvedLinks[3]},I9KvogCsq:{AqBN4cJ_t:resolvedLinks[2]},SwForuJq1:{AqBN4cJ_t:resolvedLinks[4]}},children:/*#__PURE__*/_jsx(ButtonButton,{AqBN4cJ_t:resolvedLinks[0],bhkyLsfgX:\"arrow-right\",D9IefWLTn:getLocalizedValue(\"v11\",activeLocale)??\"Learn More\",FiilAN0rA:\"var(--token-834413c1-7886-40c2-905d-025892d495c7, rgb(61, 0, 153))\",height:\"100%\",hY5P2TF3Q:\"18px\",id:\"lqV25q92p\",ifVmf3FDZ:false,INoqrk5wm:\"var(--token-834413c1-7886-40c2-905d-025892d495c7, rgb(61, 0, 153))\",layoutId:\"lqV25q92p\",mo5sUig5p:false,variant:\"tcFOgf1Xn\",wAuFaBlEu:\"14px 20px 14px 20px\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GZYmzOU0N:{y:(componentViewport?.y||0)+0+581.2+0+1173.6+0+0+20+657+0+499+0},Hzl93vsmd:{y:(componentViewport?.y||0)+0+514+0+878.1+20+0+20+287+0+565.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1egwfvb-container\",children:/*#__PURE__*/_jsx(ButtonButton,{AqBN4cJ_t:\"https://wa.me/6588501782?text=Hi%21%20I%20have%20questions%20about%20Oddle.\",bhkyLsfgX:\"message-square\",D9IefWLTn:getLocalizedValue(\"v12\",activeLocale)??\"Text Us\",FiilAN0rA:\"var(--token-834413c1-7886-40c2-905d-025892d495c7, rgb(61, 0, 153))\",height:\"100%\",hY5P2TF3Q:\"18px\",id:\"AF5HnY2y3\",ifVmf3FDZ:true,INoqrk5wm:\"var(--token-834413c1-7886-40c2-905d-025892d495c7, rgb(61, 0, 153))\",layoutId:\"AF5HnY2y3\",mo5sUig5p:false,variant:\"U8GGZ7BM4\",wAuFaBlEu:\"14px 20px 14px 20px\",width:\"100%\"})})})})]})]})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GZYmzOU0N:{y:(componentViewport?.y||0)+0+3099.7999999999997},Hzl93vsmd:{y:(componentViewport?.y||0)+0+2419.5},SwForuJq1:{width:\"1897px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1431,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jhp0rc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GZYmzOU0N:{variant:\"BVlgaMhW1\"},Hzl93vsmd:{variant:\"iDkgnkyzn\"},I9KvogCsq:{variant:\"mF3ZbBko7\"},SwForuJq1:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"r2V9tjivj\",layoutId:\"r2V9tjivj\",variant:\"LP3wENtT9\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-7c7d3fdc-98d3-4aae-aab6-ea1dd4512c85, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZYMZe.framer-ysyf1t, .framer-ZYMZe .framer-ysyf1t { display: block; }\",\".framer-ZYMZe.framer-h4q18b { align-content: center; align-items: center; background-color: var(--token-7c7d3fdc-98d3-4aae-aab6-ea1dd4512c85, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1440px; }\",\".framer-ZYMZe .framer-u1x81k-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\",\".framer-ZYMZe .framer-b2nwa9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 100px; position: relative; width: 100%; }\",\".framer-ZYMZe .framer-113ylj1, .framer-ZYMZe .framer-19aviiw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ZYMZe .framer-xma0qk, .framer-ZYMZe .framer-n8cud3, .framer-ZYMZe .framer-9o1cig, .framer-ZYMZe .framer-16kxz7v, .framer-ZYMZe .framer-cq1w3z { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ZYMZe .framer-r4zfuu { 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: 55%; }\",\".framer-ZYMZe .framer-1gnlvoe, .framer-ZYMZe .framer-in2j9t { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZYMZe .framer-1i2sex0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 770px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZYMZe .framer-horcxf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 291px; }\",\".framer-ZYMZe .framer-17mvq42 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ZYMZe .framer-o8dtmu { flex: none; height: auto; max-width: 2667%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-ZYMZe .framer-1mtsl2e { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 56px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZYMZe .framer-1x0hg5l { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-ZYMZe .framer-1bozn85 { flex: none; height: auto; max-width: 206%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-ZYMZe .framer-17auylr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 1400px; }\",\".framer-ZYMZe .framer-1vf6224 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 500px; position: relative; width: 100%; }\",\".framer-ZYMZe .framer-3eakwu { --framer-paragraph-spacing: 10px; flex: none; height: auto; max-width: 850px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZYMZe .framer-rgzkx3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 30px 70px 30px; position: relative; width: 1400px; }\",\".framer-ZYMZe .framer-f940c5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZYMZe .framer-1a0dfda { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 659px; z-index: 5; }\",\".framer-ZYMZe .framer-10vyrzo-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ZYMZe .framer-emq68s { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 350px; }\",\".framer-ZYMZe .framer-1fi3kwy { --border-bottom-width: 1px; --border-color: var(--token-3f7399b3-425b-4607-9520-05ba1c73ae14, #cfd1d5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, #ffffff); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZYMZe .framer-63jrq2 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 196px; position: relative; width: 100%; }\",\".framer-ZYMZe .framer-1jv7dwt { align-content: center; align-items: center; background-color: #f6f6fe; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: min-content; }\",\".framer-ZYMZe .framer-pz4i0b, .framer-ZYMZe .framer-l9awbo, .framer-ZYMZe .framer-iygugw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ZYMZe .framer-y8tnzn, .framer-ZYMZe .framer-12eidvf { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZYMZe .framer-15adcxs, .framer-ZYMZe .framer-116ukwf { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ZYMZe .framer-1ryes6r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZYMZe .framer-eix3v5 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 54px 30px 54px 30px; position: relative; width: 1440px; }\",\".framer-ZYMZe .framer-1cqhy69 { align-content: center; align-items: center; background-color: var(--token-e49e6049-48f2-47f1-a12a-d5f64122cf43, #f1ecff); 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: wrap; gap: 35px; height: min-content; justify-content: center; max-width: 1260px; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZYMZe .framer-f07z1o { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 551px; overflow: hidden; position: relative; width: 571px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZYMZe .framer-hlx3e0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ZYMZe .framer-1sy9jqb, .framer-ZYMZe .framer-1c9s01v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZYMZe .framer-1o5pdii { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZYMZe .framer-1eh241t-container, .framer-ZYMZe .framer-1egwfvb-container, .framer-ZYMZe .framer-jhp0rc-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZYMZe.framer-h4q18b, .framer-ZYMZe .framer-b2nwa9, .framer-ZYMZe .framer-113ylj1, .framer-ZYMZe .framer-r4zfuu, .framer-ZYMZe .framer-horcxf, .framer-ZYMZe .framer-17mvq42, .framer-ZYMZe .framer-17auylr, .framer-ZYMZe .framer-rgzkx3, .framer-ZYMZe .framer-f940c5, .framer-ZYMZe .framer-1a0dfda, .framer-ZYMZe .framer-emq68s, .framer-ZYMZe .framer-1fi3kwy, .framer-ZYMZe .framer-1jv7dwt, .framer-ZYMZe .framer-19aviiw, .framer-ZYMZe .framer-1ryes6r, .framer-ZYMZe .framer-eix3v5, .framer-ZYMZe .framer-1cqhy69, .framer-ZYMZe .framer-hlx3e0, .framer-ZYMZe .framer-1o5pdii { gap: 0px; } .framer-ZYMZe.framer-h4q18b > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ZYMZe.framer-h4q18b > :first-child, .framer-ZYMZe .framer-b2nwa9 > :first-child, .framer-ZYMZe .framer-r4zfuu > :first-child, .framer-ZYMZe .framer-17auylr > :first-child, .framer-ZYMZe .framer-rgzkx3 > :first-child, .framer-ZYMZe .framer-f940c5 > :first-child, .framer-ZYMZe .framer-1a0dfda > :first-child, .framer-ZYMZe .framer-emq68s > :first-child, .framer-ZYMZe .framer-1fi3kwy > :first-child, .framer-ZYMZe .framer-eix3v5 > :first-child, .framer-ZYMZe .framer-hlx3e0 > :first-child { margin-top: 0px; } .framer-ZYMZe.framer-h4q18b > :last-child, .framer-ZYMZe .framer-b2nwa9 > :last-child, .framer-ZYMZe .framer-r4zfuu > :last-child, .framer-ZYMZe .framer-17auylr > :last-child, .framer-ZYMZe .framer-rgzkx3 > :last-child, .framer-ZYMZe .framer-f940c5 > :last-child, .framer-ZYMZe .framer-1a0dfda > :last-child, .framer-ZYMZe .framer-emq68s > :last-child, .framer-ZYMZe .framer-1fi3kwy > :last-child, .framer-ZYMZe .framer-eix3v5 > :last-child, .framer-ZYMZe .framer-hlx3e0 > :last-child { margin-bottom: 0px; } .framer-ZYMZe .framer-b2nwa9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZYMZe .framer-113ylj1 > *, .framer-ZYMZe .framer-horcxf > *, .framer-ZYMZe .framer-1jv7dwt > *, .framer-ZYMZe .framer-19aviiw > *, .framer-ZYMZe .framer-1o5pdii > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZYMZe .framer-113ylj1 > :first-child, .framer-ZYMZe .framer-horcxf > :first-child, .framer-ZYMZe .framer-17mvq42 > :first-child, .framer-ZYMZe .framer-1jv7dwt > :first-child, .framer-ZYMZe .framer-19aviiw > :first-child, .framer-ZYMZe .framer-1ryes6r > :first-child, .framer-ZYMZe .framer-1cqhy69 > :first-child, .framer-ZYMZe .framer-1o5pdii > :first-child { margin-left: 0px; } .framer-ZYMZe .framer-113ylj1 > :last-child, .framer-ZYMZe .framer-horcxf > :last-child, .framer-ZYMZe .framer-17mvq42 > :last-child, .framer-ZYMZe .framer-1jv7dwt > :last-child, .framer-ZYMZe .framer-19aviiw > :last-child, .framer-ZYMZe .framer-1ryes6r > :last-child, .framer-ZYMZe .framer-1cqhy69 > :last-child, .framer-ZYMZe .framer-1o5pdii > :last-child { margin-right: 0px; } .framer-ZYMZe .framer-r4zfuu > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-ZYMZe .framer-17mvq42 > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-ZYMZe .framer-17auylr > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-ZYMZe .framer-rgzkx3 > *, .framer-ZYMZe .framer-emq68s > *, .framer-ZYMZe .framer-eix3v5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ZYMZe .framer-f940c5 > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } .framer-ZYMZe .framer-1a0dfda > *, .framer-ZYMZe .framer-1fi3kwy > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ZYMZe .framer-1ryes6r > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-ZYMZe .framer-1cqhy69 > * { margin: 0px; margin-left: calc(35px / 2); margin-right: calc(35px / 2); } .framer-ZYMZe .framer-hlx3e0 > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 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,'.framer-ZYMZe[data-border=\"true\"]::after, .framer-ZYMZe [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 768px) and (max-width: 1199px) { .framer-ZYMZe.framer-h4q18b { width: 768px; } .framer-ZYMZe .framer-r4zfuu, .framer-ZYMZe .framer-f940c5 { width: 90%; } .framer-ZYMZe .framer-3eakwu { --framer-paragraph-spacing: 40px; width: 90%; } .framer-ZYMZe .framer-rgzkx3 { width: 100%; } .framer-ZYMZe .framer-eix3v5 { padding: 0px 30px 54px 30px; width: 100%; } .framer-ZYMZe .framer-1cqhy69 { flex-direction: column; max-width: 100%; } .framer-ZYMZe .framer-f07z1o { height: 622px; width: 631px; } .framer-ZYMZe .framer-hlx3e0 { flex: none; gap: 25px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZYMZe .framer-1cqhy69, .framer-ZYMZe .framer-hlx3e0 { gap: 0px; } .framer-ZYMZe .framer-1cqhy69 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-ZYMZe .framer-1cqhy69 > :first-child, .framer-ZYMZe .framer-hlx3e0 > :first-child { margin-top: 0px; } .framer-ZYMZe .framer-1cqhy69 > :last-child, .framer-ZYMZe .framer-hlx3e0 > :last-child { margin-bottom: 0px; } .framer-ZYMZe .framer-hlx3e0 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }}\",\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-ZYMZe.framer-h4q18b { width: 1200px; } .framer-ZYMZe .framer-r4zfuu { width: 90%; } .framer-ZYMZe .framer-rgzkx3, .framer-ZYMZe .framer-eix3v5 { width: 100%; } .framer-ZYMZe .framer-1cqhy69 { max-width: 1140px; padding: 24px; } .framer-ZYMZe .framer-1o5pdii { gap: 25px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZYMZe .framer-1o5pdii { gap: 0px; } .framer-ZYMZe .framer-1o5pdii > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-ZYMZe .framer-1o5pdii > :first-child { margin-left: 0px; } .framer-ZYMZe .framer-1o5pdii > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 767px) { .framer-ZYMZe.framer-h4q18b { width: 390px; } .framer-ZYMZe .framer-u1x81k-container { order: 0; } .framer-ZYMZe .framer-b2nwa9 { order: 4; } .framer-ZYMZe .framer-r4zfuu { order: 1; width: 90%; } .framer-ZYMZe .framer-1i2sex0 { width: auto; } .framer-ZYMZe .framer-17auylr { order: 2; width: 350px; } .framer-ZYMZe .framer-1vf6224 { height: 225px; } .framer-ZYMZe .framer-3eakwu { width: 90%; } .framer-ZYMZe .framer-rgzkx3 { padding: 40px 30px 50px 30px; width: 100%; } .framer-ZYMZe .framer-1a0dfda { width: 1200px; } .framer-ZYMZe .framer-eix3v5 { padding: 20px; width: 100%; } .framer-ZYMZe .framer-1cqhy69 { flex-direction: column; max-width: 390px; } .framer-ZYMZe .framer-f07z1o { height: 252px; width: 249px; } .framer-ZYMZe .framer-hlx3e0 { flex: none; width: 100%; } .framer-ZYMZe .framer-jhp0rc-container { order: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZYMZe .framer-1cqhy69 { gap: 0px; } .framer-ZYMZe .framer-1cqhy69 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-ZYMZe .framer-1cqhy69 > :first-child { margin-top: 0px; } .framer-ZYMZe .framer-1cqhy69 > :last-child { margin-bottom: 0px; } }}\",\"@media (min-width: 1880px) { .framer-ZYMZe.framer-h4q18b { width: 1880px; } .framer-ZYMZe .framer-eix3v5 { width: 1200px; } .framer-ZYMZe .framer-1cqhy69 { max-width: 1200px; } .framer-ZYMZe .framer-hlx3e0 { gap: 25px; } .framer-ZYMZe .framer-jhp0rc-container { width: 1897px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZYMZe .framer-hlx3e0 { gap: 0px; } .framer-ZYMZe .framer-hlx3e0 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-ZYMZe .framer-hlx3e0 > :first-child { margin-top: 0px; } .framer-ZYMZe .framer-hlx3e0 > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6928\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GZYmzOU0N\":{\"layout\":[\"fixed\",\"auto\"]},\"I9KvogCsq\":{\"layout\":[\"fixed\",\"auto\"]},\"Hzl93vsmd\":{\"layout\":[\"fixed\",\"auto\"]},\"SwForuJq1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerResponsiveScreen\n */const FramereNL8pxTP2=withCSS(Component,css,\"framer-ZYMZe\");export default FramereNL8pxTP2;FramereNL8pxTP2.displayName=\"Page\";FramereNL8pxTP2.defaultProps={height:6928,width:1440};addFonts(FramereNL8pxTP2,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.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\"}]},...HeaderHeaderFonts,...RandomCMSItemsDisplayFonts,...ButtonButtonFonts,...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),...componentPresets.fonts?.[\"ndvUTB4zl\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"ndvUTB4zl\"]):[],...componentPresets.fonts?.[\"flL8kSE0r\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"flL8kSE0r\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereNL8pxTP2\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GZYmzOU0N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I9KvogCsq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Hzl93vsmd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SwForuJq1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"6928\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["findPropsBeforeQuery", "obj", "key", "result", "RandomCMSItemsDisplay", "props", "_collectionList_", "collectionList", "maxItems", "layoutDirection", "itemSpacing", "wrap", "sizing", "fixedWidth", "cycle", "cycleInterval", "isCanvas", "RenderTarget", "clProps", "findPropsBeforeQuery", "data", "useQueryData", "renderedItems", "setRenderedItems", "ye", "ue", "fetchData", "styledItems", "getRandomItems", "item", "index", "p", "q", "intervalId", "containerStyle", "addPropertyControls", "ControlType", "items", "useStore", "createStore", "TableOverride", "Component", "props", "store", "parseMarkdownFormatting", "text", "extractAndFormatTable", "te", "window", "isMobile", "firstColumnWidth", "otherColumnsWidth", "padding", "contentDiv", "codeBlock", "framerCbDiv", "styleAttr", "cssVars", "pair", "key", "value", "s", "colorScheme", "borderDiv", "borderStyle", "borderWidth", "borderColor", "borderRadius", "outerContainer", "innerContainer", "table", "tableHtml", "line", "row", "index", "cells", "cell", "cellIndex", "style", "ue", "observer", "p", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "HeaderHeaderFonts", "getFonts", "buEaYiWpT_default", "MotionDivTableOverride", "TableOverride", "motion", "ImageCardPaginator", "cardPaginator", "Image2", "RandomCMSItemsDisplayFonts", "RandomCMSItemsDisplay", "MotionDivWithFX", "withFX", "ButtonButtonFonts", "HDzVzBPa_default", "FooterFonts", "BRq5t_PBR_default", "breakpoints", "serializationHash", "variantClassNames", "numberToString", "value", "options", "activeLocale", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "toDateString", "date", "display", "dateOptions", "toResponsiveImage", "animation", "transition1", "transition2", "animation1", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition3", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "IaQcRZ3KE_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "className", "layoutId", "variant", "DfpNCsd4X", "HKA3vYOls", "Xq5a_SvLT", "KcGkOmfE5", "F5GeRydQn", "NHG7PSWWP", "xNdilgXeBSyVtP0UQh", "Cg_hWlK4EbyvQbMdZ0", "F5GeRydQnbyvQbMdZ0", "DfpNCsd4XbyvQbMdZ0", "HKA3vYOlsbyvQbMdZ0", "L4CJXaYAQbyvQbMdZ0", "KcGkOmfE5byvQbMdZ0", "Xq5a_SvLTbyvQbMdZ0", "idbyvQbMdZ0", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "usePreloadLocalizedValues", "textContent", "enumToDisplayNameFunctions", "activeLocaleCode", "useLocaleCode", "textContent1", "textContent2", "router", "useRouter", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "buEaYiWpT_default", "RichText2", "getLocalizedValue", "x", "Link", "MotionDivTableOverride", "getLoadingLazyAtYPosition", "Image2", "ComponentPresetsProvider", "MotionDivWithFX", "RandomCMSItemsDisplay", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "textContent3", "textContent4", "textContent5", "PathVariablesContext", "ImageCardPaginator", "ResolveLinks", "resolvedLinks", "HDzVzBPa_default", "BRq5t_PBR_default", "css", "FramereNL8pxTP2", "withCSS", "eNL8pxTP2_default", "addFonts", "HeaderHeaderFonts", "RandomCMSItemsDisplayFonts", "ButtonButtonFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
