{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/pmEuimv9zTOMkMYQcsIu/7n6rzEjcqcuqKSOwC7UK/Paginator.js", "ssg:https://framerusercontent.com/modules/FhuKZq6DCZUgUgbc24lr/5lNIuB9KWwAcF9VeueKp/Ncloader.js", "ssg:https://framerusercontent.com/modules/y2sJpgsIqRrWuDqI43Zj/VG2tfvDSsZuRWQw9HrhX/Ncprevious.js", "ssg:https://framerusercontent.com/modules/LVayGwej8Uovk1eXkIR8/7qzQSym6iYH2uZgT77Me/ZJEhUhqme.js"],
  "sourcesContent": ["// With Ref\n// Welcome to Code in Framer\n// Get Started: https://www.framer.com/developers/\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useEffect,useState,useRef}from\"react\";import $ from\"jquery\";var PaginationType;(function(PaginationType){PaginationType[PaginationType[\"NextPrevious\"]=1]=\"NextPrevious\";PaginationType[PaginationType[\"LoadMore\"]=2]=\"LoadMore\";})(PaginationType||(PaginationType={}));const[NAV_CONTAINER,NAV_NEXT_PAGE,NAV_PREV_PAGE,LOADING_VIEW,PAGINATION_ITEMS,NAV_PAGE_NUMBER,]=[\"nc-paginate-nav\",\"nc-next-page\",\"nc-prev-page\",\"nc-page-loader\",\"nc-item\",\"nc-page-number\",];/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/#code-components-auto-sizing\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Paginator(props){// This is a React component containing an Example component\n// - Replace <Example /> with your own code\n// - Find inspiration: https://www.framer.com/developers/\nconst[displaySelf,setDisplaySelf]=useState(false);const page=useRef(1);const totalPages=useRef(0);const[pageNumber,setPageNumber]=useState(1);const toggleDisplay=(displayContent=false)=>{if(displayContent){$(`.${LOADING_VIEW}`).css(\"display\",\"none\");}$(`.${NAV_CONTAINER}`).css(\"display\",displayContent?\"block\":\"none\");setDisplaySelf(displayContent);};const paginate=(limit,elems,pageNum=1)=>{const prevRange=(pageNum-1)*limit;const currRange=pageNum*limit;if(props.paginationType===PaginationType.NextPrevious){elems.slice(page.current-1,page.current*limit).css(\"display\",\"none\");}elems.slice(prevRange,currRange).css(\"display\",\"block\");};useEffect(()=>{$(`.${NAV_PAGE_NUMBER}`).contents().first().text(`${pageNumber}/${totalPages.current}`);if(totalPages.current!==0&&pageNumber===totalPages.current){$(`.${NAV_NEXT_PAGE}`).hide();}else{$(`.${NAV_NEXT_PAGE}`).show();}if(pageNumber===1){$(`.${NAV_PREV_PAGE}`).hide();}else{$(`.${NAV_PREV_PAGE}`).show();}},[pageNumber]);useEffect(()=>{if(window){try{const elems=$(`.${PAGINATION_ITEMS}`);totalPages.current=Math.ceil(elems.length/props.limit);$(`.${NAV_PAGE_NUMBER}`).contents().first().text(`${page.current}/${totalPages.current}`);$(`.${NAV_NEXT_PAGE}`).on(\"click\",e=>{const pageNum=page.current+1>totalPages.current?totalPages.current:page.current+1;paginate(props.limit,elems,pageNum);if(page.current>page.current){return;}page.current+=1;setPageNumber(page.current);});if(props.paginationType===PaginationType.NextPrevious){$(`.${NAV_PREV_PAGE}`).on(\"click\",e=>{const pageNum=page.current-1<1?1:page.current-1;paginate(props.limit,elems,pageNum);if(page.current===1){return;}page.current-=1;setPageNumber(page.current);});}toggleDisplay(false);// Hide all elements and only show those we need\nelems.css(\"display\",\"none\");elems.slice(0,props.limit).css(\"display\",\"block\");toggleDisplay(true);return()=>{$(`.${NAV_NEXT_PAGE}`).off();$(`.${NAV_PREV_PAGE}`).off();};}catch(e){// console.log(e)\n// There is a linting error for .addEventListener, this catches it till we have a proper solution\n}}},[]);return /*#__PURE__*/ _jsx(\"div\",{id:\"nc-paginator\",style:{...containerStyle,visibility:displaySelf||props.visible?\"visible\":\"hidden\",gap:`${props.gap}%`},children:props.children});};Paginator.displayName=\"Paginator\";Paginator.defaultProps={children:[],limit:1,visible:true,gap:\"5\",paginationType:PaginationType.NextPrevious};addPropertyControls(Paginator,{children:{type:ControlType.Array,control:{type:ControlType.ComponentInstance}},limit:{type:ControlType.Number,defaultValue:1,step:1,displayStepper:true},visible:{type:ControlType.Boolean,description:\"Optional: Only hide component when using nav and loader.\",defaultValue:false,enabledTitle:\"Visible\",disabledTitle:\"Hidden\"},gap:{type:ControlType.Number,defaultValue:Paginator.defaultProps.gap,description:\"Gap in % between rows\"},paginationType:{type:ControlType.Enum,defaultValue:PaginationType.NextPrevious,displaySegmentedControl:true,options:[PaginationType.NextPrevious,PaginationType.LoadMore],optionTitles:[\"Next/Previous\",\"Load More\"],segmentedControlDirection:\"vertical\"}});// Styles are written in object syntax\n// Learn more: https://reactjs.org/docs/dom-elements.html#style\nconst containerStyle={height:\"100%\",width:\"100%\",display:\"flex\",flexDirection:\"column\",gap:`${Paginator.defaultProps.gap}%`};const navBtnsStyle={display:\"flex\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Paginator\",\"slots\":[\"children\"],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"auto\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Paginator.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\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst 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()});}});};}export function withClass(Component){return props=>{props.className+=\" nc-next-page\" // Remember to add a space\n;return /*#__PURE__*/ _jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withClass\":{\"type\":\"reactHoc\",\"name\":\"withClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ncloader.map", "import{jsx as r}from\"react/jsx-runtime\";import{createStore as t}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor as o}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nlet e=t({background:\"#0099FF\"});export function withRotate(t){return o=>/*#__PURE__*/r(t,{...o,animate:{rotate:90},transition:{duration:2}});}export function withHover(t){return o=>/*#__PURE__*/r(t,{...o,whileHover:{scale:1.05}});}export function withRandomColor(t){return n=>{let[a,i]=e();return /*#__PURE__*/r(t,{...n,animate:{background:a.background},onClick:()=>{i({background:o()});}});};}export function withClass(t){return o=>(o.className+=\" nc-prev-page\"// Remember to add a space\n    ,/*#__PURE__*/r(t,{...o}));}\nexport const __FramerMetadata__ = {\"exports\":{\"withClass\":{\"type\":\"reactHoc\",\"name\":\"withClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ncprevious.map", "// Generated by Framer (18b201b)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useOverlayState,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import NavbarFilledButton from\"https://framerusercontent.com/modules/JnfsyczDV1qiORQKEWbi/YUtBirtYm8qbW0PeqyUw/pXzv0MyWd.js\";import Paginator from\"https://framerusercontent.com/modules/pmEuimv9zTOMkMYQcsIu/7n6rzEjcqcuqKSOwC7UK/Paginator.js\";import Link1 from\"#framer/local/canvasComponent/CrAbj2H4F/CrAbj2H4F.js\";import ButtonLarge from\"#framer/local/canvasComponent/EbjdIbRqO/EbjdIbRqO.js\";import BurgerMenu from\"#framer/local/canvasComponent/IXulyNxE6/IXulyNxE6.js\";import TextButtonCopy,*as TextButtonCopyInfo from\"#framer/local/canvasComponent/X_KcSlL40/X_KcSlL40.js\";import NavbarButton from\"#framer/local/canvasComponent/xuSZEY7yY/xuSZEY7yY.js\";import{withStickyNavbar}from\"#framer/local/codeFile/mef30pT/Navbar_Colot.js\";import{withClass}from\"#framer/local/codeFile/HQpVwmz/Ncitem.js\";import{withClass as withClass2}from\"#framer/local/codeFile/fQDuJFc/Ncloader.js\";import{withClass as withClass1}from\"#framer/local/codeFile/nH8KiRL/Ncprevious.js\";import Comparison from\"#framer/local/collection/DBltbbism/DBltbbism.js\";import*as sharedStyle3 from\"#framer/local/css/h5nu6up7i/h5nu6up7i.js\";import*as sharedStyle2 from\"#framer/local/css/MiTP6YosN/MiTP6YosN.js\";import*as sharedStyle from\"#framer/local/css/ojXMISvj2/ojXMISvj2.js\";import*as sharedStyle1 from\"#framer/local/css/VYM6DA27S/VYM6DA27S.js\";import metadataProvider from\"#framer/local/webPageMetadata/ZJEhUhqme/ZJEhUhqme.js\";const NavbarButtonFonts=getFonts(NavbarButton);const NavbarFilledButtonFonts=getFonts(NavbarFilledButton);const BurgerMenuFonts=getFonts(BurgerMenu);const MotionDivWithStickyNavbarbz8mrb=withCodeBoundaryForOverrides(motion.div,{nodeId:\"juQx3alF1\",override:withStickyNavbar,scopeId:\"ZJEhUhqme\"});const ButtonLargeFonts=getFonts(ButtonLarge);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFX=withFX(motion.div);const MotionDivWithClass3tiwg1=withCodeBoundaryForOverrides(motion.div,{nodeId:\"lVOZNPCF9\",override:withClass,scopeId:\"ZJEhUhqme\"});const TextButtonCopyFonts=getFonts(TextButtonCopy);const TextButtonCopyWithClass118dlxtsWithMappedReactProps1v4h8cn=withMappedReactProps(withCodeBoundaryForOverrides(TextButtonCopy,{nodeId:\"qTP3W1TYx\",override:withClass1,scopeId:\"ZJEhUhqme\"}),TextButtonCopyInfo);const TextButtonCopyWithClass2q7zbl9WithMappedReactProps1v4h8cn=withMappedReactProps(withCodeBoundaryForOverrides(TextButtonCopy,{nodeId:\"eiZBl3aeH\",override:withClass2,scopeId:\"ZJEhUhqme\"}),TextButtonCopyInfo);const PaginatorFonts=getFonts(Paginator);const TickerFonts=getFonts(Ticker);const Link1Fonts=getFonts(Link1);const breakpoints={BcZiLMhSJ:\"(min-width: 654px) and (max-width: 1151px)\",LmdC17N7y:\"(max-width: 653px)\",trYpqN9uT:\"(min-width: 1152px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-kdYt7\";const variantClassNames={BcZiLMhSJ:\"framer-v-1b6nu7t\",LmdC17N7y:\"framer-v-szklsp\",trYpqN9uT:\"framer-v-hy1i7t\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:-150};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition2={damping:50,delay:0,mass:1.1,stiffness:254,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:40,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const animation5={boxShadow:\"0px 4px 14px 0px rgba(0, 0, 0, 0.5)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,y:-6};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition1};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"trYpqN9uT\",Phone:\"LmdC17N7y\",Tablet:\"BcZiLMhSJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"trYpqN9uT\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,UdcTt04FgY3LMafGNW,IdNkOMk8TY3LMafGNW,WM5JX6yOgY3LMafGNW,LMsmaRcIXY3LMafGNW,mDkhRpqfAY3LMafGNW,phG3Hdm3VY3LMafGNW,idY3LMafGNW,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const tap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"BcZiLMhSJ\",\"LmdC17N7y\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"LmdC17N7y\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"BcZiLMhSJ\",\"LmdC17N7y\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"BcZiLMhSJ\")return false;return true;};const elementId=useRouteElementId(\"lSGgzyk1Q\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"Tcpo7aVJ9\");const ref2=React.useRef(null);const router=useRouter();const elementId2=useRouteElementId(\"UJyIOTl6v\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"trYpqN9uT\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-hy1i7t\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(MotionDivWithStickyNavbarbz8mrb,{className:\"framer-bz8mrb\",\"data-framer-name\":\"Navbar/Navbar\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oiwi6u\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k214re\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sjnviv\",\"data-framer-name\":\"Logo / Cactus / Eat Logo\",children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=Logo\",motionChild:true,nodeId:\"M4wRo1mro\",openInNewTab:false,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-17zstfv framer-19xlksj\",\"data-framer-name\":\"Symbols\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 24\"><g><path d=\"M 9.771 20.193 C 10.383 20.193 10.922 20.124 11.387 19.988 C 11.852 19.851 12.268 19.683 12.636 19.484 C 13.003 19.285 13.322 19.067 13.591 18.83 C 13.86 18.594 14.105 18.376 14.325 18.177 C 14.619 18.55 14.925 19.029 15.244 19.614 C 15.562 20.199 15.721 20.678 15.721 21.051 C 15.721 21.599 15.415 22.096 14.803 22.544 C 14.289 22.942 13.56 23.285 12.617 23.571 C 11.675 23.857 10.567 24 9.293 24 C 8.142 24 7.01 23.851 5.895 23.552 C 4.781 23.253 3.79 22.731 2.92 21.984 C 2.051 21.238 1.347 20.236 0.808 18.98 C 0.269 17.723 0 16.137 0 14.221 C 0 12.653 0.239 11.303 0.716 10.171 C 1.194 9.039 1.83 8.1 2.626 7.353 C 3.422 6.607 4.322 6.059 5.326 5.711 C 6.33 5.362 7.359 5.188 8.412 5.188 C 9.783 5.188 10.946 5.406 11.901 5.841 C 12.856 6.277 13.634 6.862 14.234 7.596 C 14.834 8.33 15.268 9.17 15.538 10.115 C 15.807 11.061 15.942 12.056 15.942 13.101 L 15.942 13.624 C 15.942 13.823 15.936 14.034 15.923 14.258 C 15.911 14.482 15.899 14.7 15.887 14.911 C 15.874 15.123 15.856 15.291 15.832 15.415 L 5.032 15.415 C 5.13 16.784 5.547 17.922 6.281 18.83 C 7.016 19.739 8.179 20.193 9.771 20.193 Z M 11.424 12.616 C 11.424 11.421 11.197 10.451 10.744 9.705 C 10.291 8.958 9.477 8.585 8.301 8.585 C 7.273 8.585 6.465 8.939 5.877 9.649 C 5.289 10.358 4.996 11.347 4.996 12.616 Z M 33.146 19.036 C 33.146 20.977 33.428 22.407 33.991 23.328 C 33.55 23.502 33.14 23.627 32.761 23.701 C 32.381 23.776 31.983 23.813 31.567 23.813 C 30.685 23.813 30.018 23.639 29.565 23.291 C 29.112 22.942 28.824 22.445 28.702 21.798 C 28.163 22.37 27.453 22.855 26.571 23.253 C 25.69 23.652 24.612 23.851 23.339 23.851 C 22.678 23.851 22.016 23.757 21.355 23.571 C 20.694 23.384 20.094 23.079 19.555 22.656 C 19.017 22.233 18.576 21.667 18.233 20.958 C 17.89 20.249 17.719 19.384 17.719 18.364 C 17.719 17.095 18.019 16.062 18.619 15.266 C 19.219 14.47 19.972 13.841 20.878 13.381 C 21.784 12.921 22.763 12.603 23.816 12.429 C 24.869 12.255 25.837 12.143 26.718 12.093 C 27.012 12.068 27.3 12.056 27.581 12.056 L 28.371 12.056 L 28.371 11.384 C 28.371 10.439 28.12 9.767 27.618 9.369 C 27.116 8.97 26.302 8.771 25.175 8.771 C 24.122 8.771 23.186 8.946 22.365 9.294 C 21.545 9.642 20.743 10.04 19.959 10.488 C 19.617 10.065 19.341 9.599 19.133 9.089 C 18.925 8.579 18.821 8.199 18.821 7.95 C 18.821 7.627 19.011 7.297 19.39 6.961 C 19.77 6.625 20.29 6.327 20.951 6.065 C 21.612 5.804 22.371 5.593 23.229 5.431 C 24.086 5.269 24.992 5.188 25.947 5.188 C 27.269 5.188 28.389 5.325 29.308 5.599 C 30.226 5.872 30.973 6.295 31.548 6.868 C 32.124 7.44 32.534 8.156 32.779 9.014 C 33.024 9.872 33.146 10.874 33.146 12.019 Z M 28.445 14.706 L 27.93 14.706 C 27.759 14.706 27.587 14.719 27.416 14.743 C 26.804 14.793 26.198 14.874 25.598 14.986 C 24.998 15.098 24.465 15.272 24 15.509 C 23.535 15.745 23.155 16.062 22.861 16.46 C 22.567 16.859 22.42 17.369 22.42 17.991 C 22.42 18.687 22.616 19.278 23.008 19.764 C 23.4 20.249 24.061 20.491 24.992 20.491 C 25.457 20.491 25.898 20.429 26.314 20.305 C 26.73 20.18 27.098 20.019 27.416 19.82 C 27.734 19.621 27.985 19.403 28.169 19.166 C 28.353 18.93 28.445 18.712 28.445 18.513 Z M 37.348 20.678 C 37.176 20.18 37.066 19.658 37.017 19.11 C 36.968 18.563 36.944 18.016 36.944 17.468 L 36.944 0.149 L 37.495 0.075 C 37.666 0.05 37.85 0.031 38.046 0.019 C 38.241 0.006 38.437 0 38.633 0 C 39.025 0 39.417 0.037 39.809 0.112 C 40.201 0.187 40.556 0.336 40.874 0.56 C 41.192 0.784 41.449 1.089 41.645 1.474 C 41.841 1.86 41.939 2.364 41.939 2.986 L 41.939 5.599 L 47.082 5.599 L 47.082 9.406 L 41.939 9.406 L 41.939 17.393 C 41.939 19.135 42.637 20.006 44.033 20.006 C 44.376 20.006 44.7 19.95 45.006 19.838 C 45.312 19.726 45.594 19.602 45.851 19.465 C 46.108 19.328 46.323 19.185 46.494 19.036 C 46.665 18.887 46.788 18.774 46.861 18.7 C 47.229 19.247 47.51 19.72 47.706 20.118 C 47.902 20.516 48 20.89 48 21.238 C 48 21.561 47.871 21.879 47.614 22.19 C 47.357 22.501 46.996 22.787 46.531 23.048 C 46.065 23.309 45.502 23.521 44.841 23.683 C 44.18 23.845 43.457 23.925 42.674 23.925 C 41.131 23.925 39.943 23.627 39.111 23.029 C 38.278 22.432 37.691 21.648 37.348 20.678 Z\" fill=\"rgb(18,136,73)\"></path></g></svg>',svgContentId:12512707346,withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tfhzbz hidden-1b6nu7t hidden-szklsp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4ppigs-container\",nodeId:\"wMPOVP37o\",rendersWithMotion:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:true,G3fU6H1iv:\"rgba(230, 245, 236, 0)\",height:\"100%\",id:\"wMPOVP37o\",laHalSIS1:true,layoutId:\"wMPOVP37o\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"Features\",variant:\"DRVuJLtfM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1964ym7-container\",nodeId:\"YQtfGtoEu\",rendersWithMotion:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:true,G3fU6H1iv:\"rgba(230, 245, 236, 0)\",height:\"100%\",id:\"YQtfGtoEu\",laHalSIS1:true,layoutId:\"YQtfGtoEu\",LrOIOnBN1:\"VgrAs1tPs\",mkfwPodue:\"Customers\",variant:\"DRVuJLtfM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8q6for-container\",nodeId:\"FqHMZCJRO\",rendersWithMotion:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:false,G3fU6H1iv:\"rgba(230, 245, 236, 0)\",height:\"100%\",id:\"FqHMZCJRO\",laHalSIS1:false,layoutId:\"FqHMZCJRO\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"How it works?\",nBcXet_2_:\"https://restaurant.eatapp.co/demo?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=How+it+Works\",variant:\"DRVuJLtfM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1773jax-container\",nodeId:\"pxbSX0ELT\",rendersWithMotion:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:true,G3fU6H1iv:\"rgba(230, 245, 236, 0)\",height:\"100%\",id:\"pxbSX0ELT\",laHalSIS1:true,layoutId:\"pxbSX0ELT\",LrOIOnBN1:\"i7gobTYg5\",mkfwPodue:\"Resources\",variant:\"DRVuJLtfM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ulfzqt-container\",nodeId:\"shXwP3xnA\",rendersWithMotion:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:false,G3fU6H1iv:\"rgba(230, 245, 236, 0)\",height:\"100%\",id:\"shXwP3xnA\",laHalSIS1:false,layoutId:\"shXwP3xnA\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"Pricing\",nBcXet_2_:\"https://restaurant.eatapp.co/pricing?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=Pricing\",variant:\"DRVuJLtfM\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12idw54\",\"data-framer-name\":\"Frame 686\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bfsb25-container\",nodeId:\"Z27WfcX30\",rendersWithMotion:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:false,G3fU6H1iv:\"rgba(230, 245, 236, 0)\",height:\"100%\",id:\"Z27WfcX30\",laHalSIS1:false,layoutId:\"Z27WfcX30\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"Log in\",nBcXet_2_:\"https://app.eatapp.co/?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=Log+in\",variant:\"DRVuJLtfM\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g2to7i-container hidden-szklsp\",isModuleExternal:true,nodeId:\"DerqXAdq9\",rendersWithMotion:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(NavbarFilledButton,{height:\"100%\",id:\"DerqXAdq9\",layoutId:\"DerqXAdq9\",link:\"https://restaurant.eatapp.co/schedule-free-eat-app-consultation\",title:\"Request Demo\",variant:\"OtWkfHntQ\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k373w2-container hidden-szklsp\",isModuleExternal:true,nodeId:\"jjuf0d5PY\",rendersWithMotion:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(NavbarFilledButton,{height:\"100%\",id:\"jjuf0d5PY\",layoutId:\"jjuf0d5PY\",link:\"https://admin.eatapp.co/sign_up?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=Try+for+free\",title:\"Try Eat App\",variant:\"ybKfMI6e7\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1ao7zxf-container hidden-hy1i7t\",id:\"1ao7zxf\",nodeId:\"tkVX4bGXk\",rendersWithMotion:true,scopeId:\"ZJEhUhqme\",children:[/*#__PURE__*/_jsx(BurgerMenu,{height:\"100%\",id:\"tkVX4bGXk\",layoutId:\"tkVX4bGXk\",style:{height:\"100%\",width:\"100%\"},tap:tap3bnx0g({overlay}),variant:\"Rbk5jQv1f\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}}}},children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-uysd60\"),\"data-framer-portal-id\":\"1ao7zxf\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"PehhzyAeb\")}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{animate:animation1,exit:animation,initial:animation2,style:{transformPerspective:1200}},LmdC17N7y:{animate:animation1,exit:animation,initial:animation2,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsxs(motion.div,{className:cx(scopingClassNames,\"framer-1kevgnq\"),\"data-framer-name\":\"Frame 2608250\",\"data-framer-portal-id\":\"1ao7zxf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n3lhf8\",\"data-framer-name\":\"Frame 2608247\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1im3o72-container\",inComponentSlot:true,nodeId:\"TXF7Kb3Hl\",rendersWithMotion:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{LrOIOnBN1:\"MKJI2ztRh\"},LmdC17N7y:{LrOIOnBN1:\"MKJI2ztRh\"}},children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:true,G3fU6H1iv:\"rgb(255, 255, 255)\",height:\"100%\",id:\"TXF7Kb3Hl\",laHalSIS1:true,layoutId:\"TXF7Kb3Hl\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"Features\",variant:\"E2lV3XE_W\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bffw7e-container\",inComponentSlot:true,nodeId:\"mnXaLA5Ha\",rendersWithMotion:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{nBcXet_2_:\"https://restaurant.eatapp.co/demo?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=How+it+Works\"},LmdC17N7y:{nBcXet_2_:\"https://restaurant.eatapp.co/demo?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=How+it+Works\"}},children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:false,G3fU6H1iv:\"rgb(255, 255, 255)\",height:\"100%\",id:\"mnXaLA5Ha\",laHalSIS1:true,layoutId:\"mnXaLA5Ha\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"How it works?\",variant:\"E2lV3XE_W\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kgynh6-container\",inComponentSlot:true,nodeId:\"tnwKZOJDT\",rendersWithMotion:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{LrOIOnBN1:\"YMXiF8aKY\"},LmdC17N7y:{LrOIOnBN1:\"YMXiF8aKY\"}},children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:true,G3fU6H1iv:\"rgb(255, 255, 255)\",height:\"100%\",id:\"tnwKZOJDT\",laHalSIS1:true,layoutId:\"tnwKZOJDT\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"Customers\",variant:\"E2lV3XE_W\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15oi7bb-container\",inComponentSlot:true,nodeId:\"NjQXPSWDq\",rendersWithMotion:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{LrOIOnBN1:\"srIahT4c1\"},LmdC17N7y:{LrOIOnBN1:\"srIahT4c1\"}},children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:true,G3fU6H1iv:\"rgb(255, 255, 255)\",height:\"100%\",id:\"NjQXPSWDq\",laHalSIS1:true,layoutId:\"NjQXPSWDq\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"Resources\",variant:\"E2lV3XE_W\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-90frt2-container\",inComponentSlot:true,nodeId:\"FhlMltat7\",rendersWithMotion:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{DiE_lzCqN:false,nBcXet_2_:\"https://restaurant.eatapp.co/pricing?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=Pricing\"},LmdC17N7y:{DiE_lzCqN:false,LrOIOnBN1:\"srIahT4c1\",nBcXet_2_:\"https://restaurant.eatapp.co/pricing?utm_source=Integrations&utm_medium=Nav&utm_campaign=eatapp.co&utm_content=Pricing\"}},children:/*#__PURE__*/_jsx(NavbarButton,{DiE_lzCqN:true,G3fU6H1iv:\"rgb(255, 255, 255)\",height:\"100%\",id:\"FhlMltat7\",laHalSIS1:true,layoutId:\"FhlMltat7\",LrOIOnBN1:\"R5rY2wST5\",mkfwPodue:\"Pricing\",variant:\"E2lV3XE_W\",width:\"100%\"})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mzouyr hidden-1b6nu7t\",\"data-framer-name\":\"Frame 686\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jven2i\",\"data-framer-name\":\"Button\",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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Request demo\"})}),className:\"framer-odmvhv\",\"data-framer-name\":\"Button\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1exryu\",\"data-framer-name\":\"Button\",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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Try for free\"})}),className:\"framer-smmh6f\",\"data-framer-name\":\"Button\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]}),getContainer())})})]})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1huses2\",\"data-framer-name\":\"USP\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w37h09\",\"data-framer-name\":\"Frame 39306\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v0hhi0\",\"data-framer-name\":\"Frame 39294\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1xx8fcm\",\"data-styles-preset\":\"ojXMISvj2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Best restaurant reservation software for 2023\"})})},LmdC17N7y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1x8s5d1\",\"data-styles-preset\":\"VYM6DA27S\",style:{\"--framer-text-alignment\":\"center\"},children:\"Best restaurant reservation software for 2023\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1xx8fcm\",\"data-styles-preset\":\"ojXMISvj2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Best restaurant reservation software for 2023\"})}),className:\"framer-paasbv\",\"data-framer-name\":\"Boost revenue and streamline operations with integrations\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3fp80\",\"data-framer-name\":\"Frame 39304\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LmdC17N7y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Finding the best restaurant reservation software for your business is not easy! Here is a list of software that has been carefully created and analyzed to help you choose the best restaurant reservation solution or an alternative to the reservation software you might already be using.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Finding the best restaurant reservation software for your business is not easy! Here is a list of software that has been carefully created and analyzed to help you choose the best restaurant reservation solution or an alternative to the reservation software you might already be using.\"})}),className:\"framer-19hce7k\",\"data-framer-name\":\"Supercharge Eat App: enhance revenue, efficiency, staff workflows via social media, Google, POS, payments, phones, hotel PMS.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{y:undefined},LmdC17N7y:{y:(componentViewport?.y||0)+0+64+100+0+0+408+0+260}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"200px\",y:(componentViewport?.y||0)+0+64+100+0+30+0+260,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n0lqzo-container\",nodeId:\"ajIkR9ScW\",scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(ButtonLarge,{FUt_CdV5_:\"https://admin.eatapp.co/sign_up?utm_source=Comparisons&utm_medium=Hero&utm_campaign=eatapp.co&utm_content=Start+for+free\",height:\"100%\",id:\"ajIkR9ScW\",layoutId:\"ajIkR9ScW\",nlJMHYalf:\"Start for free\",q04PyOp5x:\"var(--token-9e5a84ad-8927-45d6-aa15-4ddcab981904, rgb(36, 169, 95))\",style:{width:\"100%\"},TDdoU7eHm:true,tU60Onr8w:\"var(--token-bdb78e69-2b22-4efc-bac1-0749eeabd9be, rgb(9, 119, 62))\",variant:\"rpJfo7ONV\",width:\"100%\",XAs4b75Hx:\"var(--token-f474097e-d954-444b-a4b9-4dae117d512b, rgb(18, 136, 73))\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{animate:undefined,initial:undefined,optimized:undefined,style:{}},LmdC17N7y:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1u2f2ae\",\"data-framer-appear-id\":\"1u2f2ae\",\"data-framer-name\":\"Frame 39305\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1466,intrinsicWidth:1920,pixelHeight:1466,pixelWidth:1920,sizes:\"480px\",src:\"https://framerusercontent.com/images/BFityqbmxEPixoCmkY28RJWq60.webp\",srcSet:\"https://framerusercontent.com/images/BFityqbmxEPixoCmkY28RJWq60.webp?scale-down-to=512 512w,https://framerusercontent.com/images/BFityqbmxEPixoCmkY28RJWq60.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/BFityqbmxEPixoCmkY28RJWq60.webp 1920w\"}},LmdC17N7y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1466,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+100+0+0+0+0),pixelHeight:1466,pixelWidth:1920,sizes:\"480px\",src:\"https://framerusercontent.com/images/BFityqbmxEPixoCmkY28RJWq60.webp\",srcSet:\"https://framerusercontent.com/images/BFityqbmxEPixoCmkY28RJWq60.webp?scale-down-to=512 512w,https://framerusercontent.com/images/BFityqbmxEPixoCmkY28RJWq60.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/BFityqbmxEPixoCmkY28RJWq60.webp 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1466,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+100+0+0+0),pixelHeight:1466,pixelWidth:1920,sizes:\"480px\",src:\"https://framerusercontent.com/images/BFityqbmxEPixoCmkY28RJWq60.webp\",srcSet:\"https://framerusercontent.com/images/BFityqbmxEPixoCmkY28RJWq60.webp?scale-down-to=512 512w,https://framerusercontent.com/images/BFityqbmxEPixoCmkY28RJWq60.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/BFityqbmxEPixoCmkY28RJWq60.webp 1920w\"},className:\"framer-17yuhph\",\"data-framer-name\":\"iPad mini 9\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hy4ye\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9nr9xn\",\"data-framer-name\":\"USP\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14x196u\",id:elementId1,ref:ref2}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LmdC17N7y:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:80,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2cqc17\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-bnmj3i\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:275,intrinsicWidth:99,svg:'<svg width=\"99\" height=\"275\" viewBox=\"0 0 99 275\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.7687 200.017C16.7084 197.052 19.5871 194.141 22.4757 191.239C25.3684 188.335 28.2728 185.441 31.1714 182.542C34.1691 179.542 37.1512 176.526 40.1704 173.549C43.0571 170.701 45.8151 167.706 49.1309 164.794C50.5698 166.125 51.7172 167.118 52.7884 168.188C62.6944 178.073 72.5834 187.976 82.4916 197.859C83.3542 198.72 84.3211 199.475 84.4898 199.622C88.0401 196.519 91.2856 193.684 94.958 190.475C87.27 182.852 79.8208 175.322 72.2727 167.883C64.6305 160.35 57.1326 152.67 49.3846 144.866C34.0921 160.115 18.9661 175.198 3.93782 190.184C7.28062 193.528 10.3677 196.614 13.7687 200.017ZM98.1717 190.377C97.8018 191.023 97.6154 191.583 97.2433 191.961C93.3845 195.882 89.4953 199.773 85.4686 203.821C81.8154 201.215 79.1603 197.908 76.1404 195.009C73.1826 192.17 70.3285 189.224 67.4284 186.325C64.4292 183.327 61.4338 180.323 58.4287 177.329C55.545 174.456 52.6509 171.593 49.5962 168.561C36.9648 179.813 25.5378 191.85 13.6806 203.483C12.8992 203.095 12.205 202.88 11.6757 202.459C10.7955 201.758 9.99462 200.949 9.20672 200.142C6.20024 197.059 3.21243 193.958 0 190.639C5.01937 184.476 11.0368 179.596 16.3682 174.058C21.6343 168.589 27.0019 163.217 32.3655 157.842C37.8112 152.386 43.3049 146.979 48.96 141.368C49.8692 141.997 50.7429 142.428 51.3962 143.08C66.4127 158.056 81.4085 173.054 96.3903 188.066C97.0591 188.735 97.5592 189.574 98.1717 190.377Z\" fill=\"#128849\"/>\\n<path d=\"M49.5355 74.7138C34.5286 89.72 19.3851 104.863 4.19208 120.055C7.17261 122.891 10.479 126.038 13.8182 129.215C25.4949 117.606 37.4005 105.768 49.4926 93.7452C55.6685 99.8826 61.51 105.708 67.3744 111.509C73.3047 117.378 78.9834 123.511 85.325 129.226C88.578 125.689 92.0151 122.996 94.4831 119.643C79.1957 104.362 64.12 89.2924 49.5355 74.7138ZM97.6716 119.881C93.6248 123.938 89.5412 128.033 85.288 132.298C82.1809 131.408 80.4046 128.526 78.123 126.401C73.7405 122.32 69.6249 117.952 65.3873 113.715C61.4486 109.777 57.4869 105.863 53.5541 101.919C52.1826 100.544 50.8657 99.1155 49.2781 97.4539C37.4982 109.201 25.7331 120.934 14.0761 132.558C11.0144 130.936 3.31573 123.474 0.69106 119.864C16.9974 103.559 33.2628 87.2948 49.1886 71.3698C65.0618 87.2527 81.322 103.521 97.6716 119.881Z\" fill=\"#128849\"/>\\n<path d=\"M13.8485 271.097C25.5718 259.381 37.3118 247.648 49.1671 235.799C61.2311 247.857 72.9806 259.599 84.8168 271.428C88.2872 267.933 91.6526 264.795 94.5474 261.589C79.3474 246.373 64.4907 231.504 49.2115 216.21C41.5456 223.372 34.1476 231.108 26.5528 238.639C18.934 246.193 11.3073 253.74 3.59099 261.383C7.09638 264.704 10.3634 267.797 13.8485 271.097ZM98.2893 261.434C93.6959 266.086 89.4576 270.377 84.8922 275C72.9806 263.099 61.2377 251.365 49.1656 239.304C37.2881 251.178 25.4675 262.995 13.971 274.488C9.41617 269.858 5.08572 265.456 0.566706 260.862C1.2162 260.16 2.12226 259.113 3.09827 258.136C17.2798 243.941 31.4695 229.753 45.6619 215.57C47.9898 213.242 50.3003 213.218 52.5931 215.497C66.8862 229.78 81.1747 244.069 95.4581 258.363C96.34 259.247 97.1537 260.198 98.2893 261.434Z\" fill=\"#128849\"/>\\n<path d=\"M49.2004 3.36341C48.9297 3.42631 48.6248 3.43068 48.3963 3.56534C48.0359 3.77693 47.6964 4.04551 47.4012 4.34217C32.9462 18.8386 18.4968 33.3395 4.05264 47.8471C3.96703 47.9329 3.94422 48.0986 3.9291 48.2325C3.91352 48.3672 3.94423 48.507 3.95299 48.6231C7.17044 51.7925 10.376 54.9492 13.8066 58.3286C25.4934 46.5924 37.2392 34.7977 49.1841 22.8025C55.1987 28.8112 61.0779 34.6875 66.9609 40.5615C72.9015 46.494 78.8451 52.4242 84.3004 57.8692C87.9165 54.5023 91.1976 51.447 94.4631 48.4049C91.5483 44.5306 51.8319 5.03095 49.2004 3.36341ZM48.9577 26.0776C36.9966 38.0609 25.2411 49.8378 13.864 61.2353C9.43 56.8675 5.03051 52.5337 0.918603 48.4833C16.8865 32.5206 33.0224 16.3899 49.4172 0.000244141C49.662 0.142257 50.4832 0.416748 51.0322 0.96347C66.4371 16.3232 81.8154 31.7098 97.1885 47.1014C97.4755 47.3885 97.6539 47.7849 98.1236 48.4922C93.9667 52.9731 89.4805 57.2027 84.8471 61.9352C72.9844 50.0835 61.2444 38.3547 48.9577 26.0776Z\" fill=\"#128849\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-180cpnq\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12b8z2z\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:151,intrinsicWidth:275,svg:'<svg width=\"275\" height=\"151\" viewBox=\"0 0 275 151\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M181.987 36.1933C179.63 34.8822 178.214 33.3107 179.107 30.7308C179.619 29.255 180.935 28.83 182.418 28.9659C183.968 29.1073 184.962 29.9679 185.097 31.5054C185.183 32.4808 185.25 33.7282 184.739 34.4167C184.107 35.2667 182.864 35.6631 181.987 36.1933Z\" fill=\"#128849\"/>\\n<path d=\"M241.961 36.255C238.648 33.47 237.994 31.5532 239.588 29.8585C240.727 28.6472 243.04 28.6196 244.217 29.8033C245.851 31.446 245.229 33.3819 241.961 36.255Z\" fill=\"#128849\"/>\\n<path d=\"M33.1844 7.32104C29.8797 4.5651 29.2145 2.62889 30.8022 0.931859C31.9425 -0.287353 34.248 -0.314849 35.4293 0.876864C37.0703 2.5324 36.4469 4.48002 33.1844 7.32104Z\" fill=\"#128849\"/>\\n<path d=\"M125.986 90.0806C125.913 91.7413 124.372 93.1024 122.565 93.1035C120.653 93.1046 118.899 91.3152 119.118 89.5876C119.338 87.8535 120.824 86.7379 122.801 86.825C124.544 86.9026 126.058 88.4485 125.986 90.0806Z\" fill=\"#128849\"/>\\n<path d=\"M89.8952 3.27739C90.0068 1.37905 91.0598 0.0789011 92.5091 0.0524335C94.1092 0.0233839 96.2375 2.16297 96.1705 3.73445C96.1026 5.35523 93.8712 7.35215 92.3082 7.19234C90.7048 7.02891 89.7655 5.50517 89.8952 3.27739Z\" fill=\"#128849\"/>\\n<path d=\"M118.913 3.15958C120.031 1.35929 121.012 -0.297737 123.282 0.166026C124.681 0.45241 126.041 2.78449 125.62 4.14118C125.17 5.58815 124.543 7.17313 122.698 7.17883C120.011 7.18765 119.94 4.72283 118.913 3.15958Z\" fill=\"#128849\"/>\\n<path d=\"M155.229 3.67128C155.212 5.8514 154.036 7.33203 152.412 7.21634C151.004 7.11518 149.089 5.25574 148.953 3.85598C148.803 2.3068 150.842 0.109104 152.482 0.0515149C154.082 -0.00503296 155.245 1.52806 155.229 3.67128Z\" fill=\"#128849\"/>\\n<path d=\"M185.188 3.75622C185.143 5.96792 183.946 7.39103 182.289 7.20529C180.839 7.04291 178.981 5.16273 178.896 3.7723C178.801 2.21229 180.907 0.048777 182.523 0.0451431C184.113 0.0415093 185.233 1.60107 185.188 3.75622Z\" fill=\"#128849\"/>\\n<path d=\"M212.138 7.29403C208.717 4.66156 208.005 2.83177 209.528 1.03143C210.594 -0.230844 212.901 -0.356914 214.156 0.778315C215.881 2.33936 215.312 4.36325 212.138 7.29403Z\" fill=\"#128849\"/>\\n<path d=\"M33.3163 36.2251C29.8859 33.5666 29.1782 31.7582 30.6948 29.9646C31.7547 28.7098 34.0722 28.5759 35.3256 29.6969C37.0537 31.2429 36.4929 33.2542 33.3163 36.2251Z\" fill=\"#128849\"/>\\n<path d=\"M271.123 0.0815295C272.687 -0.0891555 274.914 1.89063 274.994 3.52437C275.061 4.84689 273.327 6.86449 271.856 7.17786C270.222 7.52508 268.861 6.14854 268.719 4.00324C268.57 1.7848 269.506 0.257931 271.123 0.0815295Z\" fill=\"#128849\"/>\\n<path d=\"M3.33147 36.2262C-0.0557997 33.5411 -0.757812 31.7008 0.762308 29.9391C1.83476 28.696 4.14867 28.5886 5.39026 29.7245C7.11168 31.2991 6.53982 33.2893 3.33147 36.2262Z\" fill=\"#128849\"/>\\n<path d=\"M63.4489 36.0879C61.0571 35.6098 59.6121 34.5377 59.9308 31.9101C60.1487 30.1165 61.0125 29.1475 62.8507 28.9509C64.6219 28.7618 65.252 29.9306 65.8343 31.2099C67.0381 33.8598 64.9896 34.8458 63.4489 36.0879Z\" fill=\"#128849\"/>\\n<path d=\"M211.826 36.2346C208.623 33.2871 208.051 31.3045 209.76 29.7277C210.998 28.5865 213.309 28.6907 214.388 29.936C215.923 31.7093 215.23 33.539 211.826 36.2346Z\" fill=\"#128849\"/>\\n<path d=\"M3.04866 7.3604C1.41861 5.95182 -0.829995 5.05116 0.432281 2.4576C1.08974 1.10765 2.25753 -0.305079 3.98162 0.186756C4.89369 0.447204 5.65622 1.60675 6.2321 2.5209C6.54034 3.01014 6.38353 3.84959 6.2954 4.51211C6.23256 4.98474 6.0594 5.59493 5.71705 5.84753C4.92677 6.43179 4.00385 6.83588 3.04866 7.3604Z\" fill=\"#128849\"/>\\n<path d=\"M63.4765 7.13224C61.2388 6.73016 59.6674 5.83987 59.9203 3.1768C60.0627 1.67697 60.5907 0.55264 62.0942 0.132919C63.3905 -0.229213 65.5229 1.12438 66.0234 2.72336C66.7512 5.04816 64.9726 6.02614 63.4765 7.13224Z\" fill=\"#128849\"/>\\n<path d=\"M242.378 7.23755C239.474 6.52205 238.352 5.14875 238.783 2.68697C239.048 1.1804 239.939 -0.168058 241.375 0.169168C242.667 0.47319 244.192 1.58138 244.768 2.75079C245.863 4.97968 243.654 5.92126 242.378 7.23755Z\" fill=\"#128849\"/>\\n<path d=\"M151.694 36.1158C150.136 34.846 148.111 33.7675 149.275 31.5851C149.886 30.4408 151.426 29.3803 152.716 29.1201C154.179 28.8247 154.983 30.2262 155.219 31.7233C155.615 34.2287 154.378 35.5048 151.694 36.1158Z\" fill=\"#128849\"/>\\n<path d=\"M119.001 148.072C119.68 145.847 120.657 143.913 122.761 144.297C124.102 144.542 125.18 146.228 126.322 147.222C123.045 152.045 122.635 152.076 119.001 148.072Z\" fill=\"#128849\"/>\\n<path d=\"M93.5239 36.1666C90.5967 35.444 89.5012 34.0532 89.9166 31.6063C90.1738 30.0942 91.077 28.7619 92.5113 29.1039C93.7991 29.411 95.3121 30.5203 95.888 31.6891C96.9887 33.9204 94.7575 34.8479 93.5239 36.1666Z\" fill=\"#128849\"/>\\n<path d=\"M126.018 119.214C124.92 121.144 123.445 122.743 121.156 121.802C120.205 121.411 119.216 119.72 119.256 118.656C119.306 117.298 120.067 115.828 122.085 115.698C124.761 115.525 125.637 117.023 126.018 119.214Z\" fill=\"#128849\"/>\\n<path d=\"M66.238 61.1542C66.1763 63.0998 64.9534 64.2282 62.9728 64.1665C60.9965 64.106 59.8861 62.9128 59.9499 60.9184C60.0137 58.9453 61.1931 57.8615 63.2161 57.9124C65.2137 57.9624 66.3017 59.1291 66.238 61.1542Z\" fill=\"#128849\"/>\\n<path d=\"M271.148 144.156C272.644 144.03 274.738 145.584 274.954 146.98C275.191 148.52 273.309 150.746 271.62 150.925C270.147 151.081 268.935 149.863 268.723 148.015C268.488 145.966 269.542 144.292 271.148 144.156Z\" fill=\"#128849\"/>\\n<path d=\"M3.24785 144.656C5.20339 144.673 6.37416 145.888 6.33583 147.857C6.29789 149.824 5.10313 150.981 3.13644 150.954C1.16021 150.929 0.0218722 149.75 0.0446954 147.755C0.0675185 145.798 1.26501 144.639 3.24785 144.656Z\" fill=\"#128849\"/>\\n<path d=\"M33.2067 144.655C35.1559 144.688 36.327 145.913 36.2875 147.875C36.2485 149.837 35.0476 150.988 33.0719 150.958C31.0983 150.926 29.9689 149.746 29.9932 147.739C30.0171 145.777 31.2218 144.621 33.2067 144.655Z\" fill=\"#128849\"/>\\n<path d=\"M241.983 115.743C243.939 115.777 245.098 116.985 245.065 118.958C245.033 120.922 243.843 122.06 241.852 122.033C239.872 122.006 238.743 120.832 238.767 118.823C238.792 116.868 240 115.71 241.983 115.743Z\" fill=\"#128849\"/>\\n<path d=\"M3.11968 57.9125C5.1177 57.8828 6.29839 59.0037 6.34048 60.9694C6.38302 62.9595 5.25304 64.1294 3.25976 64.1612C1.26596 64.1921 0.0743016 63.0594 0.0406512 61.1033C0.00640584 59.0951 1.11965 57.9422 3.11968 57.9125Z\" fill=\"#128849\"/>\\n<path d=\"M275 32.5753C275.014 33.9481 273.073 35.7512 271.495 35.8308C270.161 35.8967 268.788 34.3943 268.718 32.792C268.622 30.5904 269.629 29.0828 271.25 28.9966C272.867 28.9106 274.983 30.9294 275 32.5753Z\" fill=\"#128849\"/>\\n<path d=\"M36.2921 60.9342C36.3425 62.9329 35.2239 64.1177 33.2425 64.1622C31.2446 64.2069 30.0378 63.0827 29.9953 61.1362C29.9512 59.1247 31.0505 57.9624 33.0443 57.9124C35.0418 57.8614 36.2424 58.9792 36.2921 60.9342Z\" fill=\"#128849\"/>\\n<path d=\"M212.215 144.655C214.119 144.785 215.246 146.108 215.113 148.056C214.983 149.968 213.67 151.09 211.719 150.96C209.829 150.834 208.694 149.501 208.814 147.555C208.931 145.673 210.279 144.523 212.215 144.655Z\" fill=\"#128849\"/>\\n<path d=\"M241.965 144.654C243.914 144.69 245.091 145.907 245.065 147.863C245.041 149.832 243.85 150.984 241.866 150.96C239.902 150.938 238.756 149.749 238.767 147.75C238.78 145.786 239.985 144.619 241.965 144.654Z\" fill=\"#128849\"/>\\n<path d=\"M212.201 115.743C214.105 115.86 215.241 117.177 215.118 119.124C214.997 121.033 213.696 122.154 211.737 122.035C209.842 121.919 208.7 120.6 208.815 118.657C208.926 116.766 210.253 115.624 212.201 115.743Z\" fill=\"#128849\"/>\\n<path d=\"M6.34209 90.0498C6.2965 91.9996 5.09486 93.128 3.10625 93.0865C1.10889 93.0451 0.00595012 91.8891 0.0453806 89.8799C0.0842268 87.9131 1.26907 86.7985 3.27642 86.8388C5.26451 86.8792 6.38834 88.0555 6.34209 90.0498Z\" fill=\"#128849\"/>\\n<path d=\"M185.171 118.94C185.135 120.908 183.942 122.059 181.969 122.031C179.987 122.004 178.846 120.826 178.873 118.837C178.898 116.883 180.108 115.713 182.078 115.738C184.034 115.763 185.207 116.977 185.171 118.94Z\" fill=\"#128849\"/>\\n<path d=\"M118.964 31.9314C120.164 30.2049 121.171 28.3561 123.514 29.2167C125.111 29.8043 125.954 31.4459 125.576 32.9165C125.294 34.0066 123.966 35.423 122.919 35.6004C120.277 36.0466 119.718 33.7495 118.964 31.9314Z\" fill=\"#128849\"/>\\n<path d=\"M66.2381 118.8C66.2837 120.799 65.1607 121.986 63.1833 122.03C61.2027 122.074 60.0074 120.946 59.948 118.977C59.8884 117.011 61.0423 115.787 62.9995 115.742C64.9727 115.696 66.1945 116.849 66.2381 118.8Z\" fill=\"#128849\"/>\\n<path d=\"M36.2896 118.796C36.3317 120.798 35.2075 121.987 33.2338 122.03C31.2531 122.072 30.0473 120.939 29.9933 118.981C29.9389 117.01 31.0881 115.793 33.0486 115.745C35.0202 115.696 36.2491 116.853 36.2896 118.796Z\" fill=\"#128849\"/>\\n<path d=\"M6.33949 118.796C6.37944 120.799 5.25634 121.987 3.28316 122.029C1.28586 122.071 0.0940137 120.95 0.0447229 118.984C-0.00456791 117.008 1.13846 115.797 3.09794 115.747C5.07728 115.697 6.3011 116.849 6.33949 118.796Z\" fill=\"#128849\"/>\\n<path d=\"M245.067 89.7619C245.17 91.7605 244.083 92.9888 242.123 93.0865C240.138 93.1853 238.874 92.0845 238.768 90.1678C238.66 88.2074 239.781 86.9419 241.717 86.8378C243.698 86.7315 244.967 87.8397 245.067 89.7619Z\" fill=\"#128849\"/>\\n<path d=\"M215.12 90.0613C215.073 92.0058 213.865 93.1321 211.873 93.0874C209.878 93.0428 208.772 91.8772 208.817 89.868C208.86 87.9193 210.068 86.7909 212.064 86.8366C214.048 86.8822 215.168 88.0638 215.12 90.0613Z\" fill=\"#128849\"/>\\n<path d=\"M181.945 86.8376C183.941 86.8067 185.137 87.9394 185.17 89.8903C185.203 91.8942 184.089 93.0523 182.092 93.0874C180.09 93.1225 178.908 92.0025 178.871 90.0379C178.835 88.0362 179.957 86.8684 181.945 86.8376Z\" fill=\"#128849\"/>\\n<path d=\"M215.12 61.1203C215.081 63.0626 213.869 64.2027 211.882 64.1634C209.892 64.124 208.771 62.9489 208.819 60.9513C208.866 58.9909 210.058 57.8688 212.053 57.9092C214.053 57.9486 215.16 59.1089 215.12 61.1203Z\" fill=\"#128849\"/>\\n<path d=\"M63.1736 86.8397C65.1658 86.8748 66.2762 88.0362 66.238 90.0443C66.2007 92.0047 65.0118 93.1257 63.0121 93.0874C61.0167 93.0503 59.9095 91.8932 59.9446 89.8817C59.9786 87.9182 61.1601 86.8047 63.1736 86.8397Z\" fill=\"#128849\"/>\\n<path d=\"M36.2932 89.8734C36.3388 91.8826 35.2296 93.0471 33.2343 93.0875C31.2332 93.1268 30.0373 92.0091 29.9938 90.0582C29.9486 88.0596 31.0657 86.8823 33.0507 86.8377C35.0419 86.7931 36.249 87.9236 36.2932 89.8734Z\" fill=\"#128849\"/>\\n<path d=\"M269.249 63.8626C268.61 59.1609 269.2 57.9157 271.862 57.9177C273.411 57.9188 274.831 59.4595 274.974 61.2977C275.137 63.3855 273.581 64.1283 269.249 63.8626Z\" fill=\"#128849\"/>\\n<path d=\"M245.066 60.7781C245.199 62.7502 244.1 64.0369 242.176 64.1644C240.2 64.294 238.891 63.1932 238.766 61.2977C238.639 59.3458 239.753 58.0442 241.664 57.9103C243.639 57.7722 244.938 58.8666 245.066 60.7781Z\" fill=\"#128849\"/>\\n<path d=\"M185.174 61.2944C185.058 63.1858 183.746 64.2897 181.768 64.1644C179.845 64.0412 178.748 62.7607 178.874 60.7813C178.995 58.8666 180.286 57.7754 182.27 57.9114C184.176 58.0421 185.296 59.3458 185.174 61.2944Z\" fill=\"#128849\"/>\\n<path d=\"M154.837 63.7117C150.55 64.1846 148.918 63.5215 148.938 61.49C148.957 59.5327 150.677 57.7509 152.391 57.9135C154.803 58.1419 155.228 59.0833 154.837 63.7117Z\" fill=\"#128849\"/>\\n<path d=\"M119.001 60.8025C122.441 56.9487 122.684 56.9477 126.037 60.7261C125.54 62.271 125.399 63.988 123.074 64.2069C120.677 64.4311 119.69 63.1645 119.001 60.8025Z\" fill=\"#128849\"/>\\n<path d=\"M269.296 115.916C270.472 115.849 271.334 115.649 272.139 115.785C273.765 116.058 275.258 117.99 274.759 119.354C274.332 120.518 273.96 121.967 272.165 122.044C270.246 122.125 268.902 121.212 268.767 119.206C268.695 118.126 269.104 117.014 269.296 115.916Z\" fill=\"#128849\"/>\\n<path d=\"M96.093 148.052C95.1707 149.65 94.1699 151.269 91.8971 150.826C90.4796 150.549 88.9963 148.155 89.5817 146.878C89.9972 145.973 91.0183 145.006 91.9554 144.75C93.9732 144.198 94.4344 144.708 96.093 148.052Z\" fill=\"#128849\"/>\\n<path d=\"M154.865 145.176C155.185 149.361 154.443 151.025 152.455 150.941C150.863 150.874 148.878 148.769 148.942 147.218C149.023 145.234 150.703 144.607 154.865 145.176Z\" fill=\"#128849\"/>\\n<path d=\"M90.2757 63.7096C89.8687 59.0928 90.5179 57.8603 93.1338 57.9177C94.6479 57.9506 96.2035 59.7814 96.0398 61.339C95.821 63.4407 94.2145 64.1526 90.2757 63.7096Z\" fill=\"#128849\"/>\\n<path d=\"M90.1525 115.984C91.4786 115.874 92.3137 115.676 93.1148 115.768C94.6928 115.951 96.38 117.842 95.9773 119.165C95.6139 120.361 95.2483 121.8 93.544 122.03C91.7016 122.279 90.264 121.36 89.958 119.402C89.8092 118.451 90.0537 117.44 90.1525 115.984Z\" fill=\"#128849\"/>\\n<path d=\"M155.21 89.8724C155.254 91.9145 154.122 93.078 152.086 93.0876C150.31 93.095 148.93 91.9326 148.938 90.4323C148.945 88.7832 150.485 86.9206 151.897 86.8494C153.951 86.7464 155.168 87.8567 155.21 89.8724Z\" fill=\"#128849\"/>\\n<path d=\"M62.5106 150.935C61.0529 150.88 59.9319 149.477 59.9489 147.73C59.9691 145.756 61.1613 144.614 63.1589 144.656C64.8579 144.693 66.2539 145.931 66.2221 147.374C66.186 148.986 64.0928 150.994 62.5106 150.935Z\" fill=\"#128849\"/>\\n<path d=\"M181.805 144.655C183.771 144.538 185.073 145.671 185.172 147.585C185.262 149.326 184.214 150.766 182.748 150.916C181.186 151.075 179.05 149.188 178.903 147.517C178.774 146.043 180.076 144.758 181.805 144.655Z\" fill=\"#128849\"/>\\n<path d=\"M149.067 119.025C148.984 117.396 150.588 115.708 152.183 115.746C153.944 115.79 155.044 116.789 155.211 118.498C155.401 120.442 154.317 121.828 152.445 122.036C150.876 122.21 149.153 120.674 149.067 119.025Z\" fill=\"#128849\"/>\\n<path d=\"M96.0409 89.8266C96.1195 91.464 94.5321 93.1184 92.9341 93.0865C91.1246 93.0504 90.113 92.1355 89.908 90.3515C89.6838 88.3986 90.7592 87.0428 92.6621 86.8346C94.2495 86.6614 95.9623 88.1786 96.0409 89.8266Z\" fill=\"#128849\"/>\\n<path d=\"M271.731 93.0832C269.751 93.0238 268.661 91.8422 268.723 89.8255C268.785 87.8482 269.984 86.7623 272.01 86.8473C273.313 86.9014 274.803 88.4687 274.861 89.8457C274.93 91.4937 273.346 93.1321 271.731 93.0832Z\" fill=\"#128849\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lrvkmy\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-cpht8q\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:92,intrinsicWidth:275,svg:'<svg width=\"275\" height=\"92\" viewBox=\"0 0 275 92\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M274.245 66.7834C275.173 69.5353 275.205 70.7432 273.417 71.7921C264.571 76.9798 255.558 81.9401 247.101 87.7099C241.848 91.2941 238.024 90.8264 232.94 87.38C224.476 81.6441 215.399 76.8136 206.003 71.2603C194.862 77.8652 183.437 84.64 171.808 91.5336C165.615 87.9274 159.689 84.5459 153.835 81.0456C149.142 78.2416 144.508 75.3362 139.907 72.3841C138.25 71.3207 136.845 71.3197 135.169 72.364C127.05 77.4212 118.899 82.428 110.717 87.381C108.519 88.7103 106.169 89.7857 103.589 91.1352C91.4556 85.9091 81.0471 77.2933 68.8753 71.3243C63.0288 74.8136 57.1869 78.3046 51.3395 81.7884C46.6415 84.587 41.9086 87.3307 37.2481 90.1913C35.3833 91.3353 33.715 91.1316 31.9681 90.0644C22.4897 84.2717 12.9959 78.5029 3.5304 72.6884C2.25855 71.9072 1.11832 70.9095 0 70.0744C0.767475 67.4367 1.96891 67.0667 3.92231 68.2635C9.7469 71.8341 15.6163 75.3325 21.461 78.873C25.9799 81.6103 30.487 84.3687 35.0489 87.148C44.0256 81.5893 52.5354 75.8506 61.4875 70.914C69.7369 66.3649 68.118 65.6075 76.6443 70.9241C85.3442 76.3495 94.1994 81.5281 103.426 87.0785C114.622 80.2882 125.978 73.4011 137.529 66.3951C148.832 73.2055 160.214 80.0652 171.8 87.0466C183.229 80.1695 194.638 73.3042 206.121 66.3951C217.405 73.2548 228.494 79.9949 239.922 86.9415C251.484 81.0365 262.139 73.0045 274.245 66.7834Z\" fill=\"#128849\"/>\\n<path d=\"M240.188 58.2252C237.451 56.6792 234.459 55.0812 231.56 53.3306C224.103 48.8263 216.693 44.2443 209.252 39.7125C207.065 38.3804 205.185 38.1667 202.668 39.7756C193.888 45.3873 184.864 50.6162 175.911 55.9556C174.595 56.7395 173.165 57.3325 171.59 58.1118C166.454 55.1588 161.246 52.2379 156.112 49.1927C150.675 45.9684 145.272 42.6847 139.93 39.3068C138.026 38.1027 136.613 38.449 134.777 39.5673C124.998 45.5179 115.122 51.3115 105.275 57.1479C104.696 57.4905 104.059 57.7363 103.207 58.1429C97.347 54.7505 91.4227 51.3617 85.5396 47.9017C81.1248 45.3041 76.7118 42.6957 72.3975 39.9373C69.9343 38.3622 67.8175 38.3868 65.3113 39.9556C56.1911 45.6678 46.9767 51.2293 37.7725 56.8063C36.7748 57.4111 35.6137 57.7463 34.4881 58.2243C23.97 51.93 13.5643 45.7208 3.18696 39.464C2.18009 38.8565 1.13122 38.0917 0.521821 37.1333C0.113397 36.4891 0.444084 35.3745 0.444084 33.6257C13.0782 39.4814 23.3368 47.8925 35.1696 53.8715C46.5228 46.9734 57.8767 40.0744 69.2563 33.1598C80.7063 40.1237 91.9281 46.9496 103.524 54.0022C114.741 47.1196 126.064 40.1712 137.593 33.0967C148.903 40.0095 160.111 46.8601 171.794 54.0013C182.923 47.2082 194.262 40.2881 206.019 33.1114C217.096 39.898 228.295 46.7596 239.917 53.8807C251.372 47.8807 262.22 40.1977 273.94 33.7061C274.88 37.1497 274.661 37.7929 272.33 39.2749C269.592 41.0163 266.866 42.7788 264.065 44.4142C256.254 48.9761 248.407 53.4768 240.188 58.2252Z\" fill=\"#128849\"/>\\n<path d=\"M103.419 20.7559C114.796 13.8386 126.028 7.00985 137.553 0.00303938C148.932 6.93769 160.283 13.855 171.78 20.8628C183.053 13.9747 194.267 7.12132 205.921 0.000244141C217.194 6.82069 228.581 13.7097 240.146 20.7065C245.94 17.2703 251.597 13.7965 257.368 10.5265C262.93 7.37444 267.851 3.01442 274.157 0.919425C275.827 4.01859 273.818 5.19256 272.188 6.24608C269.177 8.19218 266.017 9.90618 262.924 11.7244C256.291 15.6257 249.666 19.5417 243.023 23.4265C242.002 24.0241 240.907 24.4955 239.935 24.9797C229.47 18.7303 219.206 12.596 208.937 6.4717C206.871 5.24007 205.112 5.17616 202.796 6.6051C192.615 12.8883 182.243 18.8637 171.709 25.0866C161.642 19.0282 151.542 12.977 141.476 6.87099C138.906 5.31229 136.876 5.15241 134.003 6.97973C124.632 12.9414 114.938 18.3968 105.361 24.0341C104.779 24.3768 104.134 24.6106 103.377 24.9597C98.2259 22.0168 93.0061 19.1131 87.8659 16.0752C82.4241 12.8582 77.0024 9.60009 71.6877 6.17939C69.5104 4.77778 67.738 5.53519 65.9463 6.57499C62.8435 8.37671 59.8447 10.3557 56.7593 12.1894C49.7022 16.384 42.6196 20.5338 35.1988 24.9075C33.8247 24.247 32.0786 23.5599 30.4843 22.617C21.5067 17.3031 12.5492 11.9555 3.63001 6.54387C2.35454 5.77008 1.23891 4.66725 0.239364 3.54709C-0.0191924 3.25656 0.302403 2.2433 0.619461 1.72072C0.807666 1.40911 1.59988 1.16702 1.95895 1.30772C3.54778 1.929 5.1695 2.55213 6.61491 3.44114C14.3344 8.18576 21.9974 13.0236 29.6968 17.7993C31.2957 18.7906 32.9704 19.6585 34.8352 20.7111C39.9462 17.6568 45.0891 14.6124 50.2028 11.5197C55.4673 8.3365 60.7576 5.19078 65.9289 1.86137C68.4286 0.252419 70.392 0.515576 72.8717 2.09529C82.3828 8.15649 92.0458 13.9802 101.659 19.8806C102.229 20.2296 102.858 20.4791 103.419 20.7559Z\" fill=\"#128849\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19qviw6\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kcszb7\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Y3LMafGNW\",data:Comparison,type:\"Collection\"},select:[{collection:\"Y3LMafGNW\",name:\"UdcTt04Fg\",type:\"Identifier\"},{collection:\"Y3LMafGNW\",name:\"IdNkOMk8T\",type:\"Identifier\"},{collection:\"Y3LMafGNW\",name:\"WM5JX6yOg\",type:\"Identifier\"},{collection:\"Y3LMafGNW\",name:\"LMsmaRcIX\",type:\"Identifier\"},{collection:\"Y3LMafGNW\",name:\"mDkhRpqfA\",type:\"Identifier\"},{collection:\"Y3LMafGNW\",name:\"phG3Hdm3V\",type:\"Identifier\"},{collection:\"Y3LMafGNW\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idY3LMafGNW,IdNkOMk8T:IdNkOMk8TY3LMafGNW,LMsmaRcIX:LMsmaRcIXY3LMafGNW,mDkhRpqfA:mDkhRpqfAY3LMafGNW,phG3Hdm3V:phG3Hdm3VY3LMafGNW,UdcTt04Fg:UdcTt04FgY3LMafGNW,WM5JX6yOg:WM5JX6yOgY3LMafGNW},index)=>{UdcTt04FgY3LMafGNW??=\"\";LMsmaRcIXY3LMafGNW??=\"\";mDkhRpqfAY3LMafGNW??=\"\";phG3Hdm3VY3LMafGNW??=\"\";const textContent=suffix(suffix(LMsmaRcIXY3LMafGNW,\" vs \"),mDkhRpqfAY3LMafGNW);const textContent1=suffix(suffix(suffix(prefix(LMsmaRcIXY3LMafGNW,\"A side-by-side, detailed comparison between \"),\" & \"),mDkhRpqfAY3LMafGNW),\".\");return /*#__PURE__*/_jsx(LayoutGroup,{id:`Y3LMafGNW-${idY3LMafGNW}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{phG3Hdm3V:phG3Hdm3VY3LMafGNW},children:/*#__PURE__*/_jsx(MotionDivWithClass3tiwg1,{className:\"framer-3tiwg1\",children:/*#__PURE__*/_jsx(Link,{href:UdcTt04FgY3LMafGNW,motionChild:true,nodeId:\"jqQyC47qn\",openInNewTab:false,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LmdC17N7y:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-yxdkiu framer-19xlksj\",\"data-framer-name\":\"Post\",whileHover:animation5,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vzy7s3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-133vc06\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-kjjbti\",\"data-framer-name\":\"Frame 2608441\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(IdNkOMk8TY3LMafGNW)}},LmdC17N7y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+980+0+0+40+21+0+0+353808+0+0+0+31+0+30),sizes:\"90px\",...toResponsiveImage(IdNkOMk8TY3LMafGNW)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+632+0+0+100+21+0+0+0+0+0+0+31+0+30),sizes:\"90px\",...toResponsiveImage(IdNkOMk8TY3LMafGNW)},className:\"framer-szr80m\",\"data-framer-name\":\"opentable_logo_icon_170879 2\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-a4s2x3\",\"data-framer-name\":\"Frame 2608442\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(WM5JX6yOgY3LMafGNW)}},LmdC17N7y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+980+0+0+40+21+0+0+353808+0+0+0+31+0+30),sizes:\"90px\",...toResponsiveImage(WM5JX6yOgY3LMafGNW)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+632+0+0+100+21+0+0+0+0+0+0+31+0+30),sizes:\"90px\",...toResponsiveImage(WM5JX6yOgY3LMafGNW)},className:\"framer-1wzvwn6\",\"data-framer-name\":\"download 1\"})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xz4int\",\"data-framer-name\":\"Leading content\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z4lwnq\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\" vs \"})}),className:\"framer-ud1ex7\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.25px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(85, 85, 85)\"},children:\"A side-by-side, detailed comparison between  & \"})}),className:\"framer-igedpq\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})})},idY3LMafGNW);})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f2fqtl\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Tcpo7aVJ9\",webPageId:\"ZJEhUhqme\"},implicitPathVariables:undefined},{href:{hash:\":Tcpo7aVJ9\",webPageId:\"ZJEhUhqme\"},implicitPathVariables:undefined},{href:{hash:\":Tcpo7aVJ9\",webPageId:\"ZJEhUhqme\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18dlxts-container\",nodeId:\"qTP3W1TYx\",rendersWithMotion:true,scopeId:\"ZJEhUhqme\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{eujYWSGst:resolvedLinks[1]},LmdC17N7y:{eujYWSGst:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(TextButtonCopyWithClass118dlxtsWithMappedReactProps1v4h8cn,{aLVPaUt0r:true,aXHQFREWr:\"rgba(229, 244, 235, 0.25)\",Cb2oAc2LL:\"rgb(255, 255, 255)\",ClcSLfJG6:false,eujYWSGst:resolvedLinks[0],GyY_DN0FM:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"qTP3W1TYx\",layoutId:\"qTP3W1TYx\",nQrnVRs5U:true,RhI182JeU:\"rgba(193, 228, 205, 0.15)\",S82R8yuod:\"Previous page\",width:\"100%\",X5SJAJW3E:\"ChevronLeft\",xxd3uVduG:\"rgb(255, 255, 255)\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Tcpo7aVJ9\",webPageId:\"ZJEhUhqme\"},implicitPathVariables:undefined},{href:{hash:\":Tcpo7aVJ9\",webPageId:\"ZJEhUhqme\"},implicitPathVariables:undefined},{href:{hash:\":Tcpo7aVJ9\",webPageId:\"ZJEhUhqme\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q7zbl9-container\",nodeId:\"eiZBl3aeH\",rendersWithMotion:true,scopeId:\"ZJEhUhqme\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{eujYWSGst:resolvedLinks1[1]},LmdC17N7y:{eujYWSGst:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(TextButtonCopyWithClass2q7zbl9WithMappedReactProps1v4h8cn,{aLVPaUt0r:false,aXHQFREWr:\"rgba(229, 244, 235, 0.25)\",Cb2oAc2LL:\"rgb(255, 255, 255)\",ClcSLfJG6:true,eujYWSGst:resolvedLinks1[0],GyY_DN0FM:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"eiZBl3aeH\",layoutId:\"eiZBl3aeH\",nQrnVRs5U:true,RhI182JeU:\"rgba(193, 228, 205, 0.15)\",S82R8yuod:\"Next page\",width:\"100%\",X5SJAJW3E:\"ChevronRight\",xxd3uVduG:\"rgb(255, 255, 255)\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ypaux4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"N2wXXH5S1\",scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LmdC17N7y:{limit:10}},children:/*#__PURE__*/_jsx(Paginator,{gap:0,height:\"100%\",id:\"N2wXXH5S1\",layoutId:\"N2wXXH5S1\",limit:15,paginationType:1,visible:false,width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r9gic2\",\"data-framer-name\":\"Side-by-side on brand/Desktop\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Trusted by World\u2019s Biggest Hospitality Brands in 70+ countries\"})}),className:\"framer-j4zv64\",\"data-framer-name\":\"Trusted by World\u2019s Biggest Hospitality Brands in 70+ countries\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-aahd68-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DXIwSpRcd\",scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:.4,id:\"DXIwSpRcd\",layoutId:\"DXIwSpRcd\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r9t2vy\",\"data-framer-name\":\"La Mamounia\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-en2ffd\",\"data-framer-name\":\"Component 12\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 123 58\"><g transform=\"translate(0.712 0.001)\"><path d=\"M 5.276 48.714 L 0 48.714 L 0 42.088 L 1.121 42.088 L 1.121 47.677 L 5.276 47.677 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 39.536 48.714 L 38.275 48.714 L 35.945 43.99 L 32.979 48.418 L 30.069 43.99 L 27.687 48.714 L 26.386 48.714 L 30.069 41.754 L 32.979 46.437 L 35.945 41.754 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 67.734 48.714 L 66.473 48.714 L 64.137 43.99 L 61.17 48.418 L 58.264 43.99 L 55.88 48.714 L 54.582 48.714 L 58.264 41.754 L 61.17 46.437 L 64.137 41.754 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 87.566 48.914 C 85.159 48.914 83.78 47.782 83.78 46.185 L 83.78 42.083 L 84.898 42.083 L 84.898 46.039 C 84.898 47.071 85.724 47.735 87.566 47.735 C 89.407 47.735 90.235 47.071 90.235 46.039 L 90.235 42.083 L 91.362 42.083 L 91.362 46.185 C 91.362 47.782 89.975 48.914 87.566 48.914 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 103.514 48.714 L 102.457 48.714 L 97.618 43.716 L 97.618 48.714 L 96.497 48.714 L 96.497 42.088 L 97.704 42.088 L 102.395 47.114 L 102.395 42.088 L 103.514 42.088 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 109.827 48.714 L 108.706 48.714 L 108.706 42.084 L 109.827 42.084 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 75.21 42.969 C 74.344 42.969 73.636 43.198 73.093 43.655 C 72.555 44.11 72.287 44.694 72.287 45.393 C 72.287 46.121 72.55 46.708 73.075 47.149 C 73.604 47.593 74.32 47.823 75.21 47.823 C 76.085 47.823 76.798 47.593 77.324 47.149 C 77.845 46.7 78.113 46.11 78.113 45.393 C 78.113 44.648 77.801 44.035 77.191 43.571 C 76.66 43.17 75.994 42.969 75.21 42.969 Z M 75.21 48.917 C 74.089 48.917 73.138 48.624 72.385 48.03 C 71.532 47.361 71.096 46.473 71.096 45.393 C 71.096 44.332 71.537 43.451 72.405 42.767 C 73.167 42.172 74.108 41.869 75.21 41.869 C 76.306 41.869 77.245 42.172 77.998 42.767 C 78.861 43.451 79.301 44.332 79.301 45.393 C 79.301 46.481 78.863 47.369 78.01 48.04 C 77.258 48.624 76.316 48.917 75.21 48.917 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 47.133 43.734 L 45.571 46.425 L 48.693 46.425 Z M 51.324 48.714 L 50.026 48.714 L 49.301 47.464 L 44.969 47.464 L 44.241 48.714 L 42.941 48.714 L 47.133 41.777 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 117.807 43.734 L 116.245 46.425 L 119.37 46.425 Z M 122 48.714 L 120.703 48.714 L 119.975 47.464 L 115.644 47.464 L 114.916 48.714 L 113.618 48.714 L 117.807 41.777 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 12.644 43.734 L 11.083 46.425 L 14.208 46.425 Z M 16.836 48.714 L 15.537 48.714 L 14.809 47.464 L 10.478 47.464 L 9.755 48.714 L 8.45 48.714 L 12.644 41.777 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 79.576 57.876 L 75.778 57.876 L 75.778 53.88 L 79.576 53.88 L 79.576 54.497 L 76.491 54.497 L 76.491 55.519 L 78.787 55.519 L 78.787 56.21 L 76.491 56.21 L 76.491 57.253 L 79.576 57.253 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 36.652 57.876 L 35.841 57.876 L 34.54 55.14 L 32.886 57.759 L 31.173 55.026 L 29.928 57.876 L 29.103 57.876 L 31.094 53.596 L 32.886 56.547 L 34.639 53.635 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 46.842 54.545 L 46.842 55.832 L 49.223 55.832 C 49.699 55.832 50.002 55.64 50.002 55.221 C 50.002 54.808 49.571 54.545 49.121 54.545 Z M 50.933 57.876 L 49.943 57.876 L 48.544 56.538 L 46.842 56.538 L 46.842 57.876 L 46.115 57.876 L 46.115 53.887 L 49.399 53.887 C 50.053 53.887 50.744 54.403 50.744 55.158 C 50.744 55.911 50.132 56.38 49.537 56.5 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 73.275 57.876 L 72.188 57.876 L 70.217 56.044 L 69.066 56.881 L 69.066 57.876 L 68.338 57.876 L 68.338 53.887 L 69.066 53.887 L 69.066 55.94 L 71.786 53.887 L 73.005 53.887 L 70.809 55.549 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 92.89 57.876 L 92.163 57.876 L 92.163 56.18 L 89.213 56.18 L 89.213 57.876 L 88.485 57.876 L 88.485 53.887 L 89.213 53.887 L 89.213 55.559 L 92.163 55.559 L 92.163 53.887 L 92.89 53.887 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 63.297 54.936 L 62.357 56.452 L 64.26 56.452 Z M 66.018 57.876 L 65.172 57.876 L 64.666 57.078 L 61.976 57.078 L 61.48 57.876 L 60.636 57.876 L 63.348 53.647 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 41.144 54.936 L 40.188 56.452 L 42.105 56.452 Z M 43.848 57.876 L 43.003 57.876 L 42.499 57.078 L 39.792 57.078 L 39.286 57.876 L 38.444 57.876 L 41.144 53.647 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 84.318 57.999 C 83.645 57.999 83.077 57.826 82.627 57.471 C 82.112 57.065 81.852 56.527 81.852 55.871 C 81.852 55.222 82.118 54.686 82.637 54.276 C 83.091 53.925 83.654 53.742 84.318 53.742 C 85.164 53.742 85.842 54.015 86.341 54.551 L 85.811 55.015 C 85.444 54.654 84.95 54.46 84.318 54.46 C 83.816 54.46 83.403 54.592 83.086 54.863 C 82.774 55.128 82.617 55.465 82.617 55.871 C 82.617 56.284 82.774 56.631 83.081 56.891 C 83.394 57.152 83.824 57.287 84.355 57.287 C 84.96 57.287 85.444 57.093 85.811 56.725 L 86.361 57.21 C 86.118 57.461 85.855 57.655 85.564 57.777 C 85.218 57.925 84.797 57.999 84.318 57.999 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 54.458 54.545 L 54.458 55.832 L 56.838 55.832 C 57.315 55.832 57.617 55.64 57.617 55.221 C 57.617 54.808 57.187 54.545 56.74 54.545 Z M 58.552 57.876 L 57.559 57.876 L 56.16 56.538 L 54.458 56.538 L 54.458 57.876 L 53.731 57.876 L 53.731 53.887 L 57.018 53.887 C 57.669 53.887 58.36 54.403 58.36 55.158 C 58.36 55.911 57.746 56.38 57.153 56.5 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 55.601 7.529 C 54.393 7.3 53.373 7.009 52.476 6.71 C 52.256 6.427 52.202 5.894 52.268 5.66 L 53.086 6.147 C 52.797 5.831 52.367 5.367 52.435 4.754 L 53.173 5.076 C 52.959 4.843 52.617 4.381 52.691 3.884 C 52.716 3.879 52.742 3.877 52.77 3.877 C 52.936 3.877 53.14 3.959 53.27 4.05 C 53.066 3.8 52.893 3.36 53.005 2.947 C 53.255 2.959 53.445 3.027 53.548 3.126 C 53.385 2.768 53.346 2.369 53.436 2.123 L 53.945 2.465 C 53.844 1.998 53.964 1.533 54.277 1.395 C 54.532 1.584 54.744 2.011 54.547 2.556 L 55.125 2.327 C 55.183 2.596 55.115 3.008 54.905 3.322 C 54.981 3.27 55.11 3.247 55.251 3.247 C 55.339 3.247 55.432 3.256 55.521 3.271 C 55.604 3.718 55.343 4.175 55.024 4.402 C 55.123 4.343 55.319 4.256 55.57 4.256 C 55.666 4.256 55.77 4.269 55.88 4.299 C 55.891 4.666 55.658 5.181 55.276 5.399 C 55.383 5.356 55.536 5.332 55.691 5.332 C 55.816 5.332 55.944 5.348 56.052 5.382 C 56 5.979 55.705 6.232 55.467 6.525 L 56.202 6.425 C 56.203 6.853 55.97 7.296 55.601 7.529 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 66.421 7.525 C 66.054 7.291 65.823 6.85 65.823 6.426 L 66.561 6.526 C 66.323 6.232 66.025 5.979 65.979 5.382 C 66.085 5.348 66.211 5.331 66.336 5.331 C 66.493 5.331 66.646 5.357 66.754 5.401 C 66.375 5.184 66.136 4.668 66.145 4.301 C 66.255 4.27 66.359 4.257 66.454 4.257 C 66.706 4.257 66.902 4.344 67.006 4.403 C 66.684 4.175 66.423 3.718 66.507 3.272 C 66.596 3.257 66.69 3.247 66.778 3.247 C 66.917 3.247 67.044 3.27 67.119 3.321 C 66.911 3.006 66.843 2.595 66.903 2.327 L 67.483 2.557 C 67.284 2.011 67.496 1.585 67.756 1.396 C 68.058 1.533 68.184 1.998 68.085 2.465 L 68.592 2.123 C 68.686 2.37 68.644 2.767 68.477 3.125 C 68.581 3.027 68.773 2.96 69.02 2.948 C 69.135 3.362 68.959 3.806 68.755 4.054 C 68.887 3.962 69.094 3.877 69.259 3.877 C 69.286 3.877 69.312 3.88 69.337 3.884 C 69.413 4.382 69.068 4.844 68.857 5.077 L 69.592 4.754 C 69.664 5.367 69.231 5.831 68.936 6.149 L 69.757 5.661 C 69.826 5.891 69.774 6.411 69.565 6.696 C 68.662 6.999 67.638 7.293 66.421 7.525 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 60.424 7.992 C 59.081 7.971 57.899 7.875 56.848 7.732 C 56.633 7.444 56.431 6.845 56.523 6.457 C 56.691 6.457 56.909 6.583 57.053 6.761 C 56.9 6.516 56.653 6.006 56.818 5.411 C 57.011 5.469 57.191 5.514 57.304 5.656 C 57.153 5.39 56.89 4.898 57.074 4.415 C 57.362 4.425 57.533 4.581 57.684 4.788 C 57.529 4.553 57.28 3.91 57.494 3.422 L 58.043 3.874 C 57.905 3.585 57.684 2.968 57.969 2.547 L 58.429 3.044 C 58.353 2.746 58.463 2.251 58.763 2.044 C 59.002 2.251 59.1 2.731 59.031 3.078 L 59.5 2.633 C 59.742 3.091 59.427 3.734 59.334 3.953 C 59.5 3.677 59.673 3.571 59.931 3.532 C 60.091 4.004 59.778 4.589 59.624 4.831 C 59.793 4.653 59.95 4.545 60.238 4.527 C 60.361 5.051 60.118 5.477 59.869 5.827 L 60.46 5.459 C 60.644 5.998 60.351 6.666 60.174 6.952 C 60.324 6.792 60.469 6.526 60.772 6.445 C 60.906 6.85 60.725 7.615 60.424 7.992 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 61.603 7.991 C 61.3 7.614 61.125 6.85 61.258 6.444 C 61.559 6.526 61.701 6.791 61.856 6.952 C 61.679 6.666 61.384 5.997 61.568 5.459 L 62.161 5.826 C 61.91 5.476 61.669 5.05 61.787 4.527 C 62.079 4.545 62.235 4.652 62.404 4.831 C 62.249 4.588 61.936 4.004 62.097 3.531 C 62.352 3.57 62.527 3.677 62.694 3.953 C 62.603 3.733 62.284 3.091 62.527 2.633 L 62.994 3.077 C 62.928 2.73 63.024 2.25 63.264 2.044 C 63.567 2.25 63.671 2.746 63.596 3.044 L 64.059 2.547 C 64.341 2.968 64.12 3.585 63.985 3.874 L 64.533 3.422 C 64.75 3.91 64.501 4.553 64.341 4.788 C 64.494 4.58 64.666 4.425 64.959 4.415 C 65.135 4.898 64.874 5.391 64.725 5.656 C 64.837 5.513 65.016 5.469 65.209 5.41 C 65.372 6.007 65.125 6.517 64.976 6.762 C 65.118 6.583 65.336 6.457 65.507 6.457 C 65.598 6.843 65.397 7.438 65.182 7.727 C 64.131 7.872 62.949 7.968 61.603 7.991 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 60.506 20.831 C 58.915 21.504 59.09 23.459 60.411 24.299 C 59.735 23.35 59.776 21.586 60.506 20.831 Z M 61.489 20.831 C 62.219 21.586 62.269 23.35 61.591 24.299 C 62.908 23.459 63.084 21.504 61.489 20.831 Z M 60.998 21.089 C 60.529 22.176 60.366 23.115 60.998 24.322 C 61.632 23.115 61.467 22.176 60.998 21.089 Z M 60.998 25.698 C 60.801 25.177 60.307 24.758 59.56 24.256 C 59.524 24.232 59.487 24.207 59.452 24.183 C 58.913 23.663 58.716 23.235 58.716 22.382 C 58.716 21.352 59.591 20.147 60.998 20.147 C 62.404 20.147 63.279 21.352 63.279 22.382 C 63.279 23.232 63.086 23.66 62.551 24.178 C 62.513 24.205 62.475 24.23 62.436 24.256 C 61.688 24.758 61.197 25.177 60.998 25.698 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 58.758 33.978 L 48.542 33.978 L 48.553 33.973 L 48.676 33.146 L 58.758 33.146 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 73.456 33.978 L 63.238 33.978 L 63.238 33.146 L 73.322 33.146 L 73.445 33.973 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 64.914 30.06 L 63.832 28.901 L 64.762 27.842 L 65.399 28.525 L 65.073 28.906 L 66.268 28.906 L 65.895 28.51 L 66.404 27.903 L 67.384 28.945 L 66.561 30 L 65.723 29.123 Z M 63.565 29.182 L 64.919 30.609 L 65.735 29.672 L 66.581 30.555 L 67.861 28.931 L 66.392 27.357 L 65.642 28.242 L 64.754 27.301 L 63.579 28.643 L 62.264 27.224 L 60.997 28.518 L 59.734 27.224 L 58.419 28.643 L 57.242 27.301 L 56.356 28.242 L 55.604 27.357 L 54.141 28.931 L 55.423 30.555 L 56.263 29.672 L 57.079 30.609 L 58.429 29.182 L 59.012 29.837 L 59.26 29.597 L 58.66 28.917 L 59.741 27.737 L 60.729 28.738 L 59.55 30.364 L 62.446 30.364 L 61.268 28.738 L 62.255 27.737 L 63.339 28.917 L 62.738 29.597 L 62.987 29.837 Z M 68.757 30.894 L 53.239 30.894 L 54.496 27.081 L 59.559 27.081 C 59.699 27.19 59.882 27.26 60.101 27.26 C 60.337 27.26 60.542 27.196 60.704 27.081 L 61.292 27.081 C 61.453 27.196 61.658 27.26 61.895 27.26 C 62.114 27.26 62.298 27.19 62.438 27.081 L 67.5 27.081 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 61.745 30.011 L 60.248 30.011 L 60.998 28.967 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 57.079 30.06 L 56.273 29.124 L 55.44 30.002 L 54.611 28.945 L 55.597 27.903 L 56.098 28.511 L 55.722 28.906 L 56.922 28.906 L 56.6 28.526 L 57.234 27.842 L 58.166 28.901 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 58.913 34.041 L 58.758 33.978 L 58.758 33.146 L 58.758 32.438 L 58.871 32.416 C 59.567 32.27 59.904 31.775 59.904 30.894 L 60.186 30.894 C 60.186 32.091 59.587 32.52 59.041 32.673 L 59.041 33.978 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 55.67 32.949 L 55.076 32.949 C 54.825 32.949 54.633 32.844 54.513 32.666 C 54.395 32.844 54.203 32.949 53.947 32.949 L 53.355 32.949 L 53.212 32.804 L 53.355 32.655 L 53.947 32.655 C 54.234 32.655 54.367 32.484 54.367 32.129 C 54.367 31.664 54.147 31.604 53.947 31.604 L 53.355 31.604 L 53.212 31.459 L 53.355 31.31 L 53.947 31.31 L 54.513 31.578 L 55.076 31.31 L 55.67 31.31 L 55.813 31.459 L 55.67 31.604 L 55.076 31.604 C 54.879 31.604 54.655 31.664 54.655 32.127 L 54.655 32.131 C 54.655 32.484 54.788 32.655 55.076 32.655 L 55.67 32.655 L 55.813 32.804 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 66.395 9.082 C 66.49 9.052 66.588 9.033 66.687 9.024 C 66.59 9.044 66.493 9.063 66.395 9.082 Z M 55.612 9.084 C 55.505 9.064 55.399 9.044 55.293 9.023 C 55.402 9.03 55.508 9.052 55.612 9.084 Z M 59.756 26.053 L 59.53 26.462 C 59.53 26.707 59.749 26.969 60.101 26.969 C 60.445 26.969 60.814 26.78 60.814 26.257 C 60.814 25.652 60.459 25.206 59.407 24.504 C 57.472 23.205 55.471 21.865 55.471 18.113 L 55.471 14.69 L 55.198 14.718 L 54.94 14.69 L 54.94 17.366 C 54.94 20.315 53.487 20.918 51.944 21.553 L 50.377 22.135 L 50.135 22.222 C 48.693 22.735 47.16 23.83 47.16 26.158 C 47.287 24.566 48.092 23.383 50.168 22.735 C 51.007 22.474 52.213 22.084 52.886 21.745 C 53.736 21.308 54.972 20.372 55.117 19.443 C 55.24 21.079 56.475 23.261 58.512 24.516 C 60.302 25.624 60.211 25.695 60.155 26.088 Z M 66.525 14.69 L 66.525 18.113 C 66.525 21.865 64.523 23.205 62.591 24.504 C 61.538 25.206 61.187 25.652 61.187 26.257 C 61.187 26.78 61.551 26.969 61.895 26.969 C 62.249 26.969 62.468 26.707 62.468 26.462 L 62.239 26.053 L 61.843 26.088 C 61.785 25.695 61.694 25.624 63.486 24.516 C 65.521 23.261 66.758 21.079 66.878 19.443 C 67.031 20.372 68.263 21.308 69.11 21.745 C 69.786 22.084 70.986 22.474 71.831 22.735 C 73.907 23.383 74.715 24.568 74.839 26.158 C 74.839 23.83 73.305 22.735 71.862 22.222 L 71.618 22.135 L 70.051 21.553 C 68.51 20.918 67.058 20.315 67.058 17.366 L 67.058 14.69 L 66.799 14.718 Z M 51.656 24.402 C 50.149 24.402 48.534 25.604 48.534 27.39 C 48.534 28.066 48.819 28.582 49.131 29.034 C 49.259 29.21 49.355 29.447 49.355 29.693 L 49.239 30.087 L 49.637 30.045 C 49.795 29.971 49.928 29.759 49.928 29.437 C 50.178 29.639 50.543 29.739 50.909 29.739 C 51.233 29.739 51.558 29.661 51.806 29.503 C 52.278 29.205 52.585 28.694 52.585 28.202 C 52.585 27.283 51.865 26.849 51.375 26.849 C 50.916 26.849 50.574 27.178 50.574 27.615 C 50.574 27.985 50.946 28.169 51.154 28.169 L 51.521 27.972 L 51.604 27.697 L 51.503 27.525 L 51.879 27.661 C 52.035 27.822 52.189 28.112 52.014 28.557 C 51.845 28.976 51.417 29.259 50.934 29.259 C 49.996 29.259 49 28.577 49 27.316 C 49 25.823 50.363 24.899 51.624 24.899 C 52.973 24.899 53.595 25.581 54.132 26.316 L 54.695 26.316 C 54.021 25.07 52.973 24.402 51.656 24.402 Z M 72.07 29.437 C 72.07 29.759 72.205 29.971 72.36 30.045 L 72.759 30.087 L 72.643 29.693 C 72.643 29.447 72.736 29.21 72.862 29.034 C 73.174 28.582 73.464 28.066 73.464 27.39 C 73.464 25.604 71.846 24.402 70.34 24.402 C 69.025 24.402 67.979 25.07 67.301 26.316 L 67.867 26.316 C 68.4 25.581 69.025 24.899 70.374 24.899 C 71.635 24.899 72.995 25.823 72.995 27.316 C 72.995 28.577 71.999 29.259 71.062 29.259 C 70.588 29.259 70.153 28.976 69.983 28.557 C 69.807 28.112 69.968 27.822 70.116 27.661 L 70.497 27.525 L 70.394 27.697 L 70.483 27.972 L 70.844 28.169 C 71.052 28.169 71.427 27.985 71.427 27.615 C 71.427 27.178 71.08 26.849 70.62 26.849 C 70.139 26.849 69.413 27.283 69.413 28.202 C 69.413 28.694 69.72 29.205 70.192 29.503 C 70.441 29.661 70.765 29.739 71.089 29.739 C 71.454 29.739 71.819 29.639 72.07 29.437 Z M 47.722 28.985 L 48.261 30.802 L 52.108 30.802 L 52.379 30.581 C 52.674 29.7 53.716 26.569 53.794 26.336 C 53.311 25.698 52.777 25.193 51.624 25.193 C 50.5 25.193 49.284 26.002 49.284 27.316 C 49.284 28.383 50.135 28.965 50.934 28.965 C 51.356 28.965 51.649 28.704 51.754 28.442 L 51.776 28.042 C 51.727 28.197 51.509 28.465 51.154 28.465 C 50.801 28.465 50.291 28.161 50.291 27.615 C 50.291 27.011 50.759 26.553 51.375 26.553 C 51.978 26.553 52.871 27.076 52.871 28.202 C 52.871 28.807 52.517 29.396 51.951 29.754 C 51.634 29.954 51.288 30.052 50.936 30.052 C 50.66 30.052 50.38 29.992 50.11 29.871 L 49.755 30.313 C 49.64 30.367 49.495 30.392 49.351 30.392 C 49.121 30.392 48.892 30.329 48.792 30.228 C 49.208 29.858 48.988 29.32 48.905 29.203 C 48.581 28.733 48.251 28.156 48.251 27.39 C 48.251 25.428 50.011 24.105 51.656 24.105 C 53.136 24.105 54.296 24.873 55.019 26.308 L 55.007 26.316 L 59.265 26.316 L 59.619 25.798 L 59.803 25.749 C 59.599 25.575 59.194 25.277 58.367 24.772 C 57.706 24.361 55.614 22.878 54.999 20.413 C 54.524 21.186 53.389 21.814 53.005 22.006 C 52.317 22.357 51.103 22.753 50.249 23.021 C 48.128 23.682 47.415 24.902 47.415 26.627 C 47.415 27.326 47.533 28.116 47.727 28.985 Z M 70.374 25.193 C 69.209 25.193 68.678 25.714 68.188 26.362 C 68.319 26.763 69.309 29.728 69.593 30.581 L 69.865 30.802 L 73.737 30.802 L 74.275 28.985 C 74.465 28.116 74.586 27.326 74.586 26.627 C 74.586 24.902 73.87 23.682 71.753 23.021 C 70.898 22.753 69.68 22.357 68.99 22.006 C 68.606 21.814 67.473 21.186 66.996 20.413 C 66.384 22.878 64.285 24.361 63.629 24.772 C 62.802 25.277 62.397 25.575 62.193 25.749 L 62.377 25.798 L 62.731 26.316 L 66.996 26.316 L 66.981 26.308 C 67.702 24.873 68.863 24.105 70.34 24.105 C 71.985 24.105 73.752 25.428 73.752 27.39 C 73.752 28.156 73.42 28.733 73.093 29.203 C 73.012 29.32 72.793 29.858 73.209 30.228 C 73.107 30.329 72.877 30.392 72.645 30.392 C 72.5 30.392 72.355 30.367 72.24 30.313 L 71.881 29.871 C 71.614 29.992 71.337 30.052 71.062 30.052 C 70.712 30.052 70.365 29.954 70.047 29.754 C 69.481 29.396 69.134 28.807 69.134 28.202 C 69.134 27.076 70.02 26.553 70.62 26.553 C 71.242 26.553 71.707 27.011 71.707 27.615 C 71.707 28.161 71.195 28.465 70.844 28.465 C 70.487 28.465 70.271 28.197 70.219 28.042 L 70.246 28.442 C 70.35 28.704 70.642 28.965 71.062 28.965 C 71.862 28.965 72.712 28.383 72.712 27.316 C 72.712 26.002 71.497 25.193 70.374 25.193 Z M 73.599 34.041 L 73.456 33.977 L 73.445 33.973 L 73.322 33.146 L 73.301 33.011 C 73.267 32.604 73.283 32.329 73.469 31.684 L 73.649 31.096 L 69.693 31.096 L 69.4 30.899 C 69.118 30.052 68.021 26.773 67.973 26.612 L 62.733 26.612 C 62.697 26.789 62.594 26.96 62.438 27.082 C 62.298 27.191 62.114 27.26 61.895 27.26 C 61.659 27.26 61.454 27.196 61.292 27.082 C 61.164 26.991 61.065 26.87 60.998 26.724 C 60.931 26.87 60.831 26.991 60.704 27.082 C 60.543 27.196 60.337 27.26 60.101 27.26 C 59.882 27.26 59.698 27.191 59.559 27.082 C 59.402 26.96 59.3 26.789 59.262 26.612 L 53.999 26.612 C 53.947 26.773 52.856 30.052 52.573 30.899 L 52.275 31.096 L 48.349 31.096 L 48.529 31.684 C 48.716 32.329 48.731 32.604 48.696 33.011 L 48.676 33.146 L 48.554 33.973 L 48.542 33.977 L 48.399 34.041 L 48.255 33.973 L 48.416 32.985 C 48.45 32.602 48.43 32.36 48.255 31.768 L 48.008 30.938 L 47.15 28.052 C 46.061 24.019 48.497 22.493 50.045 21.941 L 50.286 21.859 L 51.84 21.281 C 53.414 20.629 54.66 20.114 54.66 17.366 L 54.66 14.604 C 53.848 14.259 53.257 13.167 53.257 11.87 C 53.257 10.62 53.809 9.552 54.575 9.17 C 54.819 9.224 55.066 9.275 55.318 9.324 C 55.278 9.321 55.239 9.317 55.198 9.317 C 54.284 9.317 53.541 10.459 53.541 11.87 C 53.541 13.276 54.284 14.422 55.198 14.422 C 56.113 14.422 56.856 13.276 56.856 11.87 C 56.856 10.614 56.268 9.572 55.493 9.358 C 55.749 9.406 56.009 9.452 56.272 9.495 C 56.796 10.006 57.141 10.881 57.141 11.87 C 57.141 13.156 56.555 14.249 55.754 14.598 L 55.754 18.113 C 55.754 21.635 57.615 22.952 59.451 24.183 C 59.487 24.208 59.523 24.232 59.559 24.256 C 60.307 24.759 60.801 25.178 60.998 25.698 C 61.197 25.178 61.689 24.759 62.436 24.256 C 62.474 24.23 62.513 24.204 62.552 24.179 C 64.388 22.948 66.244 21.63 66.244 18.113 L 66.244 14.598 C 65.443 14.249 64.858 13.156 64.858 11.87 C 64.858 10.881 65.204 10.006 65.728 9.495 C 65.989 9.452 66.247 9.407 66.502 9.359 C 65.731 9.575 65.143 10.616 65.143 11.87 C 65.143 13.276 65.887 14.422 66.799 14.422 C 67.709 14.422 68.454 13.276 68.454 11.87 C 68.454 10.459 67.709 9.317 66.799 9.317 C 66.761 9.317 66.723 9.321 66.685 9.324 C 66.935 9.275 67.182 9.224 67.423 9.17 C 68.189 9.552 68.742 10.62 68.742 11.87 C 68.742 13.167 68.149 14.259 67.343 14.606 L 67.343 17.366 C 67.343 20.114 68.584 20.629 70.158 21.281 L 71.711 21.859 L 71.952 21.941 C 73.502 22.493 75.937 24.019 74.851 28.052 L 73.993 30.938 L 73.744 31.768 C 73.568 32.36 73.548 32.602 73.582 32.985 L 73.744 33.973 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 55.198 12.638 C 55.075 12.638 54.982 12.283 54.982 11.849 C 54.982 11.416 55.075 11.058 55.198 11.058 C 55.312 11.058 55.412 11.416 55.412 11.849 C 55.412 12.283 55.312 12.638 55.198 12.638 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 54.304 11.023 L 54.21 10.841 C 54.337 10.398 54.547 10.056 54.805 9.889 L 54.999 9.938 L 54.962 10.137 C 54.759 10.27 54.588 10.558 54.479 10.929 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 55.198 13.932 C 54.957 13.932 54.724 13.794 54.534 13.539 L 54.562 13.332 L 54.758 13.36 L 55.198 13.637 L 55.565 13.449 L 55.764 13.447 L 55.768 13.657 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 55.958 13.087 L 55.875 12.901 C 55.982 12.59 56.041 12.227 56.041 11.85 L 56.041 11.742 L 56.179 11.579 L 56.322 11.737 L 56.327 11.85 C 56.327 12.261 56.258 12.662 56.138 12.998 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 54.353 12.868 L 54.183 12.763 C 54.112 12.475 54.075 12.171 54.075 11.849 L 54.075 11.653 L 54.225 11.515 L 54.36 11.668 L 54.353 11.849 C 54.353 12.14 54.392 12.431 54.459 12.686 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 56.106 11.102 L 55.936 10.997 C 55.833 10.6 55.658 10.29 55.451 10.144 L 55.412 9.941 L 55.611 9.903 C 55.875 10.089 56.086 10.449 56.207 10.918 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 66.8 12.638 C 66.684 12.638 66.586 12.283 66.586 11.849 C 66.586 11.416 66.684 11.058 66.8 11.058 C 66.917 11.058 67.016 11.416 67.016 11.849 C 67.016 12.283 66.917 12.638 66.8 12.638 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 67.695 11.023 L 67.52 10.929 C 67.409 10.558 67.239 10.27 67.038 10.137 L 66.996 9.938 L 67.188 9.889 C 67.446 10.056 67.66 10.398 67.788 10.841 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 66.8 13.932 L 66.23 13.657 L 66.232 13.447 L 66.435 13.449 L 66.8 13.637 L 67.24 13.36 L 67.437 13.332 L 67.464 13.539 C 67.274 13.794 67.043 13.932 66.8 13.932 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 66.043 13.087 L 65.858 12.998 C 65.735 12.662 65.674 12.261 65.674 11.85 L 65.676 11.737 L 65.818 11.579 L 65.956 11.742 L 65.956 11.85 C 65.956 12.227 66.01 12.59 66.124 12.901 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 67.643 12.868 L 67.54 12.686 C 67.606 12.431 67.643 12.14 67.643 11.849 L 67.638 11.668 L 67.776 11.515 L 67.921 11.653 L 67.928 11.849 C 67.928 12.171 67.886 12.475 67.81 12.763 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 65.888 11.102 L 65.789 10.918 C 65.912 10.449 66.123 10.089 66.386 9.903 L 66.585 9.941 L 66.544 10.144 C 66.34 10.29 66.166 10.6 66.06 10.997 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 60.998 12.238 C 60.725 12.238 60.501 12.47 60.501 12.756 C 60.501 13.045 60.725 13.274 60.998 13.274 C 61.273 13.274 61.497 13.045 61.497 12.756 C 61.497 12.47 61.273 12.238 60.998 12.238 Z M 60.998 13.557 C 60.853 13.557 60.637 13.771 60.637 14.058 L 60.637 18.78 L 60.688 19.004 L 60.697 19.037 L 60.998 19.279 L 61.361 18.78 L 61.361 14.058 C 61.361 13.771 61.143 13.557 60.998 13.557 Z M 60.998 19.514 C 60.664 19.514 60.407 19.124 60.407 18.78 L 60.407 14.058 C 60.407 13.793 60.536 13.567 60.697 13.438 C 60.45 13.326 60.272 13.06 60.272 12.756 C 60.272 12.343 60.602 12.006 60.998 12.006 C 61.236 12.006 61.443 12.129 61.578 12.312 L 61.726 12.756 C 61.726 13.014 61.595 13.241 61.403 13.379 L 61.295 13.438 C 61.46 13.567 61.59 13.793 61.59 14.058 L 61.59 18.78 C 61.59 19.124 61.334 19.514 60.998 19.514 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 63.085 34.041 L 62.957 33.978 L 62.957 32.673 C 62.409 32.52 61.809 32.091 61.809 30.894 L 62.094 30.894 C 62.094 31.775 62.431 32.27 63.125 32.416 L 63.237 32.438 L 63.237 33.146 L 63.237 33.978 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 68.641 32.949 L 68.051 32.949 C 67.795 32.949 67.606 32.844 67.484 32.666 C 67.365 32.844 67.176 32.949 66.92 32.949 L 66.325 32.949 L 66.185 32.804 L 66.325 32.655 L 66.92 32.655 C 67.203 32.655 67.343 32.484 67.343 32.129 C 67.343 31.664 67.119 31.604 66.92 31.604 L 66.325 31.604 L 66.185 31.459 L 66.325 31.31 L 66.92 31.31 L 67.484 31.578 L 68.051 31.31 L 68.641 31.31 L 68.786 31.459 L 68.641 31.604 L 68.051 31.604 C 67.849 31.604 67.626 31.664 67.626 32.129 C 67.626 32.484 67.764 32.655 68.051 32.655 L 68.641 32.655 L 68.786 32.804 Z\" fill=\"rgb(128,0,0)\"></path><path d=\"M 51.695 6.777 C 51.503 6.777 51.341 6.946 51.267 7.144 L 51.223 7.407 L 51.825 7.208 L 52.381 6.988 L 51.816 6.799 C 51.775 6.784 51.734 6.777 51.695 6.777 Z M 60.424 7.991 C 60.613 7.994 60.803 7.996 60.998 7.996 C 61.203 7.996 61.405 7.994 61.603 7.991 C 62.949 7.969 64.131 7.872 65.182 7.728 C 65.617 7.668 66.029 7.599 66.421 7.525 C 67.638 7.293 68.662 6.999 69.564 6.696 C 69.743 6.636 69.917 6.576 70.086 6.516 L 70.099 6.516 L 70.099 0.421 C 67.571 1.457 64.356 2.029 60.998 2.029 C 57.642 2.029 54.428 1.457 51.899 0.421 L 51.899 6.516 L 51.912 6.516 C 52.094 6.581 52.282 6.646 52.476 6.71 C 53.373 7.01 54.393 7.3 55.602 7.53 C 55.996 7.605 56.41 7.672 56.848 7.732 C 57.899 7.875 59.08 7.97 60.424 7.991 Z M 51.811 8.022 C 51.845 8.028 51.88 8.031 51.918 8.031 C 52.213 8.031 52.589 7.843 52.959 7.662 C 53.198 7.542 53.424 7.435 53.632 7.371 C 53.315 7.282 53.01 7.187 52.715 7.095 C 52.704 7.095 52.692 7.094 52.679 7.094 C 52.449 7.094 52.154 7.229 51.882 7.353 C 51.641 7.463 51.427 7.557 51.246 7.565 L 51.605 7.938 L 51.811 8.026 Z M 70.605 6.929 C 70.376 7.128 70.173 7.419 69.974 7.71 L 69.558 8.269 C 69.858 8.162 70.143 8.052 70.399 7.938 C 70.799 7.764 70.831 7.399 70.735 7.144 Z M 53.951 7.466 C 53.707 7.466 53.36 7.633 53.02 7.802 C 52.726 7.95 52.418 8.104 52.143 8.157 C 52.437 8.272 52.762 8.379 53.096 8.484 L 53.101 8.474 C 53.116 8.475 53.131 8.476 53.147 8.476 C 53.436 8.476 53.827 8.257 54.202 8.044 C 54.459 7.904 54.7 7.769 54.918 7.69 C 54.598 7.616 54.287 7.542 53.991 7.468 C 53.978 7.467 53.965 7.466 53.951 7.466 Z M 70.182 6.799 C 69.926 6.886 69.663 6.975 69.386 7.062 C 69.123 7.262 68.835 7.619 68.557 7.968 C 68.333 8.256 68.103 8.545 67.871 8.767 C 68.329 8.652 68.761 8.527 69.165 8.399 C 69.393 8.29 69.615 7.966 69.85 7.619 C 70.047 7.332 70.251 7.042 70.482 6.833 Z M 55.3 7.764 C 55.024 7.764 54.646 7.973 54.279 8.18 C 53.991 8.344 53.701 8.501 53.438 8.581 C 53.76 8.672 54.092 8.756 54.444 8.836 L 54.444 8.833 C 54.729 8.826 55.155 8.585 55.565 8.354 C 55.847 8.19 56.111 8.044 56.352 7.953 C 55.982 7.896 55.634 7.83 55.3 7.764 Z M 69.03 7.175 C 68.636 7.297 68.215 7.414 67.773 7.527 C 67.49 7.703 67.171 8.054 66.861 8.402 C 66.632 8.662 66.404 8.922 66.175 9.124 C 66.249 9.11 66.322 9.096 66.395 9.082 C 66.493 9.063 66.59 9.044 66.687 9.024 C 66.974 8.967 67.256 8.906 67.53 8.844 C 67.828 8.645 68.137 8.256 68.439 7.871 C 68.641 7.616 68.838 7.375 69.03 7.175 Z M 55.612 9.084 C 55.711 9.103 55.811 9.122 55.911 9.139 C 56.189 9.124 56.622 8.849 57.04 8.583 C 57.31 8.407 57.571 8.249 57.804 8.136 C 57.436 8.1 57.074 8.058 56.733 8.012 C 56.447 8.032 56.034 8.262 55.641 8.489 C 55.336 8.662 55.041 8.826 54.783 8.918 C 54.95 8.954 55.121 8.989 55.293 9.023 C 55.398 9.044 55.505 9.065 55.612 9.084 Z M 58.17 8.167 C 57.895 8.221 57.504 8.471 57.121 8.711 C 56.819 8.91 56.528 9.091 56.281 9.203 C 56.649 9.26 57.025 9.318 57.404 9.364 L 57.404 9.359 C 57.679 9.336 58.112 9.028 58.53 8.728 C 58.8 8.545 59.049 8.369 59.282 8.249 C 58.898 8.228 58.525 8.2 58.17 8.167 Z M 67.402 7.616 C 67.006 7.71 66.586 7.795 66.146 7.871 C 65.868 8.001 65.514 8.356 65.165 8.701 C 64.904 8.958 64.653 9.208 64.425 9.385 C 64.904 9.329 65.376 9.257 65.843 9.178 C 66.129 8.999 66.444 8.642 66.755 8.298 C 66.976 8.044 67.193 7.802 67.402 7.616 Z M 59.638 8.262 C 59.37 8.331 58.987 8.599 58.616 8.861 C 58.308 9.076 58.013 9.287 57.756 9.407 C 58.16 9.459 58.561 9.494 58.967 9.523 C 59.25 9.453 59.653 9.149 60.039 8.851 C 60.314 8.642 60.597 8.433 60.851 8.288 C 60.432 8.284 60.029 8.274 59.638 8.262 Z M 65.759 7.938 C 65.349 8.001 64.919 8.058 64.469 8.108 L 64.469 8.111 C 64.199 8.19 63.815 8.545 63.442 8.892 C 63.164 9.142 62.903 9.387 62.659 9.55 C 63.132 9.517 63.604 9.477 64.081 9.428 C 64.366 9.283 64.715 8.93 65.057 8.588 C 65.305 8.346 65.543 8.108 65.759 7.938 Z M 62.468 8.259 C 62.077 8.272 61.669 8.279 61.246 8.284 C 60.939 8.361 60.526 8.677 60.127 8.982 C 59.843 9.203 59.56 9.41 59.314 9.55 C 59.771 9.578 60.224 9.594 60.668 9.599 C 60.948 9.507 61.325 9.188 61.689 8.874 C 61.954 8.645 62.218 8.415 62.468 8.259 Z M 64.073 8.152 C 63.68 8.182 63.27 8.216 62.846 8.241 C 62.55 8.338 62.161 8.67 61.782 8.994 C 61.509 9.234 61.246 9.459 61.008 9.607 C 61.416 9.607 61.834 9.594 62.254 9.578 C 62.529 9.52 62.94 9.142 63.343 8.775 C 63.596 8.532 63.852 8.307 64.073 8.152 Z M 60.175 9.884 C 60.341 10.178 60.513 10.569 60.595 10.78 L 60.703 10.875 L 61.295 10.875 L 61.403 10.78 C 61.479 10.569 61.662 10.178 61.829 9.884 C 61.595 9.892 61.369 9.898 61.143 9.9 L 61.044 10.671 L 60.951 10.671 L 60.853 9.9 C 60.626 9.898 60.401 9.892 60.175 9.884 Z M 59.23 9.836 C 59.594 10.359 59.946 11.067 60.059 11.373 L 60.159 11.48 L 61.844 11.48 L 61.944 11.373 C 62.058 11.067 62.404 10.359 62.773 9.836 L 62.1 9.874 C 61.89 10.196 61.647 10.75 61.575 10.987 L 61.418 11.107 L 60.58 11.107 L 60.423 10.987 C 60.351 10.75 60.106 10.196 59.896 9.874 Z M 51.899 8.379 L 51.899 18.366 C 51.899 19.385 51.816 20.071 51.442 20.532 C 52.108 20.249 52.477 19.448 52.477 18.172 L 52.477 8.591 Z M 70.099 8.379 L 69.524 8.591 L 69.524 18.172 C 69.524 19.448 69.892 20.249 70.556 20.532 C 70.182 20.071 70.099 19.385 70.099 18.366 Z M 71.121 20.941 C 69.926 20.941 69.241 19.948 69.241 18.172 L 69.241 8.685 C 68.683 8.863 68.07 9.026 67.423 9.17 C 67.181 9.224 66.936 9.276 66.685 9.325 C 66.625 9.336 66.563 9.348 66.502 9.36 C 66.248 9.407 65.989 9.452 65.728 9.495 C 64.885 9.632 64.014 9.738 63.152 9.808 C 62.714 10.352 62.338 11.098 62.121 11.674 L 61.946 11.774 L 60.049 11.774 L 59.877 11.674 C 59.658 11.098 59.289 10.349 58.847 9.808 C 57.986 9.738 57.116 9.632 56.272 9.495 C 56.009 9.453 55.75 9.407 55.493 9.359 C 55.435 9.347 55.376 9.336 55.318 9.325 C 55.066 9.276 54.818 9.224 54.576 9.17 C 53.929 9.025 53.318 8.863 52.762 8.685 L 52.762 18.172 C 52.762 19.948 52.072 20.941 50.877 20.941 C 50.55 20.941 50.63 20.867 50.95 20.625 C 51.454 20.237 51.617 19.65 51.617 18.366 L 51.617 8.262 L 51.491 8.208 C 50.943 7.968 50.856 7.432 51.002 7.042 C 51.103 6.759 51.334 6.518 51.617 6.488 L 51.617 0 L 51.816 0.082 C 54.333 1.149 57.598 1.736 60.998 1.736 C 64.403 1.736 67.665 1.149 70.187 0.082 L 70.376 0 L 70.376 6.488 C 70.665 6.518 70.893 6.759 70.997 7.042 C 71.146 7.432 71.055 7.968 70.511 8.208 L 70.376 8.262 L 70.376 18.366 C 70.376 19.65 70.547 20.237 71.05 20.625 C 71.372 20.867 71.449 20.941 71.121 20.941 Z\" fill=\"rgb(128,0,0)\"></path></g></svg>',svgContentId:11018834757,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-koue2y\",\"data-framer-name\":\"Lurette\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:800,pixelWidth:800,sizes:\"67px\",src:\"https://framerusercontent.com/images/7NVXGddOFg002ElnfDYn6d2XI.jpg\",srcSet:\"https://framerusercontent.com/images/7NVXGddOFg002ElnfDYn6d2XI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7NVXGddOFg002ElnfDYn6d2XI.jpg 800w\"},className:\"framer-9hl5pt\",\"data-framer-name\":\"870821626\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xgtpw7\",\"data-framer-name\":\"Le Meridien\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:370,pixelWidth:2560,sizes:\"163px\",src:\"https://framerusercontent.com/images/r6yGQ4kPDz8Xek2udvesxMWqo.png\",srcSet:\"https://framerusercontent.com/images/r6yGQ4kPDz8Xek2udvesxMWqo.png?scale-down-to=512 512w,https://framerusercontent.com/images/r6yGQ4kPDz8Xek2udvesxMWqo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/r6yGQ4kPDz8Xek2udvesxMWqo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/r6yGQ4kPDz8Xek2udvesxMWqo.png 2560w\"},className:\"framer-1ea8o8x\",\"data-framer-name\":\"LeMeridien 2\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hmf5x8\",\"data-framer-name\":\"Fogo De Chao\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1796,pixelWidth:2687,sizes:\"90px\",src:\"https://framerusercontent.com/images/sPxUSfyZQMg6pD1daF8vxoq2o.jpg\",srcSet:\"https://framerusercontent.com/images/sPxUSfyZQMg6pD1daF8vxoq2o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sPxUSfyZQMg6pD1daF8vxoq2o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sPxUSfyZQMg6pD1daF8vxoq2o.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sPxUSfyZQMg6pD1daF8vxoq2o.jpg 2687w\"},className:\"framer-12lra8y\",\"data-framer-name\":\"R0d93048a0ec838b9a264ae60fb9c52fb 3\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lrhgcj\",\"data-framer-name\":\"Emaar\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:244,pixelWidth:268,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cliTjycJX5EIEQwh0seA5P6GY.png\"},className:\"framer-1kwhky7\",\"data-framer-name\":\"Emaar-Properties-Logo\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hx9ory\",\"data-framer-name\":\"Radisson\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1llnyd5\",\"data-framer-name\":\"Radisson\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 129 48\"><g transform=\"translate(0 0)\"><path d=\"M 78.085 14.804 C 76.889 12.251 76.045 14.41 76.045 14.41 C 75.246 16.626 70.208 22.259 69.208 23.256 C 65.004 26.877 66.459 24.616 66.12 22.998 C 66.12 22.998 66.298 20.051 67.133 19.382 C 67.133 19.382 67.575 19.577 67.918 17.786 C 67.918 17.786 68.931 15.464 66.222 15.025 C 66.222 15.025 64.366 13.767 63.527 17.326 C 63.527 17.326 61.943 24.053 64.107 27.124 C 64.107 27.124 65.223 29.145 70.904 23.641 L 70.895 23.628 C 72.877 21.692 75.876 18.19 75.876 18.19 C 79.053 23.978 74.211 25.534 74.211 25.534 C 72.395 26.709 74.238 26.983 74.238 26.983 C 81.695 27.139 82.293 22.662 82.293 22.662 C 82.472 19.445 78.085 14.804 78.085 14.804 Z\" fill=\"rgb(23,23,23)\"></path><path d=\"M 59.44 1.222 C 59.44 1.222 57.017 -1.813 57.427 1.683 C 57.427 1.683 57.758 8.983 56.548 18.068 C 56.405 17.714 56.222 17.354 55.963 16.995 C 55.963 16.995 53.853 14.199 51.478 14.979 C 51.478 14.979 48.461 15.922 46.708 20.452 C 46.708 20.452 45.471 23.585 45.824 25.939 C 45.824 25.939 45.707 32.134 53.299 27.756 C 53.299 27.756 54.103 27.272 55.044 26.324 C 54.866 27.095 54.567 27.605 54.535 28.398 C 54.535 28.398 54.263 30.034 55.017 30.446 C 55.303 30.605 55.615 30.383 56.285 28.797 C 56.285 28.797 61.68 15.045 61.971 9.368 C 61.971 9.368 63.867 6.549 59.44 1.222 Z M 50.028 25.97 C 50.028 25.97 49.47 25.601 49.506 23.94 C 49.506 23.94 49.662 21.055 51.634 18.741 C 51.634 18.741 52.183 18.05 52.638 17.966 C 52.786 17.941 53.027 18.157 53.138 19.039 C 53.165 19.251 52.54 19.3 52.768 19.987 C 52.768 19.987 53.821 22.629 56.035 21.437 C 55.941 21.982 55.843 22.527 55.736 23.072 C 54.584 24.663 52.161 27.41 50.028 25.97 Z\" fill=\"rgb(23,23,23)\"></path><path d=\"M 71.58 7.936 C 71.7 6.833 71.013 5.853 70.053 5.751 C 69.121 5.651 68.273 6.416 68.117 7.471 C 68.014 7.923 68.014 8.277 67.991 8.769 C 67.96 9.204 67.402 10.75 67.893 10.874 C 68.379 11 69.888 10.068 70.62 9.522 C 71.128 9.212 71.504 8.632 71.58 7.936 Z\" fill=\"rgb(23,23,23)\"></path><path d=\"M 102.538 13.939 C 102.538 13.939 97.361 21.579 97.379 24.123 C 97.379 24.123 97.169 26.472 99.851 26.379 C 99.851 26.379 102.56 26.219 104.506 24.628 C 104.506 24.628 105.751 23.396 106.479 23.25 C 106.479 23.25 108.242 23.432 107.675 21.105 C 107.675 21.105 107.09 18.473 106.43 17.475 C 106.43 17.475 105.832 16.306 105.095 16.753 C 105.095 16.753 104.399 17.067 104.631 18.309 C 104.631 18.309 104.573 18.359 104.93 19.364 C 104.93 19.364 105.765 21.912 105.274 21.983 C 105.274 21.983 105.042 22.008 104.765 22.267 C 104.609 22.413 104.296 22.755 103.962 22.989 C 103.962 22.989 101.596 24.567 102.127 22.337 C 102.127 22.337 102.44 20.999 102.779 20.17 C 102.779 20.17 104.096 16.501 105.55 14.537 C 105.55 14.537 106.965 12.849 105.238 12.982 C 105.13 12.986 104.872 13.07 104.747 13.007 C 104.747 13.007 103.837 12.233 102.538 13.939 Z\" fill=\"rgb(23,23,23)\"></path><path d=\"M 91.727 17.289 C 90.812 16.717 89.776 14.598 90.584 13.592 C 90.937 13.158 91.655 12.768 91.548 12.148 C 91.316 10.774 88.902 12.152 88.455 13.787 C 87.558 16.265 84.858 17.847 84.858 17.847 C 84.421 18.237 84.314 19.247 84.314 19.247 C 84.229 21.073 85.403 19.788 85.403 19.788 C 87.09 18.489 88.286 17.572 88.286 17.572 C 91.463 23.355 86.612 24.911 86.612 24.911 C 85.974 25.155 85.818 25.447 85.818 25.819 C 85.835 26.315 86.648 26.359 86.648 26.359 C 94.101 26.514 94.699 22.038 94.699 22.038 C 95.042 20.053 92.967 18.148 91.727 17.289 Z\" fill=\"rgb(23,23,23)\"></path><path d=\"M 43.668 26.224 C 43.668 26.224 43.654 26.136 43.578 26.069 C 43.378 25.932 42.391 26.375 41.414 26.956 C 41.258 27.044 41.119 27.13 40.985 27.2 C 40.628 27.426 40.28 27.643 40.142 27.763 C 40.142 27.763 39.513 28.264 39.58 27.142 C 39.584 27.13 39.584 27.117 39.584 27.092 C 39.593 26.843 39.642 26.529 39.66 26.187 C 39.66 26.187 40.521 22.766 40.892 21.809 C 40.892 21.809 41.097 20.904 41.418 19.877 C 41.418 19.877 42.891 18.361 40.191 17.869 C 40.191 17.869 38.901 14.718 37.509 19.681 C 37.415 19.171 36.942 18.383 36.219 18.068 C 36.072 17.993 35.867 17.926 35.581 17.904 C 35.473 17.891 35.402 17.916 35.166 17.891 C 35.166 17.891 33.872 17.453 32.484 19.172 C 31.011 20.781 26.709 25.904 27.691 30.189 C 27.691 30.189 28.226 32.41 30.208 32.397 C 30.208 32.397 32.836 32.422 34.818 30.562 C 34.818 30.562 35.416 30.034 36.05 29.263 C 36.076 29.53 36.117 29.817 36.197 30.101 C 36.206 30.164 36.22 30.214 36.237 30.27 C 36.237 30.27 36.308 30.766 36.719 31.143 C 37.023 31.418 37.505 31.626 38.281 31.523 C 38.357 31.511 38.442 31.486 38.522 31.461 C 38.522 31.461 41.303 30.791 41.236 29.617 C 41.2 29.036 41.414 28.921 41.414 28.921 C 41.414 28.921 41.588 28.82 41.526 28.619 C 41.526 28.619 43.744 27.155 43.668 26.224 Z M 35.652 27.848 C 35.425 28.211 35.21 28.623 34.612 29.005 C 34.612 29.005 31.573 30.853 31.68 28.243 C 31.68 28.243 31.783 26.793 32.283 25.45 C 32.283 25.45 33.684 21.914 35.853 19.857 C 36.049 19.658 36.224 19.636 36.335 19.782 C 36.639 20.19 36.692 20.66 36.92 21.045 C 36.982 21.146 37.049 21.249 37.121 21.355 C 36.862 22.676 36.197 25.193 36.081 27.09 C 36.001 27.351 35.813 27.604 35.652 27.848 Z\" fill=\"rgb(23,23,23)\"></path><path d=\"M 14.452 13.525 C 14.251 13.157 13.8 13.362 12.725 15.09 C 12.725 15.09 3.522 30.526 1.666 37.843 C 1.666 37.843 -0.374 42.9 2.357 44.717 C 2.357 44.717 2.964 45.674 3.714 45.847 C 3.919 46.942 4.312 47.952 5.071 47.607 C 5.334 47.481 5.374 46.588 5.343 45.714 L 5.357 45.719 C 5.339 44.988 5.41 44.349 5.5 43.844 C 5.562 43.636 5.62 43.423 5.678 43.175 C 5.678 43.175 5.719 43.015 5.795 42.722 C 5.826 42.622 5.848 42.576 5.848 42.576 L 5.83 42.581 C 6.669 39.284 10.886 23.112 14.256 16.265 C 14.256 16.265 15.036 14.584 14.452 13.525 Z\" fill=\"rgb(23,23,23)\"></path><path d=\"M 125.873 24.621 C 124.628 23.858 121.196 17.002 121.196 17.002 C 120.402 15.815 119.032 17.255 119.032 17.255 C 118.112 17.96 116.836 20.171 116.18 21.496 C 115.305 22.981 115.528 21.044 115.528 21.044 C 115.572 20.516 115.729 19.679 116.322 19.289 C 116.322 19.289 116.782 19.67 117.291 17.924 C 117.291 17.924 118.259 15.633 115.867 15.012 C 115.867 15.012 114.14 13.581 112.971 17.051 C 112.971 17.051 111.346 22.072 111.993 25.201 C 111.993 25.201 112.292 28.871 115.421 25.999 C 115.729 25.711 116.064 25.268 116.412 24.771 C 117.054 23.788 117.233 23.429 117.679 22.405 C 118.447 20.623 119.795 19.014 120.036 18.744 C 119.861 20.832 122.285 26.34 122.285 26.34 C 123.133 29.15 124.503 29.048 124.503 29.048 C 131.572 29.288 125.873 24.621 125.873 24.621 Z\" fill=\"rgb(23,23,23)\"></path><path d=\"M 18.106 41.146 C 18.316 40.893 18.517 40.499 19.593 40.238 C 19.593 40.238 56.188 27.895 104.874 30.363 C 104.874 30.363 107.636 30.263 106.886 31.463 C 106.445 32.167 105.623 32.212 104.062 32.292 C 104.062 32.292 103.535 32.38 101.464 32.355 C 101.464 32.355 106.44 34.278 86.79 33.879 C 86.79 33.879 88.522 35.634 81.296 35.129 C 81.296 35.129 61.142 34.216 20.409 41.551 C 20.409 41.551 17.205 42.231 18.106 41.146 Z\" fill=\"rgb(86,159,166)\"></path><path d=\"M 110.193 30.649 C 111.684 30.737 113.357 30.762 115.678 30.982 C 116.883 31.108 118.74 31.108 119.003 31.878 C 119.244 32.592 118.338 33.323 116.714 33.633 C 115.892 33.793 115.375 33.926 114.638 33.899 C 113.764 33.874 111.885 33.937 111.831 32.933 C 111.796 32.309 110.564 32.313 109.751 32.281 C 108.109 32.218 108.279 31.754 108.636 31.2 C 108.85 30.863 109.296 30.641 110.193 30.649 Z\" fill=\"rgb(86,159,166)\"></path><path d=\"M 127.033 17.186 C 127.774 17.186 128.394 17.771 128.394 18.529 C 128.394 19.283 127.774 19.872 127.033 19.872 C 126.288 19.872 125.672 19.282 125.672 18.529 C 125.672 17.771 126.288 17.186 127.033 17.186 Z M 127.033 20.138 C 127.934 20.138 128.653 19.424 128.653 18.529 C 128.653 17.638 127.934 16.925 127.033 16.925 C 126.131 16.925 125.413 17.638 125.413 18.529 C 125.413 19.425 126.131 20.138 127.033 20.138 Z M 127.314 18.609 C 127.555 18.6 127.796 18.472 127.796 18.116 C 127.796 17.736 127.501 17.638 127.167 17.638 L 126.403 17.638 L 126.403 19.441 L 126.671 19.441 L 126.671 18.608 L 127.006 18.608 L 127.475 19.441 L 127.774 19.441 Z M 127.127 17.904 C 127.341 17.904 127.533 17.916 127.533 18.148 C 127.533 18.391 127.198 18.351 126.948 18.351 L 126.671 18.351 L 126.671 17.904 Z\" fill=\"rgb(23,23,23)\"></path><path d=\"M 28.431 39.406 C 28.431 39.406 20.509 27.581 19.701 25.069 C 19.701 25.069 19.349 24.116 18.862 23.566 C 19.371 23.566 19.942 23.553 20.598 23.516 C 20.598 23.516 24.802 23.44 26.579 20.21 C 27.065 19.328 28.002 16.292 24.378 12.48 C 24.378 12.48 19.799 7.078 9.392 6.391 C 9.392 6.391 6.585 5.075 1.229 9.48 C 1.229 9.48 -0.788 11.071 0.346 11.443 C 0.863 11.612 1.225 11.612 1.698 11.481 C 1.698 11.481 10.392 8.556 21.192 14.721 C 21.192 14.721 25.454 17.393 22.803 20.061 C 22.803 20.061 21.75 21.222 19.068 21.643 C 19.068 21.643 18.429 21.769 17.171 21.896 C 17.171 21.896 16.542 21.946 15.685 21.984 C 15.685 21.984 14.6 21.975 14.484 22.294 C 14.435 22.489 14.618 22.564 15.207 22.848 C 15.212 22.848 15.207 22.844 15.207 22.848 C 14.082 22.974 13.658 23.132 13.391 23.429 C 13.391 23.429 13.172 23.686 13.288 23.974 C 14.038 25.955 17.474 34.109 25.24 40.509 C 25.24 40.509 29.707 43.975 30.702 43.119 C 31.01 42.853 29.89 41.427 28.431 39.406 Z\" fill=\"rgb(23,23,23)\"></path></g></svg>',svgContentId:11621801320,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12il3zs\",\"data-framer-name\":\"Maison Mathis\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1340,pixelWidth:921,sizes:\"42px\",src:\"https://framerusercontent.com/images/yFTrxM9CrA7uUYPs5QydxB1ukc.png\",srcSet:\"https://framerusercontent.com/images/yFTrxM9CrA7uUYPs5QydxB1ukc.png?scale-down-to=1024 703w,https://framerusercontent.com/images/yFTrxM9CrA7uUYPs5QydxB1ukc.png 921w\"},className:\"framer-1u819vy\",\"data-framer-name\":\"MaisonMathisLogo\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-eu5l7d\",\"data-framer-name\":\"Osteria Con Cucina\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1716,pixelWidth:2500,sizes:\"97px\",src:\"https://framerusercontent.com/images/HKN8OFCCf8TfzM5hf2HoSm9ts.jpg\",srcSet:\"https://framerusercontent.com/images/HKN8OFCCf8TfzM5hf2HoSm9ts.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HKN8OFCCf8TfzM5hf2HoSm9ts.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HKN8OFCCf8TfzM5hf2HoSm9ts.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/HKN8OFCCf8TfzM5hf2HoSm9ts.jpg 2500w\"},className:\"framer-fjdhtg\",\"data-framer-name\":\"b7ae5d_d9252cc99c1f46809431f1b91cee863b~mv2\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nd54gk\",\"data-framer-name\":\"Taj Hotels\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2286,sizes:\"60px\",src:\"https://framerusercontent.com/images/6U7hI04yqtBmL0kcqkNLd3aNt0Y.png\",srcSet:\"https://framerusercontent.com/images/6U7hI04yqtBmL0kcqkNLd3aNt0Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/6U7hI04yqtBmL0kcqkNLd3aNt0Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6U7hI04yqtBmL0kcqkNLd3aNt0Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6U7hI04yqtBmL0kcqkNLd3aNt0Y.png 2286w\"},className:\"framer-hsgvg1\",\"data-framer-name\":\"Taj_Hotels_logo\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wlpzay\",\"data-framer-name\":\"Four Seasons\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:309,pixelWidth:465,src:\"https://framerusercontent.com/images/PvmcPuNUthvZL8P51Q1g2cP8Ees.png\"},className:\"framer-14y8gg8\",\"data-framer-name\":\"four-seasons-png-black-and-white--465 3\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ljx2s8\",\"data-framer-name\":\"The Maine\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:226,pixelWidth:500,src:\"https://framerusercontent.com/images/22Q5jrNnxHcsCYfzy2eTgeuYc.png\"},className:\"framer-nasvcg\",\"data-framer-name\":\"logo-JBR 3\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11rwcgv\",\"data-framer-name\":\"Wolfgang Puck\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:270,pixelWidth:642,sizes:\"140px\",src:\"https://framerusercontent.com/images/zGWolvDBraxteul1A5qdUZZQztU.png\",srcSet:\"https://framerusercontent.com/images/zGWolvDBraxteul1A5qdUZZQztU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zGWolvDBraxteul1A5qdUZZQztU.png 642w\"},className:\"framer-ix49h3\",\"data-framer-name\":\"Wolfgang Puck Restaurant Logo\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hfpan\",\"data-framer-name\":\"Oriya\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:184,pixelWidth:352,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AuBZTv9QXkbHqvpeVaJkfyEkOs.png\"},className:\"framer-1t67mkv\",\"data-framer-name\":\"logo-79978932280 (1) 1\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:67,intrinsicWidth:107,pixelHeight:67,pixelWidth:107,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lKZo4dycIzlix9Cq8YMx3CydZP8.svg\"},className:\"framer-144l0lq\",\"data-framer-name\":\"Asia\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w1oy3g\",\"data-framer-name\":\"Ora\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:494,pixelWidth:1089,sizes:\"98px\",src:\"https://framerusercontent.com/images/G5gEA6fHbACy5qcFstt12q2CpQU.png\",srcSet:\"https://framerusercontent.com/images/G5gEA6fHbACy5qcFstt12q2CpQU.png?scale-down-to=512 512w,https://framerusercontent.com/images/G5gEA6fHbACy5qcFstt12q2CpQU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G5gEA6fHbACy5qcFstt12q2CpQU.png 1089w\"},className:\"framer-zdrqz\",\"data-framer-name\":\"ORA_NEW_LOGO 2\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-34uf24\",\"data-framer-name\":\"Nola\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:650,pixelWidth:650,sizes:\"114px\",src:\"https://framerusercontent.com/images/bQmMHZZldyCIGQfwhfIOoCGlFGc.png\",srcSet:\"https://framerusercontent.com/images/bQmMHZZldyCIGQfwhfIOoCGlFGc.png?scale-down-to=512 512w,https://framerusercontent.com/images/bQmMHZZldyCIGQfwhfIOoCGlFGc.png 650w\"},className:\"framer-19g84mr\",\"data-framer-name\":\"10891928_601897969909705_1964260748268288400_n\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bi8qrm\",\"data-framer-name\":\"Kempinski\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1115,pixelWidth:2560,sizes:\"130px\",src:\"https://framerusercontent.com/images/7H84Nm8ZeikIiyDEK7Z2TCcqJ2M.png\",srcSet:\"https://framerusercontent.com/images/7H84Nm8ZeikIiyDEK7Z2TCcqJ2M.png?scale-down-to=512 512w,https://framerusercontent.com/images/7H84Nm8ZeikIiyDEK7Z2TCcqJ2M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7H84Nm8ZeikIiyDEK7Z2TCcqJ2M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7H84Nm8ZeikIiyDEK7Z2TCcqJ2M.png 2560w\"},className:\"framer-1p16hbv\",\"data-framer-name\":\"Kempinski_Hotels_&_Resorts_Logo\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f2lxhq\",\"data-framer-name\":\"Wyndham\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:108,pixelWidth:724,positionX:\"center\",positionY:\"center\",sizes:\"180px\",src:\"https://framerusercontent.com/images/jyJyXhYjMtuIlHhjPbIVZoTcgs.png\",srcSet:\"https://framerusercontent.com/images/jyJyXhYjMtuIlHhjPbIVZoTcgs.png?scale-down-to=512 512w,https://framerusercontent.com/images/jyJyXhYjMtuIlHhjPbIVZoTcgs.png 724w\"},className:\"framer-2mbpuj\",\"data-framer-name\":\"wyndham+logo 1\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d2qnq8\",\"data-framer-name\":\"SWOT\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1126,pixelWidth:1126,sizes:\"55px\",src:\"https://framerusercontent.com/images/dgt2cjUy5COjfhAlAxVmnkMCOTE.jpg\",srcSet:\"https://framerusercontent.com/images/dgt2cjUy5COjfhAlAxVmnkMCOTE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dgt2cjUy5COjfhAlAxVmnkMCOTE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dgt2cjUy5COjfhAlAxVmnkMCOTE.jpg 1126w\"},className:\"framer-18ubatj\",\"data-framer-name\":\"Swot-Logo\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xkbjuo\",\"data-framer-name\":\"Aoki Group\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:501,pixelWidth:1101,sizes:\"114px\",src:\"https://framerusercontent.com/images/cW5i8XSMaXryhJKJnqlJsovdwu4.png\",srcSet:\"https://framerusercontent.com/images/cW5i8XSMaXryhJKJnqlJsovdwu4.png?scale-down-to=512 512w,https://framerusercontent.com/images/cW5i8XSMaXryhJKJnqlJsovdwu4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cW5i8XSMaXryhJKJnqlJsovdwu4.png 1101w\"},className:\"framer-178thga\",\"data-framer-name\":\"Aoki-Group-Logo-Web-Black-01-01 (3)\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o7van9\",\"data-framer-name\":\"One & Only\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:500,pixelWidth:900,sizes:\"82px\",src:\"https://framerusercontent.com/images/dfWofT8Mp7qdqjTszhpu51BLIA.png\",srcSet:\"https://framerusercontent.com/images/dfWofT8Mp7qdqjTszhpu51BLIA.png?scale-down-to=512 512w,https://framerusercontent.com/images/dfWofT8Mp7qdqjTszhpu51BLIA.png 900w\"},className:\"framer-87pap5\",\"data-framer-name\":\"oneandonly-resorts-logo-vector 2\"})})],speed:40,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jimioe-container\",isModuleExternal:true,nodeId:\"FTTMSv30k\",scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(NavbarFilledButton,{height:\"100%\",id:\"FTTMSv30k\",layoutId:\"FTTMSv30k\",link:\"https://admin.eatapp.co/sign_up?utm_source=Comparisons&utm_medium=Logo+repeater&utm_campaign=eatapp.co&utm_content=Request+Demo\",title:\"Request Demo\",variant:\"OtWkfHntQ\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i5gjov\",\"data-framer-name\":\"USP\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q6oezn\",\"data-framer-name\":\"Frame 39306\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-netzkp\",\"data-framer-name\":\"Frame 39294\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ti6sh\",\"data-framer-name\":\"Frame 39304\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8v1pm2\",\"data-styles-preset\":\"MiTP6YosN\",children:\"Buyers guide to restaurant reservation software\"})}),className:\"framer-1el8i7n\",\"data-framer-name\":\"Buyers guide to restaurant reservation software\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"This guide is for restaurant owners and managers who are looking for restaurant reservation software and want to make an informed decision.\"})}),className:\"framer-fveq8m\",\"data-framer-name\":\"Supercharge Eat App: enhance revenue, efficiency, staff workflows via social media, Google, POS, payments, phones, hotel PMS.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{y:undefined},LmdC17N7y:{y:(componentViewport?.y||0)+0+355985+100+0+0+408+0+216}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"200px\",y:(componentViewport?.y||0)+0+119885+100+0+52+0+216,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f9bucy-container\",nodeId:\"sxsXx7qkz\",scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(ButtonLarge,{FUt_CdV5_:\"https://restaurant.eatapp.co/blog/online-restaurant-reservation-systems?utm_source=Comparisons&utm_medium=Buyers+guide&utm_campaign=eatapp.co&utm_content=Check+out+the+guide\",height:\"100%\",id:\"sxsXx7qkz\",layoutId:\"sxsXx7qkz\",nlJMHYalf:\"Read the guide\",q04PyOp5x:\"var(--token-9e5a84ad-8927-45d6-aa15-4ddcab981904, rgb(36, 169, 95))\",style:{width:\"100%\"},TDdoU7eHm:true,tU60Onr8w:\"var(--token-bdb78e69-2b22-4efc-bac1-0749eeabd9be, rgb(9, 119, 62))\",variant:\"rpJfo7ONV\",width:\"100%\",XAs4b75Hx:\"var(--token-f474097e-d954-444b-a4b9-4dae117d512b, rgb(18, 136, 73))\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b6k0v2\",\"data-framer-name\":\"Frame 39305\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:917.3333333333334,intrinsicWidth:1280,pixelHeight:1376,pixelWidth:1920,sizes:`max(min(1180px, ${componentViewport?.width||\"100vw\"}) * 0.8, 1px)`,src:\"https://framerusercontent.com/images/LgtjG0ejta3vNXzkTRFKeqOeVU.webp\",srcSet:\"https://framerusercontent.com/images/LgtjG0ejta3vNXzkTRFKeqOeVU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/LgtjG0ejta3vNXzkTRFKeqOeVU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/LgtjG0ejta3vNXzkTRFKeqOeVU.webp 1920w\"}},LmdC17N7y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:917.3333333333334,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+355985+100+0+0+0+183.5),pixelHeight:1376,pixelWidth:1920,sizes:`max(min(1180px, ${componentViewport?.width||\"100vw\"}) * 0.8, 1px)`,src:\"https://framerusercontent.com/images/LgtjG0ejta3vNXzkTRFKeqOeVU.webp\",srcSet:\"https://framerusercontent.com/images/LgtjG0ejta3vNXzkTRFKeqOeVU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/LgtjG0ejta3vNXzkTRFKeqOeVU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/LgtjG0ejta3vNXzkTRFKeqOeVU.webp 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:917.3333333333334,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119885+100+0+0+183.5),pixelHeight:1376,pixelWidth:1920,sizes:`max(min(1180px, ${componentViewport?.width||\"100vw\"}) * 0.4068, 1px)`,src:\"https://framerusercontent.com/images/LgtjG0ejta3vNXzkTRFKeqOeVU.webp\",srcSet:\"https://framerusercontent.com/images/LgtjG0ejta3vNXzkTRFKeqOeVU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/LgtjG0ejta3vNXzkTRFKeqOeVU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/LgtjG0ejta3vNXzkTRFKeqOeVU.webp 1920w\"},className:\"framer-r10tki\",\"data-framer-name\":\"Confused\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ekmq3p\",\"data-framer-name\":\"Feature set\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u3e4te\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-t6epz8\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:275,svg:'<svg width=\"275\" height=\"26\" viewBox=\"0 0 275 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M103.274 20.7557C114.651 13.8383 125.883 7.00961 137.408 0.00279524C148.787 6.93745 160.138 13.8548 171.635 20.8626C182.908 13.9745 194.122 7.12108 205.776 0C217.048 6.82045 228.436 13.7095 240.001 20.7063C245.795 17.27 251.452 13.7962 257.223 10.5263C262.785 7.37419 267.706 3.01418 274.012 0.919181C275.682 4.01834 273.673 5.19231 272.043 6.24584C269.032 8.19193 265.872 9.90594 262.779 11.7241C256.146 15.6255 249.521 19.5414 242.878 23.4263C241.857 24.0238 240.762 24.4953 239.79 24.9795C229.325 18.73 219.061 12.5957 208.792 6.47146C206.726 5.23982 204.967 5.17592 202.651 6.60485C192.47 12.8881 182.098 18.8634 171.564 25.0864C161.497 19.0279 151.397 12.9767 141.331 6.87074C138.761 5.31205 136.731 5.15216 133.858 6.97949C124.487 12.9411 114.793 18.3966 105.216 24.0339C104.634 24.3765 103.989 24.6104 103.232 24.9594C98.0809 22.0165 92.8611 19.1129 87.7208 16.075C82.2791 12.8579 76.8574 9.59984 71.5426 6.17915C69.3654 4.77754 67.5929 5.53495 65.8012 6.57475C62.6984 8.37647 59.6997 10.3554 56.6142 12.1892C49.5571 16.3838 42.4745 20.5336 35.0538 24.9073C33.6796 24.2467 31.9336 23.5596 30.3392 22.6168C21.3616 17.3029 12.4041 11.9553 3.48497 6.54363C2.2095 5.76983 1.09386 4.667 0.0943185 3.54685C-0.164238 3.25631 0.157357 2.24306 0.474415 1.72048C0.66262 1.40887 1.45483 1.16678 1.8139 1.30748C3.40274 1.92876 5.02445 2.55188 6.46986 3.44089C14.1894 8.18552 21.8523 13.0233 29.5517 17.799C31.1506 18.7904 32.8254 19.6583 34.6902 20.7109C39.8012 17.6565 44.944 14.6122 50.0578 11.5195C55.3223 8.33626 60.6125 5.19054 65.7838 1.86112C68.2836 0.252175 70.2469 0.515332 72.7266 2.09505C82.2378 8.15624 91.9008 13.9799 101.514 19.8804C102.083 20.2294 102.713 20.4788 103.274 20.7557Z\" fill=\"#C1E4CD\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o56gix\",\"data-framer-name\":\"Frame 39294\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LmdC17N7y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1x8s5d1\",\"data-styles-preset\":\"VYM6DA27S\",style:{\"--framer-text-alignment\":\"center\"},children:\"Discover why restaurants love Eat App\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xx8fcm\",\"data-styles-preset\":\"ojXMISvj2\",children:\"Discover why restaurants love Eat App\"})}),className:\"framer-1m2ddmh\",\"data-framer-name\":\"Streamline your restaurant operations today\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1by8miv\",\"data-framer-name\":\"Frame 2608263\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{y:undefined},LmdC17N7y:{y:(componentViewport?.y||0)+0+356857+40+0+0+100+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"200px\",y:(componentViewport?.y||0)+0+120453+100+0+0+100+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-187agu0-container\",nodeId:\"ZNCJFdBnp\",scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(ButtonLarge,{FUt_CdV5_:\"https://admin.eatapp.co/sign_up?utm_source=Comparisons&utm_medium=Footer+CTA&utm_campaign=eatapp.co&utm_content=Get+started\",height:\"100%\",id:\"ZNCJFdBnp\",layoutId:\"ZNCJFdBnp\",nlJMHYalf:\"Get Started\",q04PyOp5x:\"var(--token-9e5a84ad-8927-45d6-aa15-4ddcab981904, rgb(36, 169, 95))\",style:{width:\"100%\"},TDdoU7eHm:true,tU60Onr8w:\"var(--token-bdb78e69-2b22-4efc-bac1-0749eeabd9be, rgb(9, 119, 62))\",variant:\"rpJfo7ONV\",width:\"100%\",XAs4b75Hx:\"var(--token-f474097e-d954-444b-a4b9-4dae117d512b, rgb(18, 136, 73))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BcZiLMhSJ:{y:undefined},LmdC17N7y:{y:(componentViewport?.y||0)+0+356857+40+0+0+100+0+64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"200px\",y:(componentViewport?.y||0)+0+120453+100+0+0+100+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c2h3ts-container\",nodeId:\"PEa3x4Xga\",scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(ButtonLarge,{FUt_CdV5_:\"https://admin.eatapp.co/sign_up?utm_source=Comparisons&utm_medium=Footer+CTA&utm_campaign=eatapp.co&utm_content=Request+Demo\",height:\"100%\",id:\"PEa3x4Xga\",layoutId:\"PEa3x4Xga\",nlJMHYalf:\"Request Demo\",q04PyOp5x:\"var(--token-9e5a84ad-8927-45d6-aa15-4ddcab981904, rgb(36, 169, 95))\",style:{width:\"100%\"},TDdoU7eHm:false,tU60Onr8w:\"var(--token-bdb78e69-2b22-4efc-bac1-0749eeabd9be, rgb(9, 119, 62))\",variant:\"rpJfo7ONV\",width:\"100%\",XAs4b75Hx:\"var(--token-f474097e-d954-444b-a4b9-4dae117d512b, rgb(18, 136, 73))\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8zwymz\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dhdbju\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:92,intrinsicWidth:275,svg:'<svg width=\"275\" height=\"92\" viewBox=\"0 0 275 92\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M274.245 66.7832C275.173 69.5351 275.205 70.743 273.417 71.7919C264.571 76.9796 255.558 81.9399 247.101 87.7096C241.848 91.2939 238.024 90.8261 232.94 87.3798C224.476 81.6438 215.399 76.8133 206.003 71.2601C194.862 77.8649 183.437 84.6398 171.808 91.5333C165.615 87.9271 159.689 84.5456 153.835 81.0453C149.142 78.2413 144.508 75.3359 139.907 72.3839C138.25 71.3204 136.845 71.3195 135.169 72.3638C127.05 77.4209 118.899 82.4278 110.717 87.3808C108.519 88.7101 106.169 89.7855 103.589 91.135C91.4556 85.9088 81.0471 77.293 68.8753 71.3241C63.0288 74.8133 57.1869 78.3044 51.3395 81.7881C46.6415 84.5867 41.9086 87.3305 37.2481 90.1911C35.3833 91.3351 33.715 91.1313 31.9681 90.0641C22.4897 84.2715 12.9959 78.5027 3.5304 72.6881C2.25855 71.907 1.11832 70.9092 0 70.0742C0.767475 67.4364 1.96891 67.0664 3.92231 68.2632C9.7469 71.8339 15.6163 75.3323 21.461 78.8727C25.9799 81.61 30.487 84.3684 35.0489 87.1478C44.0256 81.5891 52.5354 75.8503 61.4875 70.9138C69.7369 66.3647 68.118 65.6073 76.6443 70.9239C85.3442 76.3492 94.1994 81.5278 103.426 87.0783C114.622 80.2879 125.978 73.4008 137.529 66.3948C148.832 73.2053 160.214 80.065 171.8 87.0463C183.229 80.1692 194.638 73.3039 206.121 66.3948C217.405 73.2546 228.494 79.9947 239.922 86.9412C251.484 81.0363 262.139 73.0043 274.245 66.7832Z\" fill=\"#C1E4CD\"/>\\n<path d=\"M240.188 58.2249C237.451 56.679 234.459 55.081 231.56 53.3304C224.103 48.826 216.693 44.2441 209.252 39.7123C207.065 38.3802 205.185 38.1664 202.668 39.7754C193.888 45.387 184.864 50.6159 175.911 55.9554C174.595 56.7393 173.165 57.3322 171.59 58.1116C166.454 55.1586 161.246 52.2376 156.112 49.1925C150.675 45.9681 145.272 42.6844 139.93 39.3066C138.026 38.1024 136.613 38.4487 134.777 39.567C124.998 45.5177 115.122 51.3112 105.275 57.1477C104.696 57.4903 104.059 57.7361 103.207 58.1426C97.347 54.7503 91.4227 51.3615 85.5396 47.9014C81.1248 45.3039 76.7118 42.6954 72.3975 39.9371C69.9343 38.3619 67.8175 38.3866 65.3113 39.9553C56.1911 45.6675 46.9767 51.229 37.7725 56.806C36.7748 57.4108 35.6137 57.7461 34.4881 58.224C23.97 51.9298 13.5643 45.7205 3.18696 39.4637C2.18009 38.8562 1.13122 38.0915 0.521821 37.133C0.113397 36.4889 0.444084 35.3742 0.444084 33.6254C13.0782 39.4811 23.3368 47.8923 35.1696 53.8713C46.5228 46.9731 57.8767 40.0742 69.2563 33.1595C80.7063 40.1235 91.9281 46.9494 103.524 54.002C114.741 47.1193 126.064 40.171 137.593 33.0965C148.903 40.0092 160.111 46.8599 171.794 54.001C182.923 47.2079 194.262 40.2878 206.019 33.1111C217.096 39.8978 228.295 46.7594 239.917 53.8804C251.372 47.8804 262.22 40.1975 273.94 33.7059C274.88 37.1495 274.661 37.7927 272.33 39.2747C269.592 41.016 266.866 42.7786 264.065 44.414C256.254 48.9759 248.407 53.4766 240.188 58.2249Z\" fill=\"#C1E4CD\"/>\\n<path d=\"M103.419 20.7557C114.796 13.8383 126.028 7.00961 137.553 0.00279524C148.932 6.93745 160.283 13.8548 171.78 20.8626C183.053 13.9745 194.267 7.12108 205.921 0C217.194 6.82045 228.581 13.7095 240.146 20.7063C245.94 17.27 251.597 13.7962 257.368 10.5263C262.93 7.37419 267.851 3.01418 274.157 0.919181C275.827 4.01834 273.818 5.19231 272.188 6.24584C269.177 8.19193 266.017 9.90594 262.924 11.7241C256.291 15.6255 249.666 19.5414 243.023 23.4263C242.002 24.0238 240.907 24.4953 239.935 24.9795C229.47 18.73 219.206 12.5957 208.937 6.47146C206.871 5.23982 205.112 5.17592 202.796 6.60485C192.615 12.8881 182.243 18.8634 171.709 25.0864C161.642 19.0279 151.542 12.9767 141.476 6.87074C138.906 5.31205 136.876 5.15216 134.003 6.97949C124.632 12.9411 114.938 18.3966 105.361 24.0339C104.779 24.3765 104.134 24.6104 103.377 24.9594C98.2259 22.0165 93.0061 19.1129 87.8659 16.075C82.4241 12.8579 77.0024 9.59984 71.6877 6.17915C69.5104 4.77754 67.738 5.53495 65.9463 6.57475C62.8435 8.37647 59.8447 10.3554 56.7593 12.1892C49.7022 16.3838 42.6196 20.5336 35.1988 24.9073C33.8247 24.2467 32.0786 23.5596 30.4843 22.6168C21.5067 17.3029 12.5492 11.9553 3.63001 6.54363C2.35454 5.76983 1.23891 4.667 0.239364 3.54685C-0.0191924 3.25631 0.302403 2.24306 0.619461 1.72048C0.807666 1.40887 1.59988 1.16678 1.95895 1.30748C3.54778 1.92876 5.1695 2.55188 6.61491 3.44089C14.3344 8.18552 21.9974 13.0233 29.6968 17.799C31.2957 18.7904 32.9704 19.6583 34.8352 20.7109C39.9462 17.6565 45.0891 14.6122 50.2028 11.5195C55.4673 8.33626 60.7576 5.19054 65.9289 1.86112C68.4286 0.252175 70.392 0.515332 72.8717 2.09505C82.3829 8.15624 92.0458 13.9799 101.659 19.8804C102.229 20.2294 102.858 20.4788 103.419 20.7557Z\" fill=\"#C1E4CD\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l11\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mppwaz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5wefyf\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xsuj9k\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2qolva\",\"data-framer-name\":\"Logo / Cactus / Eat Logo\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vyqfp1\",\"data-framer-name\":\"Logo / Cactus / Eat Logo\",children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Logo\",motionChild:true,nodeId:\"DS0ZiA6OB\",openInNewTab:false,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1fg40z6 framer-19xlksj\",\"data-framer-name\":\"Eat App logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"24\" viewBox=\"0 0 48 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_1176_10649\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"48\" height=\"24\">\\n<path d=\"M9.77071 20.1928C10.3829 20.1928 10.9216 20.1244 11.3869 19.9876C11.8522 19.8507 12.2685 19.6827 12.6358 19.4837C13.0031 19.2846 13.3215 19.0669 13.5908 18.8305C13.8602 18.5941 14.1051 18.3764 14.3255 18.1773C14.6193 18.5505 14.9254 19.0295 15.2438 19.6143C15.5621 20.1991 15.7213 20.6781 15.7213 21.0513C15.7213 21.5988 15.4152 22.0964 14.803 22.5443C14.2887 22.9425 13.5602 23.2846 12.6174 23.5708C11.6746 23.8569 10.5666 24 9.29319 24C8.14225 24 7.00969 23.8507 5.89548 23.5521C4.78127 23.2535 3.78952 22.731 2.92019 21.9844C2.05087 21.2379 1.34684 20.2364 0.808104 18.9798C0.269365 17.7232 0 16.1369 0 14.2208C0 12.6532 0.238756 11.3033 0.716274 10.1711C1.19379 9.03887 1.83047 8.09954 2.62634 7.35303C3.4222 6.60653 4.32213 6.0591 5.32614 5.71073C6.33015 5.36236 7.35864 5.18818 8.41163 5.18818C9.78296 5.18818 10.9461 5.40591 11.9012 5.84137C12.8562 6.27683 13.6337 6.86158 14.2336 7.59565C14.8336 8.32971 15.2683 9.16951 15.5376 10.1151C15.807 11.0607 15.9417 12.056 15.9417 13.1011V13.6236C15.9417 13.8227 15.9356 14.0342 15.9233 14.2582C15.9111 14.4821 15.8988 14.6998 15.8866 14.9114C15.8743 15.1229 15.856 15.2908 15.8315 15.4152H5.03228C5.13024 16.7838 5.54653 17.9222 6.28117 18.8305C7.01581 19.7387 8.17898 20.1928 9.77071 20.1928ZM11.4236 12.6159C11.4236 11.4215 11.1971 10.451 10.7441 9.70451C10.2911 8.95801 9.47686 8.58476 8.30143 8.58476C7.27293 8.58476 6.46483 8.93934 5.87712 9.64852C5.2894 10.3577 4.99555 11.3468 4.99555 12.6159H11.4236ZM33.1463 19.0358C33.1463 20.9767 33.4279 22.4075 33.9911 23.3281C33.5503 23.5023 33.1401 23.6268 32.7606 23.7014C32.381 23.7761 31.9831 23.8134 31.5668 23.8134C30.6852 23.8134 30.0179 23.6392 29.5649 23.2908C29.1119 22.9425 28.8241 22.4448 28.7017 21.7978C28.163 22.3701 27.4528 22.8554 26.5712 23.2535C25.6897 23.6516 24.6122 23.8507 23.3388 23.8507C22.6776 23.8507 22.0165 23.7574 21.3553 23.5708C20.6941 23.3841 20.0942 23.0793 19.5554 22.6563C19.0167 22.2333 18.5759 21.6672 18.2331 20.958C17.8902 20.2488 17.7188 19.3841 17.7188 18.3639C17.7188 17.0949 18.0188 16.0622 18.6188 15.2659C19.2187 14.4697 19.9717 13.8414 20.8778 13.381C21.7838 12.9207 22.7634 12.6034 23.8163 12.4292C24.8693 12.2551 25.8366 12.1431 26.7182 12.0933C27.012 12.0684 27.2998 12.056 27.5814 12.056H28.3711V11.3841C28.3711 10.4386 28.1201 9.76672 27.6181 9.36859C27.1161 8.97045 26.3019 8.77138 25.1754 8.77138C24.1224 8.77138 23.1858 8.94557 22.3654 9.29393C21.5451 9.6423 20.7431 10.0404 19.9595 10.4883C19.6166 10.0653 19.3412 9.59876 19.133 9.08865C18.9249 8.57854 18.8208 8.19907 18.8208 7.95023C18.8208 7.62675 19.0106 7.29705 19.3901 6.96112C19.7697 6.62519 20.2901 6.3266 20.9512 6.06532C21.6124 5.80404 22.3715 5.59254 23.2286 5.43079C24.0857 5.26905 24.9918 5.18818 25.9468 5.18818C27.2692 5.18818 28.3895 5.32504 29.3078 5.59876C30.2261 5.87247 30.973 6.29549 31.5484 6.86781C32.1239 7.44013 32.5341 8.15552 32.7789 9.014C33.0238 9.87248 33.1463 10.874 33.1463 12.0187V19.0358ZM28.4446 14.7061H27.9303C27.7589 14.7061 27.5875 14.7185 27.4161 14.7434C26.8039 14.7932 26.1978 14.874 25.5978 14.986C24.9979 15.098 24.4653 15.2722 24 15.5086C23.5347 15.7449 23.1552 16.0622 22.8613 16.4603C22.5675 16.8585 22.4205 17.3686 22.4205 17.9907C22.4205 18.6874 22.6164 19.2784 23.0082 19.7636C23.4 20.2488 24.0612 20.4914 24.9918 20.4914C25.457 20.4914 25.8978 20.4292 26.3141 20.3048C26.7304 20.1804 27.0977 20.0187 27.4161 19.8196C27.7344 19.6205 27.9854 19.4028 28.1691 19.1664C28.3527 18.93 28.4446 18.7123 28.4446 18.5132V14.7061ZM37.3477 20.6781C37.1763 20.1804 37.0661 19.6579 37.0171 19.1104C36.9682 18.563 36.9437 18.0156 36.9437 17.4681V0.1493L37.4947 0.0746501C37.6661 0.0497666 37.8497 0.0311043 38.0456 0.0186625C38.2415 0.00622078 38.4374 0 38.6333 0C39.0252 0 39.417 0.0373247 39.8088 0.111975C40.2006 0.186626 40.5556 0.335924 40.874 0.559876C41.1923 0.783827 41.4495 1.08865 41.6454 1.47434C41.8413 1.86003 41.9392 2.36392 41.9392 2.986V5.59876H47.0817V9.40591H41.9392V17.3935C41.9392 19.1353 42.6371 20.0062 44.0329 20.0062C44.3758 20.0062 44.7002 19.9502 45.0063 19.8383C45.3124 19.7263 45.5941 19.6019 45.8512 19.465C46.1083 19.3281 46.3226 19.1851 46.494 19.0358C46.6654 18.8865 46.7878 18.7745 46.8613 18.6998C47.2286 19.2473 47.5102 19.7201 47.7061 20.1182C47.9021 20.5163 48 20.8896 48 21.2379C48 21.5614 47.8714 21.8787 47.6143 22.1897C47.3572 22.5008 46.996 22.7869 46.5307 23.0482C46.0654 23.3095 45.5022 23.521 44.8411 23.6827C44.1799 23.8445 43.4575 23.9254 42.6739 23.9254C41.1311 23.9254 39.9435 23.6268 39.1109 23.0295C38.2783 22.4323 37.6906 21.6485 37.3477 20.6781Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_1176_10649)\">\\n<path d=\"M9.77071 20.1928C10.3829 20.1928 10.9216 20.1244 11.3869 19.9876C11.8522 19.8507 12.2685 19.6827 12.6358 19.4837C13.0031 19.2846 13.3215 19.0669 13.5908 18.8305C13.8602 18.5941 14.1051 18.3764 14.3255 18.1773C14.6193 18.5505 14.9254 19.0295 15.2438 19.6143C15.5621 20.1991 15.7213 20.6781 15.7213 21.0513C15.7213 21.5988 15.4152 22.0964 14.803 22.5443C14.2887 22.9425 13.5602 23.2846 12.6174 23.5708C11.6746 23.8569 10.5666 24 9.29319 24C8.14225 24 7.00969 23.8507 5.89548 23.5521C4.78127 23.2535 3.78952 22.731 2.92019 21.9844C2.05087 21.2379 1.34684 20.2364 0.808104 18.9798C0.269365 17.7232 0 16.1369 0 14.2208C0 12.6532 0.238756 11.3033 0.716274 10.1711C1.19379 9.03887 1.83047 8.09954 2.62634 7.35303C3.4222 6.60653 4.32213 6.0591 5.32614 5.71073C6.33015 5.36236 7.35864 5.18818 8.41163 5.18818C9.78296 5.18818 10.9461 5.40591 11.9012 5.84137C12.8562 6.27683 13.6337 6.86158 14.2336 7.59565C14.8336 8.32971 15.2683 9.16951 15.5376 10.1151C15.807 11.0607 15.9417 12.056 15.9417 13.1011V13.6236C15.9417 13.8227 15.9356 14.0342 15.9233 14.2582C15.9111 14.4821 15.8988 14.6998 15.8866 14.9114C15.8743 15.1229 15.856 15.2908 15.8315 15.4152H5.03228C5.13024 16.7838 5.54653 17.9222 6.28117 18.8305C7.01581 19.7387 8.17898 20.1928 9.77071 20.1928ZM11.4236 12.6159C11.4236 11.4215 11.1971 10.451 10.7441 9.70451C10.2911 8.95801 9.47686 8.58476 8.30143 8.58476C7.27293 8.58476 6.46483 8.93934 5.87712 9.64852C5.2894 10.3577 4.99555 11.3468 4.99555 12.6159H11.4236ZM33.1463 19.0358C33.1463 20.9767 33.4279 22.4075 33.9911 23.3281C33.5503 23.5023 33.1401 23.6268 32.7606 23.7014C32.381 23.7761 31.9831 23.8134 31.5668 23.8134C30.6852 23.8134 30.0179 23.6392 29.5649 23.2908C29.1119 22.9425 28.8241 22.4448 28.7017 21.7978C28.163 22.3701 27.4528 22.8554 26.5712 23.2535C25.6897 23.6516 24.6122 23.8507 23.3388 23.8507C22.6776 23.8507 22.0165 23.7574 21.3553 23.5708C20.6941 23.3841 20.0942 23.0793 19.5554 22.6563C19.0167 22.2333 18.5759 21.6672 18.2331 20.958C17.8902 20.2488 17.7188 19.3841 17.7188 18.3639C17.7188 17.0949 18.0188 16.0622 18.6188 15.2659C19.2187 14.4697 19.9717 13.8414 20.8778 13.381C21.7838 12.9207 22.7634 12.6034 23.8163 12.4292C24.8693 12.2551 25.8366 12.1431 26.7182 12.0933C27.012 12.0684 27.2998 12.056 27.5814 12.056H28.3711V11.3841C28.3711 10.4386 28.1201 9.76672 27.6181 9.36859C27.1161 8.97045 26.3019 8.77138 25.1754 8.77138C24.1224 8.77138 23.1858 8.94557 22.3654 9.29393C21.5451 9.6423 20.7431 10.0404 19.9595 10.4883C19.6166 10.0653 19.3412 9.59876 19.133 9.08865C18.9249 8.57854 18.8208 8.19907 18.8208 7.95023C18.8208 7.62675 19.0106 7.29705 19.3901 6.96112C19.7697 6.62519 20.2901 6.3266 20.9512 6.06532C21.6124 5.80404 22.3715 5.59254 23.2286 5.43079C24.0857 5.26905 24.9918 5.18818 25.9468 5.18818C27.2692 5.18818 28.3895 5.32504 29.3078 5.59876C30.2261 5.87247 30.973 6.29549 31.5484 6.86781C32.1239 7.44013 32.5341 8.15552 32.7789 9.014C33.0238 9.87248 33.1463 10.874 33.1463 12.0187V19.0358ZM28.4446 14.7061H27.9303C27.7589 14.7061 27.5875 14.7185 27.4161 14.7434C26.8039 14.7932 26.1978 14.874 25.5978 14.986C24.9979 15.098 24.4653 15.2722 24 15.5086C23.5347 15.7449 23.1552 16.0622 22.8613 16.4603C22.5675 16.8585 22.4205 17.3686 22.4205 17.9907C22.4205 18.6874 22.6164 19.2784 23.0082 19.7636C23.4 20.2488 24.0612 20.4914 24.9918 20.4914C25.457 20.4914 25.8978 20.4292 26.3141 20.3048C26.7304 20.1804 27.0977 20.0187 27.4161 19.8196C27.7344 19.6205 27.9854 19.4028 28.1691 19.1664C28.3527 18.93 28.4446 18.7123 28.4446 18.5132V14.7061ZM37.3477 20.6781C37.1763 20.1804 37.0661 19.6579 37.0171 19.1104C36.9682 18.563 36.9437 18.0156 36.9437 17.4681V0.1493L37.4947 0.0746501C37.6661 0.0497666 37.8497 0.0311043 38.0456 0.0186625C38.2415 0.00622078 38.4374 0 38.6333 0C39.0252 0 39.417 0.0373247 39.8088 0.111975C40.2006 0.186626 40.5556 0.335924 40.874 0.559876C41.1923 0.783827 41.4495 1.08865 41.6454 1.47434C41.8413 1.86003 41.9392 2.36392 41.9392 2.986V5.59876H47.0817V9.40591H41.9392V17.3935C41.9392 19.1353 42.6371 20.0062 44.0329 20.0062C44.3758 20.0062 44.7002 19.9502 45.0063 19.8383C45.3124 19.7263 45.5941 19.6019 45.8512 19.465C46.1083 19.3281 46.3226 19.1851 46.494 19.0358C46.6654 18.8865 46.7878 18.7745 46.8613 18.6998C47.2286 19.2473 47.5102 19.7201 47.7061 20.1182C47.9021 20.5163 48 20.8896 48 21.2379C48 21.5614 47.8714 21.8787 47.6143 22.1897C47.3572 22.5008 46.996 22.7869 46.5307 23.0482C46.0654 23.3095 45.5022 23.521 44.8411 23.6827C44.1799 23.8445 43.4575 23.9254 42.6739 23.9254C41.1311 23.9254 39.9435 23.6268 39.1109 23.0295C38.2783 22.4323 37.6906 21.6485 37.3477 20.6781Z\" fill=\"#128849\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Empowering restaurants, one table at a time.\"}),/*#__PURE__*/_jsx(\"h3\",{style:{\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Discover seamless dining with Eat App.\"})]}),className:\"framer-1og8zb1\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dt5kuo\",\"data-framer-name\":\"Footer/Social links\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pw2shq\",\"data-framer-name\":\"Footers/Social link\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ew779i\",\"data-framer-name\":\"Footers/Social icon\",whileHover:animation6,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/eatapp/\",motionChild:true,nodeId:\"Y7MHKYRw4\",openInNewTab:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-b7yjae framer-19xlksj\",\"data-framer-name\":\"Instagram Page\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.315 0C12.745 0 13.099 0.0129999 14.123 0.0599999C15.187 0.109 15.914 0.278 16.55 0.525C17.2175 0.775874 17.8222 1.16936 18.322 1.678C18.8306 2.17777 19.2241 2.7825 19.475 3.45C19.722 4.086 19.891 4.813 19.94 5.877C19.988 6.944 20 7.284 20 10V10.08C20 12.723 19.988 13.067 19.94 14.123C19.891 15.187 19.722 15.914 19.475 16.55C19.2241 17.2175 18.8306 17.8222 18.322 18.322C17.8222 18.8306 17.2175 19.2241 16.55 19.475C15.914 19.722 15.187 19.891 14.123 19.94C13.056 19.988 12.716 20 10 20H9.92C7.277 20 6.933 19.988 5.877 19.94C4.813 19.891 4.086 19.722 3.45 19.475C2.7825 19.2241 2.17777 18.8306 1.678 18.322C1.16936 17.8222 0.775874 17.2175 0.525 16.55C0.278 15.914 0.109 15.187 0.0599999 14.123C0.0129999 13.099 0 12.744 0 10.315V9.685C0 7.255 0.0129999 6.901 0.0599999 5.877C0.109 4.813 0.278 4.086 0.525 3.45C0.775874 2.7825 1.16936 2.17777 1.678 1.678C2.17777 1.16936 2.7825 0.775874 3.45 0.525C4.086 0.278 4.813 0.109 5.877 0.0599999C6.901 0.0129999 7.256 0 9.685 0H10.315ZM10.234 1.802H9.766C7.31 1.802 6.982 1.813 5.959 1.86C4.984 1.905 4.455 2.067 4.102 2.204C3.635 2.386 3.302 2.602 2.952 2.952C2.602 3.302 2.386 3.635 2.204 4.102C2.067 4.455 1.904 4.984 1.86 5.959C1.813 6.982 1.802 7.31 1.802 9.766V10.234C1.802 12.69 1.813 13.018 1.86 14.041C1.905 15.016 2.067 15.545 2.204 15.898C2.386 16.364 2.603 16.698 2.952 17.048C3.302 17.398 3.635 17.614 4.102 17.796C4.455 17.933 4.984 18.096 5.959 18.14C7.013 18.188 7.329 18.198 10 18.198H10.08C12.677 18.198 12.997 18.188 14.04 18.14C15.016 18.095 15.545 17.933 15.898 17.796C16.364 17.614 16.698 17.398 17.048 17.048C17.398 16.698 17.614 16.365 17.796 15.898C17.933 15.545 18.096 15.016 18.14 14.041C18.188 12.986 18.198 12.671 18.198 10V9.92C18.198 7.323 18.188 7.003 18.14 5.96C18.095 4.984 17.933 4.455 17.796 4.102C17.6358 3.66757 17.3802 3.2746 17.048 2.952C16.7254 2.61986 16.3324 2.36426 15.898 2.204C15.545 2.067 15.016 1.904 14.041 1.86C13.018 1.813 12.69 1.802 10.234 1.802ZM10 4.865C10.6743 4.865 11.3421 4.99782 11.9651 5.25588C12.5881 5.51394 13.1542 5.89218 13.631 6.36901C14.1078 6.84584 14.4861 7.41191 14.7441 8.03492C15.0022 8.65793 15.135 9.32566 15.135 10C15.135 10.6743 15.0022 11.3421 14.7441 11.9651C14.4861 12.5881 14.1078 13.1542 13.631 13.631C13.1542 14.1078 12.5881 14.4861 11.9651 14.7441C11.3421 15.0022 10.6743 15.135 10 15.135C8.63811 15.135 7.33201 14.594 6.36901 13.631C5.40601 12.668 4.865 11.3619 4.865 10C4.865 8.63811 5.40601 7.33201 6.36901 6.36901C7.33201 5.40601 8.63811 4.865 10 4.865ZM10 6.667C9.11603 6.667 8.26827 7.01815 7.64321 7.64321C7.01815 8.26827 6.667 9.11603 6.667 10C6.667 10.884 7.01815 11.7317 7.64321 12.3568C8.26827 12.9818 9.11603 13.333 10 13.333C10.884 13.333 11.7317 12.9818 12.3568 12.3568C12.9818 11.7317 13.333 10.884 13.333 10C13.333 9.11603 12.9818 8.26827 12.3568 7.64321C11.7317 7.01815 10.884 6.667 10 6.667ZM15.338 3.462C15.6563 3.462 15.9615 3.58843 16.1865 3.81347C16.4116 4.03852 16.538 4.34374 16.538 4.662C16.538 4.98026 16.4116 5.28548 16.1865 5.51053C15.9615 5.73557 15.6563 5.862 15.338 5.862C15.0197 5.862 14.7145 5.73557 14.4895 5.51053C14.2644 5.28548 14.138 4.98026 14.138 4.662C14.138 4.34374 14.2644 4.03852 14.4895 3.81347C14.7145 3.58843 15.0197 3.462 15.338 3.462Z\" fill=\"#B7B7B7\"/>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x12puc\",\"data-framer-name\":\"Footers/Social link\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yxrlww\",\"data-framer-name\":\"Footers/Social icon\",whileHover:animation6,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/eat.app.restaurant.reservations/\",motionChild:true,nodeId:\"aRRx5jbR5\",openInNewTab:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1i6izrg framer-19xlksj\",\"data-framer-name\":\"Facebook Page\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20 10C20 4.477 15.523 0 10 0C4.477 0 0 4.477 0 10C0 14.991 3.657 19.128 8.438 19.878V12.891H5.898V10H8.438V7.797C8.438 5.291 9.93 3.907 12.215 3.907C13.309 3.907 14.453 4.102 14.453 4.102V6.562H13.193C11.95 6.562 11.563 7.333 11.563 8.124V10H14.336L13.893 12.89H11.563V19.878C16.343 19.128 20 14.991 20 10Z\" fill=\"#B7B7B7\"/>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j3sxn\",whileHover:animation6,children:/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/eatappco\",motionChild:true,nodeId:\"fRtPYEb_P\",scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1ji5ofr framer-19xlksj\",\"data-framer-name\":\"X Page\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_121_2236)\">\\n<path d=\"M11.5103 8.46429L18.7103 0H17.0041L10.7524 7.34942L5.75913 0H0L7.55079 11.1136L0 19.9897H1.70627L8.30828 12.2285L13.5815 19.9897H19.3407L11.5099 8.46429H11.5103ZM9.17336 11.2115L8.4083 10.1049L2.32106 1.29901H4.94178L9.85426 8.40562L10.6193 9.51229L17.005 18.7498H14.3842L9.17336 11.212V11.2115Z\" fill=\"#B7B7B7\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_121_2236\">\\n<rect width=\"19.3407\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15p8cu9\",whileHover:animation6,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/channel/UCh6BqA1lGljj3cixt3PQwJA\",motionChild:true,nodeId:\"Jgbev6vW2\",openInNewTab:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1qqkeyw framer-19xlksj\",\"data-framer-name\":\"YouTube Page\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 10 15 L 15.19 12 L 10 9 Z M 21.56 7.17 C 21.69 7.64 21.78 8.27 21.84 9.07 C 21.91 9.87 21.94 10.56 21.94 11.16 L 22 12 C 22 14.19 21.84 15.8 21.56 16.83 C 21.31 17.73 20.73 18.31 19.83 18.56 C 19.36 18.69 18.5 18.78 17.18 18.84 C 15.88 18.91 14.69 18.94 13.59 18.94 L 12 19 C 7.81 19 5.2 18.84 4.17 18.56 C 3.27 18.31 2.69 17.73 2.44 16.83 C 2.31 16.36 2.22 15.73 2.16 14.93 C 2.09 14.13 2.06 13.44 2.06 12.84 L 2 12 C 2 9.81 2.16 8.2 2.44 7.17 C 2.69 6.27 3.27 5.69 4.17 5.44 C 4.64 5.31 5.5 5.22 6.82 5.16 C 8.12 5.09 9.31 5.06 10.41 5.06 L 12 5 C 16.19 5 18.8 5.16 19.83 5.44 C 20.73 5.69 21.31 6.27 21.56 7.17 Z\" fill=\"rgb(183,183,183)\"></path></svg>',svgContentId:9004005703,withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pys7up\",whileHover:animation6,children:/*#__PURE__*/_jsx(Link,{href:\"https://ae.linkedin.com/company/eat-app\",motionChild:true,nodeId:\"ofPnS40R5\",openInNewTab:true,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-6n1dt9 framer-19xlksj\",\"data-framer-name\":\"LinkedIn Page\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19 3 C 19.53 3 20.039 3.211 20.414 3.586 C 20.789 3.961 21 4.47 21 5 L 21 19 C 21 19.53 20.789 20.039 20.414 20.414 C 20.039 20.789 19.53 21 19 21 L 5 21 C 4.47 21 3.961 20.789 3.586 20.414 C 3.211 20.039 3 19.53 3 19 L 3 5 C 3 4.47 3.211 3.961 3.586 3.586 C 3.961 3.211 4.47 3 5 3 Z M 18.5 18.5 L 18.5 13.2 C 18.5 12.335 18.157 11.506 17.545 10.895 C 16.934 10.284 16.105 9.94 15.24 9.94 C 14.39 9.94 13.4 10.46 12.92 11.24 L 12.92 10.13 L 10.13 10.13 L 10.13 18.5 L 12.92 18.5 L 12.92 13.57 C 12.92 12.8 13.54 12.17 14.31 12.17 C 14.681 12.17 15.037 12.318 15.3 12.58 C 15.563 12.843 15.71 13.199 15.71 13.57 L 15.71 18.5 Z M 6.88 8.56 C 7.326 8.56 7.753 8.383 8.068 8.068 C 8.383 7.753 8.56 7.326 8.56 6.88 C 8.56 5.95 7.81 5.19 6.88 5.19 C 6.432 5.19 6.002 5.368 5.685 5.685 C 5.368 6.002 5.19 6.432 5.19 6.88 C 5.19 7.81 5.95 8.56 6.88 8.56 Z M 8.27 18.5 L 8.27 10.13 L 5.5 10.13 L 5.5 18.5 Z\" fill=\"rgb(183,183,183)\"></path></svg>',svgContentId:11138513319,withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-55synb\",\"data-framer-name\":\"Links\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sg1y6f\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3jloge\",\"data-framer-name\":\"Footers/Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Features\"})}),className:\"framer-1sjdmn6\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r3yuke\",\"data-framer-name\":\"Links\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n8fq5t-container\",nodeId:\"fC3gqm1aN\",scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(Link1,{height:\"100%\",id:\"fC3gqm1aN\",layoutId:\"fC3gqm1aN\",link:\"https://restaurant.eatapp.co/restaurant-reservation-software?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Online+Reservations\",style:{width:\"100%\"},title:\"Reservation system\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-a7onko-container\",nodeId:\"fvY98Kj8k\",scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(Link1,{height:\"100%\",id:\"fvY98Kj8k\",layoutId:\"fvY98Kj8k\",link:\"https://restaurant.eatapp.co/table-management?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Table+Management\",style:{width:\"100%\"},title:\"Table management\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gy3p82\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/crm-restaurants?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=CRM\",motionChild:true,nodeId:\"h0GOAZFE_\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"CRM and guest profiles\"})})})}),className:\"framer-1ovxmiz\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a89cad\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/restaurant-marketing?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Marketing\",motionChild:true,nodeId:\"ceHAVXnAS\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Marketing\"})})})}),className:\"framer-vkkx95\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pfoyc4\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/analytics?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Reports\",motionChild:true,nodeId:\"LnFwy6Eoo\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Reports & trends\"})})})}),className:\"framer-119jk5a\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tecv4c\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/waitlist?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Waitlist\",motionChild:true,nodeId:\"boigL_fK7\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Waitlist\"})})})}),className:\"framer-1lgy1di\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w042dy\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://eatapp.co/integrations?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Integrations\",motionChild:true,nodeId:\"coIW58E5d\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Integrations\"})})})}),className:\"framer-12j0kp5\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wfk560\",\"data-framer-name\":\"Footers/Text link\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n5e8no\",\"data-framer-name\":\"Footers/Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Company\"})}),className:\"framer-doqcz2\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7u31t5\",\"data-framer-name\":\"Links\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6cp5n6\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/about?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=About+us\",motionChild:true,nodeId:\"dwrwQThYf\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"About us\"})})})}),className:\"framer-1125wkb\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10f8ank\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/contact-us?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Contact+us\",motionChild:true,nodeId:\"zw50xz670\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Contact us\"})})})}),className:\"framer-wa5exp\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cv0ici\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/privacy?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Privacy+Policy\",motionChild:true,nodeId:\"ULBIo69_w\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Privacy policy\"})})})}),className:\"framer-1m2pcxw\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4oudw8\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/terms?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Terms+of+service\",motionChild:true,nodeId:\"ULtURkvTG\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Terms of service\"})})})}),className:\"framer-ueoyco\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ccuwk0\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://careers.eatapp.co/?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Careers\",motionChild:true,nodeId:\"DRfcPDJRU\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Careers\"})})})}),className:\"framer-18mqmfm\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-180slvc\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/demo?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Demo\",motionChild:true,nodeId:\"I4yzDWZVp\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Demo\"})})})}),className:\"framer-1fj1z8j\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ijxw1a\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/pricing?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Pricing\",motionChild:true,nodeId:\"HeBgEPw13\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Pricing\"})})})}),className:\"framer-1qfgkcc\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i87qi8\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c0caz1\",\"data-framer-name\":\"Footers/Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Resources\"})}),className:\"framer-7cgn0e\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1esenil\",\"data-framer-name\":\"Links\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-12vwvje-container\",id:\"12vwvje\",nodeId:\"rdtneG2kI\",scopeId:\"ZJEhUhqme\",children:[/*#__PURE__*/_jsx(Link1,{height:\"100%\",id:\"rdtneG2kI\",layoutId:\"rdtneG2kI\",link:\"https://restaurant.eatapp.co/blog/online-restaurant-reservation-systems?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Best+reservation+compared+blog\",style:{width:\"100%\"},tap:tap3bnx0g({overlay:overlay1}),title:\"The 16 Best Reservation Systems\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1xabsef\"),\"data-framer-portal-id\":\"12vwvje\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"gOJS5Ed48\")}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16vhnq9\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/restaurant-marketing-guide?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Guide+to+marketing+blog\",motionChild:true,nodeId:\"pYMePl6c3\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Guide to Restaurant Marketing\"})})})}),className:\"framer-ui0ve9\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o9pfst\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/blog/restaurant-customer-service?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Guide+to+customer+service+blog\",motionChild:true,nodeId:\"dnGMbgTMY\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Guide to Customer Service\"})})})}),className:\"framer-1jwtkg3\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14pg5q1\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/blog/how-to-make-a-restaurant-website-a-complete-guide?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Guide+to+website+blog\",motionChild:true,nodeId:\"T31wtoJHT\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Guide to Making a Restaurant Website\"})})})}),className:\"framer-y4n58u\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c4dg10\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/blog?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Blog\",motionChild:true,nodeId:\"qYZB0J1vF\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"All articles\"})})})}),className:\"framer-hp0y5t\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6p27c4\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-zl18g2\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p6cuwn\",\"data-framer-name\":\"Footers/Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Compare us\"})}),className:\"framer-i44igl\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ae0cq5\",\"data-framer-name\":\"Links\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-72fen7\",\"data-framer-name\":\"Footers/Text link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://restaurant.eatapp.co/compare?utm_source=Comparisons&utm_medium=Footer&utm_campaign=eatapp.co&utm_content=Compare\",motionChild:true,nodeId:\"SXVZZJCTt\",openInNewTab:false,relValues:[],scopeId:\"ZJEhUhqme\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1k02riw\",\"data-styles-preset\":\"h5nu6up7i\",children:\"Compare\"})})})}),className:\"framer-dof3am\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x4o4ax\",\"data-framer-name\":\"Copyright\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1te9xm1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13i5xrn\",\"data-framer-name\":\"Eat app for business\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Manage your venue on Eat App Business\"})}),className:\"framer-gjz1xu\",\"data-framer-name\":\"Manage your venue using Eat App for Business\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qlg8wc\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.eatapp.clementine&hl=en-IN\",motionChild:true,nodeId:\"xvn7XiPsV\",openInNewTab:false,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-9pe37e framer-19xlksj\",\"data-framer-name\":\"Google Play download\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bgtoa5\",\"data-framer-name\":\"Google_Play_Store_badge_EN 1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 136 41\"><g><path d=\"M 0 40.131 L 0 0 L 136 0 L 136 40.131 Z\" fill=\"transparent\"></path><path d=\"M 130.961 40.131 L 5.039 40.131 C 2.262 40.131 0 37.869 0 35.115 L 0 5.016 C 0 2.252 2.262 0 5.039 0 L 130.961 0 C 133.736 0 136 2.252 136 5.016 L 136 35.115 C 136 37.869 133.736 40.131 130.961 40.131 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 130.961 0.803 C 133.29 0.803 135.197 2.697 135.197 5.016 L 135.197 35.115 C 135.197 37.434 133.303 39.328 130.961 39.328 L 5.039 39.328 C 2.71 39.328 0.803 37.434 0.803 35.115 L 0.803 5.016 C 0.803 2.697 2.697 0.803 5.039 0.803 Z M 130.961 0 L 5.039 0 C 2.262 0 0 2.262 0 5.016 L 0 35.115 C 0 37.879 2.262 40.131 5.039 40.131 L 130.961 40.131 C 133.736 40.131 136 37.879 136 35.115 L 136 5.016 C 136 2.262 133.736 0 130.961 0 Z\" fill=\"rgb(166,166,166)\"></path><path d=\"M 71.646 13.275 C 70.737 13.275 69.972 12.957 69.366 12.332 C 68.766 11.724 68.431 10.886 68.446 10.03 C 68.446 9.117 68.756 8.344 69.366 7.731 C 69.969 7.105 70.735 6.788 71.643 6.788 C 72.541 6.788 73.307 7.105 73.922 7.731 C 74.533 8.364 74.843 9.137 74.843 10.03 C 74.833 10.946 74.523 11.719 73.922 12.329 C 73.319 12.96 72.554 13.275 71.646 13.275 Z M 44.622 13.275 C 43.734 13.275 42.963 12.962 42.333 12.344 C 41.708 11.729 41.39 10.951 41.39 10.033 C 41.39 9.114 41.708 8.336 42.333 7.721 C 42.951 7.103 43.721 6.79 44.622 6.79 C 45.063 6.79 45.49 6.878 45.901 7.055 C 46.303 7.228 46.631 7.463 46.874 7.751 L 46.934 7.823 L 46.256 8.489 L 46.186 8.406 C 45.803 7.951 45.29 7.728 44.612 7.728 C 44.007 7.728 43.479 7.944 43.044 8.369 C 42.606 8.797 42.383 9.357 42.383 10.035 C 42.383 10.713 42.606 11.274 43.044 11.701 C 43.479 12.127 44.007 12.342 44.612 12.342 C 45.258 12.342 45.801 12.127 46.223 11.701 C 46.474 11.451 46.629 11.101 46.684 10.658 L 44.51 10.658 L 44.51 9.722 L 47.617 9.722 L 47.63 9.808 C 47.652 9.965 47.675 10.128 47.675 10.278 C 47.675 11.141 47.414 11.839 46.899 12.354 C 46.313 12.965 45.548 13.275 44.622 13.275 Z M 80.552 13.143 L 79.594 13.143 L 76.659 8.446 L 76.684 9.292 L 76.684 13.14 L 75.726 13.14 L 75.726 6.923 L 76.82 6.923 L 76.85 6.97 L 79.609 11.394 L 79.584 10.551 L 79.584 6.923 L 80.552 6.923 L 80.552 13.143 Z M 64.445 13.143 L 63.474 13.143 L 63.474 7.859 L 61.791 7.859 L 61.791 6.923 L 66.126 6.923 L 66.126 7.859 L 64.443 7.859 L 64.443 13.143 Z M 61 13.143 L 60.032 13.143 L 60.032 6.923 L 61 6.923 Z M 55.558 13.143 L 54.59 13.143 L 54.59 7.859 L 52.906 7.859 L 52.906 6.923 L 57.242 6.923 L 57.242 7.859 L 55.558 7.859 Z M 52.293 13.133 L 48.58 13.133 L 48.58 6.923 L 52.293 6.923 L 52.293 7.859 L 49.551 7.859 L 49.551 9.565 L 52.025 9.565 L 52.025 10.491 L 49.551 10.491 L 49.551 12.197 L 52.293 12.197 Z M 70.077 11.689 C 70.51 12.122 71.035 12.34 71.646 12.34 C 72.274 12.34 72.787 12.127 73.214 11.689 C 73.64 11.264 73.855 10.706 73.855 10.033 C 73.855 9.36 73.64 8.799 73.217 8.376 C 72.784 7.944 72.256 7.726 71.648 7.726 C 71.02 7.726 70.507 7.939 70.082 8.376 C 69.657 8.802 69.441 9.36 69.441 10.033 C 69.441 10.706 69.654 11.266 70.077 11.689 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 68.355 21.827 C 65.991 21.827 64.074 23.621 64.074 26.095 C 64.074 28.547 66.003 30.363 68.355 30.363 C 70.72 30.363 72.636 28.557 72.636 26.095 C 72.636 23.621 70.72 21.827 68.355 21.827 Z M 68.355 28.672 C 67.062 28.672 65.948 27.601 65.948 26.085 C 65.948 24.547 67.064 23.498 68.355 23.498 C 69.649 23.498 70.762 24.547 70.762 26.085 C 70.765 27.611 69.649 28.672 68.355 28.672 Z M 59.015 21.827 C 56.651 21.827 54.735 23.621 54.735 26.095 C 54.735 28.547 56.664 30.363 59.015 30.363 C 61.38 30.363 63.296 28.557 63.296 26.095 C 63.296 23.621 61.377 21.827 59.015 21.827 Z M 59.015 28.672 C 57.722 28.672 56.608 27.601 56.608 26.085 C 56.608 24.547 57.724 23.498 59.015 23.498 C 60.309 23.498 61.422 24.547 61.422 26.085 C 61.422 27.611 60.309 28.672 59.015 28.672 Z M 47.902 23.13 L 47.902 24.937 L 52.238 24.937 C 52.105 25.95 51.77 26.698 51.257 27.211 C 50.621 27.846 49.641 28.537 47.912 28.537 C 45.247 28.537 43.163 26.385 43.163 23.721 C 43.163 21.056 45.247 18.905 47.912 18.905 C 49.35 18.905 50.399 19.473 51.177 20.198 L 52.458 18.917 C 51.377 17.881 49.938 17.088 47.922 17.088 C 44.267 17.088 41.199 20.066 41.199 23.711 C 41.199 27.366 44.264 30.333 47.922 30.333 C 49.896 30.333 51.377 29.688 52.548 28.472 C 53.741 27.279 54.119 25.595 54.119 24.236 C 54.119 23.813 54.087 23.433 54.019 23.11 L 47.899 23.11 C 47.902 23.108 47.902 23.13 47.902 23.13 Z M 93.359 24.536 C 93.002 23.578 91.921 21.817 89.704 21.817 C 87.507 21.817 85.681 23.546 85.681 26.085 C 85.681 28.482 87.487 30.353 89.917 30.353 C 91.868 30.353 93.004 29.16 93.472 28.46 L 92.023 27.489 C 91.543 28.202 90.875 28.67 89.927 28.67 C 88.969 28.67 88.298 28.234 87.853 27.376 L 93.56 25.012 C 93.56 25.014 93.359 24.536 93.359 24.536 Z M 87.54 25.963 C 87.495 24.314 88.821 23.476 89.769 23.476 C 90.517 23.476 91.14 23.843 91.353 24.379 Z M 82.904 30.098 L 84.778 30.098 L 84.778 17.559 L 82.904 17.559 Z M 79.826 22.775 L 79.759 22.775 C 79.336 22.272 78.533 21.817 77.507 21.817 C 75.378 21.817 73.417 23.691 73.417 26.098 C 73.417 28.495 75.368 30.346 77.507 30.346 C 78.52 30.346 79.336 29.888 79.759 29.375 L 79.826 29.375 L 79.826 29.988 C 79.826 31.617 78.956 32.495 77.552 32.495 C 76.404 32.495 75.691 31.67 75.401 30.979 L 73.772 31.659 C 74.24 32.785 75.488 34.179 77.55 34.179 C 79.746 34.179 81.608 32.885 81.608 29.731 L 81.608 22.072 L 79.836 22.072 L 79.836 22.775 C 79.839 22.775 79.826 22.775 79.826 22.775 Z M 77.675 28.672 C 76.381 28.672 75.3 27.591 75.3 26.098 C 75.3 24.591 76.381 23.501 77.675 23.501 C 78.956 23.501 79.949 24.604 79.949 26.098 C 79.962 27.591 78.958 28.672 77.675 28.672 Z M 102.134 17.559 L 97.653 17.559 L 97.653 30.098 L 99.527 30.098 L 99.527 25.35 L 102.136 25.35 C 104.21 25.35 106.25 23.846 106.25 21.459 C 106.25 19.072 104.218 17.559 102.134 17.559 Z M 102.189 23.598 L 99.524 23.598 L 99.524 19.295 L 102.189 19.295 C 103.592 19.295 104.386 20.453 104.386 21.447 C 104.386 22.43 103.582 23.598 102.189 23.598 Z M 113.76 21.804 C 112.399 21.804 110.996 22.407 110.415 23.721 L 112.077 24.411 C 112.434 23.721 113.09 23.486 113.783 23.486 C 114.754 23.486 115.734 24.066 115.757 25.102 L 115.757 25.235 C 115.422 25.044 114.686 24.754 113.805 24.754 C 112.011 24.754 110.193 25.735 110.193 27.574 C 110.193 29.258 111.664 30.338 113.302 30.338 C 114.561 30.338 115.254 29.771 115.687 29.113 L 115.754 29.113 L 115.754 30.083 L 117.561 30.083 L 117.561 25.28 C 117.561 23.043 115.899 21.804 113.76 21.804 Z M 113.525 28.672 C 112.912 28.672 112.054 28.372 112.054 27.601 C 112.054 26.631 113.125 26.263 114.038 26.263 C 114.864 26.263 115.254 26.44 115.744 26.686 C 115.609 27.811 114.659 28.662 113.525 28.672 Z M 124.151 22.072 L 121.999 27.511 L 121.932 27.511 L 119.702 22.072 L 117.686 22.072 L 121.031 29.675 L 119.124 33.901 L 121.076 33.901 L 126.222 22.072 Z M 107.283 30.098 L 109.157 30.098 L 109.157 17.559 L 107.283 17.559 Z\" fill=\"rgb(255,255,255)\"></path><g><defs><linearGradient id=\"idss9697253289_7g1673948338\" x1=\"1\" x2=\"0\" y1=\"0.36348137279256043\" y2=\"0.6365186272074396\"><stop offset=\"0\" stop-color=\"rgb(0,160,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,227,255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 10.469 7.558 C 10.178 7.871 10.011 8.349 10.011 8.975 L 10.011 31.159 C 10.011 31.785 10.178 32.263 10.479 32.563 L 10.556 32.63 L 22.986 20.201 L 22.986 19.923 L 10.546 7.491 Z\" fill=\"url(#idss9697253289_7g1673948338)\"></path></g><g><defs><linearGradient id=\"idss9697253289_8g43703969\" x1=\"1\" x2=\"0\" y1=\"0.4974874371859296\" y2=\"0.5025125628140704\"><stop offset=\"0\" stop-color=\"rgb(255,224,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(255,156,0)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 27.121 24.356 L 22.975 20.211 L 22.975 19.92 L 27.121 15.775 L 27.211 15.83 L 32.115 18.617 C 33.519 19.407 33.519 20.713 32.115 21.514 L 27.211 24.301 Z\" fill=\"url(#idss9697253289_8g43703969)\"></path></g><g><defs><linearGradient id=\"idss9697253289_9g1458251070\" x1=\"0.7924668894653782\" x2=\"0.20753311053462176\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(255,58,68)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(195,17,98)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 27.211 24.301 L 22.975 20.066 L 10.468 32.573 C 10.926 33.063 11.694 33.118 12.552 32.64 Z\" fill=\"url(#idss9697253289_9g1458251070)\"></path></g><g><defs><linearGradient id=\"idss9697253289_10g-2043038337\" x1=\"0.20206598087546296\" x2=\"0.797934019124537\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(50,160,113)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,240,118)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 27.211 15.83 L 12.552 7.503 C 11.694 7.013 10.923 7.08 10.468 7.571 L 22.975 20.066 Z\" fill=\"url(#idss9697253289_10g-2043038337)\"></path></g><path d=\"M 27.121 24.211 L 12.562 32.482 C 11.749 32.95 11.024 32.918 10.556 32.492 L 10.478 32.57 L 10.556 32.638 C 11.024 33.06 11.749 33.095 12.562 32.627 L 27.221 24.301 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 32.115 21.369 L 27.108 24.211 L 27.198 24.301 L 32.102 21.514 C 32.805 21.114 33.151 20.588 33.151 20.066 C 33.108 20.546 32.75 21.001 32.115 21.369 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.12\"></path><path d=\"M 12.553 7.648 L 32.115 18.762 C 32.751 19.12 33.108 19.587 33.163 20.065 C 33.163 19.543 32.818 19.017 32.115 18.617 L 12.553 7.503 C 11.149 6.7 10.011 7.371 10.011 8.974 L 10.011 9.119 C 10.011 7.513 11.149 6.855 12.553 7.648 Z\" fill=\"rgb(255,255,255)\" opacity=\"0.25\"></path></g></svg>',svgContentId:9697253289,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/in/app/eat-app-manager/id928136061\",motionChild:true,nodeId:\"XClyMoSw0\",openInNewTab:false,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-i1hakg framer-19xlksj\",\"data-framer-name\":\"Apple app store download\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pmee50\",\"data-framer-name\":\"download-on-the-app-store 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:120,svg:'<svg width=\"120\" height=\"40\" viewBox=\"0 0 120 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_33_383)\">\\n<path d=\"M110.135 0.00013H9.53468C9.16798 0.00013 8.80568 0.00013 8.43995 0.00213C8.1338 0.00413 7.83009 0.00994 7.521 0.01483C6.84951 0.0227318 6.17961 0.0818063 5.5171 0.19154C4.85552 0.303663 4.21467 0.515046 3.61622 0.81854C3.0185 1.1246 2.47235 1.5223 1.99757 1.9972C1.5203 2.47077 1.12246 3.01815 0.81935 3.61829C0.5154 4.21724 0.304641 4.85907 0.19435 5.52161C0.0830109 6.18332 0.0230984 6.85265 0.01515 7.52361C0.00587 7.83021 0.00489 8.13783 0 8.44447V31.5587C0.00489 31.8692 0.00587 32.17 0.01515 32.4806C0.0231008 33.1516 0.0830134 33.8209 0.19435 34.4825C0.304336 35.1455 0.515108 35.7877 0.81935 36.3868C1.12233 36.985 1.52022 37.5302 1.99757 38.0011C2.47054 38.4781 3.01705 38.8761 3.61622 39.1798C4.21467 39.4841 4.85545 39.6968 5.5171 39.8106C6.17972 39.9195 6.84956 39.9786 7.521 39.9874C7.83009 39.9942 8.1338 39.9981 8.43995 39.9981C8.80567 40.0001 9.168 40.0001 9.53468 40.0001H110.135C110.494 40.0001 110.859 40.0001 111.219 39.9981C111.523 39.9981 111.836 39.9942 112.141 39.9874C112.811 39.9791 113.479 39.92 114.141 39.8106C114.804 39.696 115.448 39.4834 116.049 39.1798C116.647 38.8759 117.193 38.478 117.666 38.0011C118.142 37.5284 118.541 36.9836 118.848 36.3868C119.15 35.7872 119.358 35.1451 119.467 34.4825C119.578 33.8208 119.64 33.1516 119.652 32.4806C119.656 32.17 119.656 31.8692 119.656 31.5587C119.664 31.1954 119.664 30.8341 119.664 30.4649V9.53626C119.664 9.17005 119.664 8.80677 119.656 8.44447C119.656 8.13783 119.656 7.83021 119.652 7.52357C119.64 6.85255 119.578 6.18337 119.467 5.52157C119.358 4.85941 119.149 4.21763 118.848 3.61825C118.23 2.41533 117.252 1.43616 116.049 0.81845C115.448 0.515697 114.804 0.30437 114.141 0.19145C113.48 0.0812328 112.811 0.0221378 112.141 0.01469C111.836 0.00981 111.523 0.00395 111.219 0.002C110.859 0 110.494 0.00013 110.135 0.00013Z\" fill=\"#A6A6A6\"/>\\n<path d=\"M8.44484 39.125C8.14016 39.125 7.84284 39.1211 7.54055 39.1143C6.91433 39.1061 6.28957 39.0516 5.67141 38.9512C5.095 38.8519 4.53661 38.6673 4.01467 38.4033C3.49751 38.1415 3.02582 37.7983 2.61767 37.3867C2.20361 36.98 1.85888 36.5082 1.59716 35.9902C1.33255 35.4688 1.14942 34.9099 1.05416 34.333C0.951281 33.7131 0.895621 33.0863 0.887656 32.458C0.881316 32.2471 0.873016 31.5449 0.873016 31.5449V8.44434C0.873016 8.44434 0.881856 7.75293 0.887706 7.5498C0.895332 6.92248 0.950669 6.29665 1.05324 5.67773C1.14868 5.09925 1.33194 4.53875 1.5967 4.01563C1.85746 3.49794 2.20027 3.02586 2.61184 2.61768C3.02294 2.20562 3.49614 1.8606 4.01418 1.59521C4.53492 1.33209 5.09225 1.14873 5.6675 1.05127C6.28769 0.949836 6.91462 0.894996 7.54301 0.88721L8.44533 0.875H111.214L112.127 0.8877C112.75 0.895099 113.371 0.94945 113.985 1.05029C114.566 1.14898 115.13 1.33362 115.656 1.59814C116.694 2.13299 117.539 2.97916 118.071 4.01807C118.332 4.53758 118.512 5.09351 118.606 5.66699C118.71 6.29099 118.768 6.92174 118.78 7.5542C118.783 7.8374 118.783 8.1416 118.783 8.44434C118.791 8.81934 118.791 9.17627 118.791 9.53613V30.4648C118.791 30.8281 118.791 31.1826 118.783 31.54C118.783 31.8652 118.783 32.1631 118.779 32.4697C118.768 33.0909 118.71 33.7104 118.608 34.3232C118.515 34.9043 118.333 35.4675 118.068 35.9932C117.805 36.5056 117.462 36.9733 117.053 37.3789C116.644 37.7927 116.172 38.1379 115.653 38.4014C115.128 38.6674 114.566 38.8527 113.985 38.9512C113.367 39.0522 112.742 39.1067 112.116 39.1143C111.823 39.1211 111.517 39.125 111.219 39.125L110.135 39.127L8.44484 39.125Z\" fill=\"black\"/>\\n<path d=\"M24.7689 20.3007C24.7796 19.466 25.0013 18.6477 25.4134 17.9217C25.8254 17.1957 26.4143 16.5858 27.1254 16.1486C26.6737 15.5035 26.0777 14.9725 25.3849 14.598C24.6921 14.2234 23.9215 14.0156 23.1343 13.991C21.455 13.8147 19.8271 14.9958 18.9714 14.9958C18.0991 14.9958 16.7816 14.0085 15.3629 14.0376C14.4452 14.0673 13.5509 14.3341 12.767 14.8122C11.9831 15.2903 11.3364 15.9632 10.89 16.7655C8.95595 20.1139 10.3985 25.035 12.2511 27.7416C13.178 29.0669 14.2613 30.5474 15.6788 30.4949C17.0658 30.4374 17.5839 29.6104 19.2582 29.6104C20.9169 29.6104 21.403 30.4949 22.8492 30.4615C24.3376 30.4374 25.2753 29.1303 26.1697 27.7924C26.8357 26.848 27.3481 25.8043 27.6881 24.6999C26.8234 24.3341 26.0855 23.722 25.5664 22.9397C25.0472 22.1574 24.7699 21.2396 24.7689 20.3007Z\" fill=\"white\"/>\\n<path d=\"M22.0372 12.2109C22.8488 11.2367 23.2486 9.98451 23.1518 8.72028C21.9119 8.8505 20.7667 9.44306 19.9442 10.3799C19.542 10.8376 19.234 11.37 19.0378 11.9468C18.8415 12.5235 18.7609 13.1333 18.8005 13.7413C19.4206 13.7477 20.0341 13.6132 20.5948 13.3482C21.1554 13.0831 21.6486 12.6942 22.0372 12.2109Z\" fill=\"white\"/>\\n<path d=\"M42.3022 27.1396H37.5688L36.4321 30.4961H34.4272L38.9106 18.0781H40.9936L45.477 30.4961H43.438L42.3022 27.1396ZM38.0591 25.5908H41.8111L39.9615 20.1435H39.9097L38.0591 25.5908Z\" fill=\"white\"/>\\n<path d=\"M55.1597 25.9697C55.1597 28.7832 53.6538 30.5908 51.3813 30.5908C50.8057 30.6209 50.2332 30.4883 49.7294 30.2082C49.2256 29.928 48.8109 29.5117 48.5327 29.0068H48.4897V33.4912H46.6313V21.4424H48.4302V22.9482H48.4644C48.7553 22.4458 49.177 22.0316 49.6847 21.7497C50.1923 21.4679 50.7668 21.3289 51.3472 21.3476C53.645 21.3477 55.1597 23.1641 55.1597 25.9697ZM53.2495 25.9697C53.2495 24.1367 52.3022 22.9316 50.8569 22.9316C49.437 22.9316 48.4819 24.1621 48.4819 25.9697C48.4819 27.7939 49.437 29.0156 50.8569 29.0156C52.3022 29.0156 53.2495 27.8193 53.2495 25.9697Z\" fill=\"white\"/>\\n<path d=\"M65.1245 25.9697C65.1245 28.7832 63.6187 30.5908 61.3462 30.5908C60.7705 30.6209 60.198 30.4883 59.6942 30.2082C59.1905 29.928 58.7757 29.5117 58.4976 29.0068H58.4546V33.4912H56.5962V21.4424H58.395V22.9482H58.4292C58.7201 22.4458 59.1418 22.0316 59.6495 21.7497C60.1571 21.4679 60.7317 21.3289 61.312 21.3476C63.6099 21.3476 65.1245 23.164 65.1245 25.9697ZM63.2144 25.9697C63.2144 24.1367 62.2671 22.9316 60.8218 22.9316C59.4018 22.9316 58.4468 24.1621 58.4468 25.9697C58.4468 27.7939 59.4018 29.0156 60.8218 29.0156C62.2671 29.0156 63.2144 27.8193 63.2144 25.9697Z\" fill=\"white\"/>\\n<path d=\"M71.7104 27.0361C71.8481 28.2676 73.0444 29.0761 74.6792 29.0761C76.2456 29.0761 77.3726 28.2675 77.3726 27.1572C77.3726 26.1933 76.6929 25.6162 75.0835 25.2207L73.4741 24.833C71.1939 24.2822 70.1353 23.2158 70.1353 21.4853C70.1353 19.3427 72.0024 17.871 74.6538 17.871C77.2778 17.871 79.0767 19.3427 79.1372 21.4853H77.2612C77.1489 20.246 76.1245 19.498 74.6274 19.498C73.1303 19.498 72.1059 20.2548 72.1059 21.3564C72.1059 22.2343 72.7602 22.7509 74.3608 23.1464L75.729 23.4823C78.2768 24.0849 79.3354 25.1083 79.3354 26.9247C79.3354 29.248 77.4848 30.703 74.5415 30.703C71.7876 30.703 69.9282 29.2821 69.8081 27.036L71.7104 27.0361Z\" fill=\"white\"/>\\n<path d=\"M83.3462 19.2998V21.4424H85.0679V22.9141H83.3462V27.9053C83.3462 28.6807 83.6909 29.042 84.4477 29.042C84.6521 29.0384 84.8562 29.0241 85.0591 28.999V30.4619C84.7188 30.5255 84.3729 30.5543 84.0268 30.5478C82.1938 30.5478 81.479 29.8593 81.479 28.1035V22.9141H80.1626V21.4424H81.479V19.2998H83.3462Z\" fill=\"white\"/>\\n<path d=\"M86.065 25.9697C86.065 23.1211 87.7427 21.3311 90.3589 21.3311C92.9839 21.3311 94.6538 23.1211 94.6538 25.9697C94.6538 28.8262 92.9927 30.6084 90.3589 30.6084C87.7261 30.6084 86.065 28.8262 86.065 25.9697ZM92.7603 25.9697C92.7603 24.0156 91.8648 22.8623 90.3589 22.8623C88.853 22.8623 87.9585 24.0244 87.9585 25.9697C87.9585 27.9316 88.853 29.0762 90.3589 29.0762C91.8648 29.0762 92.7603 27.9316 92.7603 25.9697Z\" fill=\"white\"/>\\n<path d=\"M96.186 21.4424H97.9585V22.9834H98.0015C98.1214 22.5021 98.4034 22.0768 98.8 21.7789C99.1966 21.481 99.6836 21.3287 100.179 21.3476C100.393 21.3469 100.607 21.3702 100.816 21.417V23.1553C100.546 23.0726 100.264 23.0347 99.981 23.043C99.711 23.032 99.4418 23.0796 99.192 23.1825C98.9421 23.2854 98.7175 23.4411 98.5335 23.639C98.3496 23.8369 98.2106 24.0723 98.1262 24.3289C98.0417 24.5856 98.0139 24.8575 98.0444 25.126V30.4961H96.186L96.186 21.4424Z\" fill=\"white\"/>\\n<path d=\"M109.384 27.8369C109.134 29.4805 107.534 30.6084 105.486 30.6084C102.852 30.6084 101.217 28.8437 101.217 26.0127C101.217 23.1729 102.861 21.3311 105.408 21.3311C107.913 21.3311 109.488 23.0518 109.488 25.7969V26.4336H103.093V26.5459C103.064 26.8791 103.105 27.2148 103.216 27.5306C103.326 27.8464 103.502 28.1352 103.732 28.3778C103.963 28.6203 104.242 28.8111 104.552 28.9374C104.861 29.0637 105.195 29.1226 105.529 29.1103C105.968 29.1515 106.409 29.0498 106.785 28.8203C107.162 28.5909 107.455 28.246 107.62 27.8369L109.384 27.8369ZM103.102 25.1348H107.628C107.645 24.8352 107.6 24.5354 107.495 24.2541C107.39 23.9729 107.229 23.7164 107.02 23.5006C106.812 23.2849 106.561 23.1145 106.283 23.0003C106.006 22.8861 105.708 22.8305 105.408 22.8369C105.105 22.8351 104.805 22.8933 104.525 23.008C104.245 23.1227 103.99 23.2918 103.776 23.5054C103.562 23.7191 103.392 23.973 103.276 24.2527C103.16 24.5323 103.101 24.8321 103.102 25.1348Z\" fill=\"white\"/>\\n<path d=\"M37.8262 8.73101C38.2158 8.70305 38.6068 8.76191 38.9709 8.90335C39.335 9.04478 39.6632 9.26526 39.9318 9.54889C40.2004 9.83251 40.4026 10.1722 40.524 10.5435C40.6455 10.9148 40.6829 11.3083 40.6338 11.6959C40.6338 13.6021 39.6035 14.6979 37.8262 14.6979H35.6709V8.73101H37.8262ZM36.5977 13.854H37.7227C38.0011 13.8707 38.2797 13.825 38.5382 13.7204C38.7968 13.6158 39.0287 13.4548 39.2172 13.2493C39.4057 13.0437 39.546 12.7987 39.6279 12.5321C39.7097 12.2655 39.7311 11.9839 39.6904 11.708C39.7282 11.4332 39.7046 11.1534 39.6215 10.8887C39.5384 10.6241 39.3977 10.3811 39.2097 10.1771C39.0216 9.97322 38.7908 9.81341 38.5337 9.70917C38.2766 9.60494 37.9997 9.55885 37.7227 9.57422H36.5977V13.854Z\" fill=\"white\"/>\\n<path d=\"M41.6807 12.4443C41.6524 12.1484 41.6862 11.8499 41.7801 11.5678C41.8739 11.2857 42.0257 11.0264 42.2256 10.8064C42.4256 10.5864 42.6693 10.4107 42.9411 10.2904C43.213 10.1701 43.507 10.108 43.8042 10.108C44.1015 10.108 44.3955 10.1701 44.6673 10.2904C44.9392 10.4107 45.1829 10.5864 45.3828 10.8064C45.5828 11.0264 45.7345 11.2857 45.8284 11.5678C45.9222 11.8499 45.9561 12.1484 45.9278 12.4443C45.9566 12.7406 45.9232 13.0396 45.8296 13.3221C45.736 13.6046 45.5843 13.8644 45.3843 14.0848C45.1843 14.3052 44.9404 14.4814 44.6683 14.6019C44.3962 14.7225 44.1019 14.7847 43.8042 14.7847C43.5066 14.7847 43.2123 14.7225 42.9402 14.6019C42.668 14.4814 42.4241 14.3052 42.2241 14.0848C42.0242 13.8644 41.8725 13.6046 41.7789 13.3221C41.6853 13.0396 41.6519 12.7406 41.6807 12.4443ZM45.0137 12.4443C45.0137 11.4683 44.5752 10.8975 43.8057 10.8975C43.0332 10.8975 42.5987 11.4683 42.5987 12.4444C42.5987 13.4282 43.0333 13.9946 43.8057 13.9946C44.5752 13.9946 45.0137 13.4243 45.0137 12.4443Z\" fill=\"white\"/>\\n<path d=\"M51.5733 14.6978H50.6514L49.7207 11.3813H49.6504L48.7237 14.6978H47.8106L46.5694 10.1948H47.4707L48.2774 13.6308H48.3438L49.2696 10.1948H50.1221L51.0479 13.6308H51.1182L51.9209 10.1948H52.8096L51.5733 14.6978Z\" fill=\"white\"/>\\n<path d=\"M53.8536 10.1948H54.709V10.9102H54.7754C54.8881 10.6532 55.0781 10.4379 55.319 10.2941C55.5598 10.1503 55.8396 10.0852 56.1192 10.1079C56.3383 10.0914 56.5583 10.1245 56.7629 10.2046C56.9675 10.2847 57.1514 10.4098 57.3011 10.5706C57.4508 10.7315 57.5624 10.9239 57.6276 11.1337C57.6928 11.3436 57.7099 11.5654 57.6778 11.7827V14.6977H56.7891V12.0059C56.7891 11.2822 56.4746 10.9224 55.8174 10.9224C55.6687 10.9154 55.5202 10.9408 55.3821 10.9966C55.244 11.0524 55.1197 11.1375 55.0176 11.2458C54.9154 11.3542 54.838 11.4834 54.7904 11.6245C54.7429 11.7657 54.7265 11.9154 54.7422 12.0635V14.6978H53.8535L53.8536 10.1948Z\" fill=\"white\"/>\\n<path d=\"M59.0938 8.43701H59.9825V14.6978H59.0938V8.43701Z\" fill=\"white\"/>\\n<path d=\"M61.2178 12.4443C61.1895 12.1484 61.2234 11.8498 61.3172 11.5677C61.4111 11.2857 61.5629 11.0263 61.7628 10.8063C61.9628 10.5863 62.2065 10.4106 62.4784 10.2903C62.7503 10.17 63.0443 10.1079 63.3416 10.1079C63.6389 10.1079 63.9329 10.17 64.2047 10.2903C64.4766 10.4106 64.7203 10.5863 64.9203 10.8063C65.1203 11.0263 65.272 11.2857 65.3659 11.5677C65.4598 11.8498 65.4936 12.1484 65.4653 12.4443C65.4942 12.7406 65.4607 13.0396 65.3671 13.3221C65.2734 13.6046 65.1217 13.8644 64.9217 14.0848C64.7217 14.3052 64.4778 14.4814 64.2057 14.6019C63.9335 14.7224 63.6392 14.7847 63.3416 14.7847C63.0439 14.7847 62.7496 14.7224 62.4775 14.6019C62.2053 14.4814 61.9614 14.3052 61.7614 14.0848C61.5614 13.8644 61.4097 13.6046 61.3161 13.3221C61.2225 13.0396 61.189 12.7406 61.2178 12.4443ZM64.5508 12.4443C64.5508 11.4683 64.1123 10.8975 63.3428 10.8975C62.5703 10.8975 62.1358 11.4683 62.1358 12.4444C62.1358 13.4282 62.5704 13.9946 63.3428 13.9946C64.1123 13.9946 64.5508 13.4243 64.5508 12.4443Z\" fill=\"white\"/>\\n<path d=\"M66.4009 13.4243C66.4009 12.6138 67.0044 12.1465 68.0757 12.0801L69.2954 12.0098V11.6211C69.2954 11.1455 68.981 10.877 68.3736 10.877C67.8775 10.877 67.5337 11.0591 67.4351 11.3775H66.5747C66.6656 10.604 67.3931 10.1079 68.4146 10.1079C69.5435 10.1079 70.1802 10.6699 70.1802 11.6211V14.6978H69.3247V14.065H69.2544C69.1117 14.292 68.9113 14.477 68.6737 14.6012C68.4361 14.7254 68.1697 14.7844 67.9019 14.772C67.7129 14.7916 67.5218 14.7715 67.341 14.7128C67.1603 14.6541 66.9938 14.5581 66.8524 14.4312C66.711 14.3042 66.5977 14.149 66.52 13.9756C66.4422 13.8022 66.4017 13.6144 66.4009 13.4243ZM69.2954 13.0396V12.6631L68.1958 12.7334C67.5757 12.7749 67.2945 12.9859 67.2945 13.3828C67.2945 13.7881 67.646 14.0239 68.1295 14.0239C68.2711 14.0383 68.4142 14.024 68.5502 13.9819C68.6862 13.9398 68.8123 13.8708 68.9211 13.7789C69.0299 13.6871 69.1191 13.5743 69.1834 13.4473C69.2477 13.3203 69.2858 13.1816 69.2954 13.0396Z\" fill=\"white\"/>\\n<path d=\"M71.3482 12.4444C71.3482 11.0215 72.0796 10.1201 73.2173 10.1201C73.4987 10.1072 73.778 10.1746 74.0226 10.3145C74.2671 10.4544 74.4667 10.661 74.5982 10.9101H74.6646V8.43701H75.5533V14.6978H74.7017V13.9863H74.6314C74.4898 14.2338 74.2832 14.4378 74.0339 14.5763C73.7847 14.7148 73.5023 14.7825 73.2173 14.772C72.0718 14.772 71.3482 13.8706 71.3482 12.4444ZM72.2662 12.4444C72.2662 13.3994 72.7164 13.9741 73.4693 13.9741C74.2183 13.9741 74.6812 13.3911 74.6812 12.4483C74.6812 11.5098 74.2134 10.9185 73.4693 10.9185C72.7212 10.9185 72.2662 11.4971 72.2662 12.4444Z\" fill=\"white\"/>\\n<path d=\"M79.23 12.4443C79.2017 12.1484 79.2356 11.8499 79.3294 11.5678C79.4232 11.2857 79.575 11.0264 79.7749 10.8064C79.9749 10.5864 80.2186 10.4107 80.4904 10.2904C80.7623 10.1701 81.0563 10.108 81.3536 10.108C81.6508 10.108 81.9448 10.1701 82.2167 10.2904C82.4885 10.4107 82.7322 10.5864 82.9322 10.8064C83.1321 11.0264 83.2839 11.2857 83.3777 11.5678C83.4715 11.8499 83.5054 12.1484 83.4771 12.4443C83.5059 12.7406 83.4725 13.0396 83.3789 13.3221C83.2853 13.6046 83.1336 13.8644 82.9336 14.0848C82.7336 14.3052 82.4897 14.4814 82.2176 14.6019C81.9455 14.7225 81.6512 14.7847 81.3536 14.7847C81.0559 14.7847 80.7616 14.7225 80.4895 14.6019C80.2173 14.4814 79.9735 14.3052 79.7735 14.0848C79.5735 13.8644 79.4218 13.6046 79.3282 13.3221C79.2346 13.0396 79.2012 12.7406 79.23 12.4443ZM82.563 12.4443C82.563 11.4683 82.1245 10.8975 81.355 10.8975C80.5826 10.8975 80.148 11.4683 80.148 12.4444C80.148 13.4282 80.5826 13.9946 81.355 13.9946C82.1245 13.9946 82.563 13.4243 82.563 12.4443Z\" fill=\"white\"/>\\n<path d=\"M84.6695 10.1948H85.5249V10.9102H85.5913C85.704 10.6532 85.894 10.4379 86.1349 10.2941C86.3757 10.1503 86.6555 10.0852 86.9351 10.1079C87.1542 10.0914 87.3742 10.1245 87.5788 10.2046C87.7834 10.2847 87.9673 10.4098 88.117 10.5706C88.2667 10.7315 88.3783 10.9239 88.4435 11.1337C88.5087 11.3436 88.5258 11.5654 88.4937 11.7827V14.6977H87.605V12.0059C87.605 11.2822 87.2906 10.9224 86.6333 10.9224C86.4846 10.9154 86.3361 10.9408 86.198 10.9966C86.06 11.0524 85.9356 11.1375 85.8335 11.2458C85.7314 11.3542 85.6539 11.4834 85.6064 11.6245C85.5588 11.7657 85.5424 11.9154 85.5581 12.0635V14.6978H84.6695V10.1948Z\" fill=\"white\"/>\\n<path d=\"M93.5152 9.07373V10.2153H94.4908V10.9639H93.5152V13.2793C93.5152 13.751 93.7095 13.9575 94.1519 13.9575C94.2651 13.9572 94.3783 13.9503 94.4908 13.937V14.6772C94.3312 14.7058 94.1695 14.721 94.0074 14.7226C93.0191 14.7226 92.6255 14.375 92.6255 13.5068V10.9638H91.9107V10.2153H92.6255V9.07373H93.5152Z\" fill=\"white\"/>\\n<path d=\"M95.7046 8.43701H96.5855V10.9185H96.6558C96.7739 10.6591 96.9691 10.4425 97.2148 10.2982C97.4605 10.1539 97.7448 10.0888 98.0288 10.1118C98.2467 10.1 98.4646 10.1364 98.6669 10.2184C98.8692 10.3004 99.0509 10.4261 99.199 10.5864C99.3471 10.7468 99.458 10.9378 99.5238 11.146C99.5896 11.3541 99.6086 11.5742 99.5796 11.7905V14.6978H98.69V12.0098C98.69 11.2905 98.355 10.9263 97.7271 10.9263C97.5744 10.9137 97.4207 10.9347 97.277 10.9878C97.1332 11.0408 97.0027 11.1247 96.8948 11.2334C96.7868 11.3421 96.7038 11.4732 96.6518 11.6173C96.5997 11.7614 96.5798 11.9152 96.5933 12.0679V14.6977H95.7047L95.7046 8.43701Z\" fill=\"white\"/>\\n<path d=\"M104.761 13.4819C104.641 13.8935 104.379 14.2495 104.022 14.4876C103.666 14.7258 103.236 14.8309 102.81 14.7847C102.513 14.7925 102.219 14.7357 101.946 14.6182C101.674 14.5006 101.43 14.3252 101.232 14.1041C101.034 13.8829 100.887 13.6214 100.8 13.3376C100.713 13.0537 100.689 12.7544 100.73 12.4605C100.691 12.1656 100.715 11.8656 100.801 11.581C100.888 11.2963 101.034 11.0335 101.231 10.8105C101.428 10.5874 101.671 10.4092 101.942 10.288C102.214 10.1668 102.509 10.1054 102.806 10.1079C104.059 10.1079 104.815 10.9639 104.815 12.3779V12.688H101.635V12.7378C101.621 12.9031 101.642 13.0694 101.696 13.2261C101.75 13.3829 101.837 13.5266 101.95 13.6481C102.062 13.7695 102.2 13.866 102.352 13.9314C102.504 13.9968 102.669 14.0297 102.835 14.0278C103.047 14.0533 103.262 14.0151 103.453 13.9178C103.644 13.8206 103.802 13.6689 103.906 13.4819L104.761 13.4819ZM101.635 12.0308H103.91C103.921 11.8796 103.9 11.7278 103.849 11.5851C103.798 11.4424 103.718 11.3119 103.614 11.2021C103.509 11.0922 103.383 11.0054 103.243 10.9472C103.103 10.8891 102.953 10.8608 102.801 10.8643C102.648 10.8623 102.495 10.8912 102.353 10.9491C102.21 11.0071 102.081 11.0929 101.972 11.2017C101.864 11.3104 101.778 11.4397 101.72 11.5821C101.662 11.7245 101.633 11.8771 101.635 12.0308Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_33_383\">\\n<rect width=\"119.664\" height=\"40\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18di3th\",\"data-framer-name\":\"Frame 2608260\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(60, 60, 60)\"},children:\"Make a reservation using Eat App\"})}),className:\"framer-2tndsd\",\"data-framer-name\":\"Make a reservation using Eat App\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-he6xsr\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.eatapp.consumer&hl=en-IN\",motionChild:true,nodeId:\"bHRXsnddl\",openInNewTab:false,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ej2gc9 framer-19xlksj\",\"data-framer-name\":\"Google Play download\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1t8szxe\",\"data-framer-name\":\"Google_Play_Store_badge_EN 1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 136 41\"><g><path d=\"M 0 40.131 L 0 0 L 136 0 L 136 40.131 Z\" fill=\"transparent\"></path><path d=\"M 130.961 40.131 L 5.039 40.131 C 2.262 40.131 0 37.869 0 35.115 L 0 5.016 C 0 2.252 2.262 0 5.039 0 L 130.961 0 C 133.736 0 136 2.252 136 5.016 L 136 35.115 C 136 37.869 133.736 40.131 130.961 40.131 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 130.961 0.803 C 133.29 0.803 135.197 2.697 135.197 5.016 L 135.197 35.115 C 135.197 37.434 133.303 39.328 130.961 39.328 L 5.039 39.328 C 2.71 39.328 0.803 37.434 0.803 35.115 L 0.803 5.016 C 0.803 2.697 2.697 0.803 5.039 0.803 Z M 130.961 0 L 5.039 0 C 2.262 0 0 2.262 0 5.016 L 0 35.115 C 0 37.879 2.262 40.131 5.039 40.131 L 130.961 40.131 C 133.736 40.131 136 37.879 136 35.115 L 136 5.016 C 136 2.262 133.736 0 130.961 0 Z\" fill=\"rgb(166,166,166)\"></path><path d=\"M 71.646 13.275 C 70.737 13.275 69.972 12.957 69.366 12.332 C 68.766 11.724 68.431 10.886 68.446 10.03 C 68.446 9.117 68.756 8.344 69.366 7.731 C 69.969 7.105 70.735 6.788 71.643 6.788 C 72.541 6.788 73.307 7.105 73.922 7.731 C 74.533 8.364 74.843 9.137 74.843 10.03 C 74.833 10.946 74.523 11.719 73.922 12.329 C 73.319 12.96 72.554 13.275 71.646 13.275 Z M 44.622 13.275 C 43.734 13.275 42.963 12.962 42.333 12.344 C 41.708 11.729 41.39 10.951 41.39 10.033 C 41.39 9.114 41.708 8.336 42.333 7.721 C 42.951 7.103 43.721 6.79 44.622 6.79 C 45.063 6.79 45.49 6.878 45.901 7.055 C 46.303 7.228 46.631 7.463 46.874 7.751 L 46.934 7.823 L 46.256 8.489 L 46.186 8.406 C 45.803 7.951 45.29 7.728 44.612 7.728 C 44.007 7.728 43.479 7.944 43.044 8.369 C 42.606 8.797 42.383 9.357 42.383 10.035 C 42.383 10.713 42.606 11.274 43.044 11.701 C 43.479 12.127 44.007 12.342 44.612 12.342 C 45.258 12.342 45.801 12.127 46.223 11.701 C 46.474 11.451 46.629 11.101 46.684 10.658 L 44.51 10.658 L 44.51 9.722 L 47.617 9.722 L 47.63 9.808 C 47.652 9.965 47.675 10.128 47.675 10.278 C 47.675 11.141 47.414 11.839 46.899 12.354 C 46.313 12.965 45.548 13.275 44.622 13.275 Z M 80.552 13.143 L 79.594 13.143 L 76.659 8.446 L 76.684 9.292 L 76.684 13.14 L 75.726 13.14 L 75.726 6.923 L 76.82 6.923 L 76.85 6.97 L 79.609 11.394 L 79.584 10.551 L 79.584 6.923 L 80.552 6.923 L 80.552 13.143 Z M 64.445 13.143 L 63.474 13.143 L 63.474 7.859 L 61.791 7.859 L 61.791 6.923 L 66.126 6.923 L 66.126 7.859 L 64.443 7.859 L 64.443 13.143 Z M 61 13.143 L 60.032 13.143 L 60.032 6.923 L 61 6.923 Z M 55.558 13.143 L 54.59 13.143 L 54.59 7.859 L 52.906 7.859 L 52.906 6.923 L 57.242 6.923 L 57.242 7.859 L 55.558 7.859 Z M 52.293 13.133 L 48.58 13.133 L 48.58 6.923 L 52.293 6.923 L 52.293 7.859 L 49.551 7.859 L 49.551 9.565 L 52.025 9.565 L 52.025 10.491 L 49.551 10.491 L 49.551 12.197 L 52.293 12.197 Z M 70.077 11.689 C 70.51 12.122 71.035 12.34 71.646 12.34 C 72.274 12.34 72.787 12.127 73.214 11.689 C 73.64 11.264 73.855 10.706 73.855 10.033 C 73.855 9.36 73.64 8.799 73.217 8.376 C 72.784 7.944 72.256 7.726 71.648 7.726 C 71.02 7.726 70.507 7.939 70.082 8.376 C 69.657 8.802 69.441 9.36 69.441 10.033 C 69.441 10.706 69.654 11.266 70.077 11.689 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 68.355 21.827 C 65.991 21.827 64.074 23.621 64.074 26.095 C 64.074 28.547 66.003 30.363 68.355 30.363 C 70.72 30.363 72.636 28.557 72.636 26.095 C 72.636 23.621 70.72 21.827 68.355 21.827 Z M 68.355 28.672 C 67.062 28.672 65.948 27.601 65.948 26.085 C 65.948 24.547 67.064 23.498 68.355 23.498 C 69.649 23.498 70.762 24.547 70.762 26.085 C 70.765 27.611 69.649 28.672 68.355 28.672 Z M 59.015 21.827 C 56.651 21.827 54.735 23.621 54.735 26.095 C 54.735 28.547 56.664 30.363 59.015 30.363 C 61.38 30.363 63.296 28.557 63.296 26.095 C 63.296 23.621 61.377 21.827 59.015 21.827 Z M 59.015 28.672 C 57.722 28.672 56.608 27.601 56.608 26.085 C 56.608 24.547 57.724 23.498 59.015 23.498 C 60.309 23.498 61.422 24.547 61.422 26.085 C 61.422 27.611 60.309 28.672 59.015 28.672 Z M 47.902 23.13 L 47.902 24.937 L 52.238 24.937 C 52.105 25.95 51.77 26.698 51.257 27.211 C 50.621 27.846 49.641 28.537 47.912 28.537 C 45.247 28.537 43.163 26.385 43.163 23.721 C 43.163 21.056 45.247 18.905 47.912 18.905 C 49.35 18.905 50.399 19.473 51.177 20.198 L 52.458 18.917 C 51.377 17.881 49.938 17.088 47.922 17.088 C 44.267 17.088 41.199 20.066 41.199 23.711 C 41.199 27.366 44.264 30.333 47.922 30.333 C 49.896 30.333 51.377 29.688 52.548 28.472 C 53.741 27.279 54.119 25.595 54.119 24.236 C 54.119 23.813 54.087 23.433 54.019 23.11 L 47.899 23.11 C 47.902 23.108 47.902 23.13 47.902 23.13 Z M 93.359 24.536 C 93.002 23.578 91.921 21.817 89.704 21.817 C 87.507 21.817 85.681 23.546 85.681 26.085 C 85.681 28.482 87.487 30.353 89.917 30.353 C 91.868 30.353 93.004 29.16 93.472 28.46 L 92.023 27.489 C 91.543 28.202 90.875 28.67 89.927 28.67 C 88.969 28.67 88.298 28.234 87.853 27.376 L 93.56 25.012 C 93.56 25.014 93.359 24.536 93.359 24.536 Z M 87.54 25.963 C 87.495 24.314 88.821 23.476 89.769 23.476 C 90.517 23.476 91.14 23.843 91.353 24.379 Z M 82.904 30.098 L 84.778 30.098 L 84.778 17.559 L 82.904 17.559 Z M 79.826 22.775 L 79.759 22.775 C 79.336 22.272 78.533 21.817 77.507 21.817 C 75.378 21.817 73.417 23.691 73.417 26.098 C 73.417 28.495 75.368 30.346 77.507 30.346 C 78.52 30.346 79.336 29.888 79.759 29.375 L 79.826 29.375 L 79.826 29.988 C 79.826 31.617 78.956 32.495 77.552 32.495 C 76.404 32.495 75.691 31.67 75.401 30.979 L 73.772 31.659 C 74.24 32.785 75.488 34.179 77.55 34.179 C 79.746 34.179 81.608 32.885 81.608 29.731 L 81.608 22.072 L 79.836 22.072 L 79.836 22.775 C 79.839 22.775 79.826 22.775 79.826 22.775 Z M 77.675 28.672 C 76.381 28.672 75.3 27.591 75.3 26.098 C 75.3 24.591 76.381 23.501 77.675 23.501 C 78.956 23.501 79.949 24.604 79.949 26.098 C 79.962 27.591 78.958 28.672 77.675 28.672 Z M 102.134 17.559 L 97.653 17.559 L 97.653 30.098 L 99.527 30.098 L 99.527 25.35 L 102.136 25.35 C 104.21 25.35 106.25 23.846 106.25 21.459 C 106.25 19.072 104.218 17.559 102.134 17.559 Z M 102.189 23.598 L 99.524 23.598 L 99.524 19.295 L 102.189 19.295 C 103.592 19.295 104.386 20.453 104.386 21.447 C 104.386 22.43 103.582 23.598 102.189 23.598 Z M 113.76 21.804 C 112.399 21.804 110.996 22.407 110.415 23.721 L 112.077 24.411 C 112.434 23.721 113.09 23.486 113.783 23.486 C 114.754 23.486 115.734 24.066 115.757 25.102 L 115.757 25.235 C 115.422 25.044 114.686 24.754 113.805 24.754 C 112.011 24.754 110.193 25.735 110.193 27.574 C 110.193 29.258 111.664 30.338 113.302 30.338 C 114.561 30.338 115.254 29.771 115.687 29.113 L 115.754 29.113 L 115.754 30.083 L 117.561 30.083 L 117.561 25.28 C 117.561 23.043 115.899 21.804 113.76 21.804 Z M 113.525 28.672 C 112.912 28.672 112.054 28.372 112.054 27.601 C 112.054 26.631 113.125 26.263 114.038 26.263 C 114.864 26.263 115.254 26.44 115.744 26.686 C 115.609 27.811 114.659 28.662 113.525 28.672 Z M 124.151 22.072 L 121.999 27.511 L 121.932 27.511 L 119.702 22.072 L 117.686 22.072 L 121.031 29.675 L 119.124 33.901 L 121.076 33.901 L 126.222 22.072 Z M 107.283 30.098 L 109.157 30.098 L 109.157 17.559 L 107.283 17.559 Z\" fill=\"rgb(255,255,255)\"></path><g><defs><linearGradient id=\"idss9697253289_7g1673948338\" x1=\"1\" x2=\"0\" y1=\"0.36348137279256043\" y2=\"0.6365186272074396\"><stop offset=\"0\" stop-color=\"rgb(0,160,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,227,255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 10.469 7.558 C 10.178 7.871 10.011 8.349 10.011 8.975 L 10.011 31.159 C 10.011 31.785 10.178 32.263 10.479 32.563 L 10.556 32.63 L 22.986 20.201 L 22.986 19.923 L 10.546 7.491 Z\" fill=\"url(#idss9697253289_7g1673948338)\"></path></g><g><defs><linearGradient id=\"idss9697253289_8g43703969\" x1=\"1\" x2=\"0\" y1=\"0.4974874371859296\" y2=\"0.5025125628140704\"><stop offset=\"0\" stop-color=\"rgb(255,224,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(255,156,0)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 27.121 24.356 L 22.975 20.211 L 22.975 19.92 L 27.121 15.775 L 27.211 15.83 L 32.115 18.617 C 33.519 19.407 33.519 20.713 32.115 21.514 L 27.211 24.301 Z\" fill=\"url(#idss9697253289_8g43703969)\"></path></g><g><defs><linearGradient id=\"idss9697253289_9g1458251070\" x1=\"0.7924668894653782\" x2=\"0.20753311053462176\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(255,58,68)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(195,17,98)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 27.211 24.301 L 22.975 20.066 L 10.468 32.573 C 10.926 33.063 11.694 33.118 12.552 32.64 Z\" fill=\"url(#idss9697253289_9g1458251070)\"></path></g><g><defs><linearGradient id=\"idss9697253289_10g-2043038337\" x1=\"0.20206598087546296\" x2=\"0.797934019124537\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(50,160,113)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,240,118)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 27.211 15.83 L 12.552 7.503 C 11.694 7.013 10.923 7.08 10.468 7.571 L 22.975 20.066 Z\" fill=\"url(#idss9697253289_10g-2043038337)\"></path></g><path d=\"M 27.121 24.211 L 12.562 32.482 C 11.749 32.95 11.024 32.918 10.556 32.492 L 10.478 32.57 L 10.556 32.638 C 11.024 33.06 11.749 33.095 12.562 32.627 L 27.221 24.301 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 32.115 21.369 L 27.108 24.211 L 27.198 24.301 L 32.102 21.514 C 32.805 21.114 33.151 20.588 33.151 20.066 C 33.108 20.546 32.75 21.001 32.115 21.369 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.12\"></path><path d=\"M 12.553 7.648 L 32.115 18.762 C 32.751 19.12 33.108 19.587 33.163 20.065 C 33.163 19.543 32.818 19.017 32.115 18.617 L 12.553 7.503 C 11.149 6.7 10.011 7.371 10.011 8.974 L 10.011 9.119 C 10.011 7.513 11.149 6.855 12.553 7.648 Z\" fill=\"rgb(255,255,255)\" opacity=\"0.25\"></path></g></svg>',svgContentId:9697253289,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/in/app/eat-app-restaurant-bookings/id950873490\",motionChild:true,nodeId:\"oFxQJNnS7\",openInNewTab:false,scopeId:\"ZJEhUhqme\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1kzrfli framer-19xlksj\",\"data-framer-name\":\"Apple app store download\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-z9xfvt\",\"data-framer-name\":\"download-on-the-app-store 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:120,svg:'<svg width=\"120\" height=\"40\" viewBox=\"0 0 120 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_33_383)\">\\n<path d=\"M110.135 0.00013H9.53468C9.16798 0.00013 8.80568 0.00013 8.43995 0.00213C8.1338 0.00413 7.83009 0.00994 7.521 0.01483C6.84951 0.0227318 6.17961 0.0818063 5.5171 0.19154C4.85552 0.303663 4.21467 0.515046 3.61622 0.81854C3.0185 1.1246 2.47235 1.5223 1.99757 1.9972C1.5203 2.47077 1.12246 3.01815 0.81935 3.61829C0.5154 4.21724 0.304641 4.85907 0.19435 5.52161C0.0830109 6.18332 0.0230984 6.85265 0.01515 7.52361C0.00587 7.83021 0.00489 8.13783 0 8.44447V31.5587C0.00489 31.8692 0.00587 32.17 0.01515 32.4806C0.0231008 33.1516 0.0830134 33.8209 0.19435 34.4825C0.304336 35.1455 0.515108 35.7877 0.81935 36.3868C1.12233 36.985 1.52022 37.5302 1.99757 38.0011C2.47054 38.4781 3.01705 38.8761 3.61622 39.1798C4.21467 39.4841 4.85545 39.6968 5.5171 39.8106C6.17972 39.9195 6.84956 39.9786 7.521 39.9874C7.83009 39.9942 8.1338 39.9981 8.43995 39.9981C8.80567 40.0001 9.168 40.0001 9.53468 40.0001H110.135C110.494 40.0001 110.859 40.0001 111.219 39.9981C111.523 39.9981 111.836 39.9942 112.141 39.9874C112.811 39.9791 113.479 39.92 114.141 39.8106C114.804 39.696 115.448 39.4834 116.049 39.1798C116.647 38.8759 117.193 38.478 117.666 38.0011C118.142 37.5284 118.541 36.9836 118.848 36.3868C119.15 35.7872 119.358 35.1451 119.467 34.4825C119.578 33.8208 119.64 33.1516 119.652 32.4806C119.656 32.17 119.656 31.8692 119.656 31.5587C119.664 31.1954 119.664 30.8341 119.664 30.4649V9.53626C119.664 9.17005 119.664 8.80677 119.656 8.44447C119.656 8.13783 119.656 7.83021 119.652 7.52357C119.64 6.85255 119.578 6.18337 119.467 5.52157C119.358 4.85941 119.149 4.21763 118.848 3.61825C118.23 2.41533 117.252 1.43616 116.049 0.81845C115.448 0.515697 114.804 0.30437 114.141 0.19145C113.48 0.0812328 112.811 0.0221378 112.141 0.01469C111.836 0.00981 111.523 0.00395 111.219 0.002C110.859 0 110.494 0.00013 110.135 0.00013Z\" fill=\"#A6A6A6\"/>\\n<path d=\"M8.44484 39.125C8.14016 39.125 7.84284 39.1211 7.54055 39.1143C6.91433 39.1061 6.28957 39.0516 5.67141 38.9512C5.095 38.8519 4.53661 38.6673 4.01467 38.4033C3.49751 38.1415 3.02582 37.7983 2.61767 37.3867C2.20361 36.98 1.85888 36.5082 1.59716 35.9902C1.33255 35.4688 1.14942 34.9099 1.05416 34.333C0.951281 33.7131 0.895621 33.0863 0.887656 32.458C0.881316 32.2471 0.873016 31.5449 0.873016 31.5449V8.44434C0.873016 8.44434 0.881856 7.75293 0.887706 7.5498C0.895332 6.92248 0.950669 6.29665 1.05324 5.67773C1.14868 5.09925 1.33194 4.53875 1.5967 4.01563C1.85746 3.49794 2.20027 3.02586 2.61184 2.61768C3.02294 2.20562 3.49614 1.8606 4.01418 1.59521C4.53492 1.33209 5.09225 1.14873 5.6675 1.05127C6.28769 0.949836 6.91462 0.894996 7.54301 0.88721L8.44533 0.875H111.214L112.127 0.8877C112.75 0.895099 113.371 0.94945 113.985 1.05029C114.566 1.14898 115.13 1.33362 115.656 1.59814C116.694 2.13299 117.539 2.97916 118.071 4.01807C118.332 4.53758 118.512 5.09351 118.606 5.66699C118.71 6.29099 118.768 6.92174 118.78 7.5542C118.783 7.8374 118.783 8.1416 118.783 8.44434C118.791 8.81934 118.791 9.17627 118.791 9.53613V30.4648C118.791 30.8281 118.791 31.1826 118.783 31.54C118.783 31.8652 118.783 32.1631 118.779 32.4697C118.768 33.0909 118.71 33.7104 118.608 34.3232C118.515 34.9043 118.333 35.4675 118.068 35.9932C117.805 36.5056 117.462 36.9733 117.053 37.3789C116.644 37.7927 116.172 38.1379 115.653 38.4014C115.128 38.6674 114.566 38.8527 113.985 38.9512C113.367 39.0522 112.742 39.1067 112.116 39.1143C111.823 39.1211 111.517 39.125 111.219 39.125L110.135 39.127L8.44484 39.125Z\" fill=\"black\"/>\\n<path d=\"M24.7689 20.3007C24.7796 19.466 25.0013 18.6477 25.4134 17.9217C25.8254 17.1957 26.4143 16.5858 27.1254 16.1486C26.6737 15.5035 26.0777 14.9725 25.3849 14.598C24.6921 14.2234 23.9215 14.0156 23.1343 13.991C21.455 13.8147 19.8271 14.9958 18.9714 14.9958C18.0991 14.9958 16.7816 14.0085 15.3629 14.0376C14.4452 14.0673 13.5509 14.3341 12.767 14.8122C11.9831 15.2903 11.3364 15.9632 10.89 16.7655C8.95595 20.1139 10.3985 25.035 12.2511 27.7416C13.178 29.0669 14.2613 30.5474 15.6788 30.4949C17.0658 30.4374 17.5839 29.6104 19.2582 29.6104C20.9169 29.6104 21.403 30.4949 22.8492 30.4615C24.3376 30.4374 25.2753 29.1303 26.1697 27.7924C26.8357 26.848 27.3481 25.8043 27.6881 24.6999C26.8234 24.3341 26.0855 23.722 25.5664 22.9397C25.0472 22.1574 24.7699 21.2396 24.7689 20.3007Z\" fill=\"white\"/>\\n<path d=\"M22.0372 12.2109C22.8488 11.2367 23.2486 9.98451 23.1518 8.72028C21.9119 8.8505 20.7667 9.44306 19.9442 10.3799C19.542 10.8376 19.234 11.37 19.0378 11.9468C18.8415 12.5235 18.7609 13.1333 18.8005 13.7413C19.4206 13.7477 20.0341 13.6132 20.5948 13.3482C21.1554 13.0831 21.6486 12.6942 22.0372 12.2109Z\" fill=\"white\"/>\\n<path d=\"M42.3022 27.1396H37.5688L36.4321 30.4961H34.4272L38.9106 18.0781H40.9936L45.477 30.4961H43.438L42.3022 27.1396ZM38.0591 25.5908H41.8111L39.9615 20.1435H39.9097L38.0591 25.5908Z\" fill=\"white\"/>\\n<path d=\"M55.1597 25.9697C55.1597 28.7832 53.6538 30.5908 51.3813 30.5908C50.8057 30.6209 50.2332 30.4883 49.7294 30.2082C49.2256 29.928 48.8109 29.5117 48.5327 29.0068H48.4897V33.4912H46.6313V21.4424H48.4302V22.9482H48.4644C48.7553 22.4458 49.177 22.0316 49.6847 21.7497C50.1923 21.4679 50.7668 21.3289 51.3472 21.3476C53.645 21.3477 55.1597 23.1641 55.1597 25.9697ZM53.2495 25.9697C53.2495 24.1367 52.3022 22.9316 50.8569 22.9316C49.437 22.9316 48.4819 24.1621 48.4819 25.9697C48.4819 27.7939 49.437 29.0156 50.8569 29.0156C52.3022 29.0156 53.2495 27.8193 53.2495 25.9697Z\" fill=\"white\"/>\\n<path d=\"M65.1245 25.9697C65.1245 28.7832 63.6187 30.5908 61.3462 30.5908C60.7705 30.6209 60.198 30.4883 59.6942 30.2082C59.1905 29.928 58.7757 29.5117 58.4976 29.0068H58.4546V33.4912H56.5962V21.4424H58.395V22.9482H58.4292C58.7201 22.4458 59.1418 22.0316 59.6495 21.7497C60.1571 21.4679 60.7317 21.3289 61.312 21.3476C63.6099 21.3476 65.1245 23.164 65.1245 25.9697ZM63.2144 25.9697C63.2144 24.1367 62.2671 22.9316 60.8218 22.9316C59.4018 22.9316 58.4468 24.1621 58.4468 25.9697C58.4468 27.7939 59.4018 29.0156 60.8218 29.0156C62.2671 29.0156 63.2144 27.8193 63.2144 25.9697Z\" fill=\"white\"/>\\n<path d=\"M71.7104 27.0361C71.8481 28.2676 73.0444 29.0761 74.6792 29.0761C76.2456 29.0761 77.3726 28.2675 77.3726 27.1572C77.3726 26.1933 76.6929 25.6162 75.0835 25.2207L73.4741 24.833C71.1939 24.2822 70.1353 23.2158 70.1353 21.4853C70.1353 19.3427 72.0024 17.871 74.6538 17.871C77.2778 17.871 79.0767 19.3427 79.1372 21.4853H77.2612C77.1489 20.246 76.1245 19.498 74.6274 19.498C73.1303 19.498 72.1059 20.2548 72.1059 21.3564C72.1059 22.2343 72.7602 22.7509 74.3608 23.1464L75.729 23.4823C78.2768 24.0849 79.3354 25.1083 79.3354 26.9247C79.3354 29.248 77.4848 30.703 74.5415 30.703C71.7876 30.703 69.9282 29.2821 69.8081 27.036L71.7104 27.0361Z\" fill=\"white\"/>\\n<path d=\"M83.3462 19.2998V21.4424H85.0679V22.9141H83.3462V27.9053C83.3462 28.6807 83.6909 29.042 84.4477 29.042C84.6521 29.0384 84.8562 29.0241 85.0591 28.999V30.4619C84.7188 30.5255 84.3729 30.5543 84.0268 30.5478C82.1938 30.5478 81.479 29.8593 81.479 28.1035V22.9141H80.1626V21.4424H81.479V19.2998H83.3462Z\" fill=\"white\"/>\\n<path d=\"M86.065 25.9697C86.065 23.1211 87.7427 21.3311 90.3589 21.3311C92.9839 21.3311 94.6538 23.1211 94.6538 25.9697C94.6538 28.8262 92.9927 30.6084 90.3589 30.6084C87.7261 30.6084 86.065 28.8262 86.065 25.9697ZM92.7603 25.9697C92.7603 24.0156 91.8648 22.8623 90.3589 22.8623C88.853 22.8623 87.9585 24.0244 87.9585 25.9697C87.9585 27.9316 88.853 29.0762 90.3589 29.0762C91.8648 29.0762 92.7603 27.9316 92.7603 25.9697Z\" fill=\"white\"/>\\n<path d=\"M96.186 21.4424H97.9585V22.9834H98.0015C98.1214 22.5021 98.4034 22.0768 98.8 21.7789C99.1966 21.481 99.6836 21.3287 100.179 21.3476C100.393 21.3469 100.607 21.3702 100.816 21.417V23.1553C100.546 23.0726 100.264 23.0347 99.981 23.043C99.711 23.032 99.4418 23.0796 99.192 23.1825C98.9421 23.2854 98.7175 23.4411 98.5335 23.639C98.3496 23.8369 98.2106 24.0723 98.1262 24.3289C98.0417 24.5856 98.0139 24.8575 98.0444 25.126V30.4961H96.186L96.186 21.4424Z\" fill=\"white\"/>\\n<path d=\"M109.384 27.8369C109.134 29.4805 107.534 30.6084 105.486 30.6084C102.852 30.6084 101.217 28.8437 101.217 26.0127C101.217 23.1729 102.861 21.3311 105.408 21.3311C107.913 21.3311 109.488 23.0518 109.488 25.7969V26.4336H103.093V26.5459C103.064 26.8791 103.105 27.2148 103.216 27.5306C103.326 27.8464 103.502 28.1352 103.732 28.3778C103.963 28.6203 104.242 28.8111 104.552 28.9374C104.861 29.0637 105.195 29.1226 105.529 29.1103C105.968 29.1515 106.409 29.0498 106.785 28.8203C107.162 28.5909 107.455 28.246 107.62 27.8369L109.384 27.8369ZM103.102 25.1348H107.628C107.645 24.8352 107.6 24.5354 107.495 24.2541C107.39 23.9729 107.229 23.7164 107.02 23.5006C106.812 23.2849 106.561 23.1145 106.283 23.0003C106.006 22.8861 105.708 22.8305 105.408 22.8369C105.105 22.8351 104.805 22.8933 104.525 23.008C104.245 23.1227 103.99 23.2918 103.776 23.5054C103.562 23.7191 103.392 23.973 103.276 24.2527C103.16 24.5323 103.101 24.8321 103.102 25.1348Z\" fill=\"white\"/>\\n<path d=\"M37.8262 8.73101C38.2158 8.70305 38.6068 8.76191 38.9709 8.90335C39.335 9.04478 39.6632 9.26526 39.9318 9.54889C40.2004 9.83251 40.4026 10.1722 40.524 10.5435C40.6455 10.9148 40.6829 11.3083 40.6338 11.6959C40.6338 13.6021 39.6035 14.6979 37.8262 14.6979H35.6709V8.73101H37.8262ZM36.5977 13.854H37.7227C38.0011 13.8707 38.2797 13.825 38.5382 13.7204C38.7968 13.6158 39.0287 13.4548 39.2172 13.2493C39.4057 13.0437 39.546 12.7987 39.6279 12.5321C39.7097 12.2655 39.7311 11.9839 39.6904 11.708C39.7282 11.4332 39.7046 11.1534 39.6215 10.8887C39.5384 10.6241 39.3977 10.3811 39.2097 10.1771C39.0216 9.97322 38.7908 9.81341 38.5337 9.70917C38.2766 9.60494 37.9997 9.55885 37.7227 9.57422H36.5977V13.854Z\" fill=\"white\"/>\\n<path d=\"M41.6807 12.4443C41.6524 12.1484 41.6862 11.8499 41.7801 11.5678C41.8739 11.2857 42.0257 11.0264 42.2256 10.8064C42.4256 10.5864 42.6693 10.4107 42.9411 10.2904C43.213 10.1701 43.507 10.108 43.8042 10.108C44.1015 10.108 44.3955 10.1701 44.6673 10.2904C44.9392 10.4107 45.1829 10.5864 45.3828 10.8064C45.5828 11.0264 45.7345 11.2857 45.8284 11.5678C45.9222 11.8499 45.9561 12.1484 45.9278 12.4443C45.9566 12.7406 45.9232 13.0396 45.8296 13.3221C45.736 13.6046 45.5843 13.8644 45.3843 14.0848C45.1843 14.3052 44.9404 14.4814 44.6683 14.6019C44.3962 14.7225 44.1019 14.7847 43.8042 14.7847C43.5066 14.7847 43.2123 14.7225 42.9402 14.6019C42.668 14.4814 42.4241 14.3052 42.2241 14.0848C42.0242 13.8644 41.8725 13.6046 41.7789 13.3221C41.6853 13.0396 41.6519 12.7406 41.6807 12.4443ZM45.0137 12.4443C45.0137 11.4683 44.5752 10.8975 43.8057 10.8975C43.0332 10.8975 42.5987 11.4683 42.5987 12.4444C42.5987 13.4282 43.0333 13.9946 43.8057 13.9946C44.5752 13.9946 45.0137 13.4243 45.0137 12.4443Z\" fill=\"white\"/>\\n<path d=\"M51.5733 14.6978H50.6514L49.7207 11.3813H49.6504L48.7237 14.6978H47.8106L46.5694 10.1948H47.4707L48.2774 13.6308H48.3438L49.2696 10.1948H50.1221L51.0479 13.6308H51.1182L51.9209 10.1948H52.8096L51.5733 14.6978Z\" fill=\"white\"/>\\n<path d=\"M53.8536 10.1948H54.709V10.9102H54.7754C54.8881 10.6532 55.0781 10.4379 55.319 10.2941C55.5598 10.1503 55.8396 10.0852 56.1192 10.1079C56.3383 10.0914 56.5583 10.1245 56.7629 10.2046C56.9675 10.2847 57.1514 10.4098 57.3011 10.5706C57.4508 10.7315 57.5624 10.9239 57.6276 11.1337C57.6928 11.3436 57.7099 11.5654 57.6778 11.7827V14.6977H56.7891V12.0059C56.7891 11.2822 56.4746 10.9224 55.8174 10.9224C55.6687 10.9154 55.5202 10.9408 55.3821 10.9966C55.244 11.0524 55.1197 11.1375 55.0176 11.2458C54.9154 11.3542 54.838 11.4834 54.7904 11.6245C54.7429 11.7657 54.7265 11.9154 54.7422 12.0635V14.6978H53.8535L53.8536 10.1948Z\" fill=\"white\"/>\\n<path d=\"M59.0938 8.43701H59.9825V14.6978H59.0938V8.43701Z\" fill=\"white\"/>\\n<path d=\"M61.2178 12.4443C61.1895 12.1484 61.2234 11.8498 61.3172 11.5677C61.4111 11.2857 61.5629 11.0263 61.7628 10.8063C61.9628 10.5863 62.2065 10.4106 62.4784 10.2903C62.7503 10.17 63.0443 10.1079 63.3416 10.1079C63.6389 10.1079 63.9329 10.17 64.2047 10.2903C64.4766 10.4106 64.7203 10.5863 64.9203 10.8063C65.1203 11.0263 65.272 11.2857 65.3659 11.5677C65.4598 11.8498 65.4936 12.1484 65.4653 12.4443C65.4942 12.7406 65.4607 13.0396 65.3671 13.3221C65.2734 13.6046 65.1217 13.8644 64.9217 14.0848C64.7217 14.3052 64.4778 14.4814 64.2057 14.6019C63.9335 14.7224 63.6392 14.7847 63.3416 14.7847C63.0439 14.7847 62.7496 14.7224 62.4775 14.6019C62.2053 14.4814 61.9614 14.3052 61.7614 14.0848C61.5614 13.8644 61.4097 13.6046 61.3161 13.3221C61.2225 13.0396 61.189 12.7406 61.2178 12.4443ZM64.5508 12.4443C64.5508 11.4683 64.1123 10.8975 63.3428 10.8975C62.5703 10.8975 62.1358 11.4683 62.1358 12.4444C62.1358 13.4282 62.5704 13.9946 63.3428 13.9946C64.1123 13.9946 64.5508 13.4243 64.5508 12.4443Z\" fill=\"white\"/>\\n<path d=\"M66.4009 13.4243C66.4009 12.6138 67.0044 12.1465 68.0757 12.0801L69.2954 12.0098V11.6211C69.2954 11.1455 68.981 10.877 68.3736 10.877C67.8775 10.877 67.5337 11.0591 67.4351 11.3775H66.5747C66.6656 10.604 67.3931 10.1079 68.4146 10.1079C69.5435 10.1079 70.1802 10.6699 70.1802 11.6211V14.6978H69.3247V14.065H69.2544C69.1117 14.292 68.9113 14.477 68.6737 14.6012C68.4361 14.7254 68.1697 14.7844 67.9019 14.772C67.7129 14.7916 67.5218 14.7715 67.341 14.7128C67.1603 14.6541 66.9938 14.5581 66.8524 14.4312C66.711 14.3042 66.5977 14.149 66.52 13.9756C66.4422 13.8022 66.4017 13.6144 66.4009 13.4243ZM69.2954 13.0396V12.6631L68.1958 12.7334C67.5757 12.7749 67.2945 12.9859 67.2945 13.3828C67.2945 13.7881 67.646 14.0239 68.1295 14.0239C68.2711 14.0383 68.4142 14.024 68.5502 13.9819C68.6862 13.9398 68.8123 13.8708 68.9211 13.7789C69.0299 13.6871 69.1191 13.5743 69.1834 13.4473C69.2477 13.3203 69.2858 13.1816 69.2954 13.0396Z\" fill=\"white\"/>\\n<path d=\"M71.3482 12.4444C71.3482 11.0215 72.0796 10.1201 73.2173 10.1201C73.4987 10.1072 73.778 10.1746 74.0226 10.3145C74.2671 10.4544 74.4667 10.661 74.5982 10.9101H74.6646V8.43701H75.5533V14.6978H74.7017V13.9863H74.6314C74.4898 14.2338 74.2832 14.4378 74.0339 14.5763C73.7847 14.7148 73.5023 14.7825 73.2173 14.772C72.0718 14.772 71.3482 13.8706 71.3482 12.4444ZM72.2662 12.4444C72.2662 13.3994 72.7164 13.9741 73.4693 13.9741C74.2183 13.9741 74.6812 13.3911 74.6812 12.4483C74.6812 11.5098 74.2134 10.9185 73.4693 10.9185C72.7212 10.9185 72.2662 11.4971 72.2662 12.4444Z\" fill=\"white\"/>\\n<path d=\"M79.23 12.4443C79.2017 12.1484 79.2356 11.8499 79.3294 11.5678C79.4232 11.2857 79.575 11.0264 79.7749 10.8064C79.9749 10.5864 80.2186 10.4107 80.4904 10.2904C80.7623 10.1701 81.0563 10.108 81.3536 10.108C81.6508 10.108 81.9448 10.1701 82.2167 10.2904C82.4885 10.4107 82.7322 10.5864 82.9322 10.8064C83.1321 11.0264 83.2839 11.2857 83.3777 11.5678C83.4715 11.8499 83.5054 12.1484 83.4771 12.4443C83.5059 12.7406 83.4725 13.0396 83.3789 13.3221C83.2853 13.6046 83.1336 13.8644 82.9336 14.0848C82.7336 14.3052 82.4897 14.4814 82.2176 14.6019C81.9455 14.7225 81.6512 14.7847 81.3536 14.7847C81.0559 14.7847 80.7616 14.7225 80.4895 14.6019C80.2173 14.4814 79.9735 14.3052 79.7735 14.0848C79.5735 13.8644 79.4218 13.6046 79.3282 13.3221C79.2346 13.0396 79.2012 12.7406 79.23 12.4443ZM82.563 12.4443C82.563 11.4683 82.1245 10.8975 81.355 10.8975C80.5826 10.8975 80.148 11.4683 80.148 12.4444C80.148 13.4282 80.5826 13.9946 81.355 13.9946C82.1245 13.9946 82.563 13.4243 82.563 12.4443Z\" fill=\"white\"/>\\n<path d=\"M84.6695 10.1948H85.5249V10.9102H85.5913C85.704 10.6532 85.894 10.4379 86.1349 10.2941C86.3757 10.1503 86.6555 10.0852 86.9351 10.1079C87.1542 10.0914 87.3742 10.1245 87.5788 10.2046C87.7834 10.2847 87.9673 10.4098 88.117 10.5706C88.2667 10.7315 88.3783 10.9239 88.4435 11.1337C88.5087 11.3436 88.5258 11.5654 88.4937 11.7827V14.6977H87.605V12.0059C87.605 11.2822 87.2906 10.9224 86.6333 10.9224C86.4846 10.9154 86.3361 10.9408 86.198 10.9966C86.06 11.0524 85.9356 11.1375 85.8335 11.2458C85.7314 11.3542 85.6539 11.4834 85.6064 11.6245C85.5588 11.7657 85.5424 11.9154 85.5581 12.0635V14.6978H84.6695V10.1948Z\" fill=\"white\"/>\\n<path d=\"M93.5152 9.07373V10.2153H94.4908V10.9639H93.5152V13.2793C93.5152 13.751 93.7095 13.9575 94.1519 13.9575C94.2651 13.9572 94.3783 13.9503 94.4908 13.937V14.6772C94.3312 14.7058 94.1695 14.721 94.0074 14.7226C93.0191 14.7226 92.6255 14.375 92.6255 13.5068V10.9638H91.9107V10.2153H92.6255V9.07373H93.5152Z\" fill=\"white\"/>\\n<path d=\"M95.7046 8.43701H96.5855V10.9185H96.6558C96.7739 10.6591 96.9691 10.4425 97.2148 10.2982C97.4605 10.1539 97.7448 10.0888 98.0288 10.1118C98.2467 10.1 98.4646 10.1364 98.6669 10.2184C98.8692 10.3004 99.0509 10.4261 99.199 10.5864C99.3471 10.7468 99.458 10.9378 99.5238 11.146C99.5896 11.3541 99.6086 11.5742 99.5796 11.7905V14.6978H98.69V12.0098C98.69 11.2905 98.355 10.9263 97.7271 10.9263C97.5744 10.9137 97.4207 10.9347 97.277 10.9878C97.1332 11.0408 97.0027 11.1247 96.8948 11.2334C96.7868 11.3421 96.7038 11.4732 96.6518 11.6173C96.5997 11.7614 96.5798 11.9152 96.5933 12.0679V14.6977H95.7047L95.7046 8.43701Z\" fill=\"white\"/>\\n<path d=\"M104.761 13.4819C104.641 13.8935 104.379 14.2495 104.022 14.4876C103.666 14.7258 103.236 14.8309 102.81 14.7847C102.513 14.7925 102.219 14.7357 101.946 14.6182C101.674 14.5006 101.43 14.3252 101.232 14.1041C101.034 13.8829 100.887 13.6214 100.8 13.3376C100.713 13.0537 100.689 12.7544 100.73 12.4605C100.691 12.1656 100.715 11.8656 100.801 11.581C100.888 11.2963 101.034 11.0335 101.231 10.8105C101.428 10.5874 101.671 10.4092 101.942 10.288C102.214 10.1668 102.509 10.1054 102.806 10.1079C104.059 10.1079 104.815 10.9639 104.815 12.3779V12.688H101.635V12.7378C101.621 12.9031 101.642 13.0694 101.696 13.2261C101.75 13.3829 101.837 13.5266 101.95 13.6481C102.062 13.7695 102.2 13.866 102.352 13.9314C102.504 13.9968 102.669 14.0297 102.835 14.0278C103.047 14.0533 103.262 14.0151 103.453 13.9178C103.644 13.8206 103.802 13.6689 103.906 13.4819L104.761 13.4819ZM101.635 12.0308H103.91C103.921 11.8796 103.9 11.7278 103.849 11.5851C103.798 11.4424 103.718 11.3119 103.614 11.2021C103.509 11.0922 103.383 11.0054 103.243 10.9472C103.103 10.8891 102.953 10.8608 102.801 10.8643C102.648 10.8623 102.495 10.8912 102.353 10.9491C102.21 11.0071 102.081 11.0929 101.972 11.2017C101.864 11.3104 101.778 11.4397 101.72 11.5821C101.662 11.7245 101.633 11.8771 101.635 12.0308Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_33_383\">\\n<rect width=\"119.664\" height=\"40\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ug7b1o\",\"data-framer-name\":\"Top border\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(151, 151, 151)\"},children:\"\\xa9 Eat App. All rights reserved.\"})}),className:\"framer-kdmjlw\",\"data-framer-name\":\"Copyright\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kdYt7.framer-19xlksj, .framer-kdYt7 .framer-19xlksj { display: block; }\",\".framer-kdYt7.framer-hy1i7t { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1152px; }\",\".framer-kdYt7 .framer-bz8mrb { align-content: center; align-items: center; background-color: #e5f4eb; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 167px; height: 64px; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-kdYt7 .framer-1oiwi6u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-kdYt7 .framer-k214re { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-kdYt7 .framer-1sjnviv { aspect-ratio: 2 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 48px; }\",\".framer-kdYt7 .framer-17zstfv, .framer-kdYt7 .framer-1fg40z6 { flex: none; height: 24px; left: 0px; position: absolute; text-decoration: none; top: 0px; width: 48px; }\",\".framer-kdYt7 .framer-1tfhzbz, .framer-kdYt7 .framer-1by8miv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-kdYt7 .framer-4ppigs-container, .framer-kdYt7 .framer-1964ym7-container, .framer-kdYt7 .framer-8q6for-container, .framer-kdYt7 .framer-1773jax-container, .framer-kdYt7 .framer-1ulfzqt-container, .framer-kdYt7 .framer-1bfsb25-container, .framer-kdYt7 .framer-g2to7i-container, .framer-kdYt7 .framer-k373w2-container, .framer-kdYt7 .framer-1im3o72-container, .framer-kdYt7 .framer-bffw7e-container, .framer-kdYt7 .framer-1kgynh6-container, .framer-kdYt7 .framer-15oi7bb-container, .framer-kdYt7 .framer-90frt2-container, .framer-kdYt7 .framer-ypaux4-container, .framer-kdYt7 .framer-jimioe-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-kdYt7 .framer-12idw54 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-kdYt7 .framer-1ao7zxf-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-kdYt7.framer-uysd60, .framer-kdYt7.framer-1xabsef { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-kdYt7.framer-1kevgnq { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: fixed; top: 64px; width: 100%; }\",\".framer-kdYt7 .framer-1n3lhf8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-mzouyr { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-1jven2i { align-content: center; align-items: center; background-color: #99d3ad; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 8px 16px 8px 16px; position: relative; width: 1px; }\",\".framer-kdYt7 .framer-odmvhv, .framer-kdYt7 .framer-smmh6f, .framer-kdYt7 .framer-gjz1xu, .framer-kdYt7 .framer-2tndsd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-kdYt7 .framer-1exryu { align-content: center; align-items: center; background-color: #128849; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 8px 16px 8px 16px; position: relative; width: 1px; }\",\".framer-kdYt7 .framer-1huses2 { align-content: center; align-items: center; background-color: #e5f4eb; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 93px 100px 93px; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-w37h09, .framer-kdYt7 .framer-q6oezn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1180px; }\",\".framer-kdYt7 .framer-1v0hhi0, .framer-kdYt7 .framer-netzkp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-kdYt7 .framer-paasbv, .framer-kdYt7 .framer-1m2ddmh { --framer-paragraph-spacing: 12px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-kdYt7 .framer-3fp80, .framer-kdYt7 .framer-z4lwnq, .framer-kdYt7 .framer-16ti6sh, .framer-kdYt7 .framer-r3yuke, .framer-kdYt7 .framer-7u31t5, .framer-kdYt7 .framer-1esenil, .framer-kdYt7 .framer-ae0cq5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-19hce7k, .framer-kdYt7 .framer-ud1ex7, .framer-kdYt7 .framer-igedpq, .framer-kdYt7 .framer-1el8i7n, .framer-kdYt7 .framer-fveq8m, .framer-kdYt7 .framer-1og8zb1, .framer-kdYt7 .framer-1sjdmn6, .framer-kdYt7 .framer-doqcz2, .framer-kdYt7 .framer-7cgn0e, .framer-kdYt7 .framer-i44igl, .framer-kdYt7 .framer-kdmjlw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-kdYt7 .framer-1n0lqzo-container, .framer-kdYt7 .framer-1f9bucy-container, .framer-kdYt7 .framer-187agu0-container, .framer-kdYt7 .framer-c2h3ts-container { flex: none; height: auto; position: relative; width: 200px; }\",\".framer-kdYt7 .framer-1u2f2ae { align-content: center; align-items: center; aspect-ratio: 1.3043478260869565 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: var(--framer-aspect-ratio-supported, 301px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 41%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-kdYt7 .framer-17yuhph { aspect-ratio: 1.3043478260869565 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 393px); }\",\".framer-kdYt7 .framer-hy4ye { align-content: flex-end; align-items: flex-end; 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: 100%; }\",\".framer-kdYt7 .framer-9nr9xn { align-content: center; align-items: center; background-color: var(--token-cc014692-30cd-4134-835d-0e2396e67736, #00582b); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 93px 100px 93px; position: relative; width: 1px; }\",\".framer-kdYt7 .framer-14x196u { flex: none; height: 1px; overflow: visible; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-kdYt7 .framer-2cqc17 { flex: none; height: 275px; overflow: hidden; position: absolute; right: 36px; top: 36px; width: 99px; z-index: 0; }\",\".framer-kdYt7 .framer-bnmj3i, .framer-kdYt7 .framer-12b8z2z, .framer-kdYt7 .framer-cpht8q, .framer-kdYt7 .framer-1pmee50, .framer-kdYt7 .framer-z9xfvt { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-180cpnq { bottom: -50px; flex: none; height: 151px; overflow: hidden; position: absolute; right: -23px; width: 275px; z-index: 0; }\",\".framer-kdYt7 .framer-1lrvkmy { bottom: 1513px; flex: none; height: 92px; left: 0px; overflow: hidden; position: absolute; width: 275px; z-index: 0; }\",\".framer-kdYt7 .framer-19qviw6 { 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: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-1kcszb7 { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(295px, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-kdYt7 .framer-3tiwg1 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; justify-self: start; min-width: 200px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-kdYt7 .framer-yxdkiu { align-content: center; align-items: center; background-color: #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: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 309px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-kdYt7 .framer-1vzy7s3 { background-color: var(--token-12d31f6b-38f3-4ade-ad13-e6c2ab389196, #c1e4cd); flex: none; height: 212px; overflow: hidden; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-133vc06 { flex: none; gap: 10px; height: 150px; left: calc(49.87146529562984% - 281px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 150px / 2); width: 281px; }\",\".framer-kdYt7 .framer-kjjbti { background-color: #ffffff; border-bottom-left-radius: 446px; border-bottom-right-radius: 446px; border-top-left-radius: 446px; border-top-right-radius: 446px; bottom: 0px; box-shadow: 0px 14.263565063476562px 21.395349502563477px 0px rgba(48, 48, 48, 0.14), 0px 5.348837375640869px 26.744184494018555px 0px rgba(48, 48, 48, 0.12), 0px 7.131782531738281px 8.914729118347168px 0px rgba(48, 48, 48, 0.02); flex: none; gap: 0px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 150px; }\",\".framer-kdYt7 .framer-szr80m, .framer-kdYt7 .framer-1wzvwn6 { flex: none; height: 90px; left: calc(50.00000000000002% - 90px / 2); position: absolute; top: calc(50.00000000000002% - 90px / 2); width: 90px; }\",\".framer-kdYt7 .framer-a4s2x3 { background-color: #ffffff; border-bottom-left-radius: 446px; border-bottom-right-radius: 446px; border-top-left-radius: 446px; border-top-right-radius: 446px; bottom: 0px; box-shadow: 0px 14.263565063476562px 21.395349502563477px 0px rgba(48, 48, 48, 0.14), 0px 5.348837375640869px 26.744184494018555px 0px rgba(48, 48, 48, 0.12), 0px 7.131782531738281px 8.914729118347168px 0px rgba(48, 48, 48, 0.02); flex: none; gap: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kdYt7 .framer-xz4int { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 200px; justify-content: space-between; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-f2fqtl { flex: none; gap: 10px; height: 24px; max-width: 1180px; overflow: hidden; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-18dlxts-container { flex: none; height: auto; left: 0px; position: absolute; top: 50%; transform: translateY(-50%); width: auto; }\",\".framer-kdYt7 .framer-q7zbl9-container { flex: none; height: auto; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); width: auto; }\",\".framer-kdYt7 .framer-1r9gic2 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-j4zv64 { flex: none; height: auto; max-width: 90%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-kdYt7 .framer-aahd68-container { flex: none; height: 148px; max-width: 100%; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-1r9t2vy { height: 58px; overflow: hidden; position: relative; width: 123px; }\",\".framer-kdYt7 .framer-en2ffd { flex: none; height: 58px; left: 0px; position: absolute; top: 0px; width: 123px; }\",\".framer-kdYt7 .framer-koue2y { gap: 0px; height: 67px; overflow: visible; position: relative; width: 67px; }\",\".framer-kdYt7 .framer-9hl5pt { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 67px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-xgtpw7 { gap: 0px; height: 23px; overflow: visible; position: relative; width: 163px; }\",\".framer-kdYt7 .framer-1ea8o8x { aspect-ratio: 7.086956521739131 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 23px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-hmf5x8 { gap: 0px; height: 59px; overflow: visible; position: relative; width: 90px; }\",\".framer-kdYt7 .framer-12lra8y { aspect-ratio: 1.5254237288135593 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 59px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-1lrhgcj { gap: 0px; height: 61px; overflow: visible; position: relative; width: 67px; }\",\".framer-kdYt7 .framer-1kwhky7 { aspect-ratio: 1.098360655737705 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 61px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-hx9ory { height: 48px; overflow: hidden; position: relative; width: 129px; }\",\".framer-kdYt7 .framer-1llnyd5 { flex: none; height: 48px; left: 0px; position: absolute; top: 0px; width: 129px; }\",\".framer-kdYt7 .framer-12il3zs { gap: 0px; height: 61px; overflow: visible; position: relative; width: 42px; }\",\".framer-kdYt7 .framer-1u819vy { aspect-ratio: 0.6885245901639344 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 61px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-eu5l7d { gap: 0px; height: 67px; overflow: visible; position: relative; width: 97px; }\",\".framer-kdYt7 .framer-fjdhtg { aspect-ratio: 1.4477611940298507 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 67px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-1nd54gk { gap: 0px; height: 55px; overflow: visible; position: relative; width: 60px; }\",\".framer-kdYt7 .framer-hsgvg1 { aspect-ratio: 1.0909090909090908 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 55px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-wlpzay { gap: 0px; height: 54px; overflow: visible; position: relative; width: 79px; }\",\".framer-kdYt7 .framer-14y8gg8 { aspect-ratio: 1.462962962962963 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 54px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-1ljx2s8 { gap: 0px; height: 59px; overflow: visible; position: relative; width: 131px; }\",\".framer-kdYt7 .framer-nasvcg { aspect-ratio: 2.2203389830508473 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 59px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-11rwcgv { gap: 0px; height: 58px; overflow: visible; position: relative; width: 140px; }\",\".framer-kdYt7 .framer-ix49h3 { aspect-ratio: 2.413793103448276 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 58px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-hfpan { gap: 0px; height: 46px; overflow: visible; position: relative; width: 88px; }\",\".framer-kdYt7 .framer-1t67mkv { aspect-ratio: 1.9130434782608696 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 46px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-144l0lq { height: 67px; position: relative; width: 107px; }\",\".framer-kdYt7 .framer-1w1oy3g { gap: 0px; height: 45px; overflow: visible; position: relative; width: 98px; }\",\".framer-kdYt7 .framer-zdrqz { aspect-ratio: 2.1777777777777776 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 45px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-34uf24 { gap: 0px; height: 113px; overflow: visible; position: relative; width: 114px; }\",\".framer-kdYt7 .framer-19g84mr { aspect-ratio: 1.008849557522124 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 113px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-bi8qrm { gap: 0px; height: 57px; overflow: visible; position: relative; width: 130px; }\",\".framer-kdYt7 .framer-1p16hbv { aspect-ratio: 2.280701754385965 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 57px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-f2lxhq { gap: 0px; height: 27px; overflow: visible; position: relative; width: 180px; }\",\".framer-kdYt7 .framer-2mbpuj { aspect-ratio: 6.681318488438851 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 27px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-d2qnq8 { gap: 0px; height: 56px; overflow: visible; position: relative; width: 55px; }\",\".framer-kdYt7 .framer-18ubatj { aspect-ratio: 0.9821428571428571 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 56px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-xkbjuo { gap: 0px; height: 52px; overflow: visible; position: relative; width: 114px; }\",\".framer-kdYt7 .framer-178thga { aspect-ratio: 2.1923076923076925 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 52px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-o7van9 { gap: 0px; height: 46px; overflow: visible; position: relative; width: 82px; }\",\".framer-kdYt7 .framer-87pap5 { aspect-ratio: 1.7826086956521738 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 46px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-1i5gjov { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 93px 100px 93px; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-1b6k0v2 { align-content: center; align-items: center; aspect-ratio: 1.3043478260869565 / 1; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: var(--framer-aspect-ratio-supported, 302px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 41%; will-change: var(--framer-will-change-override, transform); }\",\".framer-kdYt7 .framer-r10tki { aspect-ratio: 1.395856052344602 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 282px); overflow: visible; position: relative; width: 1px; }\",\".framer-kdYt7 .framer-1ekmq3p { align-content: center; align-items: center; background-color: #e5f4eb; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 100px 93px 100px 93px; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-1u3e4te { flex: none; height: 26px; overflow: hidden; position: absolute; right: -67px; top: 30px; width: 276px; z-index: 1; }\",\".framer-kdYt7 .framer-t6epz8, .framer-kdYt7 .framer-dhdbju { bottom: 0px; flex: none; left: calc(50.00000000000002% - 275px / 2); position: absolute; top: 0px; width: 275px; }\",\".framer-kdYt7 .framer-1o56gix { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-8zwymz { bottom: 56px; flex: none; height: 92px; left: -87px; overflow: hidden; position: absolute; width: 276px; z-index: 1; }\",\".framer-kdYt7 .framer-1l11 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 86px 64px 86px; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-mppwaz { 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: hidden; padding: 0px; position: relative; width: 1182px; }\",\".framer-kdYt7 .framer-5wefyf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-1xsuj9k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 380px; }\",\".framer-kdYt7 .framer-2qolva { aspect-ratio: 2 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 48px; }\",\".framer-kdYt7 .framer-vyqfp1 { aspect-ratio: 2 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; gap: 0px; height: 24px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-kdYt7 .framer-1dt5kuo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-kdYt7 .framer-pw2shq, .framer-kdYt7 .framer-x12puc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-kdYt7 .framer-1ew779i, .framer-kdYt7 .framer-yxrlww { flex: none; gap: 0px; height: 24px; overflow: hidden; position: relative; width: 24px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-kdYt7 .framer-b7yjae, .framer-kdYt7 .framer-1i6izrg { bottom: 2px; flex: none; left: 2px; position: absolute; right: 2px; text-decoration: none; top: 2px; }\",\".framer-kdYt7 .framer-1j3sxn, .framer-kdYt7 .framer-15p8cu9, .framer-kdYt7 .framer-pys7up { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-kdYt7 .framer-1ji5ofr { flex: none; height: 18px; left: calc(50.00000000000002% - 18px / 2); position: absolute; text-decoration: none; top: calc(50.00000000000002% - 18px / 2); width: 18px; }\",\".framer-kdYt7 .framer-1qqkeyw, .framer-kdYt7 .framer-6n1dt9 { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; text-decoration: none; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-kdYt7 .framer-55synb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-kdYt7 .framer-1sg1y6f, .framer-kdYt7 .framer-1i87qi8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-kdYt7 .framer-3jloge, .framer-kdYt7 .framer-n5e8no, .framer-kdYt7 .framer-c0caz1, .framer-kdYt7 .framer-p6cuwn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-kdYt7 .framer-n8fq5t-container, .framer-kdYt7 .framer-a7onko-container, .framer-kdYt7 .framer-12vwvje-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-1gy3p82, .framer-kdYt7 .framer-a89cad, .framer-kdYt7 .framer-1pfoyc4, .framer-kdYt7 .framer-tecv4c, .framer-kdYt7 .framer-1w042dy, .framer-kdYt7 .framer-6cp5n6, .framer-kdYt7 .framer-10f8ank, .framer-kdYt7 .framer-cv0ici, .framer-kdYt7 .framer-4oudw8, .framer-kdYt7 .framer-ccuwk0, .framer-kdYt7 .framer-180slvc, .framer-kdYt7 .framer-ijxw1a, .framer-kdYt7 .framer-72fen7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-1ovxmiz, .framer-kdYt7 .framer-vkkx95, .framer-kdYt7 .framer-119jk5a, .framer-kdYt7 .framer-1lgy1di, .framer-kdYt7 .framer-12j0kp5, .framer-kdYt7 .framer-1125wkb, .framer-kdYt7 .framer-wa5exp, .framer-kdYt7 .framer-1m2pcxw, .framer-kdYt7 .framer-ueoyco, .framer-kdYt7 .framer-18mqmfm, .framer-kdYt7 .framer-1fj1z8j, .framer-kdYt7 .framer-1qfgkcc, .framer-kdYt7 .framer-ui0ve9, .framer-kdYt7 .framer-1jwtkg3, .framer-kdYt7 .framer-y4n58u, .framer-kdYt7 .framer-hp0y5t, .framer-kdYt7 .framer-zl18g2, .framer-kdYt7 .framer-dof3am { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-kdYt7 .framer-1wfk560 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 24px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-16vhnq9, .framer-kdYt7 .framer-1o9pfst, .framer-kdYt7 .framer-14pg5q1, .framer-kdYt7 .framer-c4dg10, .framer-kdYt7 .framer-6p27c4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 155px; }\",\".framer-kdYt7 .framer-x4o4ax { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kdYt7 .framer-1te9xm1, .framer-kdYt7 .framer-qlg8wc, .framer-kdYt7 .framer-he6xsr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-kdYt7 .framer-13i5xrn { align-content: flex-start; align-items: flex-start; background-color: #e5f4eb; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 329px; }\",\".framer-kdYt7 .framer-9pe37e, .framer-kdYt7 .framer-ej2gc9 { flex: none; height: 41px; overflow: hidden; position: relative; text-decoration: none; width: 136px; }\",\".framer-kdYt7 .framer-1bgtoa5, .framer-kdYt7 .framer-1t8szxe { flex: none; height: 41px; left: calc(50.00000000000002% - 136px / 2); position: absolute; top: calc(48.78048780487807% - 41px / 2); width: 136px; }\",\".framer-kdYt7 .framer-i1hakg, .framer-kdYt7 .framer-1kzrfli { flex: none; height: 40px; overflow: hidden; position: relative; text-decoration: none; width: 120px; }\",\".framer-kdYt7 .framer-18di3th { align-content: flex-start; align-items: flex-start; background-color: #fff3e0; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 329px; }\",\".framer-kdYt7 .framer-ug7b1o { background-color: #dadada; flex: none; height: 1px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 654px) and (max-width: 1151px) { .framer-kdYt7.framer-hy1i7t, .framer-kdYt7 .framer-bz8mrb { width: 654px; } .framer-kdYt7.framer-uysd60 { background-color: rgba(255, 255, 255, 0.8); z-index: 0; } .framer-kdYt7.framer-1kevgnq { overflow: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; } .framer-kdYt7 .framer-1im3o72-container { order: 0; } .framer-kdYt7 .framer-bffw7e-container { order: 2; } .framer-kdYt7 .framer-1kgynh6-container { order: 1; } .framer-kdYt7 .framer-15oi7bb-container { order: 3; } .framer-kdYt7 .framer-90frt2-container { order: 4; } .framer-kdYt7 .framer-1huses2 { padding: 100px 40px 60px 40px; } .framer-kdYt7 .framer-w37h09, .framer-kdYt7 .framer-q6oezn, .framer-kdYt7 .framer-5wefyf, .framer-kdYt7 .framer-1te9xm1 { flex-direction: column; } .framer-kdYt7 .framer-1v0hhi0 { align-content: center; align-items: center; flex: none; order: 1; width: 100%; } .framer-kdYt7 .framer-1u2f2ae { height: var(--framer-aspect-ratio-supported, 313px); order: 0; width: 71%; will-change: var(--framer-will-change-override, transform); } .framer-kdYt7 .framer-17yuhph { width: var(--framer-aspect-ratio-supported, 408px); } .framer-kdYt7 .framer-9nr9xn, .framer-kdYt7 .framer-1l11 { padding: 60px 40px 60px 40px; } .framer-kdYt7 .framer-1kcszb7 { gap: 30px; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); } .framer-kdYt7 .framer-3tiwg1 { gap: 0px; min-width: 220px; } .framer-kdYt7 .framer-yxdkiu { width: min-content; } .framer-kdYt7 .framer-1vzy7s3, .framer-kdYt7 .framer-xz4int { width: 300px; } .framer-kdYt7 .framer-1i5gjov, .framer-kdYt7 .framer-1ekmq3p { padding: 100px 40px 100px 40px; } .framer-kdYt7 .framer-netzkp { flex: none; order: 1; width: 100%; } .framer-kdYt7 .framer-1b6k0v2 { height: var(--framer-aspect-ratio-supported, 352px); order: 0; width: 80%; } .framer-kdYt7 .framer-r10tki { height: var(--framer-aspect-ratio-supported, 329px); } .framer-kdYt7 .framer-1o56gix { z-index: 2; } .framer-kdYt7 .framer-55synb { flex: none; width: 100%; }}\",\"@media (max-width: 653px) { .framer-kdYt7.framer-hy1i7t, .framer-kdYt7 .framer-bz8mrb { width: 390px; } .framer-kdYt7.framer-uysd60 { background-color: rgba(255, 255, 255, 0.8); } .framer-kdYt7.framer-1kevgnq { overflow: auto; will-change: var(--framer-will-change-effect-override, transform); } .framer-kdYt7 .framer-1im3o72-container { order: 0; } .framer-kdYt7 .framer-bffw7e-container { order: 2; } .framer-kdYt7 .framer-1kgynh6-container { order: 1; } .framer-kdYt7 .framer-15oi7bb-container { order: 3; } .framer-kdYt7 .framer-90frt2-container { order: 4; } .framer-kdYt7 .framer-1huses2, .framer-kdYt7 .framer-1i5gjov { padding: 100px 20px 100px 20px; } .framer-kdYt7 .framer-w37h09, .framer-kdYt7 .framer-q6oezn, .framer-kdYt7 .framer-1by8miv, .framer-kdYt7 .framer-5wefyf, .framer-kdYt7 .framer-1te9xm1 { flex-direction: column; } .framer-kdYt7 .framer-1v0hhi0 { align-content: center; align-items: center; flex: none; order: 1; width: 100%; } .framer-kdYt7 .framer-1u2f2ae { height: var(--framer-aspect-ratio-supported, 202px); order: 0; width: 75%; will-change: var(--framer-will-change-override, transform); } .framer-kdYt7 .framer-17yuhph { width: var(--framer-aspect-ratio-supported, 263px); } .framer-kdYt7 .framer-9nr9xn, .framer-kdYt7 .framer-1ekmq3p, .framer-kdYt7 .framer-1l11 { padding: 40px 20px 40px 20px; } .framer-kdYt7 .framer-1kcszb7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-kdYt7 .framer-3tiwg1 { align-self: unset; } .framer-kdYt7 .framer-yxdkiu { will-change: var(--framer-will-change-override, transform); } .framer-kdYt7 .framer-netzkp { flex: none; order: 1; width: 100%; } .framer-kdYt7 .framer-1b6k0v2 { height: var(--framer-aspect-ratio-supported, 215px); order: 0; width: 80%; } .framer-kdYt7 .framer-r10tki { height: var(--framer-aspect-ratio-supported, 201px); } .framer-kdYt7 .framer-1o56gix { z-index: 2; } .framer-kdYt7 .framer-55synb { flex: none; flex-direction: column; width: 100%; } .framer-kdYt7 .framer-1sg1y6f, .framer-kdYt7 .framer-1i87qi8 { flex: none; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10312.5\n * @framerIntrinsicWidth 1152\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BcZiLMhSJ\":{\"layout\":[\"fixed\",\"auto\"]},\"LmdC17N7y\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"lSGgzyk1Q\":{\"pattern\":\":lSGgzyk1Q\",\"name\":\"heromain\"},\"Tcpo7aVJ9\":{\"pattern\":\":Tcpo7aVJ9\",\"name\":\"top\"},\"UJyIOTl6v\":{\"pattern\":\":UJyIOTl6v\",\"name\":\"heading\"}}\n * @framerResponsiveScreen\n */const FramerZJEhUhqme=withCSS(Component,css,\"framer-kdYt7\");export default FramerZJEhUhqme;FramerZJEhUhqme.displayName=\"Comparison\";FramerZJEhUhqme.defaultProps={height:10312.5,width:1152};addFonts(FramerZJEhUhqme,[{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/yDtI2UI8XcEg1W2je9XPN3Noo.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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/UjlFhCnUjxhNfep4oYBPqnEssyo.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...NavbarButtonFonts,...NavbarFilledButtonFonts,...BurgerMenuFonts,...ButtonLargeFonts,...TextButtonCopyFonts,...PaginatorFonts,...TickerFonts,...Link1Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZJEhUhqme\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1152\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BcZiLMhSJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LmdC17N7y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"10312.5\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"lSGgzyk1Q\\\":{\\\"pattern\\\":\\\":lSGgzyk1Q\\\",\\\"name\\\":\\\"heromain\\\"},\\\"Tcpo7aVJ9\\\":{\\\"pattern\\\":\\\":Tcpo7aVJ9\\\",\\\"name\\\":\\\"top\\\"},\\\"UJyIOTl6v\\\":{\\\"pattern\\\":\\\":UJyIOTl6v\\\",\\\"name\\\":\\\"heading\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PaginationType", "NAV_CONTAINER", "NAV_NEXT_PAGE", "NAV_PREV_PAGE", "LOADING_VIEW", "PAGINATION_ITEMS", "NAV_PAGE_NUMBER", "Paginator", "props", "displaySelf", "setDisplaySelf", "ye", "page", "pe", "totalPages", "pageNumber", "setPageNumber", "toggleDisplay", "displayContent", "n", "paginate", "limit", "elems", "pageNum", "prevRange", "currRange", "ue", "window", "e", "p", "containerStyle", "addPropertyControls", "ControlType", "useStore", "createStore", "withClass", "Component", "props", "p", "e", "createStore", "withClass", "t", "o", "p", "NavbarButtonFonts", "getFonts", "xuSZEY7yY_default", "NavbarFilledButtonFonts", "pXzv0MyWd_default", "BurgerMenuFonts", "IXulyNxE6_default", "MotionDivWithStickyNavbarbz8mrb", "withCodeBoundaryForOverrides", "motion", "withStickyNavbar", "ButtonLargeFonts", "EbjdIbRqO_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "MotionDivWithFX", "withFX", "MotionDivWithClass3tiwg1", "withClass", "TextButtonCopyFonts", "X_KcSlL40_default", "TextButtonCopyWithClass118dlxtsWithMappedReactProps1v4h8cn", "withMappedReactProps", "X_KcSlL40_exports", "TextButtonCopyWithClass2q7zbl9WithMappedReactProps1v4h8cn", "PaginatorFonts", "Paginator", "TickerFonts", "Ticker", "Link1Fonts", "CrAbj2H4F_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition2", "animation3", "animation4", "animation5", "toResponsiveImage", "value", "suffix", "prefix", "QueryData", "query", "pageSize", "data", "useQueryData", "transformTemplate1", "_", "t", "animation6", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "UdcTt04FgY3LMafGNW", "IdNkOMk8TY3LMafGNW", "WM5JX6yOgY3LMafGNW", "LMsmaRcIXY3LMafGNW", "mDkhRpqfAY3LMafGNW", "phG3Hdm3VY3LMafGNW", "idY3LMafGNW", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "tap3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "router", "useRouter", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "Link", "SVG", "ComponentViewportProvider", "Container", "l", "AnimatePresence", "Ga", "x", "PropertyOverrides2", "RichText", "getLoadingLazyAtYPosition", "Image2", "ChildrenCanSuspend", "DBltbbism_default", "collection", "paginationInfo", "index", "textContent", "textContent1", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "overlay1", "css", "FramerZJEhUhqme", "withCSS", "ZJEhUhqme_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
