{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.18.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/8jgfizW6Tlto59R28fXU/wLlSwQcgLTbYrzH9pYk2/ckAhuxTmW.js", "ssg:https://framerusercontent.com/modules/vNIKhR3r01McK0dGBOfd/rlyy1l51VvjloNFL9rVQ/YP49RiI8k.js", "ssg:https://framerusercontent.com/modules/s31WM1uOXJPf8oXHD4Yw/9LIiezbxLuSsEDZwlsBn/hKGz8kYij.js", "ssg:https://framerusercontent.com/modules/j38iRAvdsLiIuiN47Ejz/K7iB95pXR4Is1IliNAhx/Oeimj8Lol.js", "ssg:https://framerusercontent.com/modules/9uHcPLGWOPprMRX6bm8o/Gh6xTrZW0aPxkPY9E7Wm/WQthsMn8y.js", "ssg:https://framerusercontent.com/modules/uGp4PyYijBKLjgwuNXxn/5119KHCcc6m3ksuy2f7T/ZwIabBn_t.js", "ssg:https://framerusercontent.com/modules/mD3wa8BJkUTEZRCWa7oq/anJVH1rfHvL8zn8zPhiW/IzFTWI14s.js", "ssg:https://framerusercontent.com/modules/8qISj6tPjepuw92Zi3eb/fXsrFA0n058ANABIOPrd/szJ0bJlwG.js", "ssg:https://framerusercontent.com/modules/5XrvSSVno8xPMtv3bfpY/4gmIcXJa2flShpK4KAZn/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){t.indexOf(e)===-1&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>typeof t===\"number\";const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>typeof t===\"object\"&&Boolean(t.createAnimation);const isFunction=t=>typeof t===\"function\";const isString=t=>typeof t===\"string\";const e={ms:t=>t*1e3,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n//# sourceMappingURL=index.es.js.map\n", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);// resolve immediately if it exists\nconst current=element.current;if(current)resolve(current);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{ref.current?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-0OttD\";const variantClassNames={lhfMeDeAo:\"framer-v-1entew7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"lhfMeDeAo\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1entew7\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"lhfMeDeAo\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1a8sol4\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"kdp3GltgE-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 162 169\"><path d=\"M 22.5 0 L 22.5 42.5 L 22.5 76.5 L 31 119 L 25 113 L 0.5 119 L 5.5 163.5 L 33.5 160 L 39 169 L 115.5 166.5 L 121 156.5 L 150.5 156.5 L 161.5 116.5 L 129 113 L 124.5 103 L 132.5 0 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12612047234,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:127,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||169)*.502958579881657-75)),pixelHeight:150,pixelWidth:127,src:\"https://framerusercontent.com/images/83GZkb4KQsPhPZJnlIUkp80MOA.svg\"},className:\"framer-ixkh28\",\"data-framer-name\":\"SocialDistrict logo_Black\",layoutDependency:layoutDependency,layoutId:\"BVijNP6Xo\",transformTemplate:transformTemplate1})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0OttD.framer-uglnhl, .framer-0OttD .framer-uglnhl { display: block; }\",\".framer-0OttD.framer-1entew7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0OttD .framer-1a8sol4 { flex: none; height: 169px; position: relative; width: 162px; }\",\".framer-0OttD .framer-ixkh28 { aspect-ratio: 0.8466666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); left: 47%; overflow: visible; position: absolute; top: 50%; width: 127px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0OttD.framer-1entew7 { gap: 0px; } .framer-0OttD.framer-1entew7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0OttD.framer-1entew7 > :first-child { margin-left: 0px; } .framer-0OttD.framer-1entew7 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 169\n * @framerIntrinsicWidth 162\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerckAhuxTmW=withCSS(Component,css,\"framer-0OttD\");export default FramerckAhuxTmW;FramerckAhuxTmW.displayName=\"logo\";FramerckAhuxTmW.defaultProps={height:169,width:162};addFonts(FramerckAhuxTmW,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerckAhuxTmW\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"169\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"162\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ckAhuxTmW.map", "// Generated by Framer (1f5f6d9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"PmfPWk97Z\",\"Ya4BvzSHG\",\"Htuem5iXl\",\"lrIOL8ka_\"];const serializationHash=\"framer-reBlt\";const variantClassNames={Htuem5iXl:\"framer-v-n5dpnu\",lrIOL8ka_:\"framer-v-15u0pq8\",PmfPWk97Z:\"framer-v-e7fq04\",Ya4BvzSHG:\"framer-v-5m5erb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"PmfPWk97Z\",\"Variant 2\":\"Ya4BvzSHG\",\"Variant 3\":\"Htuem5iXl\",\"Variant 4\":\"lrIOL8ka_\"};const getProps=({height,id,image,width,...props})=>{return{...props,j18QNHPR3:image??props.j18QNHPR3??{alt:\"\",src:\"https://framerusercontent.com/images/GKv8FtRbRtQBOkQPigTaQPGCM.jpg\",srcSet:\"https://framerusercontent.com/images/GKv8FtRbRtQBOkQPigTaQPGCM.jpg 800w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"PmfPWk97Z\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,j18QNHPR3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PmfPWk97Z\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",positionX:\"right\",positionY:\"center\"},className:cx(scopingClassNames,\"framer-e7fq04\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"PmfPWk97Z\",ref:refBinding,style:{...style},...addPropertyOverrides({Htuem5iXl:{\"data-framer-name\":\"Variant 3\"},lrIOL8ka_:{\"data-framer-name\":\"Variant 4\"},Ya4BvzSHG:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:119,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||530)*.5000000000000002-(componentViewport?.height||530)*1/2)),pixelHeight:900,pixelWidth:190,positionX:\"right\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.0024)`,src:\"https://framerusercontent.com/images/hVwxUU9aHxFu6J0yiFKVC7iilY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hVwxUU9aHxFu6J0yiFKVC7iilY.png 190w\"},className:\"framer-7ka5br\",layoutDependency:layoutDependency,layoutId:\"ouNZe8_wb\",...addPropertyOverrides({Htuem5iXl:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:119,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||420)-(-1+(componentViewport?.height||420)*1)),pixelHeight:714,pixelWidth:900,positionX:\"center\",positionY:\"bottom\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.0019)`,src:\"https://framerusercontent.com/images/0DVZm3xfpfAMxMdpt9UrqMCMG0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0DVZm3xfpfAMxMdpt9UrqMCMG0.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DVZm3xfpfAMxMdpt9UrqMCMG0.png 900w\"}},lrIOL8ka_:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:119,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||420)-(-1+(componentViewport?.height||420)*1)),pixelHeight:714,pixelWidth:900,positionX:\"center\",positionY:\"bottom\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.0019)`,src:\"https://framerusercontent.com/images/rDazSxFobtrwm72alO1T039g6a0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rDazSxFobtrwm72alO1T039g6a0.png?scale-down-to=512 512w,https://framerusercontent.com/images/rDazSxFobtrwm72alO1T039g6a0.png 900w\"}},Ya4BvzSHG:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:119,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||530)*.5000000000000002-(componentViewport?.height||530)*1/2)),pixelHeight:900,pixelWidth:87,positionX:\"right\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.0024)`,src:\"https://framerusercontent.com/images/JbSFHjHyOo75Wnrgx7XwXwHSHFc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/JbSFHjHyOo75Wnrgx7XwXwHSHFc.png 87w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:119,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||530)-0-((componentViewport?.height||530)-0)*1)/2)),pixelHeight:1e3,pixelWidth:800,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(j18QNHPR3)},className:\"framer-olmo7r\",layoutDependency:layoutDependency,layoutId:\"y9OzWJmqh\",style:{mask:\"url('https://framerusercontent.com/images/NTF1mlO82ZQePDBhVKTdfM6wv74.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/NTF1mlO82ZQePDBhVKTdfM6wv74.svg') alpha no-repeat center / cover add\"},variants:{Htuem5iXl:{mask:\"url('https://framerusercontent.com/images/n5vqOncrY27FiQyMXKZo24cC4.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/n5vqOncrY27FiQyMXKZo24cC4.svg') alpha no-repeat center / cover add\"},lrIOL8ka_:{mask:\"url('https://framerusercontent.com/images/yRkYu6EdAsMRTwuFgUzN37OrQA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/yRkYu6EdAsMRTwuFgUzN37OrQA.svg') alpha no-repeat center / cover add\"},Ya4BvzSHG:{mask:\"url('https://framerusercontent.com/images/Fjh7GjutdwuKZuUF3Dr1uHJNeJE.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/Fjh7GjutdwuKZuUF3Dr1uHJNeJE.svg') alpha no-repeat center / cover add\"}},...addPropertyOverrides({Htuem5iXl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:189,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||420)-0-((componentViewport?.height||420)-0)*1)/2)),pixelHeight:1e3,pixelWidth:800,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(j18QNHPR3)}},lrIOL8ka_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:189,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||420)-0-((componentViewport?.height||420)-0)*1)/2)),pixelHeight:1e3,pixelWidth:800,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(j18QNHPR3)}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-reBlt.framer-15bvrxi, .framer-reBlt .framer-15bvrxi { display: block; }\",\".framer-reBlt.framer-e7fq04 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 530px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 420px; }\",\".framer-reBlt .framer-7ka5br { -webkit-user-select: none; flex: none; height: 100%; overflow: hidden; pointer-events: none; position: absolute; right: -2px; top: calc(50.00000000000002% - 100% / 2); user-select: none; width: 100%; z-index: 1; }\",\".framer-reBlt .framer-olmo7r { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-reBlt.framer-e7fq04 { gap: 0px; } .framer-reBlt.framer-e7fq04 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-reBlt.framer-e7fq04 > :first-child { margin-left: 0px; } .framer-reBlt.framer-e7fq04 > :last-child { margin-right: 0px; } }\",\".framer-reBlt.framer-v-5m5erb.framer-e7fq04 { aspect-ratio: 0.7933333333333333 / 1; height: var(--framer-aspect-ratio-supported, 530px); }\",\".framer-reBlt.framer-v-5m5erb .framer-7ka5br { right: -3px; }\",\".framer-reBlt.framer-v-n5dpnu.framer-e7fq04, .framer-reBlt.framer-v-15u0pq8.framer-e7fq04 { height: 420px; width: 530px; }\",\".framer-reBlt.framer-v-n5dpnu .framer-7ka5br { bottom: -1px; left: calc(49.811320754717% - 100.18867924528303% / 2); right: unset; top: unset; width: 100%; }\",\".framer-reBlt.framer-v-15u0pq8 .framer-7ka5br { bottom: -1px; left: calc(50.18867924528304% - 100.18867924528303% / 2); right: unset; top: unset; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 530\n * @framerIntrinsicWidth 420\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ya4BvzSHG\":{\"layout\":[\"fixed\",\"fixed\"]},\"Htuem5iXl\":{\"layout\":[\"fixed\",\"fixed\"]},\"lrIOL8ka_\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"j18QNHPR3\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYP49RiI8k=withCSS(Component,css,\"framer-reBlt\");export default FramerYP49RiI8k;FramerYP49RiI8k.displayName=\"Testimonial Image\";FramerYP49RiI8k.defaultProps={height:530,width:420};addPropertyControls(FramerYP49RiI8k,{variant:{options:[\"PmfPWk97Z\",\"Ya4BvzSHG\",\"Htuem5iXl\",\"lrIOL8ka_\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},j18QNHPR3:{__defaultAssetReference:\"data:framer/asset-reference,GKv8FtRbRtQBOkQPigTaQPGCM.jpg?originalFilename=Testimonial01.jpg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,GKv8FtRbRtQBOkQPigTaQPGCM.jpg?originalFilename=Testimonial01.jpg&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerYP49RiI8k,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYP49RiI8k\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"j18QNHPR3\\\":\\\"image\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ya4BvzSHG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Htuem5iXl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lrIOL8ka_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"420\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"530\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YP49RiI8k.map", "// Generated by Framer (eca4804)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import TestimonialImage from\"https://framerusercontent.com/modules/vNIKhR3r01McK0dGBOfd/rlyy1l51VvjloNFL9rVQ/YP49RiI8k.js\";const TestimonialImageFonts=getFonts(TestimonialImage);const cycleOrder=[\"T1oPvtht0\",\"y8D5AjqXA\",\"cvYXeQaqJ\",\"rNAfoJwDz\",\"jyZjw4Suz\",\"Gql3wzB9n\"];const serializationHash=\"framer-gBm1n\";const variantClassNames={cvYXeQaqJ:\"framer-v-1nke6qb\",Gql3wzB9n:\"framer-v-zxuv2t\",jyZjw4Suz:\"framer-v-9kukrq\",rNAfoJwDz:\"framer-v-1fcpjse\",T1oPvtht0:\"framer-v-o0qfp9\",y8D5AjqXA:\"framer-v-5yjht9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 1\":\"T1oPvtht0\",\"Desktop 2\":\"y8D5AjqXA\",\"Mob 1\":\"jyZjw4Suz\",\"Mob 2\":\"Gql3wzB9n\",\"Tab 1\":\"cvYXeQaqJ\",\"Tab 2\":\"rNAfoJwDz\"};const getProps=({height,id,image,name1,testimonial,width,...props})=>{return{...props,c8ni3xvzu:testimonial??props.c8ni3xvzu??\"Delicious food and cocktails, very nice atmosphere, friendly staff, I would like to come back again as soon as possible!\",neXwnyXFk:image??props.neXwnyXFk??{src:\"https://framerusercontent.com/images/GKv8FtRbRtQBOkQPigTaQPGCM.jpg\",srcSet:\"https://framerusercontent.com/images/GKv8FtRbRtQBOkQPigTaQPGCM.jpg 800w\"},TyarFd7SL:name1??props.TyarFd7SL??\"Hani Bustani\",variant:humanReadableVariantMap[props.variant]??props.variant??\"T1oPvtht0\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,c8ni3xvzu,TyarFd7SL,neXwnyXFk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"T1oPvtht0\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:530,pixelWidth:935,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/XWsMpsBWiCZIWjFyLVPnzdcGuqI.png\",srcSet:\"https://framerusercontent.com/images/XWsMpsBWiCZIWjFyLVPnzdcGuqI.png?scale-down-to=512 512w,https://framerusercontent.com/images/XWsMpsBWiCZIWjFyLVPnzdcGuqI.png 935w\"},className:cx(scopingClassNames,\"framer-o0qfp9\",className,classNames),\"data-framer-name\":\"Desktop 1\",layoutDependency:layoutDependency,layoutId:\"T1oPvtht0\",ref:refBinding,style:{...style},...addPropertyOverrides({cvYXeQaqJ:{\"data-framer-name\":\"Tab 1\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1058,pixelWidth:540,positionX:\"right\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/7yRrYbDTXfW1yQMsXLCeeYbsc.png\",srcSet:\"https://framerusercontent.com/images/7yRrYbDTXfW1yQMsXLCeeYbsc.png?scale-down-to=1024 522w,https://framerusercontent.com/images/7yRrYbDTXfW1yQMsXLCeeYbsc.png 540w\"}},Gql3wzB9n:{\"data-framer-name\":\"Mob 2\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1058,pixelWidth:540,positionX:\"right\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/7yRrYbDTXfW1yQMsXLCeeYbsc.png\",srcSet:\"https://framerusercontent.com/images/7yRrYbDTXfW1yQMsXLCeeYbsc.png?scale-down-to=1024 522w,https://framerusercontent.com/images/7yRrYbDTXfW1yQMsXLCeeYbsc.png 540w\"}},jyZjw4Suz:{\"data-framer-name\":\"Mob 1\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1058,pixelWidth:540,positionX:\"right\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/7yRrYbDTXfW1yQMsXLCeeYbsc.png\",srcSet:\"https://framerusercontent.com/images/7yRrYbDTXfW1yQMsXLCeeYbsc.png?scale-down-to=1024 522w,https://framerusercontent.com/images/7yRrYbDTXfW1yQMsXLCeeYbsc.png 540w\"}},rNAfoJwDz:{\"data-framer-name\":\"Tab 2\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1058,pixelWidth:540,positionX:\"right\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/7yRrYbDTXfW1yQMsXLCeeYbsc.png\",srcSet:\"https://framerusercontent.com/images/7yRrYbDTXfW1yQMsXLCeeYbsc.png?scale-down-to=1024 522w,https://framerusercontent.com/images/7yRrYbDTXfW1yQMsXLCeeYbsc.png 540w\"}},y8D5AjqXA:{\"data-framer-name\":\"Desktop 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:((componentViewport?.height||530)-0)*1,width:`calc(${((componentViewport?.height||530)-0)*1} * 0.7925)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||530)-0-((componentViewport?.height||530)-0)*1)/2),...addPropertyOverrides({cvYXeQaqJ:{height:307,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0},Gql3wzB9n:{height:420,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0},jyZjw4Suz:{height:420,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0},rNAfoJwDz:{height:307,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-utuaah-container\",layoutDependency:layoutDependency,layoutId:\"zxiULSqCT-container\",nodeId:\"zxiULSqCT\",rendersWithMotion:true,scopeId:\"hKGz8kYij\",children:/*#__PURE__*/_jsx(TestimonialImage,{height:\"100%\",id:\"zxiULSqCT\",j18QNHPR3:toResponsiveImage(neXwnyXFk),layoutId:\"zxiULSqCT\",style:{height:\"100%\",width:\"100%\"},variant:\"PmfPWk97Z\",width:\"100%\",...addPropertyOverrides({cvYXeQaqJ:{variant:\"Htuem5iXl\"},Gql3wzB9n:{variant:\"lrIOL8ka_\"},jyZjw4Suz:{variant:\"Htuem5iXl\"},rNAfoJwDz:{variant:\"lrIOL8ka_\"},y8D5AjqXA:{variant:\"Ya4BvzSHG\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t6qzpw\",layoutDependency:layoutDependency,layoutId:\"Ct_X_faVV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2NvbW11dGVycy1zYW5zLWJvbGQgY29tbXV0ZXJzLXNhbnMtYm9sZA==\",\"--framer-font-family\":'\"commuters-sans-bold commuters-sans-bold\", \"commuters-sans-bold commuters-sans-bold Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.5em\"},children:\"Delicious food and cocktails, very nice atmosphere, friendly staff, I would like to come back again as soon as possible!\"})}),className:\"framer-g427fp\",fonts:[\"CUSTOM;commuters-sans-bold commuters-sans-bold\"],layoutDependency:layoutDependency,layoutId:\"z8Z7hQ4Vx\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:c8ni3xvzu,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cvYXeQaqJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2NvbW11dGVycy1zYW5zLWJvbGQgY29tbXV0ZXJzLXNhbnMtYm9sZA==\",\"--framer-font-family\":'\"commuters-sans-bold commuters-sans-bold\", \"commuters-sans-bold commuters-sans-bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\"},children:\"Delicious food and cocktails, very nice atmosphere, friendly staff, I would like to come back again as soon as possible!\"})})},Gql3wzB9n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2NvbW11dGVycy1zYW5zLWJvbGQgY29tbXV0ZXJzLXNhbnMtYm9sZA==\",\"--framer-font-family\":'\"commuters-sans-bold commuters-sans-bold\", \"commuters-sans-bold commuters-sans-bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\"},children:\"Delicious food and cocktails, very nice atmosphere, friendly staff, I would like to come back again as soon as possible!\"})})},jyZjw4Suz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2NvbW11dGVycy1zYW5zLWJvbGQgY29tbXV0ZXJzLXNhbnMtYm9sZA==\",\"--framer-font-family\":'\"commuters-sans-bold commuters-sans-bold\", \"commuters-sans-bold commuters-sans-bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\"},children:\"Delicious food and cocktails, very nice atmosphere, friendly staff, I would like to come back again as soon as possible!\"})})},rNAfoJwDz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2NvbW11dGVycy1zYW5zLWJvbGQgY29tbXV0ZXJzLXNhbnMtYm9sZA==\",\"--framer-font-family\":'\"commuters-sans-bold commuters-sans-bold\", \"commuters-sans-bold commuters-sans-bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\"},children:\"Delicious food and cocktails, very nice atmosphere, friendly staff, I would like to come back again as soon as possible!\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2NvbW11dGVycy1zYW5zLXJlZ3VsYXIgY29tbXV0ZXJzLXNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"commuters-sans-regular commuters-sans-regular\", \"commuters-sans-regular commuters-sans-regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05f6c04f-875b-40f5-a5ef-4e4bf0c28473, rgb(50, 165, 45)))\"},children:\"Hani Bustani\"})}),className:\"framer-1nldtxm\",fonts:[\"CUSTOM;commuters-sans-regular commuters-sans-regular\"],layoutDependency:layoutDependency,layoutId:\"f0dAxceLK\",style:{\"--extracted-r6o4lv\":\"var(--token-05f6c04f-875b-40f5-a5ef-4e4bf0c28473, rgb(50, 165, 45))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:TyarFd7SL,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cvYXeQaqJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2NvbW11dGVycy1zYW5zLXJlZ3VsYXIgY29tbXV0ZXJzLXNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"commuters-sans-regular commuters-sans-regular\", \"commuters-sans-regular commuters-sans-regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05f6c04f-875b-40f5-a5ef-4e4bf0c28473, rgb(50, 165, 45)))\"},children:\"Hani Bustani\"})})},Gql3wzB9n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2NvbW11dGVycy1zYW5zLXJlZ3VsYXIgY29tbXV0ZXJzLXNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"commuters-sans-regular commuters-sans-regular\", \"commuters-sans-regular commuters-sans-regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05f6c04f-875b-40f5-a5ef-4e4bf0c28473, rgb(50, 165, 45)))\"},children:\"Hani Bustani\"})})},jyZjw4Suz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2NvbW11dGVycy1zYW5zLXJlZ3VsYXIgY29tbXV0ZXJzLXNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"commuters-sans-regular commuters-sans-regular\", \"commuters-sans-regular commuters-sans-regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05f6c04f-875b-40f5-a5ef-4e4bf0c28473, rgb(50, 165, 45)))\"},children:\"Hani Bustani\"})})},rNAfoJwDz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2NvbW11dGVycy1zYW5zLXJlZ3VsYXIgY29tbXV0ZXJzLXNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"commuters-sans-regular commuters-sans-regular\", \"commuters-sans-regular commuters-sans-regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05f6c04f-875b-40f5-a5ef-4e4bf0c28473, rgb(50, 165, 45)))\"},children:\"Hani Bustani\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gBm1n.framer-8ht803, .framer-gBm1n .framer-8ht803 { display: block; }\",\".framer-gBm1n.framer-o0qfp9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 530px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 935px; }\",\".framer-gBm1n .framer-utuaah-container { aspect-ratio: 0.7924528301886793 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 158px); }\",\".framer-gBm1n .framer-t6qzpw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: 100%; justify-content: center; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 1px; }\",\".framer-gBm1n .framer-g427fp, .framer-gBm1n .framer-1nldtxm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gBm1n.framer-o0qfp9, .framer-gBm1n .framer-t6qzpw { gap: 0px; } .framer-gBm1n.framer-o0qfp9 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-gBm1n.framer-o0qfp9 > :first-child { margin-left: 0px; } .framer-gBm1n.framer-o0qfp9 > :last-child { margin-right: 0px; } .framer-gBm1n .framer-t6qzpw > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-gBm1n .framer-t6qzpw > :first-child { margin-top: 0px; } .framer-gBm1n .framer-t6qzpw > :last-child { margin-bottom: 0px; } }\",\".framer-gBm1n.framer-v-5yjht9.framer-o0qfp9 { aspect-ratio: 1.7647058823529411 / 1; height: var(--framer-aspect-ratio-supported, 530px); }\",\".framer-gBm1n.framer-v-1nke6qb.framer-o0qfp9, .framer-gBm1n.framer-v-1fcpjse.framer-o0qfp9 { flex-direction: column; height: min-content; justify-content: flex-start; width: 530px; }\",\".framer-gBm1n.framer-v-1nke6qb .framer-utuaah-container, .framer-gBm1n.framer-v-1fcpjse .framer-utuaah-container, .framer-gBm1n.framer-v-9kukrq .framer-utuaah-container, .framer-gBm1n.framer-v-zxuv2t .framer-utuaah-container { aspect-ratio: 1.2619047619047619 / 1; height: var(--framer-aspect-ratio-supported, 158px); width: 100%; }\",\".framer-gBm1n.framer-v-1nke6qb .framer-t6qzpw, .framer-gBm1n.framer-v-1fcpjse .framer-t6qzpw { flex: none; height: min-content; justify-content: flex-start; padding: 40px 40px 80px 40px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gBm1n.framer-v-1nke6qb.framer-o0qfp9 { gap: 0px; } .framer-gBm1n.framer-v-1nke6qb.framer-o0qfp9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gBm1n.framer-v-1nke6qb.framer-o0qfp9 > :first-child { margin-top: 0px; } .framer-gBm1n.framer-v-1nke6qb.framer-o0qfp9 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gBm1n.framer-v-1fcpjse.framer-o0qfp9 { gap: 0px; } .framer-gBm1n.framer-v-1fcpjse.framer-o0qfp9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gBm1n.framer-v-1fcpjse.framer-o0qfp9 > :first-child { margin-top: 0px; } .framer-gBm1n.framer-v-1fcpjse.framer-o0qfp9 > :last-child { margin-bottom: 0px; } }\",\".framer-gBm1n.framer-v-9kukrq.framer-o0qfp9, .framer-gBm1n.framer-v-zxuv2t.framer-o0qfp9 { flex-direction: column; height: min-content; justify-content: flex-start; width: 320px; }\",\".framer-gBm1n.framer-v-9kukrq .framer-t6qzpw, .framer-gBm1n.framer-v-zxuv2t .framer-t6qzpw { flex: none; height: min-content; justify-content: flex-start; padding: 32px 24px 48px 24px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gBm1n.framer-v-9kukrq.framer-o0qfp9 { gap: 0px; } .framer-gBm1n.framer-v-9kukrq.framer-o0qfp9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gBm1n.framer-v-9kukrq.framer-o0qfp9 > :first-child { margin-top: 0px; } .framer-gBm1n.framer-v-9kukrq.framer-o0qfp9 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gBm1n.framer-v-zxuv2t.framer-o0qfp9 { gap: 0px; } .framer-gBm1n.framer-v-zxuv2t.framer-o0qfp9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gBm1n.framer-v-zxuv2t.framer-o0qfp9 > :first-child { margin-top: 0px; } .framer-gBm1n.framer-v-zxuv2t.framer-o0qfp9 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 530\n * @framerIntrinsicWidth 935\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"y8D5AjqXA\":{\"layout\":[\"fixed\",\"fixed\"]},\"cvYXeQaqJ\":{\"layout\":[\"fixed\",\"auto\"]},\"rNAfoJwDz\":{\"layout\":[\"fixed\",\"auto\"]},\"jyZjw4Suz\":{\"layout\":[\"fixed\",\"auto\"]},\"Gql3wzB9n\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"c8ni3xvzu\":\"testimonial\",\"TyarFd7SL\":\"name1\",\"neXwnyXFk\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerhKGz8kYij=withCSS(Component,css,\"framer-gBm1n\");export default FramerhKGz8kYij;FramerhKGz8kYij.displayName=\"Testimonial\";FramerhKGz8kYij.defaultProps={height:530,width:935};addPropertyControls(FramerhKGz8kYij,{variant:{options:[\"T1oPvtht0\",\"y8D5AjqXA\",\"cvYXeQaqJ\",\"rNAfoJwDz\",\"jyZjw4Suz\",\"Gql3wzB9n\"],optionTitles:[\"Desktop 1\",\"Desktop 2\",\"Tab 1\",\"Tab 2\",\"Mob 1\",\"Mob 2\"],title:\"Variant\",type:ControlType.Enum},c8ni3xvzu:{defaultValue:\"Delicious food and cocktails, very nice atmosphere, friendly staff, I would like to come back again as soon as possible!\",displayTextArea:false,title:\"Testimonial\",type:ControlType.String},TyarFd7SL:{defaultValue:\"Hani Bustani\",displayTextArea:false,title:\"Name\",type:ControlType.String},neXwnyXFk:{__defaultAssetReference:\"data:framer/asset-reference,GKv8FtRbRtQBOkQPigTaQPGCM.jpg?originalFilename=Testimonial01.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerhKGz8kYij,[{explicitInter:true,fonts:[{family:\"commuters-sans-bold commuters-sans-bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/WZukykrdnNOJp8xvHvUDsmlmc.woff2\"},{family:\"commuters-sans-regular commuters-sans-regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/rrihzYQreIGGDhwbKR9yDQuOUUo.woff2\"}]},...TestimonialImageFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhKGz8kYij\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"y8D5AjqXA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cvYXeQaqJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rNAfoJwDz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jyZjw4Suz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Gql3wzB9n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"c8ni3xvzu\\\":\\\"testimonial\\\",\\\"TyarFd7SL\\\":\\\"name1\\\",\\\"neXwnyXFk\\\":\\\"image\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"935\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"530\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hKGz8kYij.map", "// Generated by Framer (1f5f6d9)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"LoiCiymnk\",\"FEJTnmygQ\"];const serializationHash=\"framer-yA2SZ\";const variantClassNames={FEJTnmygQ:\"framer-v-1j5olvt\",LoiCiymnk:\"framer-v-3agi78\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1.5,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"LoiCiymnk\",\"Variant 2\":\"FEJTnmygQ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"LoiCiymnk\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LoiCiymnk\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-3agi78\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"LoiCiymnk\",ref:refBinding,style:{...style},...addPropertyOverrides({FEJTnmygQ:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sf90p0\",layoutDependency:layoutDependency,layoutId:\"a1JIomkMY\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:75,intrinsicWidth:69.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||139)-143+1),pixelHeight:150,pixelWidth:121,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PlxuQ1AEOC0ooS2joJhI4gIXcs.svg\"},className:\"framer-16hzp72\",\"data-framer-name\":\"Graffiti02\",layoutDependency:layoutDependency,layoutId:\"DL_kvJUx1\",...addPropertyOverrides({FEJTnmygQ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:75,intrinsicWidth:69.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||139)-(2+(componentViewport?.height||139)*1)+(0+((componentViewport?.height||139)*1-0-((componentViewport?.height||139)*1-0)*1)/2)),pixelHeight:150,pixelWidth:121,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PlxuQ1AEOC0ooS2joJhI4gIXcs.svg\"}}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yA2SZ.framer-1ijtc78, .framer-yA2SZ .framer-1ijtc78 { display: block; }\",\".framer-yA2SZ.framer-3agi78 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 139px; overflow: hidden; padding: 0px; position: relative; width: 129px; }\",\".framer-yA2SZ .framer-1sf90p0 { align-content: center; align-items: center; bottom: 2px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 141px; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: absolute; width: 1%; z-index: 1; }\",\".framer-yA2SZ .framer-16hzp72 { aspect-ratio: 0.9266666666666666 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 139px); overflow: visible; position: relative; width: 129px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yA2SZ.framer-3agi78, .framer-yA2SZ .framer-1sf90p0 { gap: 0px; } .framer-yA2SZ.framer-3agi78 > *, .framer-yA2SZ .framer-1sf90p0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yA2SZ.framer-3agi78 > :first-child, .framer-yA2SZ .framer-1sf90p0 > :first-child { margin-left: 0px; } .framer-yA2SZ.framer-3agi78 > :last-child, .framer-yA2SZ .framer-1sf90p0 > :last-child { margin-right: 0px; } }\",\".framer-yA2SZ.framer-v-1j5olvt .framer-1sf90p0 { height: 100%; width: 100%; }\",\".framer-yA2SZ.framer-v-1j5olvt .framer-16hzp72 { aspect-ratio: unset; height: 100%; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 139\n * @framerIntrinsicWidth 129\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FEJTnmygQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOeimj8Lol=withCSS(Component,css,\"framer-yA2SZ\");export default FramerOeimj8Lol;FramerOeimj8Lol.displayName=\"Graffiti Icon\";FramerOeimj8Lol.defaultProps={height:139,width:129};addPropertyControls(FramerOeimj8Lol,{variant:{options:[\"LoiCiymnk\",\"FEJTnmygQ\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOeimj8Lol,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOeimj8Lol\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"139\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"129\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FEJTnmygQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Oeimj8Lol.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jFOAZKc2EvehHtUZX1Hf/Video.js\";const VideoFonts=getFonts(Video);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const cycleOrder=[\"EinwkgJsY\",\"QWGTtTOfG\"];const serializationHash=\"framer-yFyMA\";const variantClassNames={EinwkgJsY:\"framer-v-qjf9ts\",QWGTtTOfG:\"framer-v-ikxzvv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={damping:60,delay:.2,mass:2,stiffness:300,type:\"spring\"};const animation={opacity:1,rotate:-6,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-250,y:0};const animation2={opacity:1,rotate:-3,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={damping:60,delay:.4,mass:1,stiffness:300,type:\"spring\"};const animation3={opacity:1,rotate:-6,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:-6,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation5={opacity:1,rotate:-3,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"EinwkgJsY\",\"Variant 2\":\"QWGTtTOfG\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"EinwkgJsY\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EinwkgJsY\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-qjf9ts\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"EinwkgJsY\",ref:refBinding,style:{...style},...addPropertyOverrides({QWGTtTOfG:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-7ug1q2-container\",\"data-framer-appear-id\":\"7ug1q2\",initial:animation1,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"uK7f5fRLH-container\",nodeId:\"uK7f5fRLH\",optimized:true,rendersWithMotion:true,scopeId:\"WQthsMn8y\",style:{mask:\"url('https://framerusercontent.com/images/tKWNRq3kfVd8P239Dn3MBSzkvY.svg') alpha no-repeat center / contain add\",rotate:-6,WebkitMask:\"url('https://framerusercontent.com/images/tKWNRq3kfVd8P239Dn3MBSzkvY.svg') alpha no-repeat center / contain add\"},variants:{QWGTtTOfG:{mask:\"url('https://framerusercontent.com/images/jKeddFNvxUjLCvkYbVHlgk4zggo.svg') alpha no-repeat center / contain add\",rotate:-3,WebkitMask:\"url('https://framerusercontent.com/images/jKeddFNvxUjLCvkYbVHlgk4zggo.svg') alpha no-repeat center / contain add\"}},...addPropertyOverrides({QWGTtTOfG:{animate:animation2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"uK7f5fRLH\",isMixedBorderRadius:false,layoutId:\"uK7f5fRLH\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/LNTPemgvf5JqHFr9n6wu5vRqSRE.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1138,intrinsicWidth:2379,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-6.0006),pixelHeight:1138,pixelWidth:2379,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/neLly8hdVF7kLT3AoJX6DKvohrk.jpg?scale-down-to=2048\"},className:\"framer-jx6cwl\",\"data-framer-appear-id\":\"jx6cwl\",\"data-framer-name\":\"Video bg\",initial:animation4,layoutDependency:layoutDependency,layoutId:\"KFLkL9fkk\",optimized:true,style:{rotate:-6},variants:{QWGTtTOfG:{rotate:-3}},...addPropertyOverrides({QWGTtTOfG:{animate:animation5,background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1138,intrinsicWidth:2379,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||717)*.47428571428571453-338.5)),pixelHeight:1971,pixelWidth:1059,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OagrQ3TzvaUPzjg3FVDVZPkGcs.jpg\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yFyMA.framer-1i7xh7y, .framer-yFyMA .framer-1i7xh7y { display: block; }\",\".framer-yFyMA.framer-qjf9ts { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 18px 12px 42px 12px; position: relative; width: 1240px; }\",\".framer-yFyMA .framer-7ug1q2-container { aspect-ratio: 2.3574144486692017 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 516px); position: relative; width: 1px; z-index: 1; }\",\".framer-yFyMA .framer-jx6cwl { bottom: -5px; flex: none; left: 0px; mix-blend-mode: lighten; overflow: visible; position: absolute; right: 0px; top: -6px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yFyMA.framer-qjf9ts { gap: 0px; } .framer-yFyMA.framer-qjf9ts > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yFyMA.framer-qjf9ts > :first-child { margin-left: 0px; } .framer-yFyMA.framer-qjf9ts > :last-child { margin-right: 0px; } }\",\".framer-yFyMA.framer-v-ikxzvv.framer-qjf9ts { aspect-ratio: 0.5428571428571428 / 1; height: var(--framer-aspect-ratio-supported, 717px); width: 380px; }\",\".framer-yFyMA.framer-v-ikxzvv .framer-7ug1q2-container { aspect-ratio: 0.5415094339622641 / 1; height: var(--framer-aspect-ratio-supported, 657px); }\",\".framer-yFyMA.framer-v-ikxzvv .framer-jx6cwl { bottom: unset; height: 677px; left: calc(50.00000000000002% - 369px / 2); right: unset; top: calc(47.42857142857145% - 677px / 2); width: 369px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 576\n * @framerIntrinsicWidth 1240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QWGTtTOfG\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerWQthsMn8y=withCSS(Component,css,\"framer-yFyMA\");export default FramerWQthsMn8y;FramerWQthsMn8y.displayName=\"Video Banner\";FramerWQthsMn8y.defaultProps={height:576,width:1240};addPropertyControls(FramerWQthsMn8y,{variant:{options:[\"EinwkgJsY\",\"QWGTtTOfG\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerWQthsMn8y,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWQthsMn8y\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"576\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QWGTtTOfG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1240\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WQthsMn8y.map", "// Generated by Framer (ee31e22)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jFOAZKc2EvehHtUZX1Hf/Video.js\";import VideoBanner from\"https://framerusercontent.com/modules/9uHcPLGWOPprMRX6bm8o/Gh6xTrZW0aPxkPY9E7Wm/WQthsMn8y.js\";const VideoFonts=getFonts(Video);const VideoBannerFonts=getFonts(VideoBanner);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"lRPW3hKl4\",\"DXhKrFp4x\",\"eW9zKdl3b\",\"f5kBckjnb\",\"k7CEhbC2G\",\"t4Otlip6M\"];const serializationHash=\"framer-yEBOE\";const variantClassNames={DXhKrFp4x:\"framer-v-1twcxvi\",eW9zKdl3b:\"framer-v-16jo8e6\",f5kBckjnb:\"framer-v-kzyrtk\",k7CEhbC2G:\"framer-v-vgq60z\",lRPW3hKl4:\"framer-v-o5e7xm\",t4Otlip6M:\"framer-v-mrkdvt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={damping:60,delay:.4,mass:2,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation3={opacity:1,rotate:-4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={damping:60,delay:.3,mass:2,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:-10,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:1,rotate:-8,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation6={opacity:1,rotate:-70,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const animation8={opacity:1,rotate:-85,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:60,delay:.4,mass:1,stiffness:250,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mob 1\":\"k7CEhbC2G\",\"Mob 2\":\"t4Otlip6M\",\"Tab 1\":\"eW9zKdl3b\",\"Tab 2\":\"f5kBckjnb\",\"Variant 1\":\"lRPW3hKl4\",\"Variant 2\":\"DXhKrFp4x\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"lRPW3hKl4\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lRPW3hKl4\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear610y6h=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"DXhKrFp4x\"),4e3);});const onAppear164pwfe=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"f5kBckjnb\"),4e3);});const onAppear15mi9yv=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"t4Otlip6M\"),4e3);});useOnVariantChange(baseVariant,{default:onAppear610y6h,eW9zKdl3b:onAppear164pwfe,f5kBckjnb:undefined,k7CEhbC2G:onAppear15mi9yv,t4Otlip6M:undefined});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"DXhKrFp4x\",\"f5kBckjnb\",\"t4Otlip6M\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\"},className:cx(scopingClassNames,\"framer-o5e7xm\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"lRPW3hKl4\",ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{DXhKrFp4x:{backgroundColor:\"rgb(0, 0, 0)\"},eW9zKdl3b:{backgroundColor:\"rgba(0, 0, 0, 0)\"},f5kBckjnb:{backgroundColor:\"rgb(0, 0, 0)\"},k7CEhbC2G:{backgroundColor:\"rgba(0, 0, 0, 0)\"},t4Otlip6M:{backgroundColor:\"rgb(0, 0, 0)\"}},...addPropertyOverrides({DXhKrFp4x:{\"data-framer-name\":\"Variant 2\",background:undefined},eW9zKdl3b:{\"data-framer-name\":\"Tab 1\"},f5kBckjnb:{\"data-framer-name\":\"Tab 2\",\"data-highlight\":undefined,background:undefined},k7CEhbC2G:{\"data-framer-name\":\"Mob 1\"},t4Otlip6M:{\"data-framer-name\":\"Mob 2\",\"data-highlight\":undefined,background:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6ilmvl-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kjM3seW6Q-container\",nodeId:\"kjM3seW6Q\",rendersWithMotion:true,scopeId:\"ZwIabBn_t\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"kjM3seW6Q\",isMixedBorderRadius:false,layoutId:\"kjM3seW6Q\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/haGZgjAQdZq86HSviLN4xnHRq0.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({DXhKrFp4x:{height:576,width:`max(${componentViewport?.width||\"100vw\"} - 200px, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||800)-0-576)/2)},f5kBckjnb:{height:576,width:`max(${componentViewport?.width||\"100vw\"} - 120px, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||720)-0-576)/2)},t4Otlip6M:{height:718,width:\"380px\",y:(componentViewport?.y||0)+0+((componentViewport?.height||800)-0-718)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yc3cek-container\",layoutDependency:layoutDependency,layoutId:\"sXGe1GfW2-container\",nodeId:\"sXGe1GfW2\",rendersWithMotion:true,scopeId:\"ZwIabBn_t\",children:/*#__PURE__*/_jsx(VideoBanner,{height:\"100%\",id:\"sXGe1GfW2\",layoutId:\"sXGe1GfW2\",style:{width:\"100%\"},variant:\"EinwkgJsY\",width:\"100%\",...addPropertyOverrides({t4Otlip6M:{style:{height:\"100%\",width:\"100%\"},variant:\"QWGTtTOfG\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:518,intrinsicWidth:1409,pixelHeight:518,pixelWidth:1409,src:\"https://framerusercontent.com/images/xDJuEvNE3RZMQULlhtWk8Ur9wDI.png\",srcSet:\"https://framerusercontent.com/images/xDJuEvNE3RZMQULlhtWk8Ur9wDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/xDJuEvNE3RZMQULlhtWk8Ur9wDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xDJuEvNE3RZMQULlhtWk8Ur9wDI.png 1409w\"},className:\"framer-14vzyaz\",\"data-framer-appear-id\":\"14vzyaz\",\"data-framer-name\":\"Torn paper03b\",draggable:\"false\",layoutDependency:layoutDependency,layoutId:\"Eq9OQddxO\",...addPropertyOverrides({DXhKrFp4x:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:518,intrinsicWidth:1409,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||800)-411),pixelHeight:518,pixelWidth:1409,sizes:\"609px\",src:\"https://framerusercontent.com/images/xDJuEvNE3RZMQULlhtWk8Ur9wDI.png\",srcSet:\"https://framerusercontent.com/images/xDJuEvNE3RZMQULlhtWk8Ur9wDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/xDJuEvNE3RZMQULlhtWk8Ur9wDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xDJuEvNE3RZMQULlhtWk8Ur9wDI.png 1409w\"},initial:animation1,optimized:true},f5kBckjnb:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:518,intrinsicWidth:1409,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||720)-411),pixelHeight:518,pixelWidth:1409,sizes:\"609px\",src:\"https://framerusercontent.com/images/xDJuEvNE3RZMQULlhtWk8Ur9wDI.png\",srcSet:\"https://framerusercontent.com/images/xDJuEvNE3RZMQULlhtWk8Ur9wDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/xDJuEvNE3RZMQULlhtWk8Ur9wDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xDJuEvNE3RZMQULlhtWk8Ur9wDI.png 1409w\"},initial:animation1,optimized:true},t4Otlip6M:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:518,intrinsicWidth:1409,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150),pixelHeight:518,pixelWidth:1409,sizes:\"335px\",src:\"https://framerusercontent.com/images/xDJuEvNE3RZMQULlhtWk8Ur9wDI.png\",srcSet:\"https://framerusercontent.com/images/xDJuEvNE3RZMQULlhtWk8Ur9wDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/xDJuEvNE3RZMQULlhtWk8Ur9wDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xDJuEvNE3RZMQULlhtWk8Ur9wDI.png 1409w\"},initial:animation1,optimized:true}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:291,intrinsicWidth:248,pixelHeight:291,pixelWidth:248,src:\"https://framerusercontent.com/images/gnaNPHyC8fDKBCEnUcf6oMDFI.png\"},className:\"framer-16sl4ig\",\"data-framer-appear-id\":\"16sl4ig\",\"data-framer-name\":\"Icon-04\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"DaZ62xHFz\",optimized:true,transformTemplate:transformTemplate1,...addPropertyOverrides({DXhKrFp4x:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:291,intrinsicWidth:248,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||800)-201),pixelHeight:291,pixelWidth:248,src:\"https://framerusercontent.com/images/gnaNPHyC8fDKBCEnUcf6oMDFI.png\"}},f5kBckjnb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:291,intrinsicWidth:248,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||720)-148),pixelHeight:291,pixelWidth:248,src:\"https://framerusercontent.com/images/gnaNPHyC8fDKBCEnUcf6oMDFI.png\"},transformTemplate:undefined},t4Otlip6M:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:291,intrinsicWidth:248,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||800)-93.5),pixelHeight:291,pixelWidth:248,src:\"https://framerusercontent.com/images/gnaNPHyC8fDKBCEnUcf6oMDFI.png\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-2twuom\",\"data-framer-appear-id\":\"2twuom\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"h2PLSD4uL\",optimized:true,style:{backgroundColor:\"rgb(0, 0, 0)\",rotate:-4},...addPropertyOverrides({f5kBckjnb:{transformTemplate:transformTemplate1},t4Otlip6M:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlbnJpayBOb3JtYWw=\",\"--framer-font-family\":'\"Henrik Normal\", \"Henrik Normal Placeholder\", sans-serif',\"--framer-font-size\":\"96px\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eab05eed-d8d0-4eb8-857d-2f13b73faff8, rgb(250, 55, 30)))\"},children:\"gathering\"})}),className:\"framer-1g4bepf\",fonts:[\"CUSTOM;Henrik Normal\"],layoutDependency:layoutDependency,layoutId:\"k4JwWBG1s\",style:{\"--extracted-r6o4lv\":\"var(--token-eab05eed-d8d0-4eb8-857d-2f13b73faff8, rgb(250, 55, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f5kBckjnb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlbnJpayBOb3JtYWw=\",\"--framer-font-family\":'\"Henrik Normal\", \"Henrik Normal Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eab05eed-d8d0-4eb8-857d-2f13b73faff8, rgb(250, 55, 30)))\"},children:\"gathering\"})})},t4Otlip6M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlbnJpayBOb3JtYWw=\",\"--framer-font-family\":'\"Henrik Normal\", \"Henrik Normal Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eab05eed-d8d0-4eb8-857d-2f13b73faff8, rgb(250, 55, 30)))\"},children:\"gathering\"})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1njkvha\",\"data-framer-appear-id\":\"1njkvha\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"soUX4A73q\",optimized:true,style:{backgroundColor:\"rgb(0, 0, 0)\",rotate:-10},variants:{t4Otlip6M:{rotate:-8}},...addPropertyOverrides({f5kBckjnb:{transformTemplate:transformTemplate1},t4Otlip6M:{animate:animation5,transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlbnJpayBOb3JtYWw=\",\"--framer-font-family\":'\"Henrik Normal\", \"Henrik Normal Placeholder\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8f93f5e0-ff92-4775-a738-563c32b73bb6, rgb(250, 210, 0)))\"},children:\"One Big\"})}),className:\"framer-ar6ixg\",fonts:[\"CUSTOM;Henrik Normal\"],layoutDependency:layoutDependency,layoutId:\"jpUoOjuVt\",style:{\"--extracted-r6o4lv\":\"var(--token-8f93f5e0-ff92-4775-a738-563c32b73bb6, rgb(250, 210, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f5kBckjnb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlbnJpayBOb3JtYWw=\",\"--framer-font-family\":'\"Henrik Normal\", \"Henrik Normal Placeholder\", sans-serif',\"--framer-font-size\":\"92px\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8f93f5e0-ff92-4775-a738-563c32b73bb6, rgb(250, 210, 0)))\"},children:\"One Big\"})})},t4Otlip6M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlbnJpayBOb3JtYWw=\",\"--framer-font-family\":'\"Henrik Normal\", \"Henrik Normal Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8f93f5e0-ff92-4775-a738-563c32b73bb6, rgb(250, 210, 0)))\"},children:\"One Big\"})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,background:{alt:\"\",fit:\"fill\",intrinsicHeight:794,intrinsicWidth:1409,pixelHeight:794,pixelWidth:1409,src:\"https://framerusercontent.com/images/TAA4CcGktDS7TH2avd6yhPLY.png\",srcSet:\"https://framerusercontent.com/images/TAA4CcGktDS7TH2avd6yhPLY.png?scale-down-to=512 512w,https://framerusercontent.com/images/TAA4CcGktDS7TH2avd6yhPLY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TAA4CcGktDS7TH2avd6yhPLY.png 1409w\"},className:\"framer-5g74ua\",\"data-framer-appear-id\":\"5g74ua\",\"data-framer-name\":\"Torn paper03\",draggable:\"false\",initial:animation7,layoutDependency:layoutDependency,layoutId:\"YpXIeppHD\",optimized:true,style:{rotate:-70},variants:{t4Otlip6M:{rotate:-85}},...addPropertyOverrides({DXhKrFp4x:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:794,intrinsicWidth:1409,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||800)-266.9898),pixelHeight:794,pixelWidth:1409,sizes:\"284px\",src:\"https://framerusercontent.com/images/TAA4CcGktDS7TH2avd6yhPLY.png\",srcSet:\"https://framerusercontent.com/images/TAA4CcGktDS7TH2avd6yhPLY.png?scale-down-to=512 512w,https://framerusercontent.com/images/TAA4CcGktDS7TH2avd6yhPLY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TAA4CcGktDS7TH2avd6yhPLY.png 1409w\"}},f5kBckjnb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:794,intrinsicWidth:1409,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||720)-266.9898),pixelHeight:794,pixelWidth:1409,sizes:\"284px\",src:\"https://framerusercontent.com/images/TAA4CcGktDS7TH2avd6yhPLY.png\",srcSet:\"https://framerusercontent.com/images/TAA4CcGktDS7TH2avd6yhPLY.png?scale-down-to=512 512w,https://framerusercontent.com/images/TAA4CcGktDS7TH2avd6yhPLY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TAA4CcGktDS7TH2avd6yhPLY.png 1409w\"}},t4Otlip6M:{animate:animation8,background:{alt:\"\",fit:\"stretch\",intrinsicHeight:794,intrinsicWidth:1409,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||800)-120),pixelHeight:794,pixelWidth:1409,positionX:\"center\",positionY:\"center\",sizes:\"155px\",src:\"https://framerusercontent.com/images/TAA4CcGktDS7TH2avd6yhPLY.png\",srcSet:\"https://framerusercontent.com/images/TAA4CcGktDS7TH2avd6yhPLY.png?scale-down-to=512 512w,https://framerusercontent.com/images/TAA4CcGktDS7TH2avd6yhPLY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TAA4CcGktDS7TH2avd6yhPLY.png 1409w\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation9,background:{alt:\"\",fit:\"fill\",pixelHeight:1707,pixelWidth:2560,src:\"https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg\",srcSet:\"https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg 2560w\"},className:\"framer-14ggng6\",\"data-framer-appear-id\":\"14ggng6\",initial:animation10,layoutDependency:layoutDependency,layoutId:\"BHPNBRgWY\",optimized:true,...addPropertyOverrides({DXhKrFp4x:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||800)*.5000000000000002-(componentViewport?.height||800)*1/2)),pixelHeight:1707,pixelWidth:2560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg\",srcSet:\"https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg 2560w\"}},f5kBckjnb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)),pixelHeight:1707,pixelWidth:2560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg\",srcSet:\"https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg 2560w\"}},t4Otlip6M:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||800)*.5000000000000002-(componentViewport?.height||800)*1/2)),pixelHeight:1707,pixelWidth:2560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg\",srcSet:\"https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg 2560w\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yEBOE.framer-18qfd16, .framer-yEBOE .framer-18qfd16 { display: block; }\",\".framer-yEBOE.framer-o5e7xm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 800px; justify-content: center; overflow: hidden; padding: 0px 100px 0px 100px; position: relative; width: 1440px; }\",\".framer-yEBOE .framer-6ilmvl-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-yEBOE .framer-1yc3cek-container { flex: 1 0 0px; height: auto; mix-blend-mode: lighten; position: relative; width: 1px; z-index: 2; }\",\".framer-yEBOE .framer-14vzyaz { -webkit-user-select: none; aspect-ratio: 2.72007722007722 / 1; bottom: 187px; flex: none; height: var(--framer-aspect-ratio-supported, 224px); left: -87px; overflow: visible; pointer-events: none; position: absolute; user-select: none; width: 609px; z-index: 4; }\",\".framer-yEBOE .framer-16sl4ig { -webkit-user-select: none; aspect-ratio: 0.852233676975945 / 1; bottom: 92px; flex: none; height: var(--framer-aspect-ratio-supported, 109px); left: 51%; overflow: visible; pointer-events: none; position: absolute; user-select: none; width: 93px; z-index: 5; }\",\".framer-yEBOE .framer-2twuom { align-content: center; align-items: center; bottom: 129px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 8px 28px 20px; position: absolute; right: 164px; width: min-content; z-index: 4; }\",\".framer-yEBOE .framer-1g4bepf, .framer-yEBOE .framer-ar6ixg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yEBOE .framer-1njkvha { align-content: center; align-items: center; bottom: 203px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 8px 28px 20px; position: absolute; right: 368px; width: min-content; z-index: 4; }\",\".framer-yEBOE .framer-5g74ua { -webkit-user-select: none; aspect-ratio: 1.7745591939546599 / 1; bottom: 107px; flex: none; height: var(--framer-aspect-ratio-supported, 160px); overflow: visible; pointer-events: none; position: absolute; right: -182px; user-select: none; width: 284px; z-index: 2; }\",\".framer-yEBOE .framer-14ggng6 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yEBOE.framer-o5e7xm, .framer-yEBOE .framer-2twuom, .framer-yEBOE .framer-1njkvha { gap: 0px; } .framer-yEBOE.framer-o5e7xm > *, .framer-yEBOE .framer-2twuom > *, .framer-yEBOE .framer-1njkvha > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yEBOE.framer-o5e7xm > :first-child, .framer-yEBOE .framer-2twuom > :first-child, .framer-yEBOE .framer-1njkvha > :first-child { margin-left: 0px; } .framer-yEBOE.framer-o5e7xm > :last-child, .framer-yEBOE .framer-2twuom > :last-child, .framer-yEBOE .framer-1njkvha > :last-child { margin-right: 0px; } }\",\".framer-yEBOE.framer-v-1twcxvi .framer-6ilmvl-container, .framer-yEBOE.framer-v-kzyrtk .framer-6ilmvl-container, .framer-yEBOE.framer-v-mrkdvt .framer-6ilmvl-container { order: 0; }\",\".framer-yEBOE.framer-v-1twcxvi .framer-1yc3cek-container, .framer-yEBOE.framer-v-kzyrtk .framer-1yc3cek-container { order: 1; }\",\".framer-yEBOE.framer-v-1twcxvi .framer-14vzyaz, .framer-yEBOE.framer-v-kzyrtk .framer-14vzyaz { order: 2; }\",\".framer-yEBOE.framer-v-1twcxvi .framer-16sl4ig { order: 3; }\",\".framer-yEBOE.framer-v-1twcxvi .framer-2twuom { order: 4; }\",\".framer-yEBOE.framer-v-1twcxvi .framer-1njkvha { order: 5; }\",\".framer-yEBOE.framer-v-1twcxvi .framer-5g74ua, .framer-yEBOE.framer-v-kzyrtk .framer-5g74ua { order: 6; }\",\".framer-yEBOE.framer-v-1twcxvi .framer-14ggng6, .framer-yEBOE.framer-v-kzyrtk .framer-14ggng6, .framer-yEBOE.framer-v-mrkdvt .framer-14ggng6 { order: 7; }\",\".framer-yEBOE.framer-v-16jo8e6.framer-o5e7xm { height: 720px; width: 810px; }\",\".framer-yEBOE.framer-v-kzyrtk.framer-o5e7xm { height: 720px; padding: 0px 60px 0px 60px; width: 810px; }\",\".framer-yEBOE.framer-v-kzyrtk .framer-16sl4ig { bottom: 58px; height: var(--framer-aspect-ratio-supported, 90px); left: 266px; order: 3; width: 77px; }\",\".framer-yEBOE.framer-v-kzyrtk .framer-2twuom { bottom: 89px; left: 65%; order: 4; right: unset; }\",\".framer-yEBOE.framer-v-kzyrtk .framer-1njkvha { bottom: 161px; left: 50%; order: 5; right: unset; }\",\".framer-yEBOE.framer-v-vgq60z.framer-o5e7xm { width: 390px; }\",\".framer-yEBOE.framer-v-mrkdvt.framer-o5e7xm { align-content: flex-end; align-items: flex-end; padding: 0px 24px 0px 24px; width: 390px; }\",\".framer-yEBOE.framer-v-mrkdvt .framer-1yc3cek-container { aspect-ratio: 0.5428571428571428 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 700px); order: 1; width: 380px; }\",\".framer-yEBOE.framer-v-mrkdvt .framer-14vzyaz { bottom: unset; height: var(--framer-aspect-ratio-supported, 123px); left: -41px; order: 2; top: 150px; width: 335px; }\",\".framer-yEBOE.framer-v-mrkdvt .framer-16sl4ig { bottom: 17px; height: var(--framer-aspect-ratio-supported, 78px); left: 53%; order: 3; width: 66px; }\",\".framer-yEBOE.framer-v-mrkdvt .framer-2twuom { bottom: 79px; left: 50%; order: 4; padding: 0px 8px 8px 20px; right: unset; }\",\".framer-yEBOE.framer-v-mrkdvt .framer-1njkvha { bottom: 127px; left: 50%; order: 5; padding: 0px 8px 16px 20px; right: unset; z-index: 3; }\",\".framer-yEBOE.framer-v-mrkdvt .framer-5g74ua { aspect-ratio: unset; bottom: 56px; height: 64px; order: 6; right: -91px; width: 155px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"DXhKrFp4x\":{\"layout\":[\"fixed\",\"fixed\"]},\"eW9zKdl3b\":{\"layout\":[\"fixed\",\"fixed\"]},\"f5kBckjnb\":{\"layout\":[\"fixed\",\"fixed\"]},\"k7CEhbC2G\":{\"layout\":[\"fixed\",\"fixed\"]},\"t4Otlip6M\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZwIabBn_t=withCSS(Component,css,\"framer-yEBOE\");export default FramerZwIabBn_t;FramerZwIabBn_t.displayName=\"Hero_Banner\";FramerZwIabBn_t.defaultProps={height:800,width:1440};addPropertyControls(FramerZwIabBn_t,{variant:{options:[\"lRPW3hKl4\",\"DXhKrFp4x\",\"eW9zKdl3b\",\"f5kBckjnb\",\"k7CEhbC2G\",\"t4Otlip6M\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Tab 1\",\"Tab 2\",\"Mob 1\",\"Mob 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZwIabBn_t,[{explicitInter:true,fonts:[{family:\"Henrik Normal\",source:\"custom\",url:\"https://framerusercontent.com/assets/j34y96dpgnsHLxIffxCtTe5Qa4.woff2\"}]},...VideoFonts,...VideoBannerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZwIabBn_t\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"800\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DXhKrFp4x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eW9zKdl3b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"f5kBckjnb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"k7CEhbC2G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"t4Otlip6M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZwIabBn_t.map", "// Generated by Framer (1f5f6d9)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Henrik Normal\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Henrik Normal\",source:\"custom\",url:\"https://framerusercontent.com/assets/j34y96dpgnsHLxIffxCtTe5Qa4.woff2\"}]}];export const css=['.framer-g3vPH .framer-styles-preset-11g2ht0:not(.rich-text-wrapper), .framer-g3vPH .framer-styles-preset-11g2ht0.rich-text-wrapper h2 { --framer-font-family: \"Henrik Normal\", \"Henrik Normal Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 136px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 0.7em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-g3vPH .framer-styles-preset-11g2ht0:not(.rich-text-wrapper), .framer-g3vPH .framer-styles-preset-11g2ht0.rich-text-wrapper h2 { --framer-font-family: \"Henrik Normal\", \"Henrik Normal Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 100px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 0.7em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-g3vPH .framer-styles-preset-11g2ht0:not(.rich-text-wrapper), .framer-g3vPH .framer-styles-preset-11g2ht0.rich-text-wrapper h2 { --framer-font-family: \"Henrik Normal\", \"Henrik Normal Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 0.7em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-g3vPH\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;commuters-sans-regular commuters-sans-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"commuters-sans-regular commuters-sans-regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/rrihzYQreIGGDhwbKR9yDQuOUUo.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-eHlzi .framer-styles-preset-1cv8uqz:not(.rich-text-wrapper), .framer-eHlzi .framer-styles-preset-1cv8uqz.rich-text-wrapper p { --framer-font-family: \"commuters-sans-regular commuters-sans-regular\", \"commuters-sans-regular commuters-sans-regular Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-eHlzi .framer-styles-preset-1cv8uqz:not(.rich-text-wrapper), .framer-eHlzi .framer-styles-preset-1cv8uqz.rich-text-wrapper p { --framer-font-family: \"commuters-sans-regular commuters-sans-regular\", \"commuters-sans-regular commuters-sans-regular Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-eHlzi .framer-styles-preset-1cv8uqz:not(.rich-text-wrapper), .framer-eHlzi .framer-styles-preset-1cv8uqz.rich-text-wrapper p { --framer-font-family: \"commuters-sans-regular commuters-sans-regular\", \"commuters-sans-regular commuters-sans-regular Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-eHlzi\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ee31e22)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,Floating,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jFOAZKc2EvehHtUZX1Hf/Video.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import Slideshow1 from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import NavBar from\"#framer/local/canvasComponent/bHQYj0zlL/bHQYj0zlL.js\";import Logo from\"#framer/local/canvasComponent/ckAhuxTmW/ckAhuxTmW.js\";import PrimaryButton from\"#framer/local/canvasComponent/HbAfApZcL/HbAfApZcL.js\";import Testimonial from\"#framer/local/canvasComponent/hKGz8kYij/hKGz8kYij.js\";import Cursor from\"#framer/local/canvasComponent/HrV1oebSa/HrV1oebSa.js\";import Faqs from\"#framer/local/canvasComponent/JAbbhMBcM/JAbbhMBcM.js\";import Restaurant_card from\"#framer/local/canvasComponent/Ll564r5Zv/Ll564r5Zv.js\";import GraffitiIcon from\"#framer/local/canvasComponent/Oeimj8Lol/Oeimj8Lol.js\";import Footer from\"#framer/local/canvasComponent/RkHYJAkWa/RkHYJAkWa.js\";import Hero_Banner from\"#framer/local/canvasComponent/ZwIabBn_t/ZwIabBn_t.js\";import*as sharedStyle1 from\"#framer/local/css/BTf0CST6L/BTf0CST6L.js\";import*as sharedStyle2 from\"#framer/local/css/cgykqZ_EK/cgykqZ_EK.js\";import*as sharedStyle from\"#framer/local/css/IzFTWI14s/IzFTWI14s.js\";import*as sharedStyle3 from\"#framer/local/css/szJ0bJlwG/szJ0bJlwG.js\";import*as sharedStyle4 from\"#framer/local/css/XGIVLRVYK/XGIVLRVYK.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const NavBarFonts=getFonts(NavBar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const Hero_BannerFonts=getFonts(Hero_Banner);const FooterFonts=getFonts(Footer);const ContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Container));const LogoFonts=getFonts(Logo);const RichTextWithFX=withFX(RichText);const ImageWithFX=withFX(Image);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const GraffitiIconFonts=getFonts(GraffitiIcon);const GraffitiIconWithVariantAppearEffect=withVariantAppearEffect(GraffitiIcon);const Restaurant_cardFonts=getFonts(Restaurant_card);const CarouselFonts=getFonts(Carousel);const ContainerWithFX=withFX(Container);const SlideshowFonts=getFonts(Slideshow);const FaqsFonts=getFonts(Faqs);const TickerFonts=getFonts(Ticker);const TestimonialFonts=getFonts(Testimonial);const Slideshow1Fonts=getFonts(Slideshow1);const PrimaryButtonFonts=getFonts(PrimaryButton);const CursorFonts=getFonts(Cursor);const breakpoints={EU2REJ5Ty:\"(max-width: 809px)\",lWV4KS9lk:\"(min-width: 810px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ewQTu\";const variantClassNames={EU2REJ5Ty:\"framer-v-vls3lh\",lWV4KS9lk:\"framer-v-16rj8rp\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:30,delay:4.6,mass:2,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transition2={damping:30,delay:4.5,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={damping:60,delay:1,mass:1,stiffness:250,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transition4={damping:40,delay:.1,mass:1,stiffness:300,type:\"spring\"};const transition5={damping:45,delay:.2,mass:1,stiffness:300,type:\"spring\"};const transition6={damping:50,delay:.3,mass:1,stiffness:300,type:\"spring\"};const transition7={damping:55,delay:.4,mass:1,stiffness:300,type:\"spring\"};const animation6={opacity:0,rotate:-1,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-50,y:0};const transition8={damping:55,delay:.3,mass:1.5,stiffness:300,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const transition9={damping:60,delay:.1,mass:1,stiffness:300,type:\"spring\"};const transition10={delay:.1,duration:.3,ease:[0,0,1,1],type:\"tween\"};const animation8={opacity:1,rotate:2,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const transition11={damping:60,delay:0,mass:2,stiffness:400,type:\"spring\"};const animation10={opacity:0,rotate:10,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const transition12={damping:60,delay:.1,mass:1,stiffness:400,type:\"spring\"};const transition13={damping:60,delay:.2,mass:2,stiffness:400,type:\"spring\"};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const transition14={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition14,x:0,y:0};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:0,y:0};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:0,y:0};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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 transformTemplate3=(_,t)=>`translate(-50%, -50%) ${t}`;const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation18={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition15={damping:40,delay:.2,mass:1,stiffness:300,type:\"spring\"};const transition16={damping:40,delay:.3,mass:1,stiffness:300,type:\"spring\"};const transition17={delay:.2,duration:.3,ease:[0,0,1,1],type:\"tween\"};const transition18={damping:40,delay:.4,mass:1,stiffness:300,type:\"spring\"};const transition19={damping:40,delay:.5,mass:1,stiffness:300,type:\"spring\"};const transition20={damping:30,delay:.1,mass:1,stiffness:400,type:\"spring\"};const transition21={delay:.1,duration:.4,ease:[0,0,1,1],type:\"tween\"};const transition22={bounce:.2,delay:.2,duration:.4,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"EU2REJ5Ty\",Tablet:\"lWV4KS9lk\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const cursor={component:Cursor,variant:\"ilsWU6VVy\"};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,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"lWV4KS9lk\",\"EU2REJ5Ty\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"EU2REJ5Ty\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"EU2REJ5Ty\")return true;return false;};const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const ref8=React.useRef(null);const ref9=React.useRef(null);const ref10=React.useRef(null);const ref11=React.useRef(null);const ref12=React.useRef(null);const ref13=React.useRef(null);const ref14=React.useRef(null);const ref15=React.useRef(null);const ref16=React.useRef(null);const ref17=React.useRef(null);const ref18=React.useRef(null);const ref19=React.useRef(null);const ref20=React.useRef(null);const ref21=React.useRef(null);const ref22=React.useRef(null);const ref23=React.useRef(null);const ref24=React.useRef(null);const ref25=React.useRef(null);const ref26=React.useRef(null);const ref27=React.useRef(null);const ref28=React.useRef(null);const ref29=React.useRef(null);const ref30=React.useRef(null);const ref31=React.useRef(null);const ref32=React.useRef(null);const ref33=React.useRef(null);const ref34=React.useRef(null);const ref35=React.useRef(null);const ref36=React.useRef(null);const ref37=React.useRef(null);const ref38=React.useRef(null);const ref39=React.useRef(null);const ref40=React.useRef(null);const ref41=React.useRef(null);const ref42=React.useRef(null);const ref43=React.useRef(null);const ref44=React.useRef(null);const ref45=React.useRef(null);const ref46=React.useRef(null);const ref47=React.useRef(null);const ref48=React.useRef(null);const ref49=React.useRef(null);const ref50=React.useRef(null);const ref51=React.useRef(null);const ref52=React.useRef(null);const router=useRouter();const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"lWV4KS9lk\")return true;return false;};useCustomCursors({ha8ah:cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(33, 33, 33); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:127,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+12),pixelHeight:150,pixelWidth:127,src:\"https://framerusercontent.com/images/02NyGRIlJgovIxbopNWtE8mnc.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:127,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+26),pixelHeight:150,pixelWidth:127,src:\"https://framerusercontent.com/images/02NyGRIlJgovIxbopNWtE8mnc.svg\"},className:\"framer-1ftx2e9\",\"data-framer-appear-id\":\"1ftx2e9\",\"data-framer-name\":\"SocialDistrict logo\",initial:animation1,optimized:true,transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-18wj9m1-container\",\"data-framer-appear-id\":\"18wj9m1\",initial:animation1,nodeId:\"ade5rYp3D\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{variant:\"Vi_FCPrCL\"},lWV4KS9lk:{variant:\"gmA_V9OuV\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"ade5rYp3D\",layoutId:\"ade5rYp3D\",style:{width:\"100%\"},variant:\"TdDm2dfO2\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{height:1e3},lWV4KS9lk:{height:720}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2f6gir-container\",nodeId:\"ZuVFRaEg4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{variant:\"k7CEhbC2G\"},lWV4KS9lk:{variant:\"eW9zKdl3b\"}},children:/*#__PURE__*/_jsx(Hero_Banner,{height:\"100%\",id:\"ZuVFRaEg4\",layoutId:\"ZuVFRaEg4\",style:{height:\"100%\",width:\"100%\"},variant:\"lRPW3hKl4\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{height:733},lWV4KS9lk:{height:733}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{transformTemplate:transformTemplate1},lWV4KS9lk:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithFXWithOptimizedAppearEffect,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,animate:animation3,className:\"framer-xutn60-container\",\"data-framer-appear-id\":\"xutn60\",initial:animation4,layoutScroll:true,nodeId:\"pg8ZPW4Gn\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{style:{width:\"100%\"},variant:\"JSiXpSxlq\"},lWV4KS9lk:{style:{width:\"100%\"},variant:\"qu0gAvfc7\"}},children:/*#__PURE__*/_jsx(Footer,{alOnFvuy2:\"ha8ah\",height:\"100%\",id:\"pg8ZPW4Gn\",layoutId:\"pg8ZPW4Gn\",style:{height:\"100%\",width:\"100%\"},variant:\"smZerXNep\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:169,y:(componentViewport?.y||0)+-625,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ho5efs-container\",nodeId:\"phdvNwkFT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"phdvNwkFT\",layoutId:\"phdvNwkFT\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vv1p3b\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+0),pixelHeight:1707,pixelWidth:2560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg\",srcSet:\"https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg 2560w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+720+0),pixelHeight:1707,pixelWidth:2560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg\",srcSet:\"https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0),pixelHeight:1707,pixelWidth:2560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg\",srcSet:\"https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DIvNLLCKp7cHJsfB4mWAIGn4vzQ.jpg 2560w\"},className:\"framer-1prz5rk\",style:{rotate:180}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qf2w72\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1912bdv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1op0nqn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-11g2ht0\",\"data-styles-preset\":\"IzFTWI14s\",children:\"Ultimate\"})}),className:\"framer-4bnsk1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.05,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-11g2ht0\",\"data-styles-preset\":\"IzFTWI14s\",children:\"social\"})}),className:\"framer-yn55zj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.13,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-11g2ht0\",\"data-styles-preset\":\"IzFTWI14s\",children:\"social\"})}),className:\"framer-fyfv1j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-11g2ht0\",\"data-styles-preset\":\"IzFTWI14s\",children:\"social\"})}),className:\"framer-1skyabq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-11g2ht0\",\"data-styles-preset\":\"IzFTWI14s\",style:{\"--framer-text-color\":\"var(--token-eab05eed-d8d0-4eb8-857d-2f13b73faff8, rgb(250, 55, 30))\"},children:\"social\"})}),className:\"framer-w7ptmb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+60+0+0+0+0+0+0+496),pixelHeight:23,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kkLcHYh2cNMgnYOVBGsIJA7Xig.svg\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+720+60+0+0+0+0+0+496),pixelHeight:23,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kkLcHYh2cNMgnYOVBGsIJA7Xig.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+60+0+0+0+0+496),pixelHeight:23,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kkLcHYh2cNMgnYOVBGsIJA7Xig.svg\"},className:\"framer-wg13x7\"})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-11g2ht0\",\"data-styles-preset\":\"IzFTWI14s\",children:\"experience\"})}),className:\"framer-13yr6ho\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-124tiae\",\"data-styles-preset\":\"BTf0CST6L\",children:\"22 fire flavors, next-level entertainment, and all your favorite brands under one roof.\"})}),className:\"framer-862r1j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:495,intrinsicWidth:465,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+60+90.8452),pixelHeight:495,pixelWidth:465,src:\"https://framerusercontent.com/images/EL5PBTxuhbKc01dwuAfzMZUlIQ8.png\"},className:\"framer-e0ua46 hidden-16rj8rp hidden-vls3lh\",\"data-framer-name\":\"Icon-07\",style:{rotate:-7}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:296,intrinsicWidth:295,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+60+0+860-265),pixelHeight:296,pixelWidth:295,src:\"https://framerusercontent.com/images/FZDS780gEQ9ePiF6DtfeqyZtyM.png\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:296,intrinsicWidth:295,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+720+60+1006-152.9974),pixelHeight:296,pixelWidth:295,src:\"https://framerusercontent.com/images/FZDS780gEQ9ePiF6DtfeqyZtyM.png\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation8,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition10,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:296,intrinsicWidth:295,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+60+277),pixelHeight:296,pixelWidth:295,src:\"https://framerusercontent.com/images/FZDS780gEQ9ePiF6DtfeqyZtyM.png\"},className:\"framer-13h2jd0\",\"data-framer-name\":\"Icon-10\",style:{rotate:-10}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:545,intrinsicWidth:881,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+60+0+0+870.2),pixelHeight:545,pixelWidth:881,sizes:`min(min(${componentViewport?.width||\"100vw\"} - 48px, 1400px), 400px)`,src:\"https://framerusercontent.com/images/M40riOzQPAHIYuqLpZzrhjWU.png\",srcSet:\"https://framerusercontent.com/images/M40riOzQPAHIYuqLpZzrhjWU.png?scale-down-to=512 512w,https://framerusercontent.com/images/M40riOzQPAHIYuqLpZzrhjWU.png 881w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:545,intrinsicWidth:881,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+720+60+1006-389),pixelHeight:545,pixelWidth:881,sizes:\"540px\",src:\"https://framerusercontent.com/images/M40riOzQPAHIYuqLpZzrhjWU.png\",srcSet:\"https://framerusercontent.com/images/M40riOzQPAHIYuqLpZzrhjWU.png?scale-down-to=512 512w,https://framerusercontent.com/images/M40riOzQPAHIYuqLpZzrhjWU.png 881w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:545,intrinsicWidth:881,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+60+29.2853),pixelHeight:545,pixelWidth:881,sizes:\"569.2994px\",src:\"https://framerusercontent.com/images/M40riOzQPAHIYuqLpZzrhjWU.png\",srcSet:\"https://framerusercontent.com/images/M40riOzQPAHIYuqLpZzrhjWU.png?scale-down-to=512 512w,https://framerusercontent.com/images/M40riOzQPAHIYuqLpZzrhjWU.png 881w\"},className:\"framer-i2bqsr\",\"data-framer-name\":\"Img03\",style:{rotate:-7}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lWV4KS9lk:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:996,intrinsicWidth:900},className:\"framer-1chc464\",\"data-framer-name\":\"Torn photo02\",style:{rotate:-23},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b361qg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DqYFWSvy6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"DqYFWSvy6\",isMixedBorderRadius:false,layoutId:\"DqYFWSvy6\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/IFl5VdIl7NKKWD7fKkCf4pFdze8.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+60+0+860-208.9975+-7),pixelHeight:996,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"173px\",src:\"https://framerusercontent.com/images/AdTxkJAYiKcqz9Pyz6vzccCiE.png\",srcSet:\"https://framerusercontent.com/images/AdTxkJAYiKcqz9Pyz6vzccCiE.png 900w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+720+60+1006-151.0124+-7),pixelHeight:996,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/AdTxkJAYiKcqz9Pyz6vzccCiE.png\",srcSet:\"https://framerusercontent.com/images/AdTxkJAYiKcqz9Pyz6vzccCiE.png 900w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+60+852.2-413.5841+-2.1049),pixelHeight:996,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"229.3356px\",src:\"https://framerusercontent.com/images/AdTxkJAYiKcqz9Pyz6vzccCiE.png\",srcSet:\"https://framerusercontent.com/images/AdTxkJAYiKcqz9Pyz6vzccCiE.png 900w\"},className:\"framer-6717w7\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:931,intrinsicWidth:962,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+60+0+860-408.9864),pixelHeight:921,pixelWidth:952,sizes:\"247px\",src:\"https://framerusercontent.com/images/dkOha55Mx7hV2mISbl4FXxca2Q.png\",srcSet:\"https://framerusercontent.com/images/dkOha55Mx7hV2mISbl4FXxca2Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/dkOha55Mx7hV2mISbl4FXxca2Q.png 952w\"},transformTemplate:transformTemplate1},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:931,intrinsicWidth:962,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+720+60+1006-401.8424),pixelHeight:921,pixelWidth:952,sizes:\"392px\",src:\"https://framerusercontent.com/images/dkOha55Mx7hV2mISbl4FXxca2Q.png\",srcSet:\"https://framerusercontent.com/images/dkOha55Mx7hV2mISbl4FXxca2Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/dkOha55Mx7hV2mISbl4FXxca2Q.png 952w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:931,intrinsicWidth:962,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+60+23.4358),pixelHeight:921,pixelWidth:952,sizes:\"423.4223px\",src:\"https://framerusercontent.com/images/dkOha55Mx7hV2mISbl4FXxca2Q.png\",srcSet:\"https://framerusercontent.com/images/dkOha55Mx7hV2mISbl4FXxca2Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/dkOha55Mx7hV2mISbl4FXxca2Q.png 952w\"},className:\"framer-z5sxq8\",\"data-framer-name\":\"Triangle\",style:{rotate:-83}})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:554,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+980-443),pixelHeight:818,pixelWidth:554,sizes:\"300px\",src:\"https://framerusercontent.com/images/3EUF4R0hY4YHHEgJNai8XyFZvvQ.png\",srcSet:\"https://framerusercontent.com/images/3EUF4R0hY4YHHEgJNai8XyFZvvQ.png 554w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:554,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+720+1186-567),pixelHeight:818,pixelWidth:554,sizes:\"384px\",src:\"https://framerusercontent.com/images/3EUF4R0hY4YHHEgJNai8XyFZvvQ.png\",srcSet:\"https://framerusercontent.com/images/3EUF4R0hY4YHHEgJNai8XyFZvvQ.png 554w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:554,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+1032.2-700),pixelHeight:818,pixelWidth:554,sizes:\"474px\",src:\"https://framerusercontent.com/images/3EUF4R0hY4YHHEgJNai8XyFZvvQ.png\",srcSet:\"https://framerusercontent.com/images/3EUF4R0hY4YHHEgJNai8XyFZvvQ.png 554w\"},className:\"framer-namjwc\",\"data-framer-name\":\"Brick wall02\",draggable:\"false\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{height:116,width:\"65px\",y:(componentViewport?.y||0)+0+1e3+980-443+443-132},lWV4KS9lk:{y:(componentViewport?.y||0)+0+720+1186-567+567-174}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:139,width:\"129px\",y:(componentViewport?.y||0)+0+800+1032.2-700+700-194,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4wjhiv-container\",nodeId:\"z0SRX7JW1\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GraffitiIconWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"LoiCiymnk\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"FEJTnmygQ\",height:\"100%\",id:\"z0SRX7JW1\",layoutId:\"z0SRX7JW1\",style:{height:\"100%\",width:\"100%\"},variant:\"FEJTnmygQ\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.5,intrinsicWidth:258,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+980-28),pixelHeight:71,pixelWidth:516,sizes:\"203px\",src:\"https://framerusercontent.com/images/yuspDLSceZb5c5GUYebbjTlPwGE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yuspDLSceZb5c5GUYebbjTlPwGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/yuspDLSceZb5c5GUYebbjTlPwGE.png 516w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.5,intrinsicWidth:258,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+720+1186-43),pixelHeight:71,pixelWidth:516,sizes:\"311px\",src:\"https://framerusercontent.com/images/yuspDLSceZb5c5GUYebbjTlPwGE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yuspDLSceZb5c5GUYebbjTlPwGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/yuspDLSceZb5c5GUYebbjTlPwGE.png 516w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.5,intrinsicWidth:258,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+1032.2-68),pixelHeight:71,pixelWidth:516,sizes:\"400px\",src:\"https://framerusercontent.com/images/yuspDLSceZb5c5GUYebbjTlPwGE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yuspDLSceZb5c5GUYebbjTlPwGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/yuspDLSceZb5c5GUYebbjTlPwGE.png 516w\"},className:\"framer-1opcsq\",\"data-framer-name\":\"Brick wall02c\",draggable:\"false\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1980),pixelHeight:1655,pixelWidth:2560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yRn8YWTWzIqzsfFCfYUXsqUKG2A.png\",srcSet:\"https://framerusercontent.com/images/yRn8YWTWzIqzsfFCfYUXsqUKG2A.png?scale-down-to=512 512w,https://framerusercontent.com/images/yRn8YWTWzIqzsfFCfYUXsqUKG2A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yRn8YWTWzIqzsfFCfYUXsqUKG2A.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yRn8YWTWzIqzsfFCfYUXsqUKG2A.png 2560w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1906),pixelHeight:1707,pixelWidth:2560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/90hz4J7K9LwaG0vj61adjMBHc.png\",srcSet:\"https://framerusercontent.com/images/90hz4J7K9LwaG0vj61adjMBHc.png?scale-down-to=512 512w,https://framerusercontent.com/images/90hz4J7K9LwaG0vj61adjMBHc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/90hz4J7K9LwaG0vj61adjMBHc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/90hz4J7K9LwaG0vj61adjMBHc.png 2560w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1832.2),pixelHeight:1707,pixelWidth:2560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/90hz4J7K9LwaG0vj61adjMBHc.png\",srcSet:\"https://framerusercontent.com/images/90hz4J7K9LwaG0vj61adjMBHc.png?scale-down-to=512 512w,https://framerusercontent.com/images/90hz4J7K9LwaG0vj61adjMBHc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/90hz4J7K9LwaG0vj61adjMBHc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/90hz4J7K9LwaG0vj61adjMBHc.png 2560w\"},className:\"framer-1tlm52d\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:509.5,intrinsicWidth:896,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1980+88+96.4),pixelHeight:1233,pixelWidth:754,sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1400px)`,src:\"https://framerusercontent.com/images/jjxDEMEN5psWkrp0kyoP3FFont8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/jjxDEMEN5psWkrp0kyoP3FFont8.jpg?scale-down-to=1024 626w,https://framerusercontent.com/images/jjxDEMEN5psWkrp0kyoP3FFont8.jpg 754w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:509.5,intrinsicWidth:896,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1906+80),pixelHeight:1062,pixelWidth:1792,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 120px, 1px), 1400px)`,src:\"https://framerusercontent.com/images/4ul66on1zJOE93vIAUwUk2mDvA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4ul66on1zJOE93vIAUwUk2mDvA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4ul66on1zJOE93vIAUwUk2mDvA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4ul66on1zJOE93vIAUwUk2mDvA.png 1792w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:509.5,intrinsicWidth:896,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1832.2+120),pixelHeight:1062,pixelWidth:1792,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 240px, 1px), 1400px)`,src:\"https://framerusercontent.com/images/4ul66on1zJOE93vIAUwUk2mDvA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4ul66on1zJOE93vIAUwUk2mDvA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4ul66on1zJOE93vIAUwUk2mDvA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4ul66on1zJOE93vIAUwUk2mDvA.png 1792w\"},className:\"framer-7qk212\",\"data-framer-name\":\"Hotspot-vendors-map-06\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1boe1lm hidden-vls3lh\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1v5y4wg\",\"data-styles-preset\":\"cgykqZ_EK\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[\"Explore the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eab05eed-d8d0-4eb8-857d-2f13b73faff8, rgb(250, 55, 30))\"},children:\"Distrikt\"})]})}),className:\"framer-i21zl6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hlrr52 hidden-vls3lh\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dfdfng\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cv8uqz\",\"data-styles-preset\":\"szJ0bJlwG\",style:{\"--framer-text-color\":\"var(--token-eab05eed-d8d0-4eb8-857d-2f13b73faff8, rgb(250, 55, 30))\"},children:\"Ground Floor,\"})}),className:\"framer-15bcgas\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12tiulm\",\"data-styles-preset\":\"XGIVLRVYK\",style:{\"--framer-text-color\":\"var(--token-0a6b2a1f-85c1-4551-bb2d-b018fac16b3d, rgb(0, 0, 0))\"},children:\"Dubai Mall, Fountain Views\"})}),className:\"framer-7cvo9s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:531,intrinsicWidth:1317,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1980+88+96.4+253),pixelHeight:531,pixelWidth:1317,sizes:\"228px\",src:\"https://framerusercontent.com/images/1KQQ3eSeXeiMQYJVzLm989KbDs.png\",srcSet:\"https://framerusercontent.com/images/1KQQ3eSeXeiMQYJVzLm989KbDs.png?scale-down-to=512 512w,https://framerusercontent.com/images/1KQQ3eSeXeiMQYJVzLm989KbDs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1KQQ3eSeXeiMQYJVzLm989KbDs.png 1317w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:531,intrinsicWidth:1317,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1906+80+227.635),pixelHeight:531,pixelWidth:1317,sizes:\"282px\",src:\"https://framerusercontent.com/images/1KQQ3eSeXeiMQYJVzLm989KbDs.png\",srcSet:\"https://framerusercontent.com/images/1KQQ3eSeXeiMQYJVzLm989KbDs.png?scale-down-to=512 512w,https://framerusercontent.com/images/1KQQ3eSeXeiMQYJVzLm989KbDs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1KQQ3eSeXeiMQYJVzLm989KbDs.png 1317w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:531,intrinsicWidth:1317,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1832.2+120+349.0323),pixelHeight:531,pixelWidth:1317,sizes:\"421px\",src:\"https://framerusercontent.com/images/1KQQ3eSeXeiMQYJVzLm989KbDs.png\",srcSet:\"https://framerusercontent.com/images/1KQQ3eSeXeiMQYJVzLm989KbDs.png?scale-down-to=512 512w,https://framerusercontent.com/images/1KQQ3eSeXeiMQYJVzLm989KbDs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1KQQ3eSeXeiMQYJVzLm989KbDs.png 1317w\"},className:\"framer-k59h5h\",\"data-framer-name\":\"Torn paper05\",style:{rotate:211},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:350,intrinsicWidth:350,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1980+88+96.4+560-50.7625),pixelHeight:350,pixelWidth:350,src:\"https://framerusercontent.com/images/zJ0HrGStZckYlPNAtMMP053Yo.png\"},transformTemplate:transformTemplate1},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:350,intrinsicWidth:350,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1906+80+487-138),pixelHeight:350,pixelWidth:350,src:\"https://framerusercontent.com/images/zJ0HrGStZckYlPNAtMMP053Yo.png\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__loop:animation8,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:350,intrinsicWidth:350,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1832.2+120+715-168),pixelHeight:350,pixelWidth:350,src:\"https://framerusercontent.com/images/zJ0HrGStZckYlPNAtMMP053Yo.png\"},className:\"framer-12x7t8q\",\"data-framer-name\":\"Image\",style:{rotate:-26}})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1312,intrinsicWidth:319,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1980+88+96.4+-57.0385),pixelHeight:1312,pixelWidth:319,sizes:\"35px\",src:\"https://framerusercontent.com/images/O20gJe0GhRTl3ywm3UpwUNMIBHY.png\",srcSet:\"https://framerusercontent.com/images/O20gJe0GhRTl3ywm3UpwUNMIBHY.png 319w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1312,intrinsicWidth:319,pixelHeight:1312,pixelWidth:319,src:\"https://framerusercontent.com/images/O20gJe0GhRTl3ywm3UpwUNMIBHY.png\",srcSet:\"https://framerusercontent.com/images/O20gJe0GhRTl3ywm3UpwUNMIBHY.png 319w\"},className:\"framer-17idiag hidden-72rtr7 hidden-16rj8rp\",\"data-framer-name\":\"Tape\",style:{rotate:256}})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lWV4KS9lk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 77\"><path d=\"M 41.191 51.898 L 48.541 44.506 C 49.153 43.89 49.153 42.658 48.541 42.042 C 48.234 41.734 47.775 41.426 47.316 41.426 C 46.856 41.426 46.397 41.58 46.091 42.042 L 37.516 50.666 C 36.903 51.282 36.75 52.514 37.516 53.13 L 46.091 61.6 C 46.703 62.216 47.928 62.37 48.541 61.6 C 49.153 60.984 49.153 59.752 48.541 59.136 Z M 24.5 22.176 C 23.581 22.176 22.816 22.946 22.663 24.024 L 22.663 75.306 C 22.663 76.384 23.428 77.154 24.5 77.154 C 25.572 77.154 25.419 77 25.725 76.692 C 26.031 76.384 26.184 75.922 26.184 75.46 L 26.184 24.024 C 26.184 22.946 25.572 22.176 24.5 22.176 Z M 11.484 50.512 L 2.909 42.042 C 2.297 41.426 1.072 41.272 0.459 42.042 C -0.153 42.658 -0.153 43.89 0.459 44.506 L 7.809 51.898 L 0.459 59.29 C -0.153 59.906 -0.153 61.138 0.459 61.754 C 0.766 62.062 1.225 62.37 1.684 62.37 C 2.144 62.37 2.603 62.216 2.909 61.754 L 11.331 53.13 C 12.25 52.36 12.25 51.282 11.331 50.512 Z\" fill=\"var(--token-394ea9e5-f0d2-4810-a50c-5ddce94a93ce, rgb(25, 175, 190)) /* {&quot;name&quot;:&quot;SD-Turquoise&quot;} */\"></path><path d=\"M 6.738 28.798 C 7.197 28.798 7.656 28.798 8.116 28.49 L 24.5 15.862 L 40.884 28.49 C 41.191 28.798 41.803 28.952 42.263 28.798 C 42.722 28.798 43.181 28.49 43.334 28.182 C 43.947 27.412 43.794 26.334 43.028 25.718 L 25.572 12.32 C 25.419 12.166 24.959 12.166 24.806 12.012 L 24.194 12.012 C 23.888 12.012 23.581 12.012 23.428 12.32 L 5.972 25.564 C 5.206 26.18 5.053 27.258 5.666 28.028 C 5.819 28.336 6.278 28.644 6.738 28.644 Z\" fill=\"var(--token-394ea9e5-f0d2-4810-a50c-5ddce94a93ce, rgb(25, 175, 190)) /* {&quot;name&quot;:&quot;SD-Turquoise&quot;} */\"></path><path d=\"M 6.738 16.94 C 7.197 16.94 7.656 16.94 8.116 16.632 L 24.5 4.004 L 40.884 16.632 C 41.191 16.94 41.803 17.094 42.263 16.94 C 42.722 16.94 43.181 16.632 43.334 16.324 C 43.947 15.554 43.794 14.476 43.028 13.86 L 25.572 0.308 C 25.419 0.154 24.959 0.154 24.806 0 L 24.194 0 C 23.888 0 23.581 0 23.428 0.308 L 5.972 13.706 C 5.206 14.322 5.053 15.4 5.666 16.17 C 5.819 16.478 6.278 16.786 6.738 16.786 Z\" fill=\"var(--token-394ea9e5-f0d2-4810-a50c-5ddce94a93ce, rgb(25, 175, 190)) /* {&quot;name&quot;:&quot;SD-Turquoise&quot;} */\"></path></svg>',svgContentId:11002092218}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-i4kn9z hidden-vls3lh\",\"data-framer-name\":\"SD Icon-06\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 94\"><path d=\"M 50.437 63.356 L 59.437 54.332 C 60.187 53.58 60.187 52.076 59.437 51.324 C 59.062 50.948 58.5 50.572 57.937 50.572 C 57.375 50.572 56.812 50.76 56.437 51.324 L 45.937 61.852 C 45.187 62.604 45 64.108 45.937 64.86 L 56.437 75.2 C 57.187 75.952 58.687 76.14 59.437 75.2 C 60.187 74.448 60.187 72.944 59.437 72.192 Z M 30 27.072 C 28.875 27.072 27.938 28.012 27.75 29.328 L 27.75 91.932 C 27.75 93.248 28.688 94.188 30 94.188 C 31.312 94.188 31.125 94 31.5 93.624 C 31.875 93.248 32.063 92.684 32.063 92.12 L 32.063 29.328 C 32.063 28.012 31.313 27.072 30 27.072 Z M 14.063 61.664 L 3.562 51.324 C 2.812 50.572 1.312 50.384 0.563 51.324 C -0.188 52.076 -0.188 53.58 0.563 54.332 L 9.563 63.356 L 0.563 72.38 C -0.188 73.132 -0.188 74.636 0.563 75.388 C 0.937 75.764 1.5 76.14 2.063 76.14 C 2.625 76.14 3.187 75.952 3.562 75.388 L 13.875 64.86 C 15 63.92 15 62.604 13.875 61.664 Z\" fill=\"var(--token-394ea9e5-f0d2-4810-a50c-5ddce94a93ce, rgb(25, 175, 190)) /* {&quot;name&quot;:&quot;SD-Turquoise&quot;} */\"></path><path d=\"M 8.25 35.156 C 8.813 35.156 9.375 35.156 9.938 34.78 L 30 19.364 L 50.063 34.78 C 50.438 35.156 51.188 35.344 51.75 35.156 C 52.313 35.156 52.875 34.78 53.063 34.404 C 53.813 33.464 53.625 32.148 52.688 31.396 L 31.313 15.04 C 31.125 14.852 30.563 14.852 30.375 14.664 L 29.625 14.664 C 29.25 14.664 28.875 14.664 28.688 15.04 L 7.313 31.208 C 6.375 31.96 6.188 33.276 6.938 34.216 C 7.125 34.592 7.688 34.968 8.25 34.968 Z\" fill=\"var(--token-394ea9e5-f0d2-4810-a50c-5ddce94a93ce, rgb(25, 175, 190)) /* {&quot;name&quot;:&quot;SD-Turquoise&quot;} */\"></path><path d=\"M 8.25 20.68 C 8.813 20.68 9.375 20.68 9.938 20.304 L 30 4.888 L 50.063 20.304 C 50.438 20.68 51.188 20.868 51.75 20.68 C 52.313 20.68 52.875 20.304 53.063 19.928 C 53.813 18.988 53.625 17.672 52.688 16.92 L 31.313 0.376 C 31.125 0.188 30.563 0.188 30.375 0 L 29.625 0 C 29.25 0 28.875 0 28.688 0.376 L 7.313 16.732 C 6.375 17.484 6.188 18.8 6.938 19.74 C 7.125 20.116 7.688 20.492 8.25 20.492 Z\" fill=\"var(--token-394ea9e5-f0d2-4810-a50c-5ddce94a93ce, rgb(25, 175, 190)) /* {&quot;name&quot;:&quot;SD-Turquoise&quot;} */\"></path></svg>',svgContentId:12775882901,withExternalLayout:true})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-1g5h9bk\",\"data-framer-name\":\"Meet My Sweet\",id:\"1g5h9bk\",onMouseEnter:onMouseEntertxyyif({overlay}),ref:ref1,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1g5h9bk\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"meet-my-sweet\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"dXRkCUM2E\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"hYMk0vwxB\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-d5rsxy framer-lux5qc\",exit:animation14,initial:animation16,ref:ref2,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:290,pixelWidth:487,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xyfPUDmEMoAwqD6LBcncdkmSmbI.png\"},className:\"framer-1ilu6cp\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-908ck7\",\"data-framer-name\":\"Saigon\",id:\"908ck7\",onMouseEnter:onMouseEntertxyyif({overlay:overlay1}),ref:ref3,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref3,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"908ck7\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay1.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"saigon-taste-of-vietnam\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"ON5BSxJKI\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"tmD6Vm2fL\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-1yytsmm framer-lux5qc\",exit:animation14,initial:animation16,ref:ref4,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:236,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cYwLuNQljVRpUnJe1FnFVSsWVr8.png\"},className:\"framer-11s38i2\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-xnpydh\",\"data-framer-name\":\"Wontoneria\",id:\"xnpydh\",onMouseEnter:onMouseEntertxyyif({overlay:overlay2}),ref:ref5,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref5,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"xnpydh\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay2.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"wontoneria\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"a1d5BBqPA\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"gYKtemKjM\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-og2zpm framer-lux5qc\",exit:animation14,initial:animation16,ref:ref6,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:413,pixelWidth:275,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Q4wbcftl81uaPClx2ysXpCk9IDI.png\"},className:\"framer-wctdzr\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-16jssd7\",\"data-framer-name\":\"La Barra\",id:\"16jssd7\",onMouseEnter:onMouseEntertxyyif({overlay:overlay3}),ref:ref7,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref7,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"16jssd7\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay3.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"la-barra\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"T7t18I1pE\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"NFcK6mqCd\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1980+88+96.4+482.5+-64),pixelHeight:500,pixelWidth:600,sizes:\"154px\",src:\"https://framerusercontent.com/images/UeHzKHOFxC1RQDzBgkiAPwZx00.jpg\",srcSet:\"https://framerusercontent.com/images/UeHzKHOFxC1RQDzBgkiAPwZx00.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UeHzKHOFxC1RQDzBgkiAPwZx00.jpg 600w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1906+80+247.5+-64),pixelHeight:500,pixelWidth:600,sizes:\"154px\",src:\"https://framerusercontent.com/images/UeHzKHOFxC1RQDzBgkiAPwZx00.jpg\",srcSet:\"https://framerusercontent.com/images/UeHzKHOFxC1RQDzBgkiAPwZx00.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UeHzKHOFxC1RQDzBgkiAPwZx00.jpg 600w\"}}},children:/*#__PURE__*/_jsx(Image,{animate:animation15,as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1832.2+120+373+-64),pixelHeight:500,pixelWidth:600,sizes:\"154px\",src:\"https://framerusercontent.com/images/UeHzKHOFxC1RQDzBgkiAPwZx00.jpg\",srcSet:\"https://framerusercontent.com/images/UeHzKHOFxC1RQDzBgkiAPwZx00.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UeHzKHOFxC1RQDzBgkiAPwZx00.jpg 600w\"},className:\"framer-cvbvbf framer-lux5qc\",exit:animation14,initial:animation16,ref:ref8,role:\"dialog\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-122jl9b\",\"data-framer-name\":\"Mandy's Bakery\",id:\"122jl9b\",onMouseEnter:onMouseEntertxyyif({overlay:overlay4}),ref:ref9,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref9,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"122jl9b\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay4.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"mandy-s-bakery\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"KHkmHq0Pa\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"bOqywOyxC\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-69cs3o framer-lux5qc\",exit:animation14,initial:animation16,ref:ref10,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:911,pixelWidth:1028,positionX:\"center\",positionY:\"center\",sizes:\"130.9px\",src:\"https://framerusercontent.com/images/ij9vT55SRDbUwQyz87q3v3R0k.png\",srcSet:\"https://framerusercontent.com/images/ij9vT55SRDbUwQyz87q3v3R0k.png?scale-down-to=512 512w,https://framerusercontent.com/images/ij9vT55SRDbUwQyz87q3v3R0k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ij9vT55SRDbUwQyz87q3v3R0k.png 1028w\"},className:\"framer-1gjmi14\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-1h79y9\",\"data-framer-name\":\"Mondoux\",id:\"1h79y9\",onMouseEnter:onMouseEntertxyyif({overlay:overlay5}),ref:ref11,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref11,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1h79y9\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay5.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"fVDGrhALY\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-kyhbx2 framer-lux5qc\",exit:animation14,initial:animation16,ref:ref12,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:7784,pixelWidth:7783,positionX:\"center\",positionY:\"center\",sizes:\"130.9px\",src:\"https://framerusercontent.com/images/78ONhbIcA9bq9OXBjFeswtwxxk.png\",srcSet:\"https://framerusercontent.com/images/78ONhbIcA9bq9OXBjFeswtwxxk.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/78ONhbIcA9bq9OXBjFeswtwxxk.png?scale-down-to=2048 2047w,https://framerusercontent.com/images/78ONhbIcA9bq9OXBjFeswtwxxk.png?scale-down-to=4096 4095w,https://framerusercontent.com/images/78ONhbIcA9bq9OXBjFeswtwxxk.png 7783w\"},className:\"framer-ux9i16\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay6=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-1v9kdi9\",\"data-framer-name\":\"Double Like\",id:\"1v9kdi9\",onMouseEnter:onMouseEntertxyyif({overlay:overlay6}),ref:ref13,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay6.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref13,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1v9kdi9\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay6.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"double-like\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"un65GxFuL\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"rHP2UCKCv\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-866owx framer-lux5qc\",exit:animation14,initial:animation16,ref:ref14,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:111,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Bxn7ZKsGSZhjIyNEHQ8DU8dvhw4.png\"},className:\"framer-1onqeto\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay7=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-1txec1a\",\"data-framer-name\":\"Mattar Farm\",id:\"1txec1a\",onMouseEnter:onMouseEntertxyyif({overlay:overlay7}),ref:ref15,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay7.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref15,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1txec1a\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay7.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"mattar-farm\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"nifb0FmlV\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"EhE2QyEdU\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-1lwltmd framer-lux5qc\",exit:animation14,initial:animation16,ref:ref16,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:145,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KRkWvlI1teB0Xi39c62nbKl0Y.png\"},className:\"framer-1j7an92\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay8=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-1ji70av\",\"data-framer-name\":\"Shawarma Abu Alabid\",id:\"1ji70av\",onMouseEnter:onMouseEntertxyyif({overlay:overlay8}),ref:ref17,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay8.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref17,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1ji70av\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay8.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"shawarma-abu-alabid\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"p8vvFPVQI\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"VISJ2eSpR\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-tr4v7v framer-lux5qc\",exit:animation14,initial:animation16,ref:ref18,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:300,pixelWidth:290,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0VRLxI3sJaC9KpNqBC8CLQYzsBc.png\"},className:\"framer-1tzzjxd\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay9=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-645bz\",\"data-framer-name\":\"Tacos Los Hermanos\",id:\"645bz\",onMouseEnter:onMouseEntertxyyif({overlay:overlay9}),ref:ref19,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay9.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref19,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"645bz\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay9.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"tacos-los-hermanos\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"GWu0RfIJK\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"RJ8IwX4qx\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-l4e2ag framer-lux5qc\",exit:animation14,initial:animation16,ref:ref20,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:179,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0r8u64EIUBGFw8z8lkVwoNPDQYs.png\"},className:\"framer-efhb4r\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay10=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-1o3y5v4\",\"data-framer-name\":\"Choco Fondue\",id:\"1o3y5v4\",onMouseEnter:onMouseEntertxyyif({overlay:overlay10}),ref:ref21,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay10.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref21,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1o3y5v4\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay10.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"choco-fondue\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"hEt2vLu7G\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"hutT2j2Mr\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-942w58 framer-lux5qc\",exit:animation14,initial:animation16,ref:ref22,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:895,pixelWidth:780,positionX:\"center\",positionY:\"center\",sizes:\"130.9px\",src:\"https://framerusercontent.com/images/NT128m5ubEIWKaM4GOELzusuw40.png\",srcSet:\"https://framerusercontent.com/images/NT128m5ubEIWKaM4GOELzusuw40.png 780w\"},className:\"framer-ako9oi\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay11=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-2cm00k\",\"data-framer-name\":\"Schnitzer\",id:\"2cm00k\",onMouseEnter:onMouseEntertxyyif({overlay:overlay11}),ref:ref23,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay11.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref23,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"2cm00k\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay11.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"schnitzery\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"B3YVIEj9c\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"AU0cjZnpu\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-9t2txi framer-lux5qc\",exit:animation14,initial:animation16,ref:ref24,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:283,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KDhfZyVLCBKX5BPJGSnsdmXxE.png\"},className:\"framer-1jcq9nk\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay12=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-mm9p1o\",\"data-framer-name\":\"Shaka Waka\",id:\"mm9p1o\",onMouseEnter:onMouseEntertxyyif({overlay:overlay12}),ref:ref25,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay12.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref25,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"mm9p1o\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay12.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"shaka-waka\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"mXWkOlYwg\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"RdhmEtGnu\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-ftj8ic framer-lux5qc\",exit:animation14,initial:animation16,ref:ref26,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:300,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/djpQGgjYwkprCuSevNBUx4oUz0.png\"},className:\"framer-1pr8e4t\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay13=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-50se2r\",\"data-framer-name\":\"Geppetto\",id:\"50se2r\",onMouseEnter:onMouseEntertxyyif({overlay:overlay13}),ref:ref27,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay13.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref27,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"50se2r\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay13.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"geppetto\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"GYgzqKZ78\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"MSFF2MByy\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-10heyr0 framer-lux5qc\",exit:animation14,initial:animation16,ref:ref28,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:299,pixelWidth:198,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/rsC1rrhcrhXiY7eXCMwJbuCEQ.png\"},className:\"framer-1s7u868\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay14=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-1hgn0j8\",\"data-framer-name\":\"Alba Street\",id:\"1hgn0j8\",onMouseEnter:onMouseEntertxyyif({overlay:overlay14}),ref:ref29,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay14.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref29,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1hgn0j8\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay14.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"alba-street\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"OjIywUarM\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"LyRS9OBtt\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-r7vmnm framer-lux5qc\",exit:animation14,initial:animation16,ref:ref30,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:129,pixelWidth:298,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dZnY1nzOyCHCqcOfg1qFUZUAwdw.png\"},className:\"framer-1kudame\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay15=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-i04iy9\",\"data-framer-name\":\"Eat Majama\",id:\"i04iy9\",onMouseEnter:onMouseEntertxyyif({overlay:overlay15}),ref:ref31,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay15.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref31,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"i04iy9\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay15.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"eat-majama\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"Rod8uTSy2\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"cuPJChXkv\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-1oxu7jz framer-lux5qc\",exit:animation14,initial:animation16,ref:ref32,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:69,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3ftazM8sOnIsIhUCO3XBFnPJ7k.png\"},className:\"framer-1oxj0fp\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay16=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-bx72uh\",\"data-framer-name\":\"Hampstead\",id:\"bx72uh\",onMouseEnter:onMouseEntertxyyif({overlay:overlay16}),ref:ref33,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay16.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref33,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"bx72uh\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay16.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"CStsfl8Jt\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-kqen0m framer-lux5qc\",exit:animation14,initial:animation16,ref:ref34,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:4600,pixelWidth:14313,positionX:\"center\",positionY:\"center\",sizes:\"130.9px\",src:\"https://framerusercontent.com/images/t2De41MtlcWKgW3qGhvoMiBVzUU.png\",srcSet:\"https://framerusercontent.com/images/t2De41MtlcWKgW3qGhvoMiBVzUU.png?scale-down-to=512 512w,https://framerusercontent.com/images/t2De41MtlcWKgW3qGhvoMiBVzUU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/t2De41MtlcWKgW3qGhvoMiBVzUU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/t2De41MtlcWKgW3qGhvoMiBVzUU.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/t2De41MtlcWKgW3qGhvoMiBVzUU.png 14313w\"},className:\"framer-1eui8qc\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay17=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-1s00tag\",\"data-framer-name\":\"House of Cones\",id:\"1s00tag\",onMouseEnter:onMouseEntertxyyif({overlay:overlay17}),ref:ref35,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay17.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref35,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1s00tag\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay17.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"house-of-cones\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"wHQk3GADy\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"tnLgTgIet\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-40dedm framer-lux5qc\",exit:animation14,initial:animation16,ref:ref36,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:163,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RUGSt9DEEewDtrs8U4bSQ1D3OA.png\"},className:\"framer-11fqvs2\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay18=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-1wdrftl\",\"data-framer-name\":\"Dip Dash\",id:\"1wdrftl\",onMouseEnter:onMouseEntertxyyif({overlay:overlay18}),ref:ref37,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay18.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref37,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1wdrftl\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay18.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"dip-dash\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"T0QfQkKGB\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"RIiQBu4pF\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-1wdhxsm framer-lux5qc\",exit:animation14,initial:animation16,ref:ref38,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:72,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pKh611ZDn118ma9DkjXovzulE5E.png\"},className:\"framer-itlsfn\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay19=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-qap42s\",\"data-framer-name\":\"Hushh\",id:\"qap42s\",onMouseEnter:onMouseEntertxyyif({overlay:overlay19}),ref:ref39,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay19.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref39,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"qap42s\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay19.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"hushh\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"sOV9kaep2\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"tpD23wszR\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-1rv0kzb framer-lux5qc\",exit:animation14,initial:animation16,ref:ref40,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:81,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VDOESy47WA0lLSexKE76q6lIy6M.png\"},className:\"framer-3jqqjc\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay20=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-16p5s0j\",\"data-framer-name\":\"Yogurtworld\",id:\"16p5s0j\",onMouseEnter:onMouseEntertxyyif({overlay:overlay20}),ref:ref41,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay20.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref41,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"16p5s0j\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay20.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"yougurtworld\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"PaD5k9Y5C\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"yBvcMIBV9\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-n0mfwo framer-lux5qc\",exit:animation14,initial:animation16,ref:ref42,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:300,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ixznhTD6RhbaxEhhuTofhNnVQ.png\"},className:\"framer-1rdxudj\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay21=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-6fz7hj\",\"data-framer-name\":\"Anarak\",id:\"6fz7hj\",onMouseEnter:onMouseEntertxyyif({overlay:overlay21}),ref:ref43,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay21.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref43,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"6fz7hj\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay21.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"anarak\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"cKOAKqWsc\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"shKqOvplm\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-xdb9df framer-lux5qc\",exit:animation14,initial:animation16,ref:ref44,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:43,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CyRLXP4jAxENTc1qaPDgbYBCK5A.png\"},className:\"framer-1ae0i5m\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay22=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-1j0d6gl\",\"data-framer-name\":\"Manoushe w Fokara\",id:\"1j0d6gl\",onMouseEnter:onMouseEntertxyyif({overlay:overlay22}),ref:ref45,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay22.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref45,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1j0d6gl\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay22.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"manoushe-w-fokara\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"NIaP4ufvK\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"wyYRpNSga\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-rvw34s framer-lux5qc\",exit:animation14,initial:animation16,ref:ref46,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:109,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7pi0RW4aOISMB5uQqhEBJ7APw.png\"},className:\"framer-j2y1f7\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay23=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-2wtots\",\"data-framer-name\":\"PitaGreek\",id:\"2wtots\",onMouseEnter:onMouseEntertxyyif({overlay:overlay23}),ref:ref47,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay23.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref47,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"2wtots\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay23.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"w6kkuecH8\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-3mgndc framer-lux5qc\",exit:animation14,initial:animation16,ref:ref48,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:6045,pixelWidth:9203,positionX:\"center\",positionY:\"center\",sizes:\"130.9px\",src:\"https://framerusercontent.com/images/dBNTYRyoV54LwiqAJnIa7xZjMbU.png\",srcSet:\"https://framerusercontent.com/images/dBNTYRyoV54LwiqAJnIa7xZjMbU.png?scale-down-to=512 512w,https://framerusercontent.com/images/dBNTYRyoV54LwiqAJnIa7xZjMbU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dBNTYRyoV54LwiqAJnIa7xZjMbU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dBNTYRyoV54LwiqAJnIa7xZjMbU.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/dBNTYRyoV54LwiqAJnIa7xZjMbU.png 9203w\"},className:\"framer-1eznndt\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay24=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-ymcetq\",\"data-framer-name\":\"Kompay\",id:\"ymcetq\",onMouseEnter:onMouseEntertxyyif({overlay:overlay24}),ref:ref49,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay24.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref49,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"ymcetq\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay24.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"kompay\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"kcVVz4EI4\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"I_TC0utYC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-tus1o5 framer-lux5qc\",exit:animation14,initial:animation16,ref:ref50,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:74,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/fEerfszqRWm0OuT0B1rB1sCWpU.png\"},className:\"framer-1373wwh\"})})})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay25=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:205},className:\"framer-f21gs0\",\"data-framer-name\":\"Lebanushi\",id:\"f21gs0\",onMouseEnter:onMouseEntertxyyif({overlay:overlay25}),ref:ref51,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay25.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref51,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"f21gs0\",offsetX:14623787137679756e-21,offsetY:-128.1874637635192,onDismiss:overlay25.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rqaVR3Tjq:\"lebanushi\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"OuuCPQjvx\"}},webPageId:\"jBaGLHRfL\"},motionChild:true,nodeId:\"qb3LQo4tA\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{animate:animation15,className:\"framer-gfsl2c framer-lux5qc\",exit:animation14,initial:animation16,ref:ref52,role:\"dialog\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:96,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/p8IJnFlw0MYUlyrCj0tZoJSz2E.png\"},className:\"framer-52cu4p\"})})})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvbW11dGVycyBTYW5zIEV4dHJhQm9sZA==\",\"--framer-font-family\":'\"Commuters Sans ExtraBold\", \"Commuters Sans ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"88px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(0, 0, 0, 0)\",\"--framer-text-stroke-color\":\"rgba(0, 0, 0, 1)\",\"--framer-text-stroke-width\":\"3px\",\"--framer-text-transform\":\"uppercase\"},children:\"Explore the Distrikt\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvbW11dGVycyBTYW5zIEV4dHJhQm9sZA==\",\"--framer-font-family\":'\"Commuters Sans ExtraBold\", \"Commuters Sans ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"190px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(0, 0, 0, 0)\",\"--framer-text-stroke-color\":\"rgba(0, 0, 0, 1)\",\"--framer-text-stroke-width\":\"3px\",\"--framer-text-transform\":\"uppercase\"},children:\"Explore the Distrikt\"})}),className:\"framer-gdga7w\",fonts:[\"CUSTOM;Commuters Sans ExtraBold\"],transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:232,intrinsicWidth:523,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1980+-.1721),pixelHeight:232,pixelWidth:523,sizes:\"216px\",src:\"https://framerusercontent.com/images/9O6sLPuQdxGYcM7Q1xmDiri21ak.png\",srcSet:\"https://framerusercontent.com/images/9O6sLPuQdxGYcM7Q1xmDiri21ak.png?scale-down-to=512 512w,https://framerusercontent.com/images/9O6sLPuQdxGYcM7Q1xmDiri21ak.png 523w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:232,intrinsicWidth:523,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1906+0),pixelHeight:232,pixelWidth:523,sizes:\"331px\",src:\"https://framerusercontent.com/images/9O6sLPuQdxGYcM7Q1xmDiri21ak.png\",srcSet:\"https://framerusercontent.com/images/9O6sLPuQdxGYcM7Q1xmDiri21ak.png?scale-down-to=512 512w,https://framerusercontent.com/images/9O6sLPuQdxGYcM7Q1xmDiri21ak.png 523w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:232,intrinsicWidth:523,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1832.2+0),pixelHeight:232,pixelWidth:523,sizes:\"331px\",src:\"https://framerusercontent.com/images/9O6sLPuQdxGYcM7Q1xmDiri21ak.png\",srcSet:\"https://framerusercontent.com/images/9O6sLPuQdxGYcM7Q1xmDiri21ak.png?scale-down-to=512 512w,https://framerusercontent.com/images/9O6sLPuQdxGYcM7Q1xmDiri21ak.png 523w\"},className:\"framer-14au63v\",\"data-framer-name\":\"Torn paper06\",style:{rotate:180}})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qipich hidden-72rtr7 hidden-16rj8rp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cv8uqz\",\"data-styles-preset\":\"szJ0bJlwG\",style:{\"--framer-text-color\":\"var(--token-eab05eed-d8d0-4eb8-857d-2f13b73faff8, rgb(250, 55, 30))\"},children:\"Ground Floor,\"})}),className:\"framer-18n5dzf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12tiulm\",\"data-styles-preset\":\"XGIVLRVYK\",style:{\"--framer-text-color\":\"var(--token-0a6b2a1f-85c1-4551-bb2d-b018fac16b3d, rgb(0, 0, 0))\"},children:\"Dubai Mall, Fountain Views\"})}),className:\"framer-qwba7l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1v5y4wg\",\"data-styles-preset\":\"cgykqZ_EK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[\"Explore the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eab05eed-d8d0-4eb8-857d-2f13b73faff8, rgb(250, 55, 30))\"},children:\"Distrikt\"})]})}),className:\"framer-3ipx1a hidden-72rtr7 hidden-16rj8rp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2877.2),pixelHeight:1419,pixelWidth:2560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IK3uplOOiekaQlCyMDtMu3mnkf4.jpg\",srcSet:\"https://framerusercontent.com/images/IK3uplOOiekaQlCyMDtMu3mnkf4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IK3uplOOiekaQlCyMDtMu3mnkf4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IK3uplOOiekaQlCyMDtMu3mnkf4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IK3uplOOiekaQlCyMDtMu3mnkf4.jpg 2560w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2573),pixelHeight:1419,pixelWidth:2560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IK3uplOOiekaQlCyMDtMu3mnkf4.jpg\",srcSet:\"https://framerusercontent.com/images/IK3uplOOiekaQlCyMDtMu3mnkf4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IK3uplOOiekaQlCyMDtMu3mnkf4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IK3uplOOiekaQlCyMDtMu3mnkf4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IK3uplOOiekaQlCyMDtMu3mnkf4.jpg 2560w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2787.2),pixelHeight:1419,pixelWidth:2560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IK3uplOOiekaQlCyMDtMu3mnkf4.jpg\",srcSet:\"https://framerusercontent.com/images/IK3uplOOiekaQlCyMDtMu3mnkf4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IK3uplOOiekaQlCyMDtMu3mnkf4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IK3uplOOiekaQlCyMDtMu3mnkf4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IK3uplOOiekaQlCyMDtMu3mnkf4.jpg 2560w\"},className:\"framer-1w6fdlf\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-h0oglh\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1617rtq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1v5y4wg\",\"data-styles-preset\":\"cgykqZ_EK\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Flavors of the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eab05eed-d8d0-4eb8-857d-2f13b73faff8, rgb(250, 55, 30))\"},children:\"World\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1v5y4wg\",\"data-styles-preset\":\"cgykqZ_EK\",children:[\"Flavors of the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eab05eed-d8d0-4eb8-857d-2f13b73faff8, rgb(250, 55, 30))\"},children:\"World\"})]})}),className:\"framer-1c8f2et\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6icnxw-container hidden-vls3lh\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aNfPfJJub\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lWV4KS9lk:{gap:60}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:80,height:\"100%\",id:\"aNfPfJJub\",layoutId:\"aNfPfJJub\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"hushh\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"sOV9kaep2\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-89g70g-container\",inComponentSlot:true,nodeId:\"Z7pCW16l5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/ZHbSavGoziCV70SZynJHgktg.png\",srcSet:\"https://framerusercontent.com/images/ZHbSavGoziCV70SZynJHgktg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZHbSavGoziCV70SZynJHgktg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZHbSavGoziCV70SZynJHgktg.png 1055w\"},\"\"),height:\"100%\",id:\"Z7pCW16l5\",layoutId:\"Z7pCW16l5\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"alba-street\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"OjIywUarM\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16e8wxp-container\",inComponentSlot:true,nodeId:\"Grrqolk94\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/2CfJx5saNhBS4Sh1TqFyQTs10.png\",srcSet:\"https://framerusercontent.com/images/2CfJx5saNhBS4Sh1TqFyQTs10.png?scale-down-to=512 512w,https://framerusercontent.com/images/2CfJx5saNhBS4Sh1TqFyQTs10.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2CfJx5saNhBS4Sh1TqFyQTs10.png 1055w\"},\"\"),height:\"100%\",id:\"Grrqolk94\",layoutId:\"Grrqolk94\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks1[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"anarak\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"cKOAKqWsc\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11fugb0-container\",inComponentSlot:true,nodeId:\"OdkZWQGB9\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/PkLZxo2aP3hQjMBhpGsKLOgEtmQ.png\",srcSet:\"https://framerusercontent.com/images/PkLZxo2aP3hQjMBhpGsKLOgEtmQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/PkLZxo2aP3hQjMBhpGsKLOgEtmQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PkLZxo2aP3hQjMBhpGsKLOgEtmQ.png 1055w\"},\"\"),height:\"100%\",id:\"OdkZWQGB9\",layoutId:\"OdkZWQGB9\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks2[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"choco-fondue\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"hEt2vLu7G\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q52gs3-container\",inComponentSlot:true,nodeId:\"a1YCioabG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/XG4EIKCzAdtVEj7biIx0XNfp3Xg.png\",srcSet:\"https://framerusercontent.com/images/XG4EIKCzAdtVEj7biIx0XNfp3Xg.png?scale-down-to=512 512w,https://framerusercontent.com/images/XG4EIKCzAdtVEj7biIx0XNfp3Xg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XG4EIKCzAdtVEj7biIx0XNfp3Xg.png 1055w\"},\"\"),height:\"100%\",id:\"a1YCioabG\",layoutId:\"a1YCioabG\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks3[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"dip-dash\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"T0QfQkKGB\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-y1x9dh-container\",inComponentSlot:true,nodeId:\"xTrAxsChK\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/4tbmkEEdyIBaDIKdCThoEa2EUE.png\",srcSet:\"https://framerusercontent.com/images/4tbmkEEdyIBaDIKdCThoEa2EUE.png?scale-down-to=512 512w,https://framerusercontent.com/images/4tbmkEEdyIBaDIKdCThoEa2EUE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4tbmkEEdyIBaDIKdCThoEa2EUE.png 1055w\"},\"\"),height:\"100%\",id:\"xTrAxsChK\",layoutId:\"xTrAxsChK\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks4[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"double-like\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"un65GxFuL\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1omu9oz-container\",inComponentSlot:true,nodeId:\"OnnDBfOcL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/wXWTqspIeIu3IjdoUdKdSmbrlyg.png\",srcSet:\"https://framerusercontent.com/images/wXWTqspIeIu3IjdoUdKdSmbrlyg.png?scale-down-to=512 512w,https://framerusercontent.com/images/wXWTqspIeIu3IjdoUdKdSmbrlyg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wXWTqspIeIu3IjdoUdKdSmbrlyg.png 1055w\"},\"\"),height:\"100%\",id:\"OnnDBfOcL\",layoutId:\"OnnDBfOcL\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks5[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"eat-majama\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"Rod8uTSy2\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-kgg18s-container\",inComponentSlot:true,nodeId:\"HXUJxO30O\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/8wN2iBxnn6Mnzv6WTLvDCYE1oTI.png\",srcSet:\"https://framerusercontent.com/images/8wN2iBxnn6Mnzv6WTLvDCYE1oTI.png?scale-down-to=512 512w,https://framerusercontent.com/images/8wN2iBxnn6Mnzv6WTLvDCYE1oTI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8wN2iBxnn6Mnzv6WTLvDCYE1oTI.png 1055w\"},\"\"),height:\"100%\",id:\"HXUJxO30O\",layoutId:\"HXUJxO30O\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks6[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"geppetto\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"GYgzqKZ78\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-t4fa1n-container\",inComponentSlot:true,nodeId:\"Sjig2LEBh\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/WMBmOseXpX6b61ifr3KyEc9mqU.png\",srcSet:\"https://framerusercontent.com/images/WMBmOseXpX6b61ifr3KyEc9mqU.png?scale-down-to=512 512w,https://framerusercontent.com/images/WMBmOseXpX6b61ifr3KyEc9mqU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WMBmOseXpX6b61ifr3KyEc9mqU.png 1055w\"},\"\"),height:\"100%\",id:\"Sjig2LEBh\",layoutId:\"Sjig2LEBh\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks7[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"house-of-cones\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"wHQk3GADy\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-101ypz4-container\",inComponentSlot:true,nodeId:\"bPDiRRTmu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/zPaJ6Q4MjdbZlkbjnEBNzQpE8.png\",srcSet:\"https://framerusercontent.com/images/zPaJ6Q4MjdbZlkbjnEBNzQpE8.png?scale-down-to=512 512w,https://framerusercontent.com/images/zPaJ6Q4MjdbZlkbjnEBNzQpE8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zPaJ6Q4MjdbZlkbjnEBNzQpE8.png 1055w\"},\"\"),height:\"100%\",id:\"bPDiRRTmu\",layoutId:\"bPDiRRTmu\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks8[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"kompay\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"kcVVz4EI4\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-cddfu4-container\",inComponentSlot:true,nodeId:\"txgzFiJzr\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/5WOS0nszFPzqpkagi86omppjPoM.png\",srcSet:\"https://framerusercontent.com/images/5WOS0nszFPzqpkagi86omppjPoM.png?scale-down-to=512 512w,https://framerusercontent.com/images/5WOS0nszFPzqpkagi86omppjPoM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5WOS0nszFPzqpkagi86omppjPoM.png 1055w\"},\"\"),height:\"100%\",id:\"txgzFiJzr\",layoutId:\"txgzFiJzr\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks9[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"la-barra\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"T7t18I1pE\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-fqrfhv-container\",inComponentSlot:true,nodeId:\"rIN0GvdBG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/lEmKMdIgLYwHanWyZmrmIP6QyBI.png\",srcSet:\"https://framerusercontent.com/images/lEmKMdIgLYwHanWyZmrmIP6QyBI.png?scale-down-to=512 512w,https://framerusercontent.com/images/lEmKMdIgLYwHanWyZmrmIP6QyBI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lEmKMdIgLYwHanWyZmrmIP6QyBI.png 1055w\"},\"\"),height:\"100%\",id:\"rIN0GvdBG\",layoutId:\"rIN0GvdBG\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks10[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"lebanushi\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"OuuCPQjvx\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ys3ilr-container\",inComponentSlot:true,nodeId:\"blSws5l2a\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/0L9uuFysptFQgHehfLixhYqAE.png\",srcSet:\"https://framerusercontent.com/images/0L9uuFysptFQgHehfLixhYqAE.png?scale-down-to=512 512w,https://framerusercontent.com/images/0L9uuFysptFQgHehfLixhYqAE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0L9uuFysptFQgHehfLixhYqAE.png 1055w\"},\"\"),height:\"100%\",id:\"blSws5l2a\",layoutId:\"blSws5l2a\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks11[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"manoushe-w-fokara\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"NIaP4ufvK\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11jhox9-container\",inComponentSlot:true,nodeId:\"MODvVDlku\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/IIRG1Xo3Bw01k2Irg9vIih6bVO0.png\",srcSet:\"https://framerusercontent.com/images/IIRG1Xo3Bw01k2Irg9vIih6bVO0.png?scale-down-to=512 512w,https://framerusercontent.com/images/IIRG1Xo3Bw01k2Irg9vIih6bVO0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IIRG1Xo3Bw01k2Irg9vIih6bVO0.png 1055w\"},\"\"),height:\"100%\",id:\"MODvVDlku\",layoutId:\"MODvVDlku\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks12[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"yougurtworld\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"PaD5k9Y5C\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14zdz0j-container\",inComponentSlot:true,nodeId:\"Sr8XN65HC\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/0sUQiWGIz2L4WpGuVp720aZkc.png\",srcSet:\"https://framerusercontent.com/images/0sUQiWGIz2L4WpGuVp720aZkc.png?scale-down-to=512 512w,https://framerusercontent.com/images/0sUQiWGIz2L4WpGuVp720aZkc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0sUQiWGIz2L4WpGuVp720aZkc.png 1055w\"},\"\"),height:\"100%\",id:\"Sr8XN65HC\",layoutId:\"Sr8XN65HC\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks13[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"mattar-farm\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"nifb0FmlV\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3iooc9-container\",inComponentSlot:true,nodeId:\"aayQ9dP0o\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/OPE3xxsZkmfkpb4PECXapE3lRI.png\",srcSet:\"https://framerusercontent.com/images/OPE3xxsZkmfkpb4PECXapE3lRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/OPE3xxsZkmfkpb4PECXapE3lRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OPE3xxsZkmfkpb4PECXapE3lRI.png 1055w\"},\"\"),height:\"100%\",id:\"aayQ9dP0o\",layoutId:\"aayQ9dP0o\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks14[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"meet-my-sweet\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"dXRkCUM2E\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-phb1bl-container\",inComponentSlot:true,nodeId:\"FUO_DS2Mm\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/cjYfE6GJJqWn2T8LvZnODDSWksI.png\",srcSet:\"https://framerusercontent.com/images/cjYfE6GJJqWn2T8LvZnODDSWksI.png?scale-down-to=512 512w,https://framerusercontent.com/images/cjYfE6GJJqWn2T8LvZnODDSWksI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cjYfE6GJJqWn2T8LvZnODDSWksI.png 1055w\"},\"\"),height:\"100%\",id:\"FUO_DS2Mm\",layoutId:\"FUO_DS2Mm\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks15[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"saigon-taste-of-vietnam\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"ON5BSxJKI\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-uqbzth-container\",inComponentSlot:true,nodeId:\"ipHSbjjiB\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/4jdZP1I0THmd0k3rtA3YEqSncdA.png\",srcSet:\"https://framerusercontent.com/images/4jdZP1I0THmd0k3rtA3YEqSncdA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4jdZP1I0THmd0k3rtA3YEqSncdA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4jdZP1I0THmd0k3rtA3YEqSncdA.png 1055w\"},\"\"),height:\"100%\",id:\"ipHSbjjiB\",layoutId:\"ipHSbjjiB\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks16[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"schnitzery\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"B3YVIEj9c\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-nzs4ez-container\",inComponentSlot:true,nodeId:\"rImSWVYaY\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/VqpuvK78AUIzITuaQmdKFz6mdoY.png\",srcSet:\"https://framerusercontent.com/images/VqpuvK78AUIzITuaQmdKFz6mdoY.png?scale-down-to=512 512w,https://framerusercontent.com/images/VqpuvK78AUIzITuaQmdKFz6mdoY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VqpuvK78AUIzITuaQmdKFz6mdoY.png 1055w\"},\"\"),height:\"100%\",id:\"rImSWVYaY\",layoutId:\"rImSWVYaY\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks17[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"shaka-waka\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"mXWkOlYwg\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks18=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2c9vq-container\",inComponentSlot:true,nodeId:\"Gw7XPGqAW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/LdDaqAymogJ7iWcJXHeZWeHM.png\",srcSet:\"https://framerusercontent.com/images/LdDaqAymogJ7iWcJXHeZWeHM.png?scale-down-to=512 512w,https://framerusercontent.com/images/LdDaqAymogJ7iWcJXHeZWeHM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LdDaqAymogJ7iWcJXHeZWeHM.png 1055w\"},\"\"),height:\"100%\",id:\"Gw7XPGqAW\",layoutId:\"Gw7XPGqAW\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks18[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"shawarma-abu-al-abid\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"p8vvFPVQI\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks19=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-abyes3-container\",inComponentSlot:true,nodeId:\"AW8h99Kuk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/r4lcagTQhfFfiIOqb8uh6Tg1to.png\",srcSet:\"https://framerusercontent.com/images/r4lcagTQhfFfiIOqb8uh6Tg1to.png?scale-down-to=512 512w,https://framerusercontent.com/images/r4lcagTQhfFfiIOqb8uh6Tg1to.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/r4lcagTQhfFfiIOqb8uh6Tg1to.png 1055w\"},\"\"),height:\"100%\",id:\"AW8h99Kuk\",layoutId:\"AW8h99Kuk\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks19[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"tacos-los-hermanos\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"GWu0RfIJK\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks20=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-cb609i-container\",inComponentSlot:true,nodeId:\"XSksKVOt5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/yhUdfM7qgQAFdjgzSYGf9LUIQo.png\",srcSet:\"https://framerusercontent.com/images/yhUdfM7qgQAFdjgzSYGf9LUIQo.png?scale-down-to=512 512w,https://framerusercontent.com/images/yhUdfM7qgQAFdjgzSYGf9LUIQo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yhUdfM7qgQAFdjgzSYGf9LUIQo.png 1055w\"},\"\"),height:\"100%\",id:\"XSksKVOt5\",layoutId:\"XSksKVOt5\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks20[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"wontoneria\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"a1d5BBqPA\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks21=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hicnfq-container\",inComponentSlot:true,nodeId:\"CO2SMgT6u\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/l1bmASt4mYSltgmNGnbaDRb5fQE.png\",srcSet:\"https://framerusercontent.com/images/l1bmASt4mYSltgmNGnbaDRb5fQE.png?scale-down-to=512 512w,https://framerusercontent.com/images/l1bmASt4mYSltgmNGnbaDRb5fQE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/l1bmASt4mYSltgmNGnbaDRb5fQE.png 1055w\"},\"\"),height:\"100%\",id:\"CO2SMgT6u\",layoutId:\"CO2SMgT6u\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks21[0],variant:\"iFyU494UF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"yogurtworld\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"PaD5k9Y5C\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks22=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"442px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-syklww-container\",inComponentSlot:true,nodeId:\"mJT0_lfBI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/ifAQeCw4NFZMEEWoO7sa3oQXEs.png\",srcSet:\"https://framerusercontent.com/images/ifAQeCw4NFZMEEWoO7sa3oQXEs.png?scale-down-to=512 512w,https://framerusercontent.com/images/ifAQeCw4NFZMEEWoO7sa3oQXEs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ifAQeCw4NFZMEEWoO7sa3oQXEs.png 1055w\"},\"\"),height:\"100%\",id:\"mJT0_lfBI\",layoutId:\"mJT0_lfBI\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks22[0],variant:\"iFyU494UF\",width:\"100%\"})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wi9rrv-container hidden-72rtr7 hidden-16rj8rp\",isModuleExternal:true,nodeId:\"VwcgihsMx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"VwcgihsMx\",intervalControl:1.5,itemAmount:1,layoutId:\"VwcgihsMx\",padding:2,paddingBottom:2,paddingLeft:2,paddingPerSide:false,paddingRight:2,paddingTop:2,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"hushh\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"sOV9kaep2\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks23=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qtkbb7-container\",inComponentSlot:true,nodeId:\"FqPLlzJHJ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/ZHbSavGoziCV70SZynJHgktg.png\",srcSet:\"https://framerusercontent.com/images/ZHbSavGoziCV70SZynJHgktg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZHbSavGoziCV70SZynJHgktg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZHbSavGoziCV70SZynJHgktg.png 1055w\"},\"\"),height:\"100%\",id:\"FqPLlzJHJ\",layoutId:\"FqPLlzJHJ\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks23[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"alba-street\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"OjIywUarM\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks24=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19lpnhk-container\",inComponentSlot:true,nodeId:\"QFWOSrNkH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/2CfJx5saNhBS4Sh1TqFyQTs10.png\",srcSet:\"https://framerusercontent.com/images/2CfJx5saNhBS4Sh1TqFyQTs10.png?scale-down-to=512 512w,https://framerusercontent.com/images/2CfJx5saNhBS4Sh1TqFyQTs10.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2CfJx5saNhBS4Sh1TqFyQTs10.png 1055w\"},\"\"),height:\"100%\",id:\"QFWOSrNkH\",layoutId:\"QFWOSrNkH\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks24[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"anarak\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"cKOAKqWsc\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks25=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-zsxebq-container\",inComponentSlot:true,nodeId:\"kvKEYaY2t\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/PkLZxo2aP3hQjMBhpGsKLOgEtmQ.png\",srcSet:\"https://framerusercontent.com/images/PkLZxo2aP3hQjMBhpGsKLOgEtmQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/PkLZxo2aP3hQjMBhpGsKLOgEtmQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PkLZxo2aP3hQjMBhpGsKLOgEtmQ.png 1055w\"},\"\"),height:\"100%\",id:\"kvKEYaY2t\",layoutId:\"kvKEYaY2t\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks25[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"choco-fondue\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"hEt2vLu7G\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks26=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ibdix0-container\",inComponentSlot:true,nodeId:\"lbEP1jwSk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/XG4EIKCzAdtVEj7biIx0XNfp3Xg.png\",srcSet:\"https://framerusercontent.com/images/XG4EIKCzAdtVEj7biIx0XNfp3Xg.png?scale-down-to=512 512w,https://framerusercontent.com/images/XG4EIKCzAdtVEj7biIx0XNfp3Xg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XG4EIKCzAdtVEj7biIx0XNfp3Xg.png 1055w\"},\"\"),height:\"100%\",id:\"lbEP1jwSk\",layoutId:\"lbEP1jwSk\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks26[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"dip-dash\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"T0QfQkKGB\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks27=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14we7ma-container\",inComponentSlot:true,nodeId:\"MtSY20OkP\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/4tbmkEEdyIBaDIKdCThoEa2EUE.png\",srcSet:\"https://framerusercontent.com/images/4tbmkEEdyIBaDIKdCThoEa2EUE.png?scale-down-to=512 512w,https://framerusercontent.com/images/4tbmkEEdyIBaDIKdCThoEa2EUE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4tbmkEEdyIBaDIKdCThoEa2EUE.png 1055w\"},\"\"),height:\"100%\",id:\"MtSY20OkP\",layoutId:\"MtSY20OkP\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks27[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"double-like\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"un65GxFuL\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks28=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mn48qh-container\",inComponentSlot:true,nodeId:\"Sd_YyTxgy\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/wXWTqspIeIu3IjdoUdKdSmbrlyg.png\",srcSet:\"https://framerusercontent.com/images/wXWTqspIeIu3IjdoUdKdSmbrlyg.png?scale-down-to=512 512w,https://framerusercontent.com/images/wXWTqspIeIu3IjdoUdKdSmbrlyg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wXWTqspIeIu3IjdoUdKdSmbrlyg.png 1055w\"},\"\"),height:\"100%\",id:\"Sd_YyTxgy\",layoutId:\"Sd_YyTxgy\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks28[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"eat-majama\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"Rod8uTSy2\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks29=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qw6dt-container\",inComponentSlot:true,nodeId:\"Qbxh2eH27\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/8wN2iBxnn6Mnzv6WTLvDCYE1oTI.png\",srcSet:\"https://framerusercontent.com/images/8wN2iBxnn6Mnzv6WTLvDCYE1oTI.png?scale-down-to=512 512w,https://framerusercontent.com/images/8wN2iBxnn6Mnzv6WTLvDCYE1oTI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8wN2iBxnn6Mnzv6WTLvDCYE1oTI.png 1055w\"},\"\"),height:\"100%\",id:\"Qbxh2eH27\",layoutId:\"Qbxh2eH27\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks29[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"geppetto\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"GYgzqKZ78\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks30=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1izom2v-container\",inComponentSlot:true,nodeId:\"GWD7r165_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/WMBmOseXpX6b61ifr3KyEc9mqU.png\",srcSet:\"https://framerusercontent.com/images/WMBmOseXpX6b61ifr3KyEc9mqU.png?scale-down-to=512 512w,https://framerusercontent.com/images/WMBmOseXpX6b61ifr3KyEc9mqU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WMBmOseXpX6b61ifr3KyEc9mqU.png 1055w\"},\"\"),height:\"100%\",id:\"GWD7r165_\",layoutId:\"GWD7r165_\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks30[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"house-of-cones\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"wHQk3GADy\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks31=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gv6tnr-container\",inComponentSlot:true,nodeId:\"xNmtf68Bl\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/zPaJ6Q4MjdbZlkbjnEBNzQpE8.png\",srcSet:\"https://framerusercontent.com/images/zPaJ6Q4MjdbZlkbjnEBNzQpE8.png?scale-down-to=512 512w,https://framerusercontent.com/images/zPaJ6Q4MjdbZlkbjnEBNzQpE8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zPaJ6Q4MjdbZlkbjnEBNzQpE8.png 1055w\"},\"\"),height:\"100%\",id:\"xNmtf68Bl\",layoutId:\"xNmtf68Bl\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks31[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"kompay\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"kcVVz4EI4\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks32=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1em7nd9-container\",inComponentSlot:true,nodeId:\"elBbWaQoc\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/5WOS0nszFPzqpkagi86omppjPoM.png\",srcSet:\"https://framerusercontent.com/images/5WOS0nszFPzqpkagi86omppjPoM.png?scale-down-to=512 512w,https://framerusercontent.com/images/5WOS0nszFPzqpkagi86omppjPoM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5WOS0nszFPzqpkagi86omppjPoM.png 1055w\"},\"\"),height:\"100%\",id:\"elBbWaQoc\",layoutId:\"elBbWaQoc\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks32[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"la-barra\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"T7t18I1pE\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks33=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dh3wiw-container\",inComponentSlot:true,nodeId:\"IfEGejbDP\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/lEmKMdIgLYwHanWyZmrmIP6QyBI.png\",srcSet:\"https://framerusercontent.com/images/lEmKMdIgLYwHanWyZmrmIP6QyBI.png?scale-down-to=512 512w,https://framerusercontent.com/images/lEmKMdIgLYwHanWyZmrmIP6QyBI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lEmKMdIgLYwHanWyZmrmIP6QyBI.png 1055w\"},\"\"),height:\"100%\",id:\"IfEGejbDP\",layoutId:\"IfEGejbDP\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks33[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"lebanushi\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"OuuCPQjvx\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks34=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x8ejm2-container\",inComponentSlot:true,nodeId:\"IEHxEaAWf\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/0L9uuFysptFQgHehfLixhYqAE.png\",srcSet:\"https://framerusercontent.com/images/0L9uuFysptFQgHehfLixhYqAE.png?scale-down-to=512 512w,https://framerusercontent.com/images/0L9uuFysptFQgHehfLixhYqAE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0L9uuFysptFQgHehfLixhYqAE.png 1055w\"},\"\"),height:\"100%\",id:\"IEHxEaAWf\",layoutId:\"IEHxEaAWf\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks34[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"mandy-s-bakery\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"KHkmHq0Pa\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks35=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13n88cf-container\",inComponentSlot:true,nodeId:\"SEcmxZ5oW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/IIRG1Xo3Bw01k2Irg9vIih6bVO0.png\",srcSet:\"https://framerusercontent.com/images/IIRG1Xo3Bw01k2Irg9vIih6bVO0.png?scale-down-to=512 512w,https://framerusercontent.com/images/IIRG1Xo3Bw01k2Irg9vIih6bVO0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IIRG1Xo3Bw01k2Irg9vIih6bVO0.png 1055w\"},\"\"),height:\"100%\",id:\"SEcmxZ5oW\",layoutId:\"SEcmxZ5oW\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks35[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"manoushe-w-fokara\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"NIaP4ufvK\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks36=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-111e0py-container\",inComponentSlot:true,nodeId:\"Fn6Xgacjp\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/0sUQiWGIz2L4WpGuVp720aZkc.png\",srcSet:\"https://framerusercontent.com/images/0sUQiWGIz2L4WpGuVp720aZkc.png?scale-down-to=512 512w,https://framerusercontent.com/images/0sUQiWGIz2L4WpGuVp720aZkc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0sUQiWGIz2L4WpGuVp720aZkc.png 1055w\"},\"\"),height:\"100%\",id:\"Fn6Xgacjp\",layoutId:\"Fn6Xgacjp\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks36[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"mattar-farm\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"nifb0FmlV\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks37=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-g99vnj-container\",inComponentSlot:true,nodeId:\"ho6jLUxc8\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/OPE3xxsZkmfkpb4PECXapE3lRI.png\",srcSet:\"https://framerusercontent.com/images/OPE3xxsZkmfkpb4PECXapE3lRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/OPE3xxsZkmfkpb4PECXapE3lRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OPE3xxsZkmfkpb4PECXapE3lRI.png 1055w\"},\"\"),height:\"100%\",id:\"ho6jLUxc8\",layoutId:\"ho6jLUxc8\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks37[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"meet-my-sweet\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"dXRkCUM2E\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks38=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gmv2h8-container\",inComponentSlot:true,nodeId:\"LO7XKYRgd\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/cjYfE6GJJqWn2T8LvZnODDSWksI.png\",srcSet:\"https://framerusercontent.com/images/cjYfE6GJJqWn2T8LvZnODDSWksI.png?scale-down-to=512 512w,https://framerusercontent.com/images/cjYfE6GJJqWn2T8LvZnODDSWksI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cjYfE6GJJqWn2T8LvZnODDSWksI.png 1055w\"},\"\"),height:\"100%\",id:\"LO7XKYRgd\",layoutId:\"LO7XKYRgd\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks38[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"saigon-taste-of-vietnam\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"ON5BSxJKI\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks39=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-urlaqf-container\",inComponentSlot:true,nodeId:\"bcK9_5mpS\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/4jdZP1I0THmd0k3rtA3YEqSncdA.png\",srcSet:\"https://framerusercontent.com/images/4jdZP1I0THmd0k3rtA3YEqSncdA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4jdZP1I0THmd0k3rtA3YEqSncdA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4jdZP1I0THmd0k3rtA3YEqSncdA.png 1055w\"},\"\"),height:\"100%\",id:\"bcK9_5mpS\",layoutId:\"bcK9_5mpS\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks39[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"schnitzery\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"B3YVIEj9c\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks40=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nzwig0-container\",inComponentSlot:true,nodeId:\"XMl0yGkN8\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/VqpuvK78AUIzITuaQmdKFz6mdoY.png\",srcSet:\"https://framerusercontent.com/images/VqpuvK78AUIzITuaQmdKFz6mdoY.png?scale-down-to=512 512w,https://framerusercontent.com/images/VqpuvK78AUIzITuaQmdKFz6mdoY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VqpuvK78AUIzITuaQmdKFz6mdoY.png 1055w\"},\"\"),height:\"100%\",id:\"XMl0yGkN8\",layoutId:\"XMl0yGkN8\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks40[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"shaka-waka\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"mXWkOlYwg\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks41=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1urblhu-container\",inComponentSlot:true,nodeId:\"I086zXUS6\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/LdDaqAymogJ7iWcJXHeZWeHM.png\",srcSet:\"https://framerusercontent.com/images/LdDaqAymogJ7iWcJXHeZWeHM.png?scale-down-to=512 512w,https://framerusercontent.com/images/LdDaqAymogJ7iWcJXHeZWeHM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LdDaqAymogJ7iWcJXHeZWeHM.png 1055w\"},\"\"),height:\"100%\",id:\"I086zXUS6\",layoutId:\"I086zXUS6\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks41[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"shawarma-abu-al-abid\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"p8vvFPVQI\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks42=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uah8en-container\",inComponentSlot:true,nodeId:\"FGhaJIMYv\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/r4lcagTQhfFfiIOqb8uh6Tg1to.png\",srcSet:\"https://framerusercontent.com/images/r4lcagTQhfFfiIOqb8uh6Tg1to.png?scale-down-to=512 512w,https://framerusercontent.com/images/r4lcagTQhfFfiIOqb8uh6Tg1to.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/r4lcagTQhfFfiIOqb8uh6Tg1to.png 1055w\"},\"\"),height:\"100%\",id:\"FGhaJIMYv\",layoutId:\"FGhaJIMYv\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks42[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"tacos-los-hermanos\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"GWu0RfIJK\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks43=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g48zt1-container\",inComponentSlot:true,nodeId:\"s5ZJ2A8O7\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/yhUdfM7qgQAFdjgzSYGf9LUIQo.png\",srcSet:\"https://framerusercontent.com/images/yhUdfM7qgQAFdjgzSYGf9LUIQo.png?scale-down-to=512 512w,https://framerusercontent.com/images/yhUdfM7qgQAFdjgzSYGf9LUIQo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yhUdfM7qgQAFdjgzSYGf9LUIQo.png 1055w\"},\"\"),height:\"100%\",id:\"s5ZJ2A8O7\",layoutId:\"s5ZJ2A8O7\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks43[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"wontoneria\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"a1d5BBqPA\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks44=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pospk6-container\",inComponentSlot:true,nodeId:\"ptLP2rNJX\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/l1bmASt4mYSltgmNGnbaDRb5fQE.png\",srcSet:\"https://framerusercontent.com/images/l1bmASt4mYSltgmNGnbaDRb5fQE.png?scale-down-to=512 512w,https://framerusercontent.com/images/l1bmASt4mYSltgmNGnbaDRb5fQE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/l1bmASt4mYSltgmNGnbaDRb5fQE.png 1055w\"},\"\"),height:\"100%\",id:\"ptLP2rNJX\",layoutId:\"ptLP2rNJX\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks44[0],variant:\"kdGMNog68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rqaVR3Tjq:\"yogurtworld\"},unresolvedPathSlugs:{rqaVR3Tjq:{collectionId:\"YBxkLgI0s\",collectionItemId:\"PaD5k9Y5C\"}},webPageId:\"jBaGLHRfL\"},implicitPathVariables:undefined}],children:resolvedLinks45=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:478,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-grzgyl-container\",inComponentSlot:true,nodeId:\"u_zdaf2Lj\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Restaurant_card,{geyZdHpR3:addImageAlt({src:\"https://framerusercontent.com/images/ifAQeCw4NFZMEEWoO7sa3oQXEs.png\",srcSet:\"https://framerusercontent.com/images/ifAQeCw4NFZMEEWoO7sa3oQXEs.png?scale-down-to=512 512w,https://framerusercontent.com/images/ifAQeCw4NFZMEEWoO7sa3oQXEs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ifAQeCw4NFZMEEWoO7sa3oQXEs.png 1055w\"},\"\"),height:\"100%\",id:\"u_zdaf2Lj\",layoutId:\"u_zdaf2Lj\",TCRR7aOi1:\"ha8ah\",U0G9gpgMo:resolvedLinks45[0],variant:\"kdGMNog68\",width:\"100%\"})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:944,intrinsicWidth:639,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2877.2+0),pixelHeight:944,pixelWidth:639,sizes:\"271px\",src:\"https://framerusercontent.com/images/Ds64pTX6ntXlOQ5nRft5rgqtv4.png\",srcSet:\"https://framerusercontent.com/images/Ds64pTX6ntXlOQ5nRft5rgqtv4.png 639w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:944,intrinsicWidth:639,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2573+0),pixelHeight:944,pixelWidth:639,sizes:\"365px\",src:\"https://framerusercontent.com/images/Ds64pTX6ntXlOQ5nRft5rgqtv4.png\",srcSet:\"https://framerusercontent.com/images/Ds64pTX6ntXlOQ5nRft5rgqtv4.png 639w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:944,intrinsicWidth:639,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2787.2+0),pixelHeight:944,pixelWidth:639,sizes:\"444px\",src:\"https://framerusercontent.com/images/Ds64pTX6ntXlOQ5nRft5rgqtv4.png\",srcSet:\"https://framerusercontent.com/images/Ds64pTX6ntXlOQ5nRft5rgqtv4.png 639w\"},className:\"framer-aofdzg\",\"data-framer-name\":\"Mesh01\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:892,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2877.2+756.4-247),pixelHeight:892,pixelWidth:2560,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8146)`,src:\"https://framerusercontent.com/images/TX3u9dH5Q3RzsROt0NUurEcc0w.jpg\",srcSet:\"https://framerusercontent.com/images/TX3u9dH5Q3RzsROt0NUurEcc0w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TX3u9dH5Q3RzsROt0NUurEcc0w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TX3u9dH5Q3RzsROt0NUurEcc0w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TX3u9dH5Q3RzsROt0NUurEcc0w.jpg 2560w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:892,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2573+772.4-247),pixelHeight:892,pixelWidth:2560,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8146)`,src:\"https://framerusercontent.com/images/TX3u9dH5Q3RzsROt0NUurEcc0w.jpg\",srcSet:\"https://framerusercontent.com/images/TX3u9dH5Q3RzsROt0NUurEcc0w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TX3u9dH5Q3RzsROt0NUurEcc0w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TX3u9dH5Q3RzsROt0NUurEcc0w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TX3u9dH5Q3RzsROt0NUurEcc0w.jpg 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:892,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2787.2+852.4-247),pixelHeight:892,pixelWidth:2560,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8146)`,src:\"https://framerusercontent.com/images/TX3u9dH5Q3RzsROt0NUurEcc0w.jpg\",srcSet:\"https://framerusercontent.com/images/TX3u9dH5Q3RzsROt0NUurEcc0w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TX3u9dH5Q3RzsROt0NUurEcc0w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TX3u9dH5Q3RzsROt0NUurEcc0w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TX3u9dH5Q3RzsROt0NUurEcc0w.jpg 2560w\"},className:\"framer-1gza90o\",\"data-framer-name\":\"Foof Graffiti\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1570dls\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:419,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3633.6+-.438),pixelHeight:419,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/0cgdubotON6kv35qEF0AkQYj3jo.png\",srcSet:\"https://framerusercontent.com/images/0cgdubotON6kv35qEF0AkQYj3jo.png?scale-down-to=512 512w,https://framerusercontent.com/images/0cgdubotON6kv35qEF0AkQYj3jo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0cgdubotON6kv35qEF0AkQYj3jo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0cgdubotON6kv35qEF0AkQYj3jo.png 2560w\"},style:{rotate:180},transformTemplate:transformTemplate1},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:419,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3345.4+-.438),pixelHeight:419,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/0cgdubotON6kv35qEF0AkQYj3jo.png\",srcSet:\"https://framerusercontent.com/images/0cgdubotON6kv35qEF0AkQYj3jo.png?scale-down-to=512 512w,https://framerusercontent.com/images/0cgdubotON6kv35qEF0AkQYj3jo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0cgdubotON6kv35qEF0AkQYj3jo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0cgdubotON6kv35qEF0AkQYj3jo.png 2560w\"},style:{rotate:180},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:419,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3639.6+245.9912),pixelHeight:419,pixelWidth:2560,sizes:\"782px\",src:\"https://framerusercontent.com/images/0cgdubotON6kv35qEF0AkQYj3jo.png\",srcSet:\"https://framerusercontent.com/images/0cgdubotON6kv35qEF0AkQYj3jo.png?scale-down-to=512 512w,https://framerusercontent.com/images/0cgdubotON6kv35qEF0AkQYj3jo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0cgdubotON6kv35qEF0AkQYj3jo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0cgdubotON6kv35qEF0AkQYj3jo.png 2560w\"},className:\"framer-jrceg6\",\"data-framer-name\":\"Graffiti BG01\",style:{rotate:95}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t97zcv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dvbjtg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{width:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1400px)`,y:(componentViewport?.y||0)+0+3633.6+120+0+0+0+440.4},lWV4KS9lk:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 120px, 1px), 1400px) - 64px) / 1.8, 1px)`,y:(componentViewport?.y||0)+0+3345.4+180+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:468,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 240px, 1px), 1400px) - 140px) / 1.446, 1px)`,y:(componentViewport?.y||0)+0+3639.6+120+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10zbz0h-container\",nodeId:\"OTpV3EaKK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{variant:\"pFAKgIzwU\"},lWV4KS9lk:{variant:\"pFAKgIzwU\"}},children:/*#__PURE__*/_jsx(Faqs,{height:\"100%\",id:\"OTpV3EaKK\",layoutId:\"OTpV3EaKK\",style:{width:\"100%\"},variant:\"V6ZiG3FbY\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tf7v8n\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1v5y4wg\",\"data-styles-preset\":\"cgykqZ_EK\",children:\"All you need to\"})}),className:\"framer-1138wyt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f371k4\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__loop:animation18,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1v5y4wg\",\"data-styles-preset\":\"cgykqZ_EK\",style:{\"--framer-text-color\":\"var(--token-394ea9e5-f0d2-4810-a50c-5ddce94a93ce, rgb(25, 175, 190))\"},children:\"Know\"})}),className:\"framer-1enfd8t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1v5y4wg\",\"data-styles-preset\":\"cgykqZ_EK\",children:\"Know\"})}),className:\"framer-1ikwklv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation5,__framer__loop:animation18,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.16,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1v5y4wg\",\"data-styles-preset\":\"cgykqZ_EK\",children:\"Know\"})}),className:\"framer-1vcr9b8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.09,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1v5y4wg\",\"data-styles-preset\":\"cgykqZ_EK\",children:\"Know\"})}),className:\"framer-iwwb01\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.03,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1v5y4wg\",\"data-styles-preset\":\"cgykqZ_EK\",children:\"Know\"})}),className:\"framer-38lr2g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:283,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3633.6+120+0+85),pixelHeight:283,pixelWidth:1e3,sizes:\"491px\",src:\"https://framerusercontent.com/images/hhG5DZ1jtzUiY0kWU6aoRNq5I.png\",srcSet:\"https://framerusercontent.com/images/hhG5DZ1jtzUiY0kWU6aoRNq5I.png?scale-down-to=512 512w,https://framerusercontent.com/images/hhG5DZ1jtzUiY0kWU6aoRNq5I.png 1000w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:283,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3345.4+180+0+320),pixelHeight:283,pixelWidth:1e3,sizes:\"809px\",src:\"https://framerusercontent.com/images/hhG5DZ1jtzUiY0kWU6aoRNq5I.png\",srcSet:\"https://framerusercontent.com/images/hhG5DZ1jtzUiY0kWU6aoRNq5I.png?scale-down-to=512 512w,https://framerusercontent.com/images/hhG5DZ1jtzUiY0kWU6aoRNq5I.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:283,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3639.6+120+0+234),pixelHeight:283,pixelWidth:1e3,sizes:\"809px\",src:\"https://framerusercontent.com/images/hhG5DZ1jtzUiY0kWU6aoRNq5I.png\",srcSet:\"https://framerusercontent.com/images/hhG5DZ1jtzUiY0kWU6aoRNq5I.png?scale-down-to=512 512w,https://framerusercontent.com/images/hhG5DZ1jtzUiY0kWU6aoRNq5I.png 1000w\"},className:\"framer-vvu48d\",\"data-framer-name\":\"Torn paper08\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-sggf12\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:1048,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-417,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-g4vwbh-container hidden-vls3lh\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Kipe19UPL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:43,height:\"100%\",hoverFactor:1,id:\"Kipe19UPL\",layoutId:\"Kipe19UPL\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:503,intrinsicWidth:525,pixelHeight:503,pixelWidth:525,sizes:\"353px\",src:\"https://framerusercontent.com/images/LZXoFnwERYMELu2kIkl74Ggx5hY.png\",srcSet:\"https://framerusercontent.com/images/LZXoFnwERYMELu2kIkl74Ggx5hY.png?scale-down-to=512 512w,https://framerusercontent.com/images/LZXoFnwERYMELu2kIkl74Ggx5hY.png 525w\"},className:\"framer-1lv85zl\",\"data-framer-name\":\"Gallery01\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:577,intrinsicWidth:683,pixelHeight:490,pixelWidth:683,sizes:\"458px\",src:\"https://framerusercontent.com/images/Ww9WL7yP9FpXQm5PJDbiKKT7WvY.png\",srcSet:\"https://framerusercontent.com/images/Ww9WL7yP9FpXQm5PJDbiKKT7WvY.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ww9WL7yP9FpXQm5PJDbiKKT7WvY.png 683w\"},className:\"framer-2cdz15\",\"data-framer-name\":\"Gallery02\",style:{rotate:-11}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:322,intrinsicWidth:530,pixelHeight:322,pixelWidth:530,sizes:\"357px\",src:\"https://framerusercontent.com/images/eA6kyHip0ySB6GGmzZOTtcjNJg.png\",srcSet:\"https://framerusercontent.com/images/eA6kyHip0ySB6GGmzZOTtcjNJg.png?scale-down-to=512 512w,https://framerusercontent.com/images/eA6kyHip0ySB6GGmzZOTtcjNJg.png 530w\"},className:\"framer-1yjc4cb\",\"data-framer-name\":\"Gallery03\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:465,pixelHeight:623,pixelWidth:475,sizes:\"313px\",src:\"https://framerusercontent.com/images/O6X0ihMOdcGEyb5Q8uuAWioZcWA.png\",srcSet:\"https://framerusercontent.com/images/O6X0ihMOdcGEyb5Q8uuAWioZcWA.png 475w\"},className:\"framer-xo8tib\",\"data-framer-name\":\"Gallery04\",style:{rotate:10}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:688,intrinsicWidth:653,pixelHeight:688,pixelWidth:653,sizes:\"439px\",src:\"https://framerusercontent.com/images/A7HeYWLeInYU1cxvLwHEVlNhJZA.png\",srcSet:\"https://framerusercontent.com/images/A7HeYWLeInYU1cxvLwHEVlNhJZA.png 653w\"},className:\"framer-kubeg2\",\"data-framer-name\":\"Gallery05\",style:{rotate:-6}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:445,intrinsicWidth:512,pixelHeight:445,pixelWidth:512,src:\"https://framerusercontent.com/images/H8HR3wIgWoyjolOj919IoyBD8vA.png\"},className:\"framer-uks2zv\",\"data-framer-name\":\"Gallery06\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:678,intrinsicWidth:444,pixelHeight:678,pixelWidth:444,sizes:\"311px\",src:\"https://framerusercontent.com/images/iwLmaz6MNjekt0z2b3BXnv6B5A.png\",srcSet:\"https://framerusercontent.com/images/iwLmaz6MNjekt0z2b3BXnv6B5A.png 444w\"},className:\"framer-hdklot\",\"data-framer-name\":\"Gallery07\",style:{rotate:-11}})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:406,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1272,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-eirgvn-container hidden-72rtr7 hidden-16rj8rp\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IEfmrFgn8\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:32,height:\"100%\",hoverFactor:1,id:\"IEfmrFgn8\",layoutId:\"IEfmrFgn8\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:503,intrinsicWidth:525,pixelHeight:503,pixelWidth:525,sizes:\"275px\",src:\"https://framerusercontent.com/images/LZXoFnwERYMELu2kIkl74Ggx5hY.png\",srcSet:\"https://framerusercontent.com/images/LZXoFnwERYMELu2kIkl74Ggx5hY.png?scale-down-to=512 512w,https://framerusercontent.com/images/LZXoFnwERYMELu2kIkl74Ggx5hY.png 525w\"},className:\"framer-1anbhd0\",\"data-framer-name\":\"Gallery01\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:577,intrinsicWidth:683,pixelHeight:490,pixelWidth:683,sizes:\"275px\",src:\"https://framerusercontent.com/images/Ww9WL7yP9FpXQm5PJDbiKKT7WvY.png\",srcSet:\"https://framerusercontent.com/images/Ww9WL7yP9FpXQm5PJDbiKKT7WvY.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ww9WL7yP9FpXQm5PJDbiKKT7WvY.png 683w\"},className:\"framer-11v0ph4\",\"data-framer-name\":\"Gallery02\",style:{rotate:-11}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:322,intrinsicWidth:530,pixelHeight:322,pixelWidth:530,sizes:\"275px\",src:\"https://framerusercontent.com/images/eA6kyHip0ySB6GGmzZOTtcjNJg.png\",srcSet:\"https://framerusercontent.com/images/eA6kyHip0ySB6GGmzZOTtcjNJg.png?scale-down-to=512 512w,https://framerusercontent.com/images/eA6kyHip0ySB6GGmzZOTtcjNJg.png 530w\"},className:\"framer-yt3j15\",\"data-framer-name\":\"Gallery03\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:465,pixelHeight:623,pixelWidth:475,sizes:\"247px\",src:\"https://framerusercontent.com/images/O6X0ihMOdcGEyb5Q8uuAWioZcWA.png\",srcSet:\"https://framerusercontent.com/images/O6X0ihMOdcGEyb5Q8uuAWioZcWA.png 475w\"},className:\"framer-przrh6\",\"data-framer-name\":\"Gallery04\",style:{rotate:10}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:688,intrinsicWidth:653,pixelHeight:688,pixelWidth:653,sizes:\"275px\",src:\"https://framerusercontent.com/images/A7HeYWLeInYU1cxvLwHEVlNhJZA.png\",srcSet:\"https://framerusercontent.com/images/A7HeYWLeInYU1cxvLwHEVlNhJZA.png 653w\"},className:\"framer-t2bkh\",\"data-framer-name\":\"Gallery05\",style:{rotate:-6}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:445,intrinsicWidth:512,pixelHeight:445,pixelWidth:512,src:\"https://framerusercontent.com/images/H8HR3wIgWoyjolOj919IoyBD8vA.png\"},className:\"framer-7hbx29\",\"data-framer-name\":\"Gallery06\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:678,intrinsicWidth:444,pixelHeight:678,pixelWidth:444,sizes:\"225px\",src:\"https://framerusercontent.com/images/iwLmaz6MNjekt0z2b3BXnv6B5A.png\",srcSet:\"https://framerusercontent.com/images/iwLmaz6MNjekt0z2b3BXnv6B5A.png 444w\"},className:\"framer-1e5ndl2\",\"data-framer-name\":\"Gallery07\",style:{rotate:-11}})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:712,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-171,y:43}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:.33,className:\"framer-jucuvi-container hidden-vls3lh\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fA6rzQGRX\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-4},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:100,height:\"100%\",hoverFactor:1,id:\"fA6rzQGRX\",layoutId:\"fA6rzQGRX\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xa5rbp\",\"data-framer-name\":\"Tastes\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvbW11dGVycyBTYW5zIEV4dHJhQm9sZA==\",\"--framer-font-family\":'\"Commuters Sans ExtraBold\", \"Commuters Sans ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"190px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(0, 0, 0, 0)\",\"--framer-text-stroke-color\":\"rgba(0, 0, 0, 1)\",\"--framer-text-stroke-width\":\"3px\",\"--framer-text-transform\":\"uppercase\"},children:\"Tastes\"})}),className:\"framer-17yaa6g\",fonts:[\"CUSTOM;Commuters Sans ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l6ihb0\",\"data-framer-name\":\"sd1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2tvgfv\",\"data-framer-name\":\"sd1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 87 84\"><path d=\"M 53.538 34.272 L 80.308 7.392 C 80.977 6.72 80.977 5.376 80.308 4.704 C 79.638 4.032 78.3 4.032 77.631 4.704 L 50.862 31.584 C 50.192 32.256 50.192 33.6 50.862 34.272 C 51.531 34.944 52.869 34.944 53.538 34.272 Z M 32.625 49.896 L 5.856 76.776 C 5.187 77.448 5.187 78.792 5.856 79.464 C 6.525 80.136 7.863 80.136 8.533 79.464 L 35.302 52.584 C 35.971 51.912 35.971 50.568 35.302 49.896 C 34.633 49.224 33.294 49.224 32.625 49.896 Z M 42.998 0 C 42.496 0 41.994 0.168 41.66 0.672 C 41.325 1.008 40.99 1.512 40.99 2.016 L 40.99 16.632 C 40.99 17.64 41.994 18.48 42.831 18.48 C 43.667 18.48 43.835 18.312 44.169 17.808 C 44.504 17.472 44.838 16.968 44.838 16.464 L 44.838 2.016 C 44.838 0.84 44.169 0 42.998 0 Z M 42.998 65.52 C 41.827 65.52 40.99 66.36 40.99 67.536 L 40.99 82.152 C 40.99 82.656 41.158 83.16 41.66 83.496 C 41.994 83.832 42.496 84 42.831 84 C 43.165 84 43.835 83.832 44.169 83.328 C 44.504 82.992 44.838 82.488 44.838 81.984 L 44.838 67.536 C 44.838 66.528 44.169 65.688 42.998 65.52 Z M 9.704 4.704 C 9.035 4.032 7.696 4.032 7.027 4.704 C 6.358 5.376 6.358 6.72 7.027 7.392 L 33.796 34.272 C 34.465 34.944 35.804 34.944 36.473 34.272 C 37.142 33.6 37.142 32.256 36.473 31.584 Z M 52.535 49.896 C 51.865 49.224 50.527 49.224 49.858 49.896 C 49.188 50.568 49.188 51.912 49.858 52.584 L 76.627 79.464 C 77.296 80.136 78.635 80.136 79.304 79.464 C 79.973 78.792 79.973 77.448 79.304 76.776 Z M 17.735 43.344 C 18.069 43.008 18.404 42.504 18.404 42 C 18.404 41.496 18.237 40.992 17.902 40.656 C 17.567 40.32 17.233 40.152 16.563 39.984 L 2.008 39.984 C 0.837 39.984 0 40.824 0 42 C 0 43.176 0.167 43.008 0.669 43.344 C 1.004 43.68 1.506 43.848 1.84 43.848 L 16.396 43.848 C 16.898 43.848 17.4 43.848 17.735 43.344 Z M 85.662 40.656 C 85.327 40.32 84.825 40.152 84.323 40.152 L 69.767 40.152 C 68.596 40.152 67.76 40.992 67.76 42.168 C 67.76 43.344 68.596 44.016 69.6 44.184 L 84.156 44.184 C 85.327 44.184 86.163 43.344 86.163 42.168 C 86.163 41.496 86.163 40.992 85.662 40.656 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:11602154238,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-147iyfw\",\"data-framer-name\":\"Cheers\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvbW11dGVycyBTYW5zIEV4dHJhQm9sZA==\",\"--framer-font-family\":'\"Commuters Sans ExtraBold\", \"Commuters Sans ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"190px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(0, 0, 0, 0)\",\"--framer-text-stroke-color\":\"rgba(0, 0, 0, 1)\",\"--framer-text-stroke-width\":\"3px\",\"--framer-text-transform\":\"uppercase\"},children:\"Cheers\"})}),className:\"framer-169atv6\",fonts:[\"CUSTOM;Commuters Sans ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-157042d\",\"data-framer-name\":\"sd2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fehvi1\",\"data-framer-name\":\"sd2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 84 84\"><path d=\"M 74.424 24.024 C 71.064 21.84 67.2 20.664 63.504 20.496 L 63.504 19.824 C 62.496 7.896 52.08 -0.84 40.32 0 C 34.608 0.504 29.568 3.192 25.704 7.56 C 22.68 11.256 20.832 15.792 20.664 20.496 L 19.824 20.496 C 7.896 21.672 -0.84 32.088 0.168 43.848 C 0.672 49.56 3.36 54.6 7.728 58.464 C 11.424 61.488 15.96 63.336 20.832 63.504 C 20.832 64.68 21 65.688 21.168 66.864 C 22.344 72.576 25.536 77.28 30.408 80.472 C 40.32 87.024 53.592 84.168 60.144 74.256 C 62.328 70.896 63.504 67.032 63.672 63.336 C 64.848 63.336 65.856 63.168 67.032 63 C 72.744 61.824 77.448 58.632 80.64 53.76 C 87.024 43.848 84.168 30.408 74.424 24.024 Z M 77.448 51.576 C 74.928 55.44 70.896 58.296 66.192 59.136 C 65.352 59.304 64.344 59.304 63.504 59.472 C 62.664 53.592 59.472 48.048 54.096 44.52 C 53.256 43.848 52.08 44.184 51.576 45.024 C 51.408 45.36 51.24 46.032 51.408 46.536 C 51.408 47.04 51.744 47.544 52.248 47.712 C 56.112 50.232 58.968 54.432 59.808 58.968 L 59.808 59.304 C 57.456 58.968 55.104 57.96 53.088 56.616 C 49.392 54.096 46.872 50.4 45.528 46.032 C 44.52 46.872 43.344 47.376 42 47.376 C 43.344 52.584 46.536 56.952 51.072 59.808 C 53.928 61.656 56.952 62.832 60.144 63.168 C 60.144 66.36 58.968 69.384 57.12 72.24 C 54.6 76.272 50.4 78.96 45.864 79.8 C 41.328 80.808 36.624 79.8 32.592 77.28 C 28.728 74.76 25.872 70.728 25.032 66.024 C 24.864 65.184 24.864 64.176 24.696 63.336 C 29.568 62.664 34.104 60.312 37.8 56.448 C 38.136 56.112 38.304 55.608 38.304 54.936 C 38.304 54.264 38.136 53.928 37.632 53.76 C 37.296 53.424 36.792 53.256 36.288 53.256 C 35.784 53.256 35.28 53.424 34.944 53.928 C 32.256 56.952 28.728 58.8 25.032 59.472 C 25.368 57.12 26.376 54.936 27.552 52.752 C 29.904 49.224 33.6 46.536 37.968 45.36 C 37.968 45.192 37.632 44.856 37.464 44.688 L 37.464 42.168 C 32.256 43.68 28.056 46.704 25.2 51.072 C 23.352 53.76 22.176 56.784 21.84 60.144 C 17.976 60.144 14.28 58.464 11.088 55.944 C 7.56 52.92 5.376 48.72 4.872 43.848 C 4.536 38.976 5.88 34.44 8.904 30.912 C 11.928 27.384 16.128 25.2 21 24.696 L 21.672 24.696 C 22.344 29.568 24.696 34.104 28.56 37.8 C 28.896 38.136 29.4 38.304 30.072 38.304 C 30.744 38.304 31.08 38.136 31.248 37.632 C 31.584 37.296 31.752 36.792 31.752 36.288 C 31.752 35.784 31.584 35.28 31.08 34.944 C 28.056 32.256 26.208 28.728 25.536 25.032 C 28.56 25.536 31.416 26.88 33.936 28.896 C 36.792 31.416 38.808 34.608 39.648 38.304 C 40.488 37.632 41.664 37.296 42.672 37.296 L 43.176 37.296 C 41.16 28.728 33.768 22.344 25.032 21.336 C 25.032 17.472 26.712 13.776 29.232 10.584 C 32.256 7.056 36.456 4.872 41.328 4.368 C 46.2 4.032 50.736 5.376 54.264 8.4 C 57.792 11.424 59.976 15.624 60.48 20.496 L 60.48 21.168 C 54.6 22.008 49.056 25.2 45.528 30.576 C 44.856 31.416 45.192 32.592 46.032 33.096 C 46.2 33.768 46.704 33.768 47.208 33.768 C 47.712 33.768 48.216 33.432 48.384 32.928 C 50.904 29.064 55.104 26.208 59.64 25.368 L 60.144 25.368 C 59.64 28.392 58.296 31.416 56.28 33.936 C 53.76 36.96 50.568 38.808 46.704 39.648 C 47.376 40.488 47.88 41.664 47.88 43.008 C 56.448 41.16 62.832 33.768 64.008 25.032 C 67.2 25.032 70.224 26.208 73.08 28.056 C 77.112 30.576 79.8 34.776 80.64 39.312 C 81.48 44.016 80.64 48.72 78.12 52.752 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:12297691445,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19h4osu\",\"data-framer-name\":\"Smiles\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvbW11dGVycyBTYW5zIEV4dHJhQm9sZA==\",\"--framer-font-family\":'\"Commuters Sans ExtraBold\", \"Commuters Sans ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"190px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(0, 0, 0, 0)\",\"--framer-text-stroke-color\":\"rgba(0, 0, 0, 1)\",\"--framer-text-stroke-width\":\"3px\",\"--framer-text-transform\":\"uppercase\"},children:\"Smiles\"})}),className:\"framer-df6819\",fonts:[\"CUSTOM;Commuters Sans ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qmf35s\",\"data-framer-name\":\"sd3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3wuhmc\",\"data-framer-name\":\"sd3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 84\"><path d=\"M 27.698 34.776 L 3.357 20.832 C 2.854 20.664 2.35 20.496 1.847 20.664 C 1.343 20.832 1.007 21.168 0.671 21.504 C 0.671 21.672 0.504 22.176 0.504 22.512 C 0.504 23.184 0.839 23.856 1.511 24.192 L 25.852 38.136 C 26.02 38.136 26.523 38.304 26.859 38.304 C 27.53 38.304 28.202 37.968 28.538 37.296 C 28.706 36.792 28.873 36.288 28.706 35.784 C 28.538 35.448 28.034 34.944 27.53 34.608 Z M 59.929 20.832 L 35.588 34.776 C 34.917 35.112 34.581 35.784 34.581 36.456 C 34.581 37.128 34.581 37.128 34.749 37.464 C 35.085 38.136 35.756 38.472 36.428 38.472 C 37.099 38.472 37.099 38.472 37.435 38.304 L 61.776 24.192 C 62.279 24.024 62.447 23.52 62.615 23.016 C 62.615 22.512 62.615 22.008 62.447 21.504 C 61.944 20.496 60.769 20.328 59.929 20.832 Z M 25.852 45.696 L 1.511 59.808 C 0.839 60.144 0.504 60.816 0.504 61.488 C 0.504 62.16 0.504 62.16 0.671 62.496 C 0.839 63 1.343 63.168 1.847 63.336 L 2.35 63.336 C 2.686 63.336 3.022 63.336 3.357 63.168 L 27.698 49.224 C 28.202 49.056 28.37 48.552 28.538 48.048 C 28.538 47.544 28.538 47.04 28.37 46.536 C 28.034 45.36 26.691 45.192 25.852 45.696 Z M 61.776 59.808 L 37.435 45.864 C 36.931 45.696 36.428 45.528 35.924 45.696 C 35.42 45.696 35.085 46.2 34.749 46.536 C 34.749 46.704 34.581 47.208 34.581 47.544 C 34.581 48.216 34.917 48.888 35.588 49.224 L 59.929 63.168 C 60.097 63.168 60.601 63.336 60.936 63.336 C 61.608 63.336 62.279 63 62.615 62.328 C 62.783 61.824 62.951 61.32 62.783 60.816 C 62.447 60.48 62.111 59.976 61.608 59.64 Z M 27.195 80.304 L 2.854 66.36 C 2.014 65.856 0.839 66.192 0.336 67.032 C 0.336 67.2 0.168 67.704 0.168 68.04 C 0.168 68.712 0.504 69.384 1.175 69.72 L 25.516 83.664 C 25.684 83.664 26.188 83.832 26.523 83.832 L 27.027 83.832 C 27.53 83.832 27.866 83.328 28.202 82.992 C 28.37 82.488 28.538 81.984 28.37 81.48 C 28.37 80.808 27.866 80.472 27.363 80.304 Z M 2.014 17.808 C 2.35 17.808 2.686 17.808 3.022 17.64 L 27.363 3.528 C 27.866 3.36 28.034 2.856 28.202 2.352 C 28.202 1.848 28.202 1.344 28.034 0.84 C 27.866 0.336 27.363 0.168 26.859 0 C 26.355 0 25.852 0 25.348 0.336 L 1.007 14.448 C 0.336 14.784 0 15.456 0 16.128 C 0 16.8 0 16.8 0.168 17.136 C 0.504 17.64 1.343 17.808 1.847 17.808 Z M 35.42 3.528 L 59.761 17.472 C 59.929 17.472 60.433 17.64 60.769 17.64 C 61.44 17.64 62.111 17.304 62.447 16.632 C 62.615 16.128 62.783 15.624 62.615 15.12 C 62.447 14.616 62.111 14.28 61.776 13.944 L 37.435 0.168 C 36.595 -0.168 35.42 0 34.917 1.008 C 34.917 1.176 34.749 1.68 34.749 2.016 C 34.581 2.688 34.749 3.192 35.42 3.696 Z M 59.761 66.36 L 35.42 80.304 C 34.749 80.64 34.413 81.312 34.413 81.984 C 34.413 82.656 34.413 82.656 34.581 82.992 C 34.917 83.664 35.588 84 36.26 84 C 36.931 84 36.931 84 37.267 83.832 L 61.608 69.888 C 62.111 69.72 62.279 69.216 62.447 68.712 C 62.447 68.208 62.447 67.704 62.279 67.2 C 61.776 66.024 60.601 65.688 59.761 66.36 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:9478684325,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xa5rbp\",\"data-framer-name\":\"Tastes\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvbW11dGVycyBTYW5zIEV4dHJhQm9sZA==\",\"--framer-font-family\":'\"Commuters Sans ExtraBold\", \"Commuters Sans ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"190px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(0, 0, 0, 0)\",\"--framer-text-stroke-color\":\"rgba(0, 0, 0, 1)\",\"--framer-text-stroke-width\":\"3px\",\"--framer-text-transform\":\"uppercase\"},children:\"Tastes\"})}),className:\"framer-17yaa6g\",fonts:[\"CUSTOM;Commuters Sans ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l6ihb0\",\"data-framer-name\":\"sd1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2tvgfv\",\"data-framer-name\":\"sd1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 87 84\"><path d=\"M 53.538 34.272 L 80.308 7.392 C 80.977 6.72 80.977 5.376 80.308 4.704 C 79.638 4.032 78.3 4.032 77.631 4.704 L 50.862 31.584 C 50.192 32.256 50.192 33.6 50.862 34.272 C 51.531 34.944 52.869 34.944 53.538 34.272 Z M 32.625 49.896 L 5.856 76.776 C 5.187 77.448 5.187 78.792 5.856 79.464 C 6.525 80.136 7.863 80.136 8.533 79.464 L 35.302 52.584 C 35.971 51.912 35.971 50.568 35.302 49.896 C 34.633 49.224 33.294 49.224 32.625 49.896 Z M 42.998 0 C 42.496 0 41.994 0.168 41.66 0.672 C 41.325 1.008 40.99 1.512 40.99 2.016 L 40.99 16.632 C 40.99 17.64 41.994 18.48 42.831 18.48 C 43.667 18.48 43.835 18.312 44.169 17.808 C 44.504 17.472 44.838 16.968 44.838 16.464 L 44.838 2.016 C 44.838 0.84 44.169 0 42.998 0 Z M 42.998 65.52 C 41.827 65.52 40.99 66.36 40.99 67.536 L 40.99 82.152 C 40.99 82.656 41.158 83.16 41.66 83.496 C 41.994 83.832 42.496 84 42.831 84 C 43.165 84 43.835 83.832 44.169 83.328 C 44.504 82.992 44.838 82.488 44.838 81.984 L 44.838 67.536 C 44.838 66.528 44.169 65.688 42.998 65.52 Z M 9.704 4.704 C 9.035 4.032 7.696 4.032 7.027 4.704 C 6.358 5.376 6.358 6.72 7.027 7.392 L 33.796 34.272 C 34.465 34.944 35.804 34.944 36.473 34.272 C 37.142 33.6 37.142 32.256 36.473 31.584 Z M 52.535 49.896 C 51.865 49.224 50.527 49.224 49.858 49.896 C 49.188 50.568 49.188 51.912 49.858 52.584 L 76.627 79.464 C 77.296 80.136 78.635 80.136 79.304 79.464 C 79.973 78.792 79.973 77.448 79.304 76.776 Z M 17.735 43.344 C 18.069 43.008 18.404 42.504 18.404 42 C 18.404 41.496 18.237 40.992 17.902 40.656 C 17.567 40.32 17.233 40.152 16.563 39.984 L 2.008 39.984 C 0.837 39.984 0 40.824 0 42 C 0 43.176 0.167 43.008 0.669 43.344 C 1.004 43.68 1.506 43.848 1.84 43.848 L 16.396 43.848 C 16.898 43.848 17.4 43.848 17.735 43.344 Z M 85.662 40.656 C 85.327 40.32 84.825 40.152 84.323 40.152 L 69.767 40.152 C 68.596 40.152 67.76 40.992 67.76 42.168 C 67.76 43.344 68.596 44.016 69.6 44.184 L 84.156 44.184 C 85.327 44.184 86.163 43.344 86.163 42.168 C 86.163 41.496 86.163 40.992 85.662 40.656 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:11602154238,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-147iyfw\",\"data-framer-name\":\"Cheers\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvbW11dGVycyBTYW5zIEV4dHJhQm9sZA==\",\"--framer-font-family\":'\"Commuters Sans ExtraBold\", \"Commuters Sans ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"190px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(0, 0, 0, 0)\",\"--framer-text-stroke-color\":\"rgba(0, 0, 0, 1)\",\"--framer-text-stroke-width\":\"3px\",\"--framer-text-transform\":\"uppercase\"},children:\"Cheers\"})}),className:\"framer-169atv6\",fonts:[\"CUSTOM;Commuters Sans ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-157042d\",\"data-framer-name\":\"sd2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fehvi1\",\"data-framer-name\":\"sd2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 84 84\"><path d=\"M 74.424 24.024 C 71.064 21.84 67.2 20.664 63.504 20.496 L 63.504 19.824 C 62.496 7.896 52.08 -0.84 40.32 0 C 34.608 0.504 29.568 3.192 25.704 7.56 C 22.68 11.256 20.832 15.792 20.664 20.496 L 19.824 20.496 C 7.896 21.672 -0.84 32.088 0.168 43.848 C 0.672 49.56 3.36 54.6 7.728 58.464 C 11.424 61.488 15.96 63.336 20.832 63.504 C 20.832 64.68 21 65.688 21.168 66.864 C 22.344 72.576 25.536 77.28 30.408 80.472 C 40.32 87.024 53.592 84.168 60.144 74.256 C 62.328 70.896 63.504 67.032 63.672 63.336 C 64.848 63.336 65.856 63.168 67.032 63 C 72.744 61.824 77.448 58.632 80.64 53.76 C 87.024 43.848 84.168 30.408 74.424 24.024 Z M 77.448 51.576 C 74.928 55.44 70.896 58.296 66.192 59.136 C 65.352 59.304 64.344 59.304 63.504 59.472 C 62.664 53.592 59.472 48.048 54.096 44.52 C 53.256 43.848 52.08 44.184 51.576 45.024 C 51.408 45.36 51.24 46.032 51.408 46.536 C 51.408 47.04 51.744 47.544 52.248 47.712 C 56.112 50.232 58.968 54.432 59.808 58.968 L 59.808 59.304 C 57.456 58.968 55.104 57.96 53.088 56.616 C 49.392 54.096 46.872 50.4 45.528 46.032 C 44.52 46.872 43.344 47.376 42 47.376 C 43.344 52.584 46.536 56.952 51.072 59.808 C 53.928 61.656 56.952 62.832 60.144 63.168 C 60.144 66.36 58.968 69.384 57.12 72.24 C 54.6 76.272 50.4 78.96 45.864 79.8 C 41.328 80.808 36.624 79.8 32.592 77.28 C 28.728 74.76 25.872 70.728 25.032 66.024 C 24.864 65.184 24.864 64.176 24.696 63.336 C 29.568 62.664 34.104 60.312 37.8 56.448 C 38.136 56.112 38.304 55.608 38.304 54.936 C 38.304 54.264 38.136 53.928 37.632 53.76 C 37.296 53.424 36.792 53.256 36.288 53.256 C 35.784 53.256 35.28 53.424 34.944 53.928 C 32.256 56.952 28.728 58.8 25.032 59.472 C 25.368 57.12 26.376 54.936 27.552 52.752 C 29.904 49.224 33.6 46.536 37.968 45.36 C 37.968 45.192 37.632 44.856 37.464 44.688 L 37.464 42.168 C 32.256 43.68 28.056 46.704 25.2 51.072 C 23.352 53.76 22.176 56.784 21.84 60.144 C 17.976 60.144 14.28 58.464 11.088 55.944 C 7.56 52.92 5.376 48.72 4.872 43.848 C 4.536 38.976 5.88 34.44 8.904 30.912 C 11.928 27.384 16.128 25.2 21 24.696 L 21.672 24.696 C 22.344 29.568 24.696 34.104 28.56 37.8 C 28.896 38.136 29.4 38.304 30.072 38.304 C 30.744 38.304 31.08 38.136 31.248 37.632 C 31.584 37.296 31.752 36.792 31.752 36.288 C 31.752 35.784 31.584 35.28 31.08 34.944 C 28.056 32.256 26.208 28.728 25.536 25.032 C 28.56 25.536 31.416 26.88 33.936 28.896 C 36.792 31.416 38.808 34.608 39.648 38.304 C 40.488 37.632 41.664 37.296 42.672 37.296 L 43.176 37.296 C 41.16 28.728 33.768 22.344 25.032 21.336 C 25.032 17.472 26.712 13.776 29.232 10.584 C 32.256 7.056 36.456 4.872 41.328 4.368 C 46.2 4.032 50.736 5.376 54.264 8.4 C 57.792 11.424 59.976 15.624 60.48 20.496 L 60.48 21.168 C 54.6 22.008 49.056 25.2 45.528 30.576 C 44.856 31.416 45.192 32.592 46.032 33.096 C 46.2 33.768 46.704 33.768 47.208 33.768 C 47.712 33.768 48.216 33.432 48.384 32.928 C 50.904 29.064 55.104 26.208 59.64 25.368 L 60.144 25.368 C 59.64 28.392 58.296 31.416 56.28 33.936 C 53.76 36.96 50.568 38.808 46.704 39.648 C 47.376 40.488 47.88 41.664 47.88 43.008 C 56.448 41.16 62.832 33.768 64.008 25.032 C 67.2 25.032 70.224 26.208 73.08 28.056 C 77.112 30.576 79.8 34.776 80.64 39.312 C 81.48 44.016 80.64 48.72 78.12 52.752 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:12297691445,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19h4osu\",\"data-framer-name\":\"Smiles\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvbW11dGVycyBTYW5zIEV4dHJhQm9sZA==\",\"--framer-font-family\":'\"Commuters Sans ExtraBold\", \"Commuters Sans ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"190px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(0, 0, 0, 0)\",\"--framer-text-stroke-color\":\"rgba(0, 0, 0, 1)\",\"--framer-text-stroke-width\":\"3px\",\"--framer-text-transform\":\"uppercase\"},children:\"Smiles\"})}),className:\"framer-df6819\",fonts:[\"CUSTOM;Commuters Sans ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qmf35s\",\"data-framer-name\":\"sd3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3wuhmc\",\"data-framer-name\":\"sd3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 84\"><path d=\"M 27.698 34.776 L 3.357 20.832 C 2.854 20.664 2.35 20.496 1.847 20.664 C 1.343 20.832 1.007 21.168 0.671 21.504 C 0.671 21.672 0.504 22.176 0.504 22.512 C 0.504 23.184 0.839 23.856 1.511 24.192 L 25.852 38.136 C 26.02 38.136 26.523 38.304 26.859 38.304 C 27.53 38.304 28.202 37.968 28.538 37.296 C 28.706 36.792 28.873 36.288 28.706 35.784 C 28.538 35.448 28.034 34.944 27.53 34.608 Z M 59.929 20.832 L 35.588 34.776 C 34.917 35.112 34.581 35.784 34.581 36.456 C 34.581 37.128 34.581 37.128 34.749 37.464 C 35.085 38.136 35.756 38.472 36.428 38.472 C 37.099 38.472 37.099 38.472 37.435 38.304 L 61.776 24.192 C 62.279 24.024 62.447 23.52 62.615 23.016 C 62.615 22.512 62.615 22.008 62.447 21.504 C 61.944 20.496 60.769 20.328 59.929 20.832 Z M 25.852 45.696 L 1.511 59.808 C 0.839 60.144 0.504 60.816 0.504 61.488 C 0.504 62.16 0.504 62.16 0.671 62.496 C 0.839 63 1.343 63.168 1.847 63.336 L 2.35 63.336 C 2.686 63.336 3.022 63.336 3.357 63.168 L 27.698 49.224 C 28.202 49.056 28.37 48.552 28.538 48.048 C 28.538 47.544 28.538 47.04 28.37 46.536 C 28.034 45.36 26.691 45.192 25.852 45.696 Z M 61.776 59.808 L 37.435 45.864 C 36.931 45.696 36.428 45.528 35.924 45.696 C 35.42 45.696 35.085 46.2 34.749 46.536 C 34.749 46.704 34.581 47.208 34.581 47.544 C 34.581 48.216 34.917 48.888 35.588 49.224 L 59.929 63.168 C 60.097 63.168 60.601 63.336 60.936 63.336 C 61.608 63.336 62.279 63 62.615 62.328 C 62.783 61.824 62.951 61.32 62.783 60.816 C 62.447 60.48 62.111 59.976 61.608 59.64 Z M 27.195 80.304 L 2.854 66.36 C 2.014 65.856 0.839 66.192 0.336 67.032 C 0.336 67.2 0.168 67.704 0.168 68.04 C 0.168 68.712 0.504 69.384 1.175 69.72 L 25.516 83.664 C 25.684 83.664 26.188 83.832 26.523 83.832 L 27.027 83.832 C 27.53 83.832 27.866 83.328 28.202 82.992 C 28.37 82.488 28.538 81.984 28.37 81.48 C 28.37 80.808 27.866 80.472 27.363 80.304 Z M 2.014 17.808 C 2.35 17.808 2.686 17.808 3.022 17.64 L 27.363 3.528 C 27.866 3.36 28.034 2.856 28.202 2.352 C 28.202 1.848 28.202 1.344 28.034 0.84 C 27.866 0.336 27.363 0.168 26.859 0 C 26.355 0 25.852 0 25.348 0.336 L 1.007 14.448 C 0.336 14.784 0 15.456 0 16.128 C 0 16.8 0 16.8 0.168 17.136 C 0.504 17.64 1.343 17.808 1.847 17.808 Z M 35.42 3.528 L 59.761 17.472 C 59.929 17.472 60.433 17.64 60.769 17.64 C 61.44 17.64 62.111 17.304 62.447 16.632 C 62.615 16.128 62.783 15.624 62.615 15.12 C 62.447 14.616 62.111 14.28 61.776 13.944 L 37.435 0.168 C 36.595 -0.168 35.42 0 34.917 1.008 C 34.917 1.176 34.749 1.68 34.749 2.016 C 34.581 2.688 34.749 3.192 35.42 3.696 Z M 59.761 66.36 L 35.42 80.304 C 34.749 80.64 34.413 81.312 34.413 81.984 C 34.413 82.656 34.413 82.656 34.581 82.992 C 34.917 83.664 35.588 84 36.26 84 C 36.931 84 36.931 84 37.267 83.832 L 61.608 69.888 C 62.111 69.72 62.279 69.216 62.447 68.712 C 62.447 68.208 62.447 67.704 62.279 67.2 C 61.776 66.024 60.601 65.688 59.761 66.36 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:9478684325,withExternalLayout:true})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:165,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-151,y:43}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:.33,className:\"framer-13pixgc-container hidden-72rtr7 hidden-16rj8rp\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SGY55fd8X\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-4},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:40,height:\"100%\",hoverFactor:1,id:\"SGY55fd8X\",layoutId:\"SGY55fd8X\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16jaywi\",\"data-framer-name\":\"Tastes\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvbW11dGVycyBTYW5zIEV4dHJhQm9sZA==\",\"--framer-font-family\":'\"Commuters Sans ExtraBold\", \"Commuters Sans ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(0, 0, 0, 0)\",\"--framer-text-stroke-color\":\"rgba(0, 0, 0, 1)\",\"--framer-text-stroke-width\":\"3px\",\"--framer-text-transform\":\"uppercase\"},children:\"Tastes\"})}),className:\"framer-6sy2vo\",fonts:[\"CUSTOM;Commuters Sans ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1paewqa\",\"data-framer-name\":\"sd1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-hruqzf\",\"data-framer-name\":\"sd1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 50 48\"><path d=\"M 30.73 19.562 L 46.095 4.219 C 46.479 3.836 46.479 3.069 46.095 2.685 C 45.711 2.301 44.943 2.301 44.558 2.685 L 29.193 18.027 C 28.809 18.411 28.809 19.178 29.193 19.562 C 29.578 19.945 30.346 19.945 30.73 19.562 Z M 18.726 28.48 L 3.361 43.822 C 2.977 44.206 2.977 44.973 3.361 45.356 C 3.745 45.74 4.513 45.74 4.898 45.356 L 20.263 30.014 C 20.647 29.63 20.647 28.863 20.263 28.48 C 19.878 28.096 19.11 28.096 18.726 28.48 Z M 24.68 0 C 24.392 0 24.104 0.096 23.912 0.384 C 23.72 0.575 23.528 0.863 23.528 1.151 L 23.528 9.493 C 23.528 10.069 24.104 10.548 24.584 10.548 C 25.064 10.548 25.16 10.452 25.352 10.164 C 25.544 9.973 25.736 9.685 25.736 9.397 L 25.736 1.151 C 25.736 0.479 25.352 0 24.68 0 Z M 24.68 37.397 C 24.008 37.397 23.528 37.877 23.528 38.548 L 23.528 46.891 C 23.528 47.178 23.624 47.466 23.912 47.658 C 24.104 47.85 24.392 47.945 24.584 47.945 C 24.776 47.945 25.16 47.85 25.352 47.562 C 25.544 47.37 25.736 47.082 25.736 46.795 L 25.736 38.548 C 25.736 37.973 25.352 37.493 24.68 37.397 Z M 5.57 2.685 C 5.186 2.301 4.417 2.301 4.033 2.685 C 3.649 3.069 3.649 3.836 4.033 4.219 L 19.398 19.562 C 19.782 19.945 20.551 19.945 20.935 19.562 C 21.319 19.178 21.319 18.411 20.935 18.027 Z M 30.154 28.48 C 29.77 28.096 29.001 28.096 28.617 28.48 C 28.233 28.863 28.233 29.63 28.617 30.014 L 43.982 45.356 C 44.366 45.74 45.135 45.74 45.519 45.356 C 45.903 44.973 45.903 44.206 45.519 43.822 Z M 10.179 24.74 C 10.371 24.548 10.563 24.26 10.563 23.973 C 10.563 23.685 10.467 23.397 10.275 23.206 C 10.083 23.014 9.891 22.918 9.507 22.822 L 1.152 22.822 C 0.48 22.822 0 23.301 0 23.973 C 0 24.644 0.096 24.548 0.384 24.74 C 0.576 24.932 0.864 25.028 1.056 25.028 L 9.411 25.028 C 9.699 25.028 9.987 25.028 10.179 24.74 Z M 49.168 23.206 C 48.976 23.014 48.688 22.918 48.4 22.918 L 40.045 22.918 C 39.373 22.918 38.893 23.397 38.893 24.069 C 38.893 24.74 39.373 25.123 39.949 25.219 L 48.304 25.219 C 48.976 25.219 49.456 24.74 49.456 24.069 C 49.456 23.685 49.456 23.397 49.168 23.206 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:11826357849,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ooh802\",\"data-framer-name\":\"Cheers\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvbW11dGVycyBTYW5zIEV4dHJhQm9sZA==\",\"--framer-font-family\":'\"Commuters Sans ExtraBold\", \"Commuters Sans ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(0, 0, 0, 0)\",\"--framer-text-stroke-color\":\"rgba(0, 0, 0, 1)\",\"--framer-text-stroke-width\":\"3px\",\"--framer-text-transform\":\"uppercase\"},children:\"Cheers\"})}),className:\"framer-mujlah\",fonts:[\"CUSTOM;Commuters Sans ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rn6kue\",\"data-framer-name\":\"sd2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19a1g94\",\"data-framer-name\":\"sd2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\"><path d=\"M 42.528 13.728 C 40.608 12.48 38.4 11.808 36.288 11.712 L 36.288 11.328 C 35.712 4.512 29.76 -0.48 23.04 0 C 19.776 0.288 16.896 1.824 14.688 4.32 C 12.96 6.432 11.904 9.024 11.808 11.712 L 11.328 11.712 C 4.512 12.384 -0.48 18.336 0.096 25.056 C 0.384 28.32 1.92 31.2 4.416 33.408 C 6.528 35.136 9.12 36.192 11.904 36.288 C 11.904 36.96 12 37.536 12.096 38.208 C 12.768 41.472 14.592 44.16 17.376 45.984 C 23.04 49.728 30.624 48.096 34.368 42.432 C 35.616 40.512 36.288 38.304 36.384 36.192 C 37.056 36.192 37.632 36.096 38.304 36 C 41.568 35.328 44.256 33.504 46.08 30.72 C 49.728 25.056 48.096 17.376 42.528 13.728 Z M 44.256 29.472 C 42.816 31.68 40.512 33.312 37.824 33.792 C 37.344 33.888 36.768 33.888 36.288 33.984 C 35.808 30.624 33.984 27.456 30.912 25.44 C 30.432 25.056 29.76 25.248 29.472 25.728 C 29.376 25.92 29.28 26.304 29.376 26.592 C 29.376 26.88 29.568 27.168 29.856 27.264 C 32.064 28.704 33.696 31.104 34.176 33.696 L 34.176 33.888 C 32.832 33.696 31.488 33.12 30.336 32.352 C 28.224 30.912 26.784 28.8 26.016 26.304 C 25.44 26.784 24.768 27.072 24 27.072 C 24.768 30.048 26.592 32.544 29.184 34.176 C 30.816 35.232 32.544 35.904 34.368 36.096 C 34.368 37.92 33.696 39.648 32.64 41.28 C 31.2 43.584 28.8 45.12 26.208 45.6 C 23.616 46.176 20.928 45.6 18.624 44.16 C 16.416 42.72 14.784 40.416 14.304 37.728 C 14.208 37.248 14.208 36.672 14.112 36.192 C 16.896 35.808 19.488 34.464 21.6 32.256 C 21.792 32.064 21.888 31.776 21.888 31.392 C 21.888 31.008 21.792 30.816 21.504 30.72 C 21.312 30.528 21.024 30.432 20.736 30.432 C 20.448 30.432 20.16 30.528 19.968 30.816 C 18.432 32.544 16.416 33.6 14.304 33.984 C 14.496 32.64 15.072 31.392 15.744 30.144 C 17.088 28.128 19.2 26.592 21.696 25.92 C 21.696 25.824 21.504 25.632 21.408 25.536 L 21.408 24.096 C 18.432 24.96 16.032 26.688 14.4 29.184 C 13.344 30.72 12.672 32.448 12.48 34.368 C 10.272 34.368 8.16 33.408 6.336 31.968 C 4.32 30.24 3.072 27.84 2.784 25.056 C 2.592 22.272 3.36 19.68 5.088 17.664 C 6.816 15.648 9.216 14.4 12 14.112 L 12.384 14.112 C 12.768 16.896 14.112 19.488 16.32 21.6 C 16.512 21.792 16.8 21.888 17.184 21.888 C 17.568 21.888 17.76 21.792 17.856 21.504 C 18.048 21.312 18.144 21.024 18.144 20.736 C 18.144 20.448 18.048 20.16 17.76 19.968 C 16.032 18.432 14.976 16.416 14.592 14.304 C 16.32 14.592 17.952 15.36 19.392 16.512 C 21.024 17.952 22.176 19.776 22.656 21.888 C 23.136 21.504 23.808 21.312 24.384 21.312 L 24.672 21.312 C 23.52 16.416 19.296 12.768 14.304 12.192 C 14.304 9.984 15.264 7.872 16.704 6.048 C 18.432 4.032 20.832 2.784 23.616 2.496 C 26.4 2.304 28.992 3.072 31.008 4.8 C 33.024 6.528 34.272 8.928 34.56 11.712 L 34.56 12.096 C 31.2 12.576 28.032 14.4 26.016 17.472 C 25.632 17.952 25.824 18.624 26.304 18.912 C 26.4 19.296 26.688 19.296 26.976 19.296 C 27.264 19.296 27.552 19.104 27.648 18.816 C 29.088 16.608 31.488 14.976 34.08 14.496 L 34.368 14.496 C 34.08 16.224 33.312 17.952 32.16 19.392 C 30.72 21.12 28.896 22.176 26.688 22.656 C 27.072 23.136 27.36 23.808 27.36 24.576 C 32.256 23.52 35.904 19.296 36.576 14.304 C 38.4 14.304 40.128 14.976 41.76 16.032 C 44.064 17.472 45.6 19.872 46.08 22.464 C 46.56 25.152 46.08 27.84 44.64 30.144 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:10321783741,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ujhoa9\",\"data-framer-name\":\"Smiles\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvbW11dGVycyBTYW5zIEV4dHJhQm9sZA==\",\"--framer-font-family\":'\"Commuters Sans ExtraBold\", \"Commuters Sans ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(0, 0, 0, 0)\",\"--framer-text-stroke-color\":\"rgba(0, 0, 0, 1)\",\"--framer-text-stroke-width\":\"3px\",\"--framer-text-transform\":\"uppercase\"},children:\"Smiles\"})}),className:\"framer-6hojhb\",fonts:[\"CUSTOM;Commuters Sans ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2eih3m\",\"data-framer-name\":\"sd3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 37 48\"><path d=\"M 16.013 19.872 L 1.941 11.904 C 1.65 11.808 1.359 11.712 1.068 11.808 C 0.776 11.904 0.582 12.096 0.388 12.288 C 0.388 12.384 0.291 12.672 0.291 12.864 C 0.291 13.248 0.485 13.632 0.873 13.824 L 14.946 21.792 C 15.043 21.792 15.334 21.888 15.528 21.888 C 15.916 21.888 16.304 21.696 16.498 21.312 C 16.595 21.024 16.692 20.736 16.595 20.448 C 16.498 20.256 16.207 19.968 15.916 19.776 Z M 34.647 11.904 L 20.574 19.872 C 20.186 20.064 19.992 20.448 19.992 20.832 C 19.992 21.216 19.992 21.216 20.089 21.408 C 20.283 21.792 20.671 21.984 21.06 21.984 C 21.448 21.984 21.448 21.984 21.642 21.888 L 35.714 13.824 C 36.005 13.728 36.102 13.44 36.199 13.152 C 36.199 12.864 36.199 12.576 36.102 12.288 C 35.811 11.712 35.132 11.616 34.647 11.904 Z M 14.946 26.112 L 0.873 34.176 C 0.485 34.368 0.291 34.752 0.291 35.136 C 0.291 35.52 0.291 35.52 0.388 35.712 C 0.485 36 0.776 36.096 1.068 36.192 L 1.359 36.192 C 1.553 36.192 1.747 36.192 1.941 36.096 L 16.013 28.128 C 16.304 28.032 16.401 27.744 16.498 27.456 C 16.498 27.168 16.498 26.88 16.401 26.592 C 16.207 25.92 15.431 25.824 14.946 26.112 Z M 35.714 34.176 L 21.642 26.208 C 21.351 26.112 21.06 26.016 20.769 26.112 C 20.477 26.112 20.283 26.4 20.089 26.592 C 20.089 26.688 19.992 26.976 19.992 27.168 C 19.992 27.552 20.186 27.936 20.574 28.128 L 34.647 36.096 C 34.744 36.096 35.035 36.192 35.229 36.192 C 35.617 36.192 36.005 36 36.199 35.616 C 36.296 35.328 36.393 35.04 36.296 34.752 C 36.102 34.56 35.908 34.272 35.617 34.08 Z M 15.722 45.888 L 1.65 37.92 C 1.165 37.632 0.485 37.824 0.194 38.304 C 0.194 38.4 0.097 38.688 0.097 38.88 C 0.097 39.264 0.291 39.648 0.679 39.84 L 14.751 47.808 C 14.849 47.808 15.14 47.904 15.334 47.904 L 15.625 47.904 C 15.916 47.904 16.11 47.616 16.304 47.424 C 16.401 47.136 16.498 46.848 16.401 46.56 C 16.401 46.176 16.11 45.984 15.819 45.888 Z M 1.165 10.176 C 1.359 10.176 1.553 10.176 1.747 10.08 L 15.819 2.016 C 16.11 1.92 16.207 1.632 16.304 1.344 C 16.304 1.056 16.304 0.768 16.207 0.48 C 16.11 0.192 15.819 0.096 15.528 0 C 15.237 0 14.946 0 14.654 0.192 L 0.582 8.256 C 0.194 8.448 0 8.832 0 9.216 C 0 9.6 0 9.6 0.097 9.792 C 0.291 10.08 0.776 10.176 1.068 10.176 Z M 20.477 2.016 L 34.55 9.984 C 34.647 9.984 34.938 10.08 35.132 10.08 C 35.52 10.08 35.908 9.888 36.102 9.504 C 36.199 9.216 36.296 8.928 36.199 8.64 C 36.102 8.352 35.908 8.16 35.714 7.968 L 21.642 0.096 C 21.157 -0.096 20.477 0 20.186 0.576 C 20.186 0.672 20.089 0.96 20.089 1.152 C 19.992 1.536 20.089 1.824 20.477 2.112 Z M 34.55 37.92 L 20.477 45.888 C 20.089 46.08 19.895 46.464 19.895 46.848 C 19.895 47.232 19.895 47.232 19.992 47.424 C 20.186 47.808 20.574 48 20.963 48 C 21.351 48 21.351 48 21.545 47.904 L 35.617 39.936 C 35.908 39.84 36.005 39.552 36.102 39.264 C 36.102 38.976 36.102 38.688 36.005 38.4 C 35.714 37.728 35.035 37.536 34.55 37.92 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:11420226811,withExternalLayout:true})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7d16le\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{svgContentId:10499446146},lWV4KS9lk:{svgContentId:10499446146}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ddq7gj\",\"data-framer-name\":\"SD Icon-01\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 162 172\"><path d=\"M 161.311 116.272 L 136.149 83.936 L 160.277 53.32 C 161.655 51.6 161.311 49.192 159.587 47.816 C 157.864 46.44 155.451 46.784 154.072 48.504 L 131.323 77.4 L 119.949 62.608 L 145.111 30.96 C 145.8 30.272 146.145 29.24 145.8 27.864 C 145.8 26.832 145.111 25.8 144.421 25.456 C 143.732 24.768 142.698 24.424 141.319 24.768 C 140.285 24.768 139.251 25.456 138.906 26.144 L 115.123 56.416 L 103.749 41.624 L 124.774 15.136 C 125.464 14.448 125.809 13.416 125.464 12.04 C 125.464 11.008 124.774 9.976 124.085 9.632 C 122.362 8.256 119.949 8.6 118.57 10.32 L 98.923 35.432 L 87.549 20.64 L 98.923 5.848 C 100.302 4.128 99.957 1.72 98.234 0.344 C 96.511 -1.032 94.098 -0.688 92.719 1.032 L 82.723 13.76 L 72.383 0.688 C 71.004 -1.032 68.591 -1.376 66.868 0 C 66.179 0.688 65.489 1.376 65.489 2.408 C 65.489 3.44 65.489 4.472 66.179 5.504 L 77.553 20.296 L 66.179 35.088 L 46.187 9.976 C 44.809 8.256 42.396 7.912 40.672 9.288 C 39.983 9.976 39.294 10.664 39.294 11.696 C 39.294 12.728 39.294 13.76 39.983 14.792 L 61.353 41.624 L 49.979 56.416 L 24.472 25.8 C 23.094 24.08 20.681 23.736 18.957 25.112 C 18.268 25.8 17.579 26.488 17.579 27.52 C 17.579 28.552 17.579 29.584 18.268 30.616 L 43.43 62.952 L 32.055 77.744 L 8.617 47.816 C 7.238 46.096 4.826 45.752 3.102 47.128 C 1.379 48.504 1.034 50.912 2.413 52.632 L 26.54 83.592 L 1.034 116.616 C 0.345 117.304 0 118.336 0.345 119.712 C 0.345 120.744 1.034 121.776 1.723 122.12 C 2.413 122.464 3.102 122.808 4.136 122.808 C 5.17 122.808 6.549 122.464 7.238 121.432 L 32.4 90.816 L 43.774 105.608 L 16.545 140.008 C 15.166 141.728 15.511 144.136 17.234 145.512 C 17.923 145.856 18.613 146.2 19.647 146.2 C 20.681 146.2 22.06 145.856 22.749 144.824 L 48.6 111.8 L 59.974 126.248 L 36.536 156.176 C 35.157 157.896 35.502 160.304 37.226 161.68 C 37.915 162.024 38.604 162.368 39.638 162.368 C 40.672 162.368 42.051 162.024 42.74 160.992 L 65.145 132.44 L 76.519 147.232 L 61.698 166.152 C 60.319 167.872 60.664 170.28 62.387 171.656 C 63.077 172 63.766 172.344 64.8 172.344 C 65.834 172.344 67.213 172 67.902 170.968 L 81.689 153.424 L 95.477 170.968 C 96.166 172 97.2 172.344 98.579 172.344 C 99.957 172.344 100.302 172.344 100.991 171.656 C 101.681 170.968 102.37 170.28 102.37 169.248 C 102.37 168.216 102.37 167.184 101.681 166.152 L 86.86 147.232 L 98.234 132.44 L 120.638 160.992 C 121.328 162.024 122.362 162.368 123.74 162.368 C 125.119 162.368 125.464 162.368 126.153 161.68 C 126.843 160.992 127.532 160.304 127.532 159.272 C 127.532 158.24 127.532 157.208 126.843 156.176 L 102.715 126.248 L 114.089 111.456 L 139.94 144.48 C 140.63 145.512 141.664 145.856 143.043 145.856 C 144.421 145.856 144.766 145.856 145.455 145.168 C 147.179 143.792 147.523 141.384 146.145 139.664 L 118.915 105.264 L 130.289 90.472 L 154.417 121.088 C 155.106 122.12 156.14 122.464 157.519 122.464 C 158.898 122.464 159.243 122.464 159.932 121.776 C 160.621 121.088 161.311 120.4 161.311 119.368 C 161.311 118.336 161.311 116.96 160.621 116.272 Z M 125.809 83.936 L 114.434 98.728 L 103.06 83.936 L 114.434 69.144 Z M 78.932 101.48 C 78.587 101.824 77.898 102.512 77.553 103.2 L 64.8 119.368 L 53.426 104.576 L 67.557 86.688 C 67.557 86.344 67.902 85.656 68.247 85.312 C 68.591 83.936 68.591 82.216 67.902 81.184 L 53.426 62.608 L 64.8 47.816 L 77.898 64.672 L 78.587 65.36 C 79.277 65.704 79.966 66.048 81 66.048 C 82.034 66.048 83.413 65.704 84.102 64.672 L 97.545 47.816 L 108.919 62.608 L 94.098 81.184 C 92.719 82.56 93.064 84.968 94.098 86.344 L 108.23 104.576 L 96.855 119.368 L 83.413 102.168 C 82.723 101.136 81.345 100.792 80.311 100.792 C 79.277 100.792 78.587 100.792 77.898 101.48 Z M 69.97 42.312 L 81.345 27.52 L 92.719 42.312 L 81.345 57.104 Z M 92.719 125.904 L 81.345 140.696 L 69.97 125.904 L 81.345 111.112 Z M 59.974 83.936 L 48.6 98.728 L 37.226 83.936 L 48.6 69.144 Z\" fill=\"var(--token-394ea9e5-f0d2-4810-a50c-5ddce94a93ce, rgb(25, 175, 190)) /* {&quot;name&quot;:&quot;SD-Turquoise&quot;} */\"></path></svg>',svgContentId:11389828960,withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5114),pixelHeight:1609,pixelWidth:2560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/koZRO4GejYZBehNzO3TcCo341c.jpg\",srcSet:\"https://framerusercontent.com/images/koZRO4GejYZBehNzO3TcCo341c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/koZRO4GejYZBehNzO3TcCo341c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/koZRO4GejYZBehNzO3TcCo341c.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/koZRO4GejYZBehNzO3TcCo341c.jpg 2560w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4583.4),pixelHeight:1609,pixelWidth:2560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/koZRO4GejYZBehNzO3TcCo341c.jpg\",srcSet:\"https://framerusercontent.com/images/koZRO4GejYZBehNzO3TcCo341c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/koZRO4GejYZBehNzO3TcCo341c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/koZRO4GejYZBehNzO3TcCo341c.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/koZRO4GejYZBehNzO3TcCo341c.jpg 2560w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5005.6),pixelHeight:1609,pixelWidth:2560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/koZRO4GejYZBehNzO3TcCo341c.jpg\",srcSet:\"https://framerusercontent.com/images/koZRO4GejYZBehNzO3TcCo341c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/koZRO4GejYZBehNzO3TcCo341c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/koZRO4GejYZBehNzO3TcCo341c.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/koZRO4GejYZBehNzO3TcCo341c.jpg 2560w\"},className:\"framer-1yqjtej\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1v5y4wg\",\"data-styles-preset\":\"cgykqZ_EK\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Don't take our \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-eab05eed-d8d0-4eb8-857d-2f13b73faff8, rgb(250, 55, 30))\"},children:\"word\"}),\" for it\"]})}),className:\"framer-1xbk8j3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-17352js\",style:{rotate:-3},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:419,intrinsicWidth:398,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5114+60+108.4+96.5003),pixelHeight:419,pixelWidth:398,src:\"https://framerusercontent.com/images/4FH22GbncbE5OHYYOk2tmaqSguM.png\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:419,intrinsicWidth:398,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4583.4+80+108.4+189.9797),pixelHeight:419,pixelWidth:398,src:\"https://framerusercontent.com/images/4FH22GbncbE5OHYYOk2tmaqSguM.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:419,intrinsicWidth:398,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5005.6+120+108.4+52.3233),pixelHeight:419,pixelWidth:398,src:\"https://framerusercontent.com/images/4FH22GbncbE5OHYYOk2tmaqSguM.png\"},className:\"framer-10ky86y\",\"data-framer-name\":\"Icon-06\",style:{rotate:-24}})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ndey5b-container hidden-16rj8rp hidden-vls3lh\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"smdDMOsBt\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow1,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:-100,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:0,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:54,leftArrow:\"https://framerusercontent.com/images/wET1sIIkgGrdXLiDQmeWI7AQ.svg\",rightArrow:\"https://framerusercontent.com/images/7nknFWYRZqhdeSte2ycCylozPk.svg\",showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",id:\"smdDMOsBt\",intervalControl:3,itemAmount:1,layoutId:\"smdDMOsBt\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:530,width:\"935px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-d0f3w4-container\",inComponentSlot:true,nodeId:\"bSMqrns2S\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{c8ni3xvzu:\"Delicious food and cocktails, very nice atmosphere, friendly staff, I would like to come back again as soon as possible!\",height:\"100%\",id:\"bSMqrns2S\",layoutId:\"bSMqrns2S\",style:{height:\"100%\",width:\"100%\"},TyarFd7SL:\"Hani Bustani\",variant:\"T1oPvtht0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:530,width:\"935px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aytop4-container\",inComponentSlot:true,nodeId:\"NRjXVWV2A\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{c8ni3xvzu:\"Great place, many food options, funky design and amazing fountain views. We came for music night, we loved the artists and their performance. Definitely recommend!\",height:\"100%\",id:\"NRjXVWV2A\",layoutId:\"NRjXVWV2A\",neXwnyXFk:addImageAlt({src:\"https://framerusercontent.com/images/pXM0CSRCVMVzisE9efBgOAvBs78.jpg\",srcSet:\"https://framerusercontent.com/images/pXM0CSRCVMVzisE9efBgOAvBs78.jpg 800w\"},\"\"),style:{height:\"100%\",width:\"100%\"},TyarFd7SL:\"Riad Mouhajer\",variant:\"y8D5AjqXA\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mu9kqt-container hidden-72rtr7 hidden-vls3lh\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AcZRvl4zG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow1,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:-61,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:0,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:54,leftArrow:\"https://framerusercontent.com/images/wET1sIIkgGrdXLiDQmeWI7AQ.svg\",rightArrow:\"https://framerusercontent.com/images/7nknFWYRZqhdeSte2ycCylozPk.svg\",showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",id:\"AcZRvl4zG\",intervalControl:3,itemAmount:1,layoutId:\"AcZRvl4zG\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:\"530px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-fes7fg-container\",inComponentSlot:true,nodeId:\"arfaAkNOt\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{c8ni3xvzu:\"Delicious food and cocktails, very nice atmosphere, friendly staff, I would like to come back again as soon as possible!\",height:\"100%\",id:\"arfaAkNOt\",layoutId:\"arfaAkNOt\",style:{height:\"100%\",width:\"100%\"},TyarFd7SL:\"Hani Bustani\",variant:\"cvYXeQaqJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:\"530px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bi6xpb-container\",inComponentSlot:true,nodeId:\"AEFv8Zxkw\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{c8ni3xvzu:\"Great place, many food options, funky design and amazing fountain views. We came for music night, we loved the artists and their performance. Definitely recommend!\",height:\"100%\",id:\"AEFv8Zxkw\",layoutId:\"AEFv8Zxkw\",neXwnyXFk:addImageAlt({src:\"https://framerusercontent.com/images/pXM0CSRCVMVzisE9efBgOAvBs78.jpg\",srcSet:\"https://framerusercontent.com/images/pXM0CSRCVMVzisE9efBgOAvBs78.jpg 800w\"},\"\"),style:{height:\"100%\",width:\"100%\"},TyarFd7SL:\"Riad Mouhajer\",variant:\"rNAfoJwDz\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-683h4u-container hidden-72rtr7 hidden-16rj8rp\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HBnrI0LuZ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow1,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:-61,arrowPaddingBottom:-72,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:0,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:44,leftArrow:\"https://framerusercontent.com/images/wET1sIIkgGrdXLiDQmeWI7AQ.svg\",rightArrow:\"https://framerusercontent.com/images/7nknFWYRZqhdeSte2ycCylozPk.svg\",showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",id:\"HBnrI0LuZ\",intervalControl:3,itemAmount:1,layoutId:\"HBnrI0LuZ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:537,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-plrj5b-container\",inComponentSlot:true,nodeId:\"M7L4w_DgR\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{c8ni3xvzu:\"Delicious food and cocktails, very nice atmosphere, friendly staff, I would like to come back again as soon as possible!\",height:\"100%\",id:\"M7L4w_DgR\",layoutId:\"M7L4w_DgR\",style:{height:\"100%\",width:\"100%\"},TyarFd7SL:\"Hani Bustani\",variant:\"jyZjw4Suz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:593,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-h8w6il-container\",inComponentSlot:true,nodeId:\"ILiszAnOI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{c8ni3xvzu:\"Great place, many food options, funky design and amazing fountain views. We came for music night, we loved the artists and their performance. Definitely recommend!\",height:\"100%\",id:\"ILiszAnOI\",layoutId:\"ILiszAnOI\",neXwnyXFk:addImageAlt({src:\"https://framerusercontent.com/images/pXM0CSRCVMVzisE9efBgOAvBs78.jpg\",srcSet:\"https://framerusercontent.com/images/pXM0CSRCVMVzisE9efBgOAvBs78.jpg 800w\"},\"\"),style:{height:\"100%\",width:\"100%\"},TyarFd7SL:\"Riad Mouhajer\",variant:\"Gql3wzB9n\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:557,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5114+60+108.4+529-62),pixelHeight:557,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/04sAIMYPPdFDGTQtJh8WSSMLU.png\",srcSet:\"https://framerusercontent.com/images/04sAIMYPPdFDGTQtJh8WSSMLU.png?scale-down-to=512 512w,https://framerusercontent.com/images/04sAIMYPPdFDGTQtJh8WSSMLU.png 600w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:557,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4583.4+80+108.4+529-102),pixelHeight:557,pixelWidth:600,sizes:\"141px\",src:\"https://framerusercontent.com/images/04sAIMYPPdFDGTQtJh8WSSMLU.png\",srcSet:\"https://framerusercontent.com/images/04sAIMYPPdFDGTQtJh8WSSMLU.png?scale-down-to=512 512w,https://framerusercontent.com/images/04sAIMYPPdFDGTQtJh8WSSMLU.png 600w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation17,__framer__loop:animation8,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition21,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:557,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5005.6+120+108.4+529-147),pixelHeight:557,pixelWidth:600,sizes:\"181px\",src:\"https://framerusercontent.com/images/04sAIMYPPdFDGTQtJh8WSSMLU.png\",srcSet:\"https://framerusercontent.com/images/04sAIMYPPdFDGTQtJh8WSSMLU.png?scale-down-to=512 512w,https://framerusercontent.com/images/04sAIMYPPdFDGTQtJh8WSSMLU.png 600w\"},className:\"framer-7afn3l\",\"data-framer-name\":\"Quote\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:921,intrinsicWidth:1529,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5114+60+108.4+529-337.5006),pixelHeight:912,pixelWidth:1510,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8 + 86px)`,src:\"https://framerusercontent.com/images/3csfTpO9MWbFf4zAcwNw43PhyZw.png\",srcSet:\"https://framerusercontent.com/images/3csfTpO9MWbFf4zAcwNw43PhyZw.png?scale-down-to=512 512w,https://framerusercontent.com/images/3csfTpO9MWbFf4zAcwNw43PhyZw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3csfTpO9MWbFf4zAcwNw43PhyZw.png 1510w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:921,intrinsicWidth:1529,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4583.4+80+108.4+529-329.9982),pixelHeight:912,pixelWidth:1510,sizes:\"673px\",src:\"https://framerusercontent.com/images/3csfTpO9MWbFf4zAcwNw43PhyZw.png\",srcSet:\"https://framerusercontent.com/images/3csfTpO9MWbFf4zAcwNw43PhyZw.png?scale-down-to=512 512w,https://framerusercontent.com/images/3csfTpO9MWbFf4zAcwNw43PhyZw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3csfTpO9MWbFf4zAcwNw43PhyZw.png 1510w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition22},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:921,intrinsicWidth:1529,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5005.6+120+108.4+529-374.0023),pixelHeight:912,pixelWidth:1510,sizes:\"738px\",src:\"https://framerusercontent.com/images/3csfTpO9MWbFf4zAcwNw43PhyZw.png\",srcSet:\"https://framerusercontent.com/images/3csfTpO9MWbFf4zAcwNw43PhyZw.png?scale-down-to=512 512w,https://framerusercontent.com/images/3csfTpO9MWbFf4zAcwNw43PhyZw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3csfTpO9MWbFf4zAcwNw43PhyZw.png 1510w\"},className:\"framer-cp76kf\",\"data-framer-name\":\"Neon testimonial\",style:{rotate:-8}})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5943.4),pixelHeight:1448,pixelWidth:2560,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/zgaPZCxBChML9KtGdPrSTH2zTYw.png\",srcSet:\"https://framerusercontent.com/images/zgaPZCxBChML9KtGdPrSTH2zTYw.png?scale-down-to=512 512w,https://framerusercontent.com/images/zgaPZCxBChML9KtGdPrSTH2zTYw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zgaPZCxBChML9KtGdPrSTH2zTYw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zgaPZCxBChML9KtGdPrSTH2zTYw.png 2560w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5420.8),pixelHeight:1448,pixelWidth:2560,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/zgaPZCxBChML9KtGdPrSTH2zTYw.png\",srcSet:\"https://framerusercontent.com/images/zgaPZCxBChML9KtGdPrSTH2zTYw.png?scale-down-to=512 512w,https://framerusercontent.com/images/zgaPZCxBChML9KtGdPrSTH2zTYw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zgaPZCxBChML9KtGdPrSTH2zTYw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zgaPZCxBChML9KtGdPrSTH2zTYw.png 2560w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5923),pixelHeight:1448,pixelWidth:2560,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/zgaPZCxBChML9KtGdPrSTH2zTYw.png\",srcSet:\"https://framerusercontent.com/images/zgaPZCxBChML9KtGdPrSTH2zTYw.png?scale-down-to=512 512w,https://framerusercontent.com/images/zgaPZCxBChML9KtGdPrSTH2zTYw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zgaPZCxBChML9KtGdPrSTH2zTYw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zgaPZCxBChML9KtGdPrSTH2zTYw.png 2560w\"},className:\"framer-d0lifg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bn2ssy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5943.4+100+0+0+0),pixelHeight:123,pixelWidth:600,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OEBABNGng3gzP0vGBgmFcmadaY8.png\",srcSet:\"https://framerusercontent.com/images/OEBABNGng3gzP0vGBgmFcmadaY8.png?scale-down-to=512 512w,https://framerusercontent.com/images/OEBABNGng3gzP0vGBgmFcmadaY8.png 600w\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5420.8+100+0+0+0),pixelHeight:123,pixelWidth:600,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OEBABNGng3gzP0vGBgmFcmadaY8.png\",srcSet:\"https://framerusercontent.com/images/OEBABNGng3gzP0vGBgmFcmadaY8.png?scale-down-to=512 512w,https://framerusercontent.com/images/OEBABNGng3gzP0vGBgmFcmadaY8.png 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5923+160+0+0+0),pixelHeight:123,pixelWidth:600,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OEBABNGng3gzP0vGBgmFcmadaY8.png\",srcSet:\"https://framerusercontent.com/images/OEBABNGng3gzP0vGBgmFcmadaY8.png?scale-down-to=512 512w,https://framerusercontent.com/images/OEBABNGng3gzP0vGBgmFcmadaY8.png 600w\"},className:\"framer-1lbc7cg\",style:{rotate:4},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvbW11dGVycyBTYW5zIEV4dHJhQm9sZA==\",\"--framer-font-family\":'\"Commuters Sans ExtraBold\", \"Commuters Sans ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"0.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Join the\"})})},lWV4KS9lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvbW11dGVycyBTYW5zIEV4dHJhQm9sZA==\",\"--framer-font-family\":'\"Commuters Sans ExtraBold\", \"Commuters Sans ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"0.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Join the\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NvbW11dGVycyBTYW5zIEV4dHJhQm9sZA==\",\"--framer-font-family\":'\"Commuters Sans ExtraBold\", \"Commuters Sans ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"0.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Join the\"})}),className:\"framer-zp9z8i\",fonts:[\"CUSTOM;Commuters Sans ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-69mo8l\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hlbnJpayBOb3JtYWw=\",\"--framer-font-family\":'\"Henrik Normal\", \"Henrik Normal Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Distrikt\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hlbnJpayBOb3JtYWw=\",\"--framer-font-family\":'\"Henrik Normal\", \"Henrik Normal Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"vibes\"})]})},lWV4KS9lk:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hlbnJpayBOb3JtYWw=\",\"--framer-font-family\":'\"Henrik Normal\", \"Henrik Normal Placeholder\", sans-serif',\"--framer-font-size\":\"160px\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Distrikt\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hlbnJpayBOb3JtYWw=\",\"--framer-font-family\":'\"Henrik Normal\", \"Henrik Normal Placeholder\", sans-serif',\"--framer-font-size\":\"160px\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"vibes\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hlbnJpayBOb3JtYWw=\",\"--framer-font-family\":'\"Henrik Normal\", \"Henrik Normal Placeholder\", sans-serif',\"--framer-font-size\":\"210px\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Distrikt\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hlbnJpayBOb3JtYWw=\",\"--framer-font-family\":'\"Henrik Normal\", \"Henrik Normal Placeholder\", sans-serif',\"--framer-font-size\":\"210px\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"vibes\"})]}),className:\"framer-16pu67o\",fonts:[\"CUSTOM;Henrik Normal\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:495,intrinsicWidth:465,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5943.4+100+0+-6),pixelHeight:495,pixelWidth:465,src:\"https://framerusercontent.com/images/EL5PBTxuhbKc01dwuAfzMZUlIQ8.png\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:495,intrinsicWidth:465,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5420.8+100+0+14),pixelHeight:495,pixelWidth:465,src:\"https://framerusercontent.com/images/EL5PBTxuhbKc01dwuAfzMZUlIQ8.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation8,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition17,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:495,intrinsicWidth:465,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5923+160+0+14),pixelHeight:495,pixelWidth:465,src:\"https://framerusercontent.com/images/EL5PBTxuhbKc01dwuAfzMZUlIQ8.png\"},className:\"framer-1wizzoj\",\"data-framer-name\":\"Icon-07\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:312,intrinsicWidth:311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5943.4+100+0+176-29),pixelHeight:312,pixelWidth:311,src:\"https://framerusercontent.com/images/qqovJf5mploXlrh0PUsEDeL1c.png\"}},lWV4KS9lk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:312,intrinsicWidth:311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5420.8+100+0+307.2-114),pixelHeight:312,pixelWidth:311,src:\"https://framerusercontent.com/images/qqovJf5mploXlrh0PUsEDeL1c.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation8,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition17,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:312,intrinsicWidth:311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5923+160+0+397-133),pixelHeight:312,pixelWidth:311,src:\"https://framerusercontent.com/images/qqovJf5mploXlrh0PUsEDeL1c.png\"},className:\"framer-wcmlts\",\"data-framer-name\":\"Icon-09\"})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XKD_pdkVQ\"},implicitPathVariables:undefined},{href:{webPageId:\"XKD_pdkVQ\"},implicitPathVariables:undefined},{href:{webPageId:\"XKD_pdkVQ\"},implicitPathVariables:undefined}],children:resolvedLinks46=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{y:(componentViewport?.y||0)+0+5943.4+100+208},lWV4KS9lk:{y:(componentViewport?.y||0)+0+5420.8+100+343.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+5923+160+433,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s56zob-container\",\"data-framer-cursor\":\"ha8ah\",nodeId:\"Z6reGg2dp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EU2REJ5Ty:{WlO53R_xG:resolvedLinks46[2]},lWV4KS9lk:{WlO53R_xG:resolvedLinks46[1]}},children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"Z6reGg2dp\",layoutId:\"Z6reGg2dp\",variant:\"XvIFBaEUI\",width:\"100%\",WlO53R_xG:resolvedLinks46[0],ZDndtnRTE:\"Contact Us\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17a116q\"})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ewQTu.framer-lux5qc, .framer-ewQTu .framer-lux5qc { display: block; }\",\".framer-ewQTu.framer-72rtr7 { align-content: center; align-items: center; background-color: #212121; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-ewQTu .framer-1ftx2e9 { aspect-ratio: 0.8466666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); left: 50%; overflow: visible; position: absolute; top: 26px; transform: translateX(-50%); width: 127px; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-ewQTu .framer-18wj9m1-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 4; }\",\".framer-ewQTu .framer-2f6gir-container { flex: none; height: 800px; position: relative; width: 100%; z-index: 1; }\",\".framer-ewQTu .framer-xutn60-container { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-ewQTu .framer-1ho5efs-container { flex: none; height: auto; left: 164px; position: absolute; top: -625px; width: auto; z-index: 2; }\",\".framer-ewQTu .framer-vv1p3b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 120px 120px 120px; position: relative; width: 100%; }\",\".framer-ewQTu .framer-1prz5rk { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-ewQTu .framer-qf2w72 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ewQTu .framer-1912bdv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ewQTu .framer-1op0nqn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ewQTu .framer-4bnsk1, .framer-ewQTu .framer-w7ptmb, .framer-ewQTu .framer-13yr6ho, .framer-ewQTu .framer-zp9z8i { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-ewQTu .framer-yn55zj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.05; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-ewQTu .framer-fyfv1j { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.13; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-ewQTu .framer-1skyabq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.4; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-ewQTu .framer-wg13x7 { aspect-ratio: 12.820512820512821 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); overflow: hidden; position: relative; width: 500px; }\",\".framer-ewQTu .framer-862r1j { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-ewQTu .framer-e0ua46 { aspect-ratio: 0.9393939393939394 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 104px); overflow: visible; position: absolute; right: -416px; top: 91px; width: 98px; z-index: 3; }\",\".framer-ewQTu .framer-13h2jd0 { aspect-ratio: 0.9966216216216216 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 105px); overflow: visible; position: absolute; right: 155px; top: 277px; width: 105px; z-index: 3; }\",\".framer-ewQTu .framer-i2bqsr { aspect-ratio: 1.61651376146789 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 352px); overflow: visible; position: absolute; right: -5px; top: 29px; width: 569px; z-index: 2; }\",\".framer-ewQTu .framer-1chc464 { aspect-ratio: 0.9036144578313253 / 1; bottom: 174px; flex: none; height: var(--framer-aspect-ratio-supported, 240px); left: 875px; overflow: visible; position: absolute; width: 217px; z-index: 1; }\",\".framer-ewQTu .framer-1b361qg-container { -webkit-mask: url('https://framerusercontent.com/images/8BM52aBpbIFGPZmHwbCaWcJk.svg') alpha no-repeat center / cover add; flex: none; height: 106%; left: -17px; mask: url('https://framerusercontent.com/images/8BM52aBpbIFGPZmHwbCaWcJk.svg') alpha no-repeat center / cover add; position: absolute; top: calc(51.38339920948619% - 105.58897734608648% / 2); width: 105%; z-index: 1; }\",\".framer-ewQTu .framer-6717w7 { bottom: -12px; flex: none; left: -17px; overflow: hidden; position: absolute; right: 4px; top: -2px; }\",\".framer-ewQTu .framer-z5sxq8 { aspect-ratio: 1.033297529538131 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 410px); left: 748px; overflow: visible; position: absolute; top: 23px; width: 423px; z-index: 0; }\",\".framer-ewQTu .framer-namjwc { aspect-ratio: 0.6772616136919315 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 700px); overflow: visible; position: absolute; right: 0px; width: 474px; z-index: 0; }\",\".framer-ewQTu .framer-4wjhiv-container { bottom: 55px; flex: none; height: 139px; left: 249px; mix-blend-mode: difference; position: absolute; width: 129px; z-index: 1; }\",\".framer-ewQTu .framer-1opcsq { aspect-ratio: 7.267605633802817 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 55px); left: 148px; overflow: visible; position: absolute; width: 400px; z-index: 1; }\",\".framer-ewQTu .framer-1tlm52d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px; position: relative; width: 100%; }\",\".framer-ewQTu .framer-7qk212 { aspect-ratio: 1.6783216783216783 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 715px); max-width: 1400px; overflow: visible; position: relative; width: 1px; z-index: 1; }\",\".framer-ewQTu .framer-1boe1lm { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; width: 1155px; z-index: 1; }\",\".framer-ewQTu .framer-i21zl6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-ewQTu .framer-1hlrr52 { align-content: flex-start; align-items: flex-start; bottom: 101px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; width: min-content; }\",\".framer-ewQTu .framer-1dfdfng, .framer-ewQTu .framer-qipich { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ewQTu .framer-15bcgas, .framer-ewQTu .framer-7cvo9s, .framer-ewQTu .framer-18n5dzf, .framer-ewQTu .framer-qwba7l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ewQTu .framer-k59h5h { aspect-ratio: 2.480225988700565 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 170px); overflow: visible; position: absolute; right: -248px; top: 61%; transform: translateY(-50%); width: 421px; }\",\".framer-ewQTu .framer-12x7t8q { aspect-ratio: 1 / 1; bottom: 2px; flex: none; height: var(--framer-aspect-ratio-supported, 166px); left: 641px; overflow: visible; position: absolute; width: 166px; }\",\".framer-ewQTu .framer-17idiag { aspect-ratio: 0.24314024390243902 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 143px); left: 41px; overflow: visible; position: absolute; top: -57px; width: 35px; z-index: 1; }\",\".framer-ewQTu .framer-i4kn9z { flex: none; height: 94px; left: 30px; position: absolute; top: 28px; width: 60px; }\",\".framer-ewQTu .framer-1g5h9bk { flex: none; height: 36px; left: calc(18.16666666666669% - 63px / 2); overflow: visible; position: absolute; top: calc(24.335664335664358% - 36px / 2); width: 63px; }\",\".framer-ewQTu .framer-d5rsxy, .framer-ewQTu .framer-1yytsmm, .framer-ewQTu .framer-og2zpm, .framer-ewQTu .framer-kyhbx2, .framer-ewQTu .framer-1lwltmd, .framer-ewQTu .framer-tr4v7v, .framer-ewQTu .framer-9t2txi, .framer-ewQTu .framer-ftj8ic, .framer-ewQTu .framer-10heyr0, .framer-ewQTu .framer-r7vmnm, .framer-ewQTu .framer-1oxu7jz, .framer-ewQTu .framer-40dedm, .framer-ewQTu .framer-1wdhxsm, .framer-ewQTu .framer-1rv0kzb, .framer-ewQTu .framer-n0mfwo, .framer-ewQTu .framer-xdb9df, .framer-ewQTu .framer-rvw34s, .framer-ewQTu .framer-tus1o5, .framer-ewQTu .framer-gfsl2c { aspect-ratio: 1.2 / 1; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: var(--framer-aspect-ratio-supported, 128px); overflow: hidden; position: relative; text-decoration: none; width: 154px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ewQTu .framer-1ilu6cp, .framer-ewQTu .framer-11s38i2, .framer-ewQTu .framer-wctdzr, .framer-ewQTu .framer-1gjmi14, .framer-ewQTu .framer-ux9i16, .framer-ewQTu .framer-1onqeto, .framer-ewQTu .framer-1j7an92, .framer-ewQTu .framer-1tzzjxd, .framer-ewQTu .framer-efhb4r, .framer-ewQTu .framer-ako9oi, .framer-ewQTu .framer-1jcq9nk, .framer-ewQTu .framer-1pr8e4t, .framer-ewQTu .framer-1s7u868, .framer-ewQTu .framer-1kudame, .framer-ewQTu .framer-1oxj0fp, .framer-ewQTu .framer-1eui8qc, .framer-ewQTu .framer-11fqvs2, .framer-ewQTu .framer-itlsfn, .framer-ewQTu .framer-3jqqjc, .framer-ewQTu .framer-1rdxudj, .framer-ewQTu .framer-1ae0i5m, .framer-ewQTu .framer-j2y1f7, .framer-ewQTu .framer-1eznndt, .framer-ewQTu .framer-1373wwh, .framer-ewQTu .framer-52cu4p { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 85%; left: calc(50.00000000000002% - 85% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 85% / 2); width: 85%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ewQTu .framer-908ck7 { flex: none; height: 37px; left: calc(25.583333333333357% - 42px / 2); overflow: visible; position: absolute; top: calc(25.314685314685338% - 37px / 2); width: 42px; }\",\".framer-ewQTu .framer-xnpydh { flex: none; height: 55px; left: calc(33.08333333333336% - 37px / 2); overflow: visible; position: absolute; top: calc(29.93006993006995% - 55px / 2); width: 37px; }\",\".framer-ewQTu .framer-16jssd7 { flex: none; height: 38px; left: calc(78.91666666666669% - 40px / 2); overflow: visible; position: absolute; top: calc(54.82517482517485% - 38px / 2); width: 40px; }\",\".framer-ewQTu .framer-cvbvbf { aspect-ratio: 1.2 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: var(--framer-aspect-ratio-supported, 128px); overflow: hidden; position: relative; text-decoration: none; width: 154px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ewQTu .framer-122jl9b { flex: none; height: 57px; left: calc(15.250000000000021% - 51px / 2); overflow: visible; position: absolute; top: calc(33.14685314685317% - 57px / 2); width: 51px; z-index: 4; }\",\".framer-ewQTu .framer-69cs3o, .framer-ewQTu .framer-942w58, .framer-ewQTu .framer-kqen0m, .framer-ewQTu .framer-3mgndc { aspect-ratio: 1.2 / 1; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: var(--framer-aspect-ratio-supported, 129px); overflow: hidden; position: relative; text-decoration: none; width: 154px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ewQTu .framer-1h79y9 { flex: none; height: 51px; left: 275px; overflow: visible; position: absolute; top: 275px; width: 44px; z-index: 4; }\",\".framer-ewQTu .framer-1v9kdi9 { flex: none; height: 29px; left: calc(37.25000000000002% - 53px / 2); overflow: visible; position: absolute; top: calc(23.356643356643378% - 29px / 2); width: 53px; }\",\".framer-ewQTu .framer-866owx { aspect-ratio: 1.2 / 1; background-color: #c8392b; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: var(--framer-aspect-ratio-supported, 128px); overflow: hidden; position: relative; text-decoration: none; width: 154px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ewQTu .framer-1txec1a { flex: none; height: 29px; left: calc(37.416666666666686% - 58px / 2); overflow: visible; position: absolute; top: calc(34.40559440559443% - 29px / 2); width: 58px; }\",\".framer-ewQTu .framer-1ji70av { flex: none; height: 50px; left: calc(33.666666666666686% - 50px / 2); overflow: visible; position: absolute; top: calc(41.53846153846156% - 50px / 2); width: 50px; }\",\".framer-ewQTu .framer-645bz { flex: none; height: 27px; left: calc(40.91666666666669% - 45px / 2); overflow: visible; position: absolute; top: calc(47.272727272727295% - 27px / 2); width: 45px; }\",\".framer-ewQTu .framer-l4e2ag { aspect-ratio: 1.2 / 1; background-color: #0f192a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: var(--framer-aspect-ratio-supported, 128px); overflow: hidden; position: relative; text-decoration: none; width: 154px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ewQTu .framer-1o3y5v4 { flex: none; height: 37px; left: calc(42.08333333333336% - 42px / 2); overflow: visible; position: absolute; top: calc(36.92307692307695% - 37px / 2); width: 42px; }\",\".framer-ewQTu .framer-2cm00k { flex: none; height: 29px; left: calc(41.91666666666669% - 30px / 2); overflow: visible; position: absolute; top: calc(30.06993006993009% - 29px / 2); width: 30px; }\",\".framer-ewQTu .framer-mm9p1o { flex: none; height: 31px; left: calc(48.33333333333336% - 29px / 2); overflow: visible; position: absolute; top: calc(38.46153846153849% - 31px / 2); width: 29px; }\",\".framer-ewQTu .framer-50se2r { flex: none; height: 50px; left: calc(52.33333333333336% - 34px / 2); overflow: visible; position: absolute; top: calc(32.86713286713289% - 50px / 2); width: 34px; }\",\".framer-ewQTu .framer-1hgn0j8 { flex: none; height: 50px; left: calc(49.33333333333336% - 50px / 2); overflow: visible; position: absolute; top: calc(46.573426573426595% - 50px / 2); width: 50px; }\",\".framer-ewQTu .framer-i04iy9 { flex: none; height: 15px; left: calc(45.416666666666686% - 46px / 2); overflow: visible; position: absolute; top: calc(51.048951048951075% - 15px / 2); width: 46px; }\",\".framer-ewQTu .framer-bx72uh { flex: none; height: 27px; left: calc(50.16666666666669% - 71px / 2); overflow: visible; position: absolute; top: calc(58.74125874125876% - 27px / 2); width: 71px; }\",\".framer-ewQTu .framer-1s00tag { flex: none; height: 24px; left: calc(55.00000000000003% - 40px / 2); overflow: visible; position: absolute; top: calc(50.349650349650375% - 24px / 2); width: 40px; }\",\".framer-ewQTu .framer-1wdrftl { flex: none; height: 18px; left: calc(60.25000000000003% - 61px / 2); overflow: visible; position: absolute; top: calc(43.21678321678324% - 18px / 2); width: 61px; }\",\".framer-ewQTu .framer-qap42s { flex: none; height: 29px; left: calc(59.83333333333336% - 86px / 2); overflow: visible; position: absolute; top: calc(32.027972027972055% - 29px / 2); width: 86px; }\",\".framer-ewQTu .framer-16p5s0j { flex: none; height: 32px; left: calc(69.9166666666667% - 33px / 2); overflow: visible; position: absolute; top: calc(48.391608391608415% - 32px / 2); width: 33px; }\",\".framer-ewQTu .framer-6fz7hj { flex: none; height: 13px; left: calc(68.75000000000003% - 63px / 2); overflow: visible; position: absolute; top: calc(62.09790209790212% - 13px / 2); width: 63px; }\",\".framer-ewQTu .framer-1j0d6gl { flex: none; height: 28px; left: calc(67.83333333333336% - 75px / 2); overflow: visible; position: absolute; top: calc(66.71328671328673% - 28px / 2); width: 75px; }\",\".framer-ewQTu .framer-2wtots { bottom: 183px; flex: none; height: 44px; left: 719px; overflow: visible; position: absolute; width: 60px; }\",\".framer-ewQTu .framer-ymcetq { flex: none; height: 12px; left: calc(76.58333333333336% - 42px / 2); overflow: visible; position: absolute; top: calc(65.03496503496505% - 12px / 2); width: 42px; }\",\".framer-ewQTu .framer-f21gs0 { flex: none; height: 24px; left: calc(78.75000000000001% - 70px / 2); overflow: visible; position: absolute; top: calc(41.818181818181834% - 24px / 2); width: 70px; }\",\".framer-ewQTu .framer-gdga7w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 47%; mix-blend-mode: soft-light; opacity: 0.37; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 1110px; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-ewQTu .framer-14au63v { aspect-ratio: 2.2543103448275863 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 147px); left: 0px; mix-blend-mode: darken; overflow: visible; position: absolute; top: 0px; width: 331px; z-index: 1; }\",\".framer-ewQTu .framer-3ipx1a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-ewQTu .framer-1w6fdlf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-ewQTu .framer-h0oglh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-ewQTu .framer-1617rtq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ewQTu .framer-1c8f2et { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 0.4 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-ewQTu .framer-6icnxw-container { flex: none; height: 508px; position: relative; width: 100%; z-index: 2; }\",\".framer-ewQTu .framer-89g70g-container, .framer-ewQTu .framer-16e8wxp-container, .framer-ewQTu .framer-11fugb0-container, .framer-ewQTu .framer-1q52gs3-container, .framer-ewQTu .framer-y1x9dh-container, .framer-ewQTu .framer-1omu9oz-container, .framer-ewQTu .framer-kgg18s-container, .framer-ewQTu .framer-t4fa1n-container, .framer-ewQTu .framer-101ypz4-container, .framer-ewQTu .framer-cddfu4-container, .framer-ewQTu .framer-fqrfhv-container, .framer-ewQTu .framer-ys3ilr-container, .framer-ewQTu .framer-11jhox9-container, .framer-ewQTu .framer-14zdz0j-container, .framer-ewQTu .framer-3iooc9-container, .framer-ewQTu .framer-phb1bl-container, .framer-ewQTu .framer-uqbzth-container, .framer-ewQTu .framer-nzs4ez-container, .framer-ewQTu .framer-2c9vq-container, .framer-ewQTu .framer-abyes3-container, .framer-ewQTu .framer-cb609i-container, .framer-ewQTu .framer-hicnfq-container, .framer-ewQTu .framer-syklww-container, .framer-ewQTu .framer-1qtkbb7-container, .framer-ewQTu .framer-19lpnhk-container, .framer-ewQTu .framer-zsxebq-container, .framer-ewQTu .framer-ibdix0-container, .framer-ewQTu .framer-14we7ma-container, .framer-ewQTu .framer-mn48qh-container, .framer-ewQTu .framer-qw6dt-container, .framer-ewQTu .framer-1izom2v-container, .framer-ewQTu .framer-1gv6tnr-container, .framer-ewQTu .framer-1em7nd9-container, .framer-ewQTu .framer-dh3wiw-container, .framer-ewQTu .framer-1x8ejm2-container, .framer-ewQTu .framer-13n88cf-container, .framer-ewQTu .framer-111e0py-container, .framer-ewQTu .framer-g99vnj-container, .framer-ewQTu .framer-1gmv2h8-container, .framer-ewQTu .framer-urlaqf-container, .framer-ewQTu .framer-1nzwig0-container, .framer-ewQTu .framer-1urblhu-container, .framer-ewQTu .framer-1uah8en-container, .framer-ewQTu .framer-1g48zt1-container, .framer-ewQTu .framer-pospk6-container, .framer-ewQTu .framer-grzgyl-container { height: auto; position: relative; width: auto; }\",\".framer-ewQTu .framer-wi9rrv-container { flex: none; height: 460px; position: relative; width: 100%; z-index: 1; }\",\".framer-ewQTu .framer-aofdzg { aspect-ratio: 0.676906779661017 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 656px); overflow: visible; position: absolute; right: 14px; top: 0px; width: 444px; z-index: 0; }\",\".framer-ewQTu .framer-1gza90o { -webkit-mask: radial-gradient(50% 50% at 50% 52.300000000000004%, #000000 0%, rgba(0,0,0,0) 95.71720157657657%) add; aspect-ratio: 2.8699551569506725 / 1; bottom: -162px; flex: none; height: var(--framer-aspect-ratio-supported, 409px); left: 31px; mask: radial-gradient(50% 50% at 50% 52.300000000000004%, #000000 0%, rgba(0,0,0,0) 95.71720157657657%) add; mix-blend-mode: screen; opacity: 0.35; overflow: visible; position: absolute; width: 81%; z-index: 0; }\",\".framer-ewQTu .framer-1570dls { align-content: center; align-items: center; background-color: var(--token-fc3c0174-b439-47e3-bc1f-17483f534a10, #d24831); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 208px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-ewQTu .framer-jrceg6 { aspect-ratio: 6.109785202863962 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 128px); left: -355px; overflow: visible; position: absolute; top: 246px; width: 782px; z-index: 1; }\",\".framer-ewQTu .framer-1t97zcv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-ewQTu .framer-1dvbjtg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ewQTu .framer-10zbz0h-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ewQTu .framer-1tf7v8n { align-content: center; align-items: center; display: flex; flex: 0.446 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 1px; }\",\".framer-ewQTu .framer-1138wyt, .framer-ewQTu .framer-1enfd8t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-ewQTu .framer-1f371k4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ewQTu .framer-1ikwklv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.4; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-ewQTu .framer-1vcr9b8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.16; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-ewQTu .framer-iwwb01 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.09; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-ewQTu .framer-38lr2g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.03; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-ewQTu .framer-vvu48d { aspect-ratio: 3.5335689045936394 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 229px); left: 101%; mix-blend-mode: lighten; opacity: 0.9; overflow: visible; position: absolute; top: 234px; transform: translateX(-50%); width: 809px; z-index: 1; }\",\".framer-ewQTu .framer-sggf12 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ewQTu .framer-g4vwbh-container { flex: none; height: 450px; position: relative; width: 300%; z-index: 1; }\",\".framer-ewQTu .framer-1lv85zl { aspect-ratio: 1.0437375745526838 / 1; height: var(--framer-aspect-ratio-supported, 338px); overflow: visible; position: relative; width: 353px; }\",\".framer-ewQTu .framer-2cdz15 { aspect-ratio: 1.4038997214484679 / 1; height: var(--framer-aspect-ratio-supported, 326px); overflow: visible; position: relative; width: 458px; }\",\".framer-ewQTu .framer-1yjc4cb { aspect-ratio: 1.6459627329192548 / 1; height: var(--framer-aspect-ratio-supported, 217px); overflow: visible; position: relative; width: 357px; }\",\".framer-ewQTu .framer-xo8tib { aspect-ratio: 0.7571743929359823 / 1; height: var(--framer-aspect-ratio-supported, 413px); overflow: visible; position: relative; width: 313px; }\",\".framer-ewQTu .framer-kubeg2 { aspect-ratio: 0.9491279069767442 / 1; height: var(--framer-aspect-ratio-supported, 463px); overflow: visible; position: relative; width: 439px; }\",\".framer-ewQTu .framer-uks2zv { aspect-ratio: 1.150561797752809 / 1; height: var(--framer-aspect-ratio-supported, 299px); overflow: visible; position: relative; width: 344px; }\",\".framer-ewQTu .framer-hdklot { aspect-ratio: 0.6548672566371682 / 1; height: var(--framer-aspect-ratio-supported, 475px); overflow: visible; position: relative; width: 311px; }\",\".framer-ewQTu .framer-eirgvn-container { flex: none; height: 300px; position: relative; width: 300%; z-index: 1; }\",\".framer-ewQTu .framer-1anbhd0 { aspect-ratio: 1.0437375745526838 / 1; height: var(--framer-aspect-ratio-supported, 264px); overflow: visible; position: relative; width: 275px; }\",\".framer-ewQTu .framer-11v0ph4 { aspect-ratio: 1.4038997214484679 / 1; height: var(--framer-aspect-ratio-supported, 196px); overflow: visible; position: relative; width: 275px; }\",\".framer-ewQTu .framer-yt3j15 { aspect-ratio: 1.6459627329192548 / 1; height: var(--framer-aspect-ratio-supported, 167px); overflow: visible; position: relative; width: 275px; }\",\".framer-ewQTu .framer-przrh6 { aspect-ratio: 0.7571743929359823 / 1; height: var(--framer-aspect-ratio-supported, 326px); overflow: visible; position: relative; width: 247px; }\",\".framer-ewQTu .framer-t2bkh { aspect-ratio: 0.9491279069767442 / 1; height: var(--framer-aspect-ratio-supported, 290px); overflow: visible; position: relative; width: 275px; }\",\".framer-ewQTu .framer-7hbx29 { aspect-ratio: 1.150561797752809 / 1; height: var(--framer-aspect-ratio-supported, 239px); overflow: visible; position: relative; width: 275px; }\",\".framer-ewQTu .framer-1e5ndl2 { aspect-ratio: 0.6548672566371682 / 1; height: var(--framer-aspect-ratio-supported, 344px); overflow: visible; position: relative; width: 225px; }\",\".framer-ewQTu .framer-jucuvi-container { flex: none; height: 152px; left: calc(50.00000000000002% - 200% / 2); mix-blend-mode: overlay; opacity: 0.33; position: absolute; top: -84px; width: 200%; z-index: 0; }\",\".framer-ewQTu .framer-xa5rbp, .framer-ewQTu .framer-l6ihb0, .framer-ewQTu .framer-147iyfw, .framer-ewQTu .framer-157042d, .framer-ewQTu .framer-19h4osu, .framer-ewQTu .framer-1qmf35s, .framer-ewQTu .framer-16jaywi, .framer-ewQTu .framer-1paewqa, .framer-ewQTu .framer-ooh802, .framer-ewQTu .framer-1rn6kue, .framer-ewQTu .framer-ujhoa9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ewQTu .framer-17yaa6g, .framer-ewQTu .framer-169atv6, .framer-ewQTu .framer-df6819, .framer-ewQTu .framer-6sy2vo, .framer-ewQTu .framer-mujlah, .framer-ewQTu .framer-6hojhb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 0; }\",\".framer-ewQTu .framer-2tvgfv { flex: none; height: 84px; position: relative; width: 87px; }\",\".framer-ewQTu .framer-fehvi1 { flex: none; height: 84px; position: relative; width: 84px; }\",\".framer-ewQTu .framer-3wuhmc { flex: none; height: 84px; position: relative; width: 64px; }\",\".framer-ewQTu .framer-13pixgc-container { flex: none; height: 66px; left: -325px; mix-blend-mode: overlay; opacity: 0.33; position: absolute; right: -285px; top: -45px; z-index: 0; }\",\".framer-ewQTu .framer-hruqzf { flex: none; height: 48px; position: relative; width: 50px; }\",\".framer-ewQTu .framer-19a1g94 { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-ewQTu .framer-2eih3m { height: 48px; position: relative; width: 37px; }\",\".framer-ewQTu .framer-7d16le { align-content: center; align-items: center; bottom: -47px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 1055px; overflow: hidden; padding: 0px; position: absolute; width: min-content; z-index: 0; }\",\".framer-ewQTu .framer-ddq7gj { flex: none; height: 172px; position: relative; width: 162px; }\",\".framer-ewQTu .framer-1yqjtej { 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: hidden; padding: 120px 0px 160px 0px; position: relative; width: 100%; }\",\".framer-ewQTu .framer-1xbk8j3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 720px; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-ewQTu .framer-17352js { align-content: center; align-items: center; aspect-ratio: 1.7647058823529411 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 530px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 935px; z-index: 1; }\",\".framer-ewQTu .framer-10ky86y { aspect-ratio: 0.9498806682577565 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 151px); left: -66px; overflow: visible; position: absolute; top: 52px; width: 143px; z-index: 2; }\",\".framer-ewQTu .framer-ndey5b-container { flex: none; height: 100%; position: relative; width: 100%; z-index: 1; }\",\".framer-ewQTu .framer-d0f3w4-container, .framer-ewQTu .framer-1aytop4-container { height: 530px; position: relative; width: 935px; }\",\".framer-ewQTu .framer-mu9kqt-container { flex: 1 0 0px; height: 780px; position: relative; width: 1px; z-index: 1; }\",\".framer-ewQTu .framer-fes7fg-container, .framer-ewQTu .framer-bi6xpb-container { height: 800px; position: relative; width: 530px; }\",\".framer-ewQTu .framer-683h4u-container { flex: 1 0 0px; height: 560px; position: relative; width: 1px; z-index: 1; }\",\".framer-ewQTu .framer-plrj5b-container { height: 537px; position: relative; width: 320px; }\",\".framer-ewQTu .framer-h8w6il-container { height: 593px; position: relative; width: 320px; }\",\".framer-ewQTu .framer-7afn3l { aspect-ratio: 1.0771992818671454 / 1; bottom: -21px; flex: none; height: var(--framer-aspect-ratio-supported, 168px); overflow: visible; position: absolute; right: -73px; width: 181px; z-index: 1; }\",\".framer-ewQTu .framer-cp76kf { aspect-ratio: 1.6601520086862107 / 1; bottom: -71px; flex: none; height: var(--framer-aspect-ratio-supported, 445px); overflow: visible; position: absolute; right: -102px; width: 738px; z-index: 0; }\",\".framer-ewQTu .framer-d0lifg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: 816px; justify-content: flex-start; overflow: hidden; padding: 160px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-ewQTu .framer-bn2ssy { 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: 1200px; overflow: visible; padding: 0px 0px 39px 0px; position: relative; width: min-content; }\",\".framer-ewQTu .framer-1lbc7cg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 22px 40px 18px 40px; position: relative; width: min-content; }\",\".framer-ewQTu .framer-69mo8l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 40px; position: relative; width: min-content; }\",\".framer-ewQTu .framer-16pu67o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; text-shadow: 6px 6px 0px rgba(0, 0, 0, 0.44); user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-ewQTu .framer-1wizzoj { aspect-ratio: 0.9393939393939394 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 105px); left: 62px; overflow: visible; position: absolute; top: 14px; width: 98px; z-index: 2; }\",\".framer-ewQTu .framer-wcmlts { -webkit-filter: drop-shadow(5px 5px 0px #000000); aspect-ratio: 0.9967948717948718 / 1; bottom: -18px; filter: drop-shadow(5px 5px 0px #000000); flex: none; height: var(--framer-aspect-ratio-supported, 151px); left: 684px; overflow: visible; position: absolute; width: 150px; z-index: 1; }\",\".framer-ewQTu .framer-s56zob-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ewQTu .framer-17a116q { -webkit-user-select: none; flex: none; height: 100vh; overflow: hidden; pointer-events: none; position: relative; user-select: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ewQTu.framer-72rtr7, .framer-ewQTu .framer-vv1p3b, .framer-ewQTu .framer-qf2w72, .framer-ewQTu .framer-1912bdv, .framer-ewQTu .framer-1op0nqn, .framer-ewQTu .framer-1tlm52d, .framer-ewQTu .framer-1boe1lm, .framer-ewQTu .framer-1hlrr52, .framer-ewQTu .framer-1dfdfng, .framer-ewQTu .framer-qipich, .framer-ewQTu .framer-1w6fdlf, .framer-ewQTu .framer-h0oglh, .framer-ewQTu .framer-1617rtq, .framer-ewQTu .framer-1570dls, .framer-ewQTu .framer-1t97zcv, .framer-ewQTu .framer-1dvbjtg, .framer-ewQTu .framer-1tf7v8n, .framer-ewQTu .framer-1f371k4, .framer-ewQTu .framer-sggf12, .framer-ewQTu .framer-xa5rbp, .framer-ewQTu .framer-l6ihb0, .framer-ewQTu .framer-147iyfw, .framer-ewQTu .framer-157042d, .framer-ewQTu .framer-19h4osu, .framer-ewQTu .framer-1qmf35s, .framer-ewQTu .framer-16jaywi, .framer-ewQTu .framer-1paewqa, .framer-ewQTu .framer-ooh802, .framer-ewQTu .framer-1rn6kue, .framer-ewQTu .framer-ujhoa9, .framer-ewQTu .framer-7d16le, .framer-ewQTu .framer-1yqjtej, .framer-ewQTu .framer-17352js, .framer-ewQTu .framer-d0lifg, .framer-ewQTu .framer-bn2ssy, .framer-ewQTu .framer-1lbc7cg, .framer-ewQTu .framer-69mo8l { gap: 0px; } .framer-ewQTu.framer-72rtr7 > *, .framer-ewQTu .framer-1dfdfng > *, .framer-ewQTu .framer-qipich > *, .framer-ewQTu .framer-1tf7v8n > *, .framer-ewQTu .framer-1f371k4 > *, .framer-ewQTu .framer-bn2ssy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ewQTu.framer-72rtr7 > :first-child, .framer-ewQTu .framer-1912bdv > :first-child, .framer-ewQTu .framer-1op0nqn > :first-child, .framer-ewQTu .framer-1boe1lm > :first-child, .framer-ewQTu .framer-1hlrr52 > :first-child, .framer-ewQTu .framer-1dfdfng > :first-child, .framer-ewQTu .framer-qipich > :first-child, .framer-ewQTu .framer-1w6fdlf > :first-child, .framer-ewQTu .framer-1570dls > :first-child, .framer-ewQTu .framer-1tf7v8n > :first-child, .framer-ewQTu .framer-1f371k4 > :first-child, .framer-ewQTu .framer-sggf12 > :first-child, .framer-ewQTu .framer-1yqjtej > :first-child, .framer-ewQTu .framer-d0lifg > :first-child, .framer-ewQTu .framer-bn2ssy > :first-child { margin-top: 0px; } .framer-ewQTu.framer-72rtr7 > :last-child, .framer-ewQTu .framer-1912bdv > :last-child, .framer-ewQTu .framer-1op0nqn > :last-child, .framer-ewQTu .framer-1boe1lm > :last-child, .framer-ewQTu .framer-1hlrr52 > :last-child, .framer-ewQTu .framer-1dfdfng > :last-child, .framer-ewQTu .framer-qipich > :last-child, .framer-ewQTu .framer-1w6fdlf > :last-child, .framer-ewQTu .framer-1570dls > :last-child, .framer-ewQTu .framer-1tf7v8n > :last-child, .framer-ewQTu .framer-1f371k4 > :last-child, .framer-ewQTu .framer-sggf12 > :last-child, .framer-ewQTu .framer-1yqjtej > :last-child, .framer-ewQTu .framer-d0lifg > :last-child, .framer-ewQTu .framer-bn2ssy > :last-child { margin-bottom: 0px; } .framer-ewQTu .framer-vv1p3b > *, .framer-ewQTu .framer-qf2w72 > *, .framer-ewQTu .framer-1tlm52d > *, .framer-ewQTu .framer-h0oglh > *, .framer-ewQTu .framer-1617rtq > *, .framer-ewQTu .framer-1t97zcv > *, .framer-ewQTu .framer-xa5rbp > *, .framer-ewQTu .framer-l6ihb0 > *, .framer-ewQTu .framer-147iyfw > *, .framer-ewQTu .framer-157042d > *, .framer-ewQTu .framer-19h4osu > *, .framer-ewQTu .framer-1qmf35s > *, .framer-ewQTu .framer-16jaywi > *, .framer-ewQTu .framer-1paewqa > *, .framer-ewQTu .framer-ooh802 > *, .framer-ewQTu .framer-1rn6kue > *, .framer-ewQTu .framer-ujhoa9 > *, .framer-ewQTu .framer-7d16le > *, .framer-ewQTu .framer-1lbc7cg > *, .framer-ewQTu .framer-69mo8l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ewQTu .framer-vv1p3b > :first-child, .framer-ewQTu .framer-qf2w72 > :first-child, .framer-ewQTu .framer-1tlm52d > :first-child, .framer-ewQTu .framer-h0oglh > :first-child, .framer-ewQTu .framer-1617rtq > :first-child, .framer-ewQTu .framer-1t97zcv > :first-child, .framer-ewQTu .framer-1dvbjtg > :first-child, .framer-ewQTu .framer-xa5rbp > :first-child, .framer-ewQTu .framer-l6ihb0 > :first-child, .framer-ewQTu .framer-147iyfw > :first-child, .framer-ewQTu .framer-157042d > :first-child, .framer-ewQTu .framer-19h4osu > :first-child, .framer-ewQTu .framer-1qmf35s > :first-child, .framer-ewQTu .framer-16jaywi > :first-child, .framer-ewQTu .framer-1paewqa > :first-child, .framer-ewQTu .framer-ooh802 > :first-child, .framer-ewQTu .framer-1rn6kue > :first-child, .framer-ewQTu .framer-ujhoa9 > :first-child, .framer-ewQTu .framer-7d16le > :first-child, .framer-ewQTu .framer-17352js > :first-child, .framer-ewQTu .framer-1lbc7cg > :first-child, .framer-ewQTu .framer-69mo8l > :first-child { margin-left: 0px; } .framer-ewQTu .framer-vv1p3b > :last-child, .framer-ewQTu .framer-qf2w72 > :last-child, .framer-ewQTu .framer-1tlm52d > :last-child, .framer-ewQTu .framer-h0oglh > :last-child, .framer-ewQTu .framer-1617rtq > :last-child, .framer-ewQTu .framer-1t97zcv > :last-child, .framer-ewQTu .framer-1dvbjtg > :last-child, .framer-ewQTu .framer-xa5rbp > :last-child, .framer-ewQTu .framer-l6ihb0 > :last-child, .framer-ewQTu .framer-147iyfw > :last-child, .framer-ewQTu .framer-157042d > :last-child, .framer-ewQTu .framer-19h4osu > :last-child, .framer-ewQTu .framer-1qmf35s > :last-child, .framer-ewQTu .framer-16jaywi > :last-child, .framer-ewQTu .framer-1paewqa > :last-child, .framer-ewQTu .framer-ooh802 > :last-child, .framer-ewQTu .framer-1rn6kue > :last-child, .framer-ewQTu .framer-ujhoa9 > :last-child, .framer-ewQTu .framer-7d16le > :last-child, .framer-ewQTu .framer-17352js > :last-child, .framer-ewQTu .framer-1lbc7cg > :last-child, .framer-ewQTu .framer-69mo8l > :last-child { margin-right: 0px; } .framer-ewQTu .framer-1912bdv > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-ewQTu .framer-1op0nqn > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-ewQTu .framer-1boe1lm > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-ewQTu .framer-1hlrr52 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ewQTu .framer-1w6fdlf > *, .framer-ewQTu .framer-d0lifg > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-ewQTu .framer-1570dls > * { margin: 0px; margin-bottom: calc(208px / 2); margin-top: calc(208px / 2); } .framer-ewQTu .framer-1dvbjtg > * { margin: 0px; margin-left: calc(140px / 2); margin-right: calc(140px / 2); } .framer-ewQTu .framer-sggf12 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ewQTu .framer-1yqjtej > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ewQTu .framer-17352js > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 810px) and (max-width: 1439px) { .framer-ewQTu.framer-72rtr7 { width: 810px; } .framer-ewQTu .framer-1ftx2e9 { height: var(--framer-aspect-ratio-supported, 120px); width: 102px; } .framer-ewQTu .framer-2f6gir-container { height: 720px; } .framer-ewQTu .framer-xutn60-container { height: auto; left: 50%; transform: translateX(-50%); } .framer-ewQTu .framer-vv1p3b { padding: 60px 60px 120px 60px; } .framer-ewQTu .framer-qf2w72 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 48px; height: 1006px; } .framer-ewQTu .framer-1912bdv { gap: 36px; width: 100%; } .framer-ewQTu .framer-wg13x7 { height: var(--framer-aspect-ratio-supported, 25px); width: 322px; } .framer-ewQTu .framer-862r1j { align-self: unset; width: 90%; } .framer-ewQTu .framer-13h2jd0 { bottom: 48px; left: 50%; right: unset; top: unset; transform: translateX(-50%); } .framer-ewQTu .framer-i2bqsr { bottom: 55px; height: var(--framer-aspect-ratio-supported, 334px); left: 75px; max-width: 600px; right: unset; top: unset; width: 540px; } .framer-ewQTu .framer-1chc464 { bottom: -64px; height: var(--framer-aspect-ratio-supported, 215px); left: 50%; transform: translateX(-50%); width: 194px; } .framer-ewQTu .framer-1b361qg-container { height: 105%; left: calc(50.00000000000002% - 105.6701030927835% / 2); top: calc(49.76744186046514% - 105.11627906976744% / 2); width: 106%; } .framer-ewQTu .framer-6717w7 { bottom: -7px; left: -6px; right: -7px; top: -7px; } .framer-ewQTu .framer-z5sxq8 { bottom: 23px; height: var(--framer-aspect-ratio-supported, 379px); left: 50%; top: unset; transform: translateX(-50%); width: 392px; } .framer-ewQTu .framer-namjwc { height: var(--framer-aspect-ratio-supported, 567px); width: 384px; } .framer-ewQTu .framer-4wjhiv-container { bottom: 35px; left: 229px; } .framer-ewQTu .framer-1opcsq { height: var(--framer-aspect-ratio-supported, 43px); left: 0px; width: 311px; } .framer-ewQTu .framer-1tlm52d { padding: 80px 60px 100px 60px; } .framer-ewQTu .framer-7qk212 { aspect-ratio: 1.4168377823408624 / 1; height: var(--framer-aspect-ratio-supported, 487px); } .framer-ewQTu .framer-1boe1lm { width: min-content; } .framer-ewQTu .framer-i21zl6 { width: 365px; } .framer-ewQTu .framer-1hlrr52 { bottom: 30px; } .framer-ewQTu .framer-k59h5h { height: var(--framer-aspect-ratio-supported, 114px); right: -167px; top: 58%; width: 282px; } .framer-ewQTu .framer-12x7t8q { bottom: 11px; height: var(--framer-aspect-ratio-supported, 127px); left: 55%; transform: translateX(-50%); width: 127px; } .framer-ewQTu .framer-i4kn9z { height: 77px; left: 16px; top: 18px; width: 49px; } .framer-ewQTu .framer-1g5h9bk { height: 24px; left: calc(18.4057971014493% - 36px / 2); top: calc(28.54209445585218% - 24px / 2); width: 36px; } .framer-ewQTu .framer-908ck7 { height: 20px; left: calc(25.507246376811615% - 28px / 2); top: calc(28.952772073921995% - 20px / 2); width: 28px; } .framer-ewQTu .framer-xnpydh { height: 32px; left: calc(33.043478260869584% - 21px / 2); top: calc(33.05954825462015% - 32px / 2); width: 21px; } .framer-ewQTu .framer-16jssd7 { height: 29px; left: calc(78.69565217391306% - 27px / 2); top: calc(53.798767967145814% - 29px / 2); width: 27px; } .framer-ewQTu .framer-122jl9b { height: 33px; left: calc(15.362318840579734% - 30px / 2); top: calc(36.139630390143765% - 33px / 2); width: 30px; } .framer-ewQTu .framer-69cs3o, .framer-ewQTu .framer-3mgndc { height: var(--framer-aspect-ratio-supported, 128px); } .framer-ewQTu .framer-1h79y9 { height: 33px; left: 158px; top: 194px; width: 27px; } .framer-ewQTu .framer-kyhbx2 { height: var(--framer-aspect-ratio-supported, 129px); } .framer-ewQTu .framer-1v9kdi9 { height: 17px; left: calc(37.246376811594224% - 33px / 2); top: calc(27.310061601642733% - 17px / 2); width: 33px; } .framer-ewQTu .framer-1txec1a { height: 23px; left: calc(37.39130434782611% - 38px / 2); top: calc(36.55030800821357% - 23px / 2); width: 38px; } .framer-ewQTu .framer-1ji70av { height: 39px; left: calc(33.62318840579712% - 28px / 2); top: calc(42.915811088295705% - 39px / 2); width: 28px; } .framer-ewQTu .framer-645bz { height: 20px; left: calc(41.01449275362321% - 28px / 2); top: calc(47.638603696098585% - 20px / 2); width: 28px; } .framer-ewQTu .framer-1o3y5v4 { height: 27px; left: calc(42.46376811594205% - 28px / 2); top: calc(39.01437371663247% - 27px / 2); width: 28px; } .framer-ewQTu .framer-2cm00k { height: 23px; left: calc(41.73913043478263% - 19px / 2); top: calc(33.05954825462015% - 23px / 2); width: 19px; } .framer-ewQTu .framer-mm9p1o { height: 18px; left: calc(48.4057971014493% - 21px / 2); top: calc(40.45174537987682% - 18px / 2); width: 21px; } .framer-ewQTu .framer-50se2r { height: 28px; left: calc(52.46376811594205% - 28px / 2); top: calc(35.728952772073946% - 28px / 2); width: 28px; } .framer-ewQTu .framer-1hgn0j8 { height: 20px; left: calc(49.56521739130437% - 28px / 2); top: calc(46.40657084188914% - 20px / 2); width: 28px; } .framer-ewQTu .framer-i04iy9 { height: 18px; left: calc(45.6521739130435% - 34px / 2); top: calc(50.92402464065711% - 18px / 2); width: 34px; } .framer-ewQTu .framer-bx72uh { height: 19px; left: calc(50.28985507246379% - 41px / 2); top: calc(57.49486652977415% - 19px / 2); width: 41px; } .framer-ewQTu .framer-1s00tag { height: 29px; left: calc(55.21739130434785% - 32px / 2); top: calc(49.69199178644766% - 29px / 2); width: 32px; } .framer-ewQTu .framer-1wdrftl { height: 25px; left: calc(60.144927536231904% - 36px / 2); top: calc(44.35318275154007% - 25px / 2); width: 36px; } .framer-ewQTu .framer-qap42s { height: 26px; left: calc(59.85507246376813% - 55px / 2); top: calc(34.907597535934315% - 26px / 2); width: 55px; } .framer-ewQTu .framer-16p5s0j { height: 30px; left: calc(69.85507246376814% - 28px / 2); top: calc(49.07597535934294% - 30px / 2); width: 28px; } .framer-ewQTu .framer-6fz7hj { height: 26px; left: calc(68.69565217391307% - 44px / 2); top: calc(59.34291581108832% - 26px / 2); width: 44px; } .framer-ewQTu .framer-1j0d6gl { height: 26px; left: calc(68.11594202898553% - 51px / 2); top: calc(64.68172484599592% - 26px / 2); width: 51px; } .framer-ewQTu .framer-2wtots { bottom: 143px; height: 24px; left: 415px; width: 34px; } .framer-ewQTu .framer-ymcetq { height: 26px; left: calc(76.23188405797103% - 35px / 2); top: calc(62.62833675564684% - 26px / 2); width: 35px; } .framer-ewQTu .framer-f21gs0 { height: 32px; left: calc(78.98550724637683% - 42px / 2); top: calc(42.29979466119099% - 32px / 2); width: 42px; } .framer-ewQTu .framer-1w6fdlf { padding: 80px 0px 80px 0px; } .framer-ewQTu .framer-h0oglh { padding: 0px 60px 0px 60px; } .framer-ewQTu .framer-1c8f2et { flex: 0.5 0 0px; } .framer-ewQTu .framer-aofdzg { height: var(--framer-aspect-ratio-supported, 539px); width: 365px; } .framer-ewQTu .framer-1gza90o { height: var(--framer-aspect-ratio-supported, 230px); } .framer-ewQTu .framer-1570dls { gap: 80px; padding: 180px 0px 60px 0px; } .framer-ewQTu .framer-jrceg6 { aspect-ratio: 6.090225563909774 / 1; height: var(--framer-aspect-ratio-supported, 133px); left: 50%; top: 0px; transform: translateX(-50%); width: 100%; } .framer-ewQTu .framer-1t97zcv { gap: 0px; padding: 0px 60px 0px 60px; } .framer-ewQTu .framer-1dvbjtg { gap: 64px; } .framer-ewQTu .framer-10zbz0h-container { order: 0; } .framer-ewQTu .framer-1tf7v8n { flex: 0.8 0 0px; order: 1; } .framer-ewQTu .framer-vvu48d { left: 103%; top: 320px; } .framer-ewQTu .framer-jucuvi-container { top: -24px; } .framer-ewQTu .framer-1yqjtej { padding: 80px 0px 120px 0px; } .framer-ewQTu .framer-1xbk8j3 { width: 70%; } .framer-ewQTu .framer-17352js { height: var(--framer-aspect-ratio-supported, 780px); width: 80%; } .framer-ewQTu .framer-10ky86y { left: -45px; top: 190px; } .framer-ewQTu .framer-7afn3l { bottom: -29px; height: var(--framer-aspect-ratio-supported, 131px); right: -33px; width: 141px; } .framer-ewQTu .framer-cp76kf { bottom: -76px; height: var(--framer-aspect-ratio-supported, 405px); right: -88px; width: 673px; } .framer-ewQTu .framer-d0lifg { height: 700px; padding: 100px 0px 0px 0px; } .framer-ewQTu .framer-bn2ssy { padding: 0px 0px 24px 0px; } .framer-ewQTu .framer-69mo8l { padding: 0px 0px 0px 20px; } .framer-ewQTu .framer-wcmlts { height: var(--framer-aspect-ratio-supported, 132px); left: 504px; width: 132px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ewQTu .framer-qf2w72, .framer-ewQTu .framer-1912bdv, .framer-ewQTu .framer-1570dls, .framer-ewQTu .framer-1t97zcv, .framer-ewQTu .framer-1dvbjtg { gap: 0px; } .framer-ewQTu .framer-qf2w72 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-ewQTu .framer-qf2w72 > :first-child, .framer-ewQTu .framer-1912bdv > :first-child, .framer-ewQTu .framer-1570dls > :first-child { margin-top: 0px; } .framer-ewQTu .framer-qf2w72 > :last-child, .framer-ewQTu .framer-1912bdv > :last-child, .framer-ewQTu .framer-1570dls > :last-child { margin-bottom: 0px; } .framer-ewQTu .framer-1912bdv > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-ewQTu .framer-1570dls > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-ewQTu .framer-1t97zcv > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ewQTu .framer-1t97zcv > :first-child, .framer-ewQTu .framer-1dvbjtg > :first-child { margin-left: 0px; } .framer-ewQTu .framer-1t97zcv > :last-child, .framer-ewQTu .framer-1dvbjtg > :last-child { margin-right: 0px; } .framer-ewQTu .framer-1dvbjtg > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } }}\",\"@media (max-width: 809px) { .framer-ewQTu.framer-72rtr7 { width: 390px; } .framer-ewQTu .framer-1ftx2e9 { height: var(--framer-aspect-ratio-supported, 100px); top: 12px; width: 85px; } .framer-ewQTu .framer-2f6gir-container { height: 100vh; } .framer-ewQTu .framer-xutn60-container { height: auto; left: 50%; transform: translateX(-50%); } .framer-ewQTu .framer-vv1p3b { flex-direction: column; padding: 60px 24px 60px 24px; } .framer-ewQTu .framer-qf2w72 { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 48px; height: 860px; width: 100%; } .framer-ewQTu .framer-1912bdv { gap: 32px; width: 100%; } .framer-ewQTu .framer-wg13x7 { height: var(--framer-aspect-ratio-supported, 15px); width: 192px; } .framer-ewQTu .framer-862r1j { align-self: unset; width: 100%; } .framer-ewQTu .framer-13h2jd0 { aspect-ratio: unset; bottom: 176px; height: 89px; left: calc(62.5730994152047% - 89px / 2); right: unset; top: unset; width: 89px; } .framer-ewQTu .framer-i2bqsr { height: var(--framer-aspect-ratio-supported, 212px); max-width: 400px; position: relative; right: unset; top: unset; width: 100%; } .framer-ewQTu .framer-1chc464 { bottom: 32px; height: var(--framer-aspect-ratio-supported, 177px); left: 109px; width: 160px; } .framer-ewQTu .framer-1b361qg-container { height: 105%; left: calc(50.00000000000002% - 105.6701030927835% / 2); top: calc(49.76744186046514% - 105.11627906976744% / 2); width: 106%; } .framer-ewQTu .framer-6717w7 { bottom: -7px; left: -6px; right: -7px; top: -7px; } .framer-ewQTu .framer-z5sxq8 { bottom: 170px; height: var(--framer-aspect-ratio-supported, 239px); left: 51%; top: unset; transform: translateX(-50%); width: 247px; } .framer-ewQTu .framer-namjwc { height: var(--framer-aspect-ratio-supported, 443px); width: 300px; } .framer-ewQTu .framer-4wjhiv-container { bottom: 16px; height: 116px; left: 193px; width: 65px; } .framer-ewQTu .framer-1opcsq { height: var(--framer-aspect-ratio-supported, 28px); left: -67px; width: 203px; } .framer-ewQTu .framer-1tlm52d { flex-direction: column; gap: 28px; padding: 88px 24px 72px 24px; } .framer-ewQTu .framer-7qk212 { aspect-ratio: 0.6107142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 560px); order: 1; width: 100%; } .framer-ewQTu .framer-k59h5h { height: var(--framer-aspect-ratio-supported, 92px); right: -139px; top: 53%; width: 228px; } .framer-ewQTu .framer-12x7t8q { bottom: -31px; height: var(--framer-aspect-ratio-supported, 82px); left: 84%; transform: translateX(-50%); width: 82px; } .framer-ewQTu .framer-17idiag { height: var(--framer-aspect-ratio-supported, 144px); } .framer-ewQTu .framer-1g5h9bk { height: 28px; left: calc(37.13450292397663% - 42px / 2); top: calc(15.17857142857145% - 28px / 2); width: 42px; } .framer-ewQTu .framer-908ck7 { height: 36px; left: calc(41.81286549707605% - 28px / 2); top: calc(23.035714285714306% - 36px / 2); width: 28px; } .framer-ewQTu .framer-xnpydh { height: 38px; left: calc(44.444444444444464% - 26px / 2); top: calc(34.10714285714288% - 38px / 2); width: 26px; } .framer-ewQTu .framer-16jssd7 { height: 29px; left: calc(59.64912280701756% - 28px / 2); top: calc(88.75000000000001% - 29px / 2); width: 28px; } .framer-ewQTu .framer-122jl9b { height: 42px; left: calc(21.637426900584817% - 30px / 2); top: calc(20.714285714285737% - 42px / 2); width: 30px; } .framer-ewQTu .framer-69cs3o, .framer-ewQTu .framer-kqen0m, .framer-ewQTu .framer-3mgndc { height: var(--framer-aspect-ratio-supported, 128px); } .framer-ewQTu .framer-1h79y9 { height: 33px; left: 59px; top: 186px; width: 26px; } .framer-ewQTu .framer-kyhbx2 { height: var(--framer-aspect-ratio-supported, 129px); } .framer-ewQTu .framer-1v9kdi9 { height: 28px; left: calc(62.865497076023416% - 39px / 2); top: calc(32.14285714285717% - 28px / 2); width: 39px; } .framer-ewQTu .framer-1txec1a { height: 32px; left: calc(41.81286549707605% - 40px / 2); top: calc(41.785714285714306% - 32px / 2); width: 40px; } .framer-ewQTu .framer-1ji70av { height: 35px; left: calc(28.07017543859651% - 36px / 2); top: calc(45.71428571428574% - 35px / 2); width: 36px; } .framer-ewQTu .framer-645bz { height: 35px; left: calc(30.994152046783647% - 30px / 2); top: calc(55.00000000000003% - 35px / 2); width: 30px; } .framer-ewQTu .framer-1o3y5v4 { height: 32px; left: calc(42.9824561403509% - 28px / 2); top: calc(48.21428571428574% - 32px / 2); width: 28px; } .framer-ewQTu .framer-2cm00k { height: 30px; left: calc(57.602339181286574% - 24px / 2); top: calc(43.5714285714286% - 30px / 2); width: 24px; } .framer-ewQTu .framer-mm9p1o { height: 28px; left: calc(54.09356725146202% - 21px / 2); top: calc(56.42857142857145% - 28px / 2); width: 21px; } .framer-ewQTu .framer-50se2r { height: 34px; left: calc(61.40350877192985% - 25px / 2); top: calc(55.00000000000003% - 34px / 2); width: 25px; } .framer-ewQTu .framer-1hgn0j8 { height: 28px; left: calc(43.27485380116961% - 36px / 2); top: calc(57.32142857142859% - 28px / 2); width: 36px; } .framer-ewQTu .framer-i04iy9 { height: 27px; left: calc(32.1637426900585% - 34px / 2); top: calc(61.0714285714286% - 27px / 2); width: 34px; } .framer-ewQTu .framer-bx72uh { height: 25px; left: calc(26.60818713450295% - 34px / 2); top: calc(70.00000000000001% - 25px / 2); width: 34px; } .framer-ewQTu .framer-1s00tag { height: 29px; left: calc(41.52046783625733% - 30px / 2); top: calc(68.92857142857144% - 29px / 2); width: 30px; } .framer-ewQTu .framer-1wdrftl { height: 28px; left: calc(57.30994152046785% - 42px / 2); top: calc(69.46428571428574% - 28px / 2); width: 42px; } .framer-ewQTu .framer-qap42s { left: calc(74.56140350877195% - 48px / 2); top: calc(56.42857142857145% - 29px / 2); width: 48px; } .framer-ewQTu .framer-16p5s0j { height: 34px; left: calc(59.941520467836284% - 25px / 2); top: calc(78.75000000000001% - 34px / 2); width: 25px; } .framer-ewQTu .framer-6fz7hj { height: 28px; left: calc(45.614035087719316% - 38px / 2); top: calc(86.96428571428574% - 28px / 2); width: 38px; } .framer-ewQTu .framer-1j0d6gl { height: 26px; left: calc(34.210526315789494% - 33px / 2); top: calc(86.7857142857143% - 26px / 2); width: 33px; } .framer-ewQTu .framer-2wtots { bottom: 63px; height: 26px; left: 67px; width: 33px; } .framer-ewQTu .framer-ymcetq { height: 10px; left: calc(45.614035087719316% - 29px / 2); top: calc(93.75000000000003% - 10px / 2); width: 29px; } .framer-ewQTu .framer-f21gs0 { height: 32px; left: calc(81.28654970760236% - 46px / 2); top: calc(84.46428571428574% - 32px / 2); width: 46px; } .framer-ewQTu .framer-gdga7w { left: 66%; order: 2; width: 512px; } .framer-ewQTu .framer-14au63v { height: var(--framer-aspect-ratio-supported, 96px); order: 3; top: 0px; width: 216px; } .framer-ewQTu .framer-qipich { order: 4; } .framer-ewQTu .framer-3ipx1a { flex: none; order: 0; width: 100%; } .framer-ewQTu .framer-1w6fdlf { gap: 28px; padding: 140px 24px 60px 24px; } .framer-ewQTu .framer-h0oglh { order: 1; padding: 0px 24px 0px 24px; } .framer-ewQTu .framer-1c8f2et { flex: 0.9 0 0px; } .framer-ewQTu .framer-wi9rrv-container { order: 2; } .framer-ewQTu .framer-aofdzg { height: var(--framer-aspect-ratio-supported, 400px); order: 6; right: 59px; width: 271px; } .framer-ewQTu .framer-1gza90o { height: var(--framer-aspect-ratio-supported, 111px); order: 7; } .framer-ewQTu .framer-1570dls { gap: 92px; padding: 120px 0px 60px 0px; } .framer-ewQTu .framer-jrceg6 { aspect-ratio: 6.090225563909774 / 1; height: var(--framer-aspect-ratio-supported, 64px); left: 50%; top: 0px; transform: translateX(-50%); width: 100%; } .framer-ewQTu .framer-1t97zcv { gap: 0px; padding: 0px 24px 0px 24px; } .framer-ewQTu .framer-1dvbjtg { flex-direction: column; gap: 20px; } .framer-ewQTu .framer-10zbz0h-container { flex: none; order: 1; width: 100%; } .framer-ewQTu .framer-1tf7v8n { flex: none; order: 0; width: 80%; } .framer-ewQTu .framer-vvu48d { height: var(--framer-aspect-ratio-supported, 139px); left: 103%; top: 85px; width: 491px; } .framer-ewQTu .framer-eirgvn-container { order: 1; } .framer-ewQTu .framer-13pixgc-container { order: 0; } .framer-ewQTu .framer-1yqjtej { padding: 60px 0px 132px 0px; } .framer-ewQTu .framer-1xbk8j3 { width: 85%; } .framer-ewQTu .framer-17352js { height: var(--framer-aspect-ratio-supported, 560px); width: 80%; } .framer-ewQTu .framer-10ky86y { height: var(--framer-aspect-ratio-supported, 100px); left: -14px; top: 97px; width: 95px; } .framer-ewQTu .framer-7afn3l { bottom: -31px; height: var(--framer-aspect-ratio-supported, 93px); right: -3px; width: 100px; } .framer-ewQTu .framer-cp76kf { aspect-ratio: unset; bottom: 19px; height: 319px; left: -15px; right: -71px; width: unset; } .framer-ewQTu .framer-d0lifg { gap: 32px; height: min-content; padding: 100px 0px 120px 0px; } .framer-ewQTu .framer-bn2ssy { padding: 0px 0px 24px 0px; } .framer-ewQTu .framer-1lbc7cg { padding: 16px 40px 12px 40px; } .framer-ewQTu .framer-69mo8l { padding: 0px 0px 0px 20px; } .framer-ewQTu .framer-1wizzoj { height: var(--framer-aspect-ratio-supported, 74px); left: -6px; top: -6px; width: 69px; } .framer-ewQTu .framer-wcmlts { bottom: -58px; height: var(--framer-aspect-ratio-supported, 88px); left: unset; right: -25px; width: 87px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ewQTu .framer-vv1p3b, .framer-ewQTu .framer-qf2w72, .framer-ewQTu .framer-1912bdv, .framer-ewQTu .framer-1tlm52d, .framer-ewQTu .framer-1w6fdlf, .framer-ewQTu .framer-1570dls, .framer-ewQTu .framer-1t97zcv, .framer-ewQTu .framer-1dvbjtg, .framer-ewQTu .framer-d0lifg { gap: 0px; } .framer-ewQTu .framer-vv1p3b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ewQTu .framer-vv1p3b > :first-child, .framer-ewQTu .framer-qf2w72 > :first-child, .framer-ewQTu .framer-1912bdv > :first-child, .framer-ewQTu .framer-1tlm52d > :first-child, .framer-ewQTu .framer-1w6fdlf > :first-child, .framer-ewQTu .framer-1570dls > :first-child, .framer-ewQTu .framer-1dvbjtg > :first-child, .framer-ewQTu .framer-d0lifg > :first-child { margin-top: 0px; } .framer-ewQTu .framer-vv1p3b > :last-child, .framer-ewQTu .framer-qf2w72 > :last-child, .framer-ewQTu .framer-1912bdv > :last-child, .framer-ewQTu .framer-1tlm52d > :last-child, .framer-ewQTu .framer-1w6fdlf > :last-child, .framer-ewQTu .framer-1570dls > :last-child, .framer-ewQTu .framer-1dvbjtg > :last-child, .framer-ewQTu .framer-d0lifg > :last-child { margin-bottom: 0px; } .framer-ewQTu .framer-qf2w72 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-ewQTu .framer-1912bdv > *, .framer-ewQTu .framer-d0lifg > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-ewQTu .framer-1tlm52d > *, .framer-ewQTu .framer-1w6fdlf > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-ewQTu .framer-1570dls > * { margin: 0px; margin-bottom: calc(92px / 2); margin-top: calc(92px / 2); } .framer-ewQTu .framer-1t97zcv > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ewQTu .framer-1t97zcv > :first-child { margin-left: 0px; } .framer-ewQTu .framer-1t97zcv > :last-child { margin-right: 0px; } .framer-ewQTu .framer-1dvbjtg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7589.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lWV4KS9lk\":{\"layout\":[\"fixed\",\"auto\"]},\"EU2REJ5Ty\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-ewQTu\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7589.5,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Commuters Sans ExtraBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/532KgSxLt9h2bWVHEdR8Z2gec.woff2\"},{family:\"Henrik Normal\",source:\"custom\",url:\"https://framerusercontent.com/assets/j34y96dpgnsHLxIffxCtTe5Qa4.woff2\"}]},...NavBarFonts,...Hero_BannerFonts,...FooterFonts,...LogoFonts,...VideoFonts,...GraffitiIconFonts,...Restaurant_cardFonts,...CarouselFonts,...SlideshowFonts,...FaqsFonts,...TickerFonts,...TestimonialFonts,...Slideshow1Fonts,...PrimaryButtonFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"7589.5\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lWV4KS9lk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EU2REJ5Ty\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "e", "n", "progress", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "FramerckAhuxTmW", "withCSS", "ckAhuxTmW_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "j18QNHPR3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "css", "FramerYP49RiI8k", "withCSS", "YP49RiI8k_default", "addPropertyControls", "ControlType", "addFonts", "TestimonialImageFonts", "getFonts", "YP49RiI8k_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "name1", "testimonial", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "c8ni3xvzu", "TyarFd7SL", "neXwnyXFk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerhKGz8kYij", "withCSS", "hKGz8kYij_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramerOeimj8Lol", "withCSS", "Oeimj8Lol_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "getFonts", "Video", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "SmartComponentScopedContainer", "ImageWithFXWithOptimizedAppearEffect", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "transition3", "animation3", "animation4", "animation5", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "css", "FramerWQthsMn8y", "withCSS", "WQthsMn8y_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "getFonts", "Video", "VideoBannerFonts", "WQthsMn8y_default", "ImageWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "Image2", "MotionDivWithFXWithOptimizedAppearEffect", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transformTemplate1", "_", "t", "animation2", "animation3", "transition3", "animation4", "animation5", "animation6", "animation7", "animation8", "transition4", "animation9", "animation10", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear610y6h", "args", "onAppear164pwfe", "onAppear15mi9yv", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerZwIabBn_t", "withCSS", "ZwIabBn_t_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "NavBarFonts", "getFonts", "bHQYj0zlL_default", "ContainerWithOptimizedAppearEffect", "Container", "Hero_BannerFonts", "ZwIabBn_t_default", "FooterFonts", "RkHYJAkWa_default", "ContainerWithFXWithOptimizedAppearEffect", "withFX", "LogoFonts", "ckAhuxTmW_default", "RichTextWithFX", "RichText2", "ImageWithFX", "VideoFonts", "Video", "MotionDivWithFX", "motion", "GraffitiIconFonts", "Oeimj8Lol_default", "GraffitiIconWithVariantAppearEffect", "withVariantAppearEffect", "Restaurant_cardFonts", "Ll564r5Zv_default", "CarouselFonts", "Carousel", "ContainerWithFX", "SlideshowFonts", "Slideshow", "FaqsFonts", "JAbbhMBcM_default", "TickerFonts", "Ticker", "TestimonialFonts", "hKGz8kYij_default", "Slideshow1Fonts", "PrimaryButtonFonts", "HbAfApZcL_default", "CursorFonts", "HrV1oebSa_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "animation5", "transition4", "transition5", "transition6", "transition7", "animation6", "transition8", "animation7", "transition9", "transition10", "animation8", "animation9", "transition11", "animation10", "animation11", "transition12", "transition13", "transformTemplate2", "animation12", "transition14", "animation13", "animation14", "animation15", "animation16", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate3", "animation17", "addImageAlt", "image", "alt", "animation18", "transition15", "transition16", "transition17", "transition18", "transition19", "transition20", "transition21", "transition22", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntertxyyif", "overlay", "loadMore", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "ref1", "ref2", "ref3", "ref4", "ref5", "ref6", "ref7", "ref8", "ref9", "ref10", "ref11", "ref12", "ref13", "ref14", "ref15", "ref16", "ref17", "ref18", "ref19", "ref20", "ref21", "ref22", "ref23", "ref24", "ref25", "ref26", "ref27", "ref28", "ref29", "ref30", "ref31", "ref32", "ref33", "ref34", "ref35", "ref36", "ref37", "ref38", "ref39", "ref40", "ref41", "ref42", "ref43", "ref44", "ref45", "ref46", "ref47", "ref48", "ref49", "ref50", "ref51", "ref52", "router", "useRouter", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "x", "SVG", "l", "AnimatePresence", "Floating", "Link", "overlay1", "overlay2", "overlay3", "overlay4", "overlay5", "overlay6", "overlay7", "overlay8", "overlay9", "overlay10", "overlay11", "overlay12", "overlay13", "overlay14", "overlay15", "overlay16", "overlay17", "overlay18", "overlay19", "overlay20", "overlay21", "overlay22", "overlay23", "overlay24", "overlay25", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "resolvedLinks15", "resolvedLinks16", "resolvedLinks17", "resolvedLinks18", "resolvedLinks19", "resolvedLinks20", "resolvedLinks21", "resolvedLinks22", "resolvedLinks23", "resolvedLinks24", "resolvedLinks25", "resolvedLinks26", "resolvedLinks27", "resolvedLinks28", "resolvedLinks29", "resolvedLinks30", "resolvedLinks31", "resolvedLinks32", "resolvedLinks33", "resolvedLinks34", "resolvedLinks35", "resolvedLinks36", "resolvedLinks37", "resolvedLinks38", "resolvedLinks39", "resolvedLinks40", "resolvedLinks41", "resolvedLinks42", "resolvedLinks43", "resolvedLinks44", "resolvedLinks45", "resolvedLinks46", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
