{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js", "ssg:https://framerusercontent.com/modules/rOoVr7NxIuKFPKe9Xl4c/3S7rw0UQ0R4cas43ZqKC/krRFbxBdt.js", "ssg:https://framerusercontent.com/modules/1h73zjWdFJ2hGXIhYFvS/QoTbXnebIqrXjdZasJRX/augiA20Il.js", "ssg:https://framerusercontent.com/modules/cHUml65dyBupb0M6opw8/qJrKuLdiAAZsiBi6IePJ/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&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=>\"number\"===typeof t;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=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,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\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.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,memo,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;// 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\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});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 amountChildren=Children.count(filteredSlots);const hasChildren=amountChildren>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[{current:null},{current:null}];// when the slots change, generate new array\n},[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(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].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);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);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,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),amountChildren>1?awaitRefCallback(lastChild,controller):true]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[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);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* 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||amountChildren<=1)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(index===0){if(childIndex===0){ref=childrenRef[0];}else if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,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__*/memo(/*#__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;const fallbackRef=useRef();/**\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=>{const node=ref?.current??fallbackRef.current;node?.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\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,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})})});}));const Dot=/*#__PURE__*/memo(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\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (8dd9d28)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-QLfx6 .framer-styles-preset-194xo82:not(.rich-text-wrapper), .framer-QLfx6 .framer-styles-preset-194xo82.rich-text-wrapper a { --framer-link-current-text-color: var(--token-7095fdfa-7255-44f5-8e46-cc9eed07a3a0, #faf2e6); --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-7095fdfa-7255-44f5-8e46-cc9eed07a3a0, #faf2e6); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-7095fdfa-7255-44f5-8e46-cc9eed07a3a0, #faf2e6); --framer-link-text-decoration: underline; }\"];export const className=\"framer-QLfx6\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2a0d5ab)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={ITPXsS1mV:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2a0d5ab)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import Button from\"#framer/local/canvasComponent/DEu0DC58E/DEu0DC58E.js\";import*as sharedStyle1 from\"#framer/local/css/deYXjan9W/deYXjan9W.js\";import*as sharedStyle3 from\"#framer/local/css/krRFbxBdt/krRFbxBdt.js\";import*as sharedStyle from\"#framer/local/css/LSq9riepf/LSq9riepf.js\";import*as sharedStyle4 from\"#framer/local/css/tCXc8ygKP/tCXc8ygKP.js\";import*as sharedStyle2 from\"#framer/local/css/We_FCWyZV/We_FCWyZV.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SlideshowFonts=getFonts(Slideshow);const ButtonFonts=getFonts(Button);const breakpoints={gkxwlj2F4:\"(min-width: 810px) and (max-width: 1199px)\",o7HZspqgA:\"(min-width: 1200px) and (max-width: 1439px)\",Oaw0BLRU7:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-9HBTA\";const variantClassNames={gkxwlj2F4:\"framer-v-2p771r\",o7HZspqgA:\"framer-v-10t1s7i\",Oaw0BLRU7:\"framer-v-ghq5ul\",WQLkyLRf1:\"framer-v-72rtr7\"};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\",Laptop:\"o7HZspqgA\",Phone:\"Oaw0BLRU7\",Tablet:\"gkxwlj2F4\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Oaw0BLRU7\")return false;return true;};useCustomCursors({});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(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(Image,{background:{alt:getLocalizedValue(\"v0\",activeLocale)??\"Restaurant\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:801,pixelWidth:1200,src:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=512\"},className:\"framer-1j5k7zh\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-127mug0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hZNu4GEcE\",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:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,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:0,height:\"100%\",id:\"hZNu4GEcE\",intervalControl:7.2,itemAmount:1,layoutId:\"hZNu4GEcE\",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(Image,{background:{alt:getLocalizedValue(\"v1\",activeLocale)??\"Restauranten indenfor\",fit:\"fill\",pixelHeight:801,pixelWidth:1200,src:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=512\"},className:\"framer-fceb1j\",\"data-framer-name\":\"image3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v1\",activeLocale)??\"Restauranten indenfor\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,src:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=512\"},className:\"framer-16t8d37\"}),/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v1\",activeLocale)??\"Restauranten indenfor\",fit:\"fill\",pixelHeight:1708,pixelWidth:1944,sizes:\"1039px\",src:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?lossless=1 1944w\"},className:\"framer-14ryghx\",\"data-framer-name\":\"image2\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ez8dmg\",\"data-framer-name\":\"blackOverlay\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q0xyrg\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-36p3q5\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-tcgxt7\",\"data-styles-preset\":\"LSq9riepf\",style:{\"--framer-text-alignment\":\"center\"},children:\"Italiensk Restaurant i K\\xf8benhavn\"})}),className:\"framer-1o22f4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UXVpY2tzYW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Quicksand\", \"Quicksand Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Tio Mario\u2019s er en restaurant midt i K\\xf8benhavn \\xd8. Siden 2013 har vi serveret pizza og italiensk mad for tusindvis af glade g\\xe6ster.\"})}),className:\"framer-hm7psv\",fonts:[\"FS;Quicksand-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yb8rzc\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1doz0ki\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oaw0BLRU7:{y:(componentViewport?.y||0)+0+0+206.4+0+219.2+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"200px\",y:(componentViewport?.y||0)+0+0+236.4+0+219.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8zpony-container\",nodeId:\"LBuMcvHYL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{egNmiz6Mo:getLocalizedValue(\"v4\",activeLocale)??\"Bestil bord\",gOOytn378:\"https://book.easytable.com/book/?id=25e7a&lang=auto\",height:\"100%\",HTzRKVpYS:true,id:\"LBuMcvHYL\",layoutId:\"LBuMcvHYL\",style:{width:\"100%\"},variant:\"Y5TwznyWi\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oaw0BLRU7:{y:(componentViewport?.y||0)+0+0+206.4+0+219.2+0+0+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"200px\",y:(componentViewport?.y||0)+0+0+236.4+0+219.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xmeze4-container\",nodeId:\"BCUVqLN7C\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{egNmiz6Mo:getLocalizedValue(\"v5\",activeLocale)??\"Bestil take-away\",gOOytn378:\"https://www.foodbooking.com/ordering/restaurant/menu?restaurant_uid=07005658-c1fc-4044-abeb-8f14bbac2150\",height:\"100%\",HTzRKVpYS:true,id:\"BCUVqLN7C\",layoutId:\"BCUVqLN7C\",style:{width:\"100%\"},variant:\"Y5TwznyWi\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined},{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined},{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined},{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oaw0BLRU7:{y:(componentViewport?.y||0)+0+0+206.4+0+219.2+0+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"300px\",y:(componentViewport?.y||0)+0+0+236.4+0+219.2+0+60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1raejae-container\",nodeId:\"XxIXaFE76\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{gOOytn378:resolvedLinks[2]},o7HZspqgA:{gOOytn378:resolvedLinks[1]},Oaw0BLRU7:{gOOytn378:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Button,{egNmiz6Mo:getLocalizedValue(\"v6\",activeLocale)??\"Se vores menukort\",gOOytn378:resolvedLinks[0],height:\"100%\",HTzRKVpYS:false,id:\"XxIXaFE76\",layoutId:\"XxIXaFE76\",style:{width:\"100%\"},variant:\"HPoMqByjt\",width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v0zay0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4swce4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15w142z\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m91iik\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b2p221\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-n2v7ub\",\"data-styles-preset\":\"deYXjan9W\",style:{\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Tio Mario's - Italiensk restaurant i hjertet af K\\xf8benhavn, i n\\xe6rheden af Nordhavn og \\xd8sterbro\"})}),className:\"framer-a1s45r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:[\"Restauranten ligger p\\xe5 \",/*#__PURE__*/_jsx(\"strong\",{children:\"Amerika Plads\"}),\" i K\\xf8benhavn \\xd8 \u2013 en del af \",/*#__PURE__*/_jsx(\"strong\",{children:\"\\xd8sterbro\"}),\" og t\\xe6t p\\xe5 \",/*#__PURE__*/_jsx(\"strong\",{children:\"Nordhavn\"}),\". Gennem \\xe5rene har vi f\\xe5et mange stamg\\xe6ster, som nyder at komme igen og igen.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Vi gl\\xe6der os til at byde dig velkommen til l\\xe6kker italiensk mad hos Tio Mario\u2019s.\"})]}),className:\"framer-1r6mu1s\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k38e2i\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vjfa3e\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rp8zvq\",\"data-framer-name\":\"Pictures\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v9\",activeLocale)??\"Billede af burger\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+0+0+48+321+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"120px\",src:\"https://framerusercontent.com/images/PVxdJnsCbQt8mTxYTe09LIhibNE.jpg\",srcSet:\"https://framerusercontent.com/images/PVxdJnsCbQt8mTxYTe09LIhibNE.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/PVxdJnsCbQt8mTxYTe09LIhibNE.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/PVxdJnsCbQt8mTxYTe09LIhibNE.jpg 3024w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v9\",activeLocale)??\"Billede af burger\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+0+0+48+321+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"135px\",src:\"https://framerusercontent.com/images/PVxdJnsCbQt8mTxYTe09LIhibNE.jpg\",srcSet:\"https://framerusercontent.com/images/PVxdJnsCbQt8mTxYTe09LIhibNE.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/PVxdJnsCbQt8mTxYTe09LIhibNE.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/PVxdJnsCbQt8mTxYTe09LIhibNE.jpg 3024w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v9\",activeLocale)??\"Billede af burger\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+0+0+0+24+321+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"103px\",src:\"https://framerusercontent.com/images/PVxdJnsCbQt8mTxYTe09LIhibNE.jpg\",srcSet:\"https://framerusercontent.com/images/PVxdJnsCbQt8mTxYTe09LIhibNE.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/PVxdJnsCbQt8mTxYTe09LIhibNE.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/PVxdJnsCbQt8mTxYTe09LIhibNE.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v9\",activeLocale)??\"Billede af burger\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+0+0+48+321+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"180px\",src:\"https://framerusercontent.com/images/PVxdJnsCbQt8mTxYTe09LIhibNE.jpg\",srcSet:\"https://framerusercontent.com/images/PVxdJnsCbQt8mTxYTe09LIhibNE.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/PVxdJnsCbQt8mTxYTe09LIhibNE.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/PVxdJnsCbQt8mTxYTe09LIhibNE.jpg 3024w\"},className:\"framer-oope8d\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v10\",activeLocale)??\"Billede af pizza\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+0+0+48+321+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"120px\",src:\"https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg\",srcSet:\"https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg 3024w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v10\",activeLocale)??\"Billede af pizza\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+0+0+48+321+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"135px\",src:\"https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg\",srcSet:\"https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg 3024w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v10\",activeLocale)??\"Billede af pizza\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+0+0+0+24+321+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"103px\",src:\"https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg\",srcSet:\"https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v10\",activeLocale)??\"Billede af pizza\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+0+0+48+321+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"180px\",src:\"https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg\",srcSet:\"https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg 3024w\"},className:\"framer-s3q8i6\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v11\",activeLocale)??\"Billede af Laks\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+0+0+48+321+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"120px\",src:\"https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg\",srcSet:\"https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg 3024w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v11\",activeLocale)??\"Billede af Laks\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+0+0+48+321+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"135px\",src:\"https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg\",srcSet:\"https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg 3024w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v11\",activeLocale)??\"Billede af Laks\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+0+0+0+24+321+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"103px\",src:\"https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg\",srcSet:\"https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v11\",activeLocale)??\"Billede af Laks\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+0+0+48+321+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"180px\",src:\"https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg\",srcSet:\"https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg 3024w\"},className:\"framer-11ys1i4\"})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined},{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined},{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined},{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{y:(componentViewport?.y||0)+0+800+0+0+0+48+321+0+169.494},o7HZspqgA:{y:(componentViewport?.y||0)+0+800+0+0+0+48+321+0+186.1807},Oaw0BLRU7:{y:(componentViewport?.y||0)+0+800+0+0+0+0+24+321+0+150.5823}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"300px\",y:(componentViewport?.y||0)+0+800+0+0+0+48+321+0+236.241,children:/*#__PURE__*/_jsx(Container,{className:\"framer-184so37-container\",nodeId:\"YCtqAdirm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{gOOytn378:resolvedLinks1[2]},o7HZspqgA:{gOOytn378:resolvedLinks1[1]},Oaw0BLRU7:{gOOytn378:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Button,{egNmiz6Mo:getLocalizedValue(\"v12\",activeLocale)??\"Se hele vores menukort\",gOOytn378:resolvedLinks1[0],height:\"100%\",HTzRKVpYS:true,id:\"YCtqAdirm\",layoutId:\"YCtqAdirm\",style:{width:\"100%\"},variant:\"Y5TwznyWi\",width:\"100%\"})})})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v13\",activeLocale)??\"Billede af mad der bliver lavet\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+0+0),pixelHeight:2450,pixelWidth:1960,sizes:\"300px\",src:\"https://framerusercontent.com/images/a2cFtH2tzdsv9QcpmABdZqdKI.jpg\",srcSet:\"https://framerusercontent.com/images/a2cFtH2tzdsv9QcpmABdZqdKI.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/a2cFtH2tzdsv9QcpmABdZqdKI.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/a2cFtH2tzdsv9QcpmABdZqdKI.jpg 1960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v13\",activeLocale)??\"Billede af mad der bliver lavet\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+0+0),pixelHeight:2450,pixelWidth:1960,sizes:\"420px\",src:\"https://framerusercontent.com/images/a2cFtH2tzdsv9QcpmABdZqdKI.jpg\",srcSet:\"https://framerusercontent.com/images/a2cFtH2tzdsv9QcpmABdZqdKI.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/a2cFtH2tzdsv9QcpmABdZqdKI.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/a2cFtH2tzdsv9QcpmABdZqdKI.jpg 1960w\"},className:\"framer-17otd7r hidden-ghq5ul\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12byf7c\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l843d7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v14\",activeLocale)??\"Indgang til restaurant\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+586.494+48+0),pixelHeight:801,pixelWidth:1200,sizes:\"300px\",src:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg\",srcSet:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg 1200w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v14\",activeLocale)??\"Indgang til restaurant\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+603.1807+120+0),pixelHeight:801,pixelWidth:1200,sizes:\"300px\",src:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg\",srcSet:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg 1200w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v14\",activeLocale)??\"Indgang til restaurant\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+543.5823+48+0+0),pixelHeight:801,pixelWidth:1200,positionX:\"50.9%\",positionY:\"25.2%\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px)`,src:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg\",srcSet:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v14\",activeLocale)??\"Indgang til restaurant\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+653.241+120+0),pixelHeight:801,pixelWidth:1200,sizes:\"420px\",src:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg\",srcSet:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg 1200w\"},className:\"framer-1r9y8e6\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mhb1hp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jzmi6k\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-55wc3q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-n2v7ub\",\"data-styles-preset\":\"deYXjan9W\",style:{\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"L\\xe6kker vin & drikkevare\"})}),className:\"framer-m8jya1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Vores drikkekort best\\xe5r af n\\xf8je udvalgte drikkevarer, der passer perfekt til maden p\\xe5 menukortet. Mange har deres favoritter \u2013 hvad enten det er typen, oprindelsen eller producenten. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"For os er det vigtigste dog, at drikken komplementerer maden, vi serverer.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Vi har sammensat et drikkekort, der matcher vores retter og l\\xf8fter din samlede oplevelse hos Tio Mario\u2019s.\"})]}),className:\"framer-j5mnah\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a0x1um\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gpchks\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ad5edn\",\"data-framer-name\":\"Pictures\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v17\",activeLocale)??\"\\xd8l og cocktails fra baren\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+586.494+48+0+699+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"120px\",src:\"https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg\",srcSet:\"https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg 3024w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v17\",activeLocale)??\"\\xd8l og cocktails fra baren\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+603.1807+120+0+699+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"166px\",src:\"https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg\",srcSet:\"https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg 3024w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v17\",activeLocale)??\"\\xd8l og cocktails fra baren\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+543.5823+48+301+24+699+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"109px\",src:\"https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg\",srcSet:\"https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v17\",activeLocale)??\"\\xd8l og cocktails fra baren\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+653.241+120+0+699+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"180px\",src:\"https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg\",srcSet:\"https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg 3024w\"},className:\"framer-1mokmdj\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v18\",activeLocale)??\"Vin som bliver h\\xe6ldt op\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+586.494+48+0+699+0+0+0),pixelHeight:712,pixelWidth:800,sizes:\"120px\",src:\"https://framerusercontent.com/images/2XjLT8H2bR5vSV1xprMZtbKyZk.jpg\",srcSet:\"https://framerusercontent.com/images/2XjLT8H2bR5vSV1xprMZtbKyZk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2XjLT8H2bR5vSV1xprMZtbKyZk.jpg 800w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v18\",activeLocale)??\"Vin som bliver h\\xe6ldt op\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+603.1807+120+0+699+0+0+0),pixelHeight:712,pixelWidth:800,sizes:\"140px\",src:\"https://framerusercontent.com/images/2XjLT8H2bR5vSV1xprMZtbKyZk.jpg\",srcSet:\"https://framerusercontent.com/images/2XjLT8H2bR5vSV1xprMZtbKyZk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2XjLT8H2bR5vSV1xprMZtbKyZk.jpg 800w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v18\",activeLocale)??\"Vin som bliver h\\xe6ldt op\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+543.5823+48+301+24+699+0+0+0),pixelHeight:712,pixelWidth:800,sizes:\"109px\",src:\"https://framerusercontent.com/images/2XjLT8H2bR5vSV1xprMZtbKyZk.jpg\",srcSet:\"https://framerusercontent.com/images/2XjLT8H2bR5vSV1xprMZtbKyZk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2XjLT8H2bR5vSV1xprMZtbKyZk.jpg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v18\",activeLocale)??\"Vin som bliver h\\xe6ldt op\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+653.241+120+0+699+0+0+0),pixelHeight:712,pixelWidth:800,sizes:\"180px\",src:\"https://framerusercontent.com/images/2XjLT8H2bR5vSV1xprMZtbKyZk.jpg\",srcSet:\"https://framerusercontent.com/images/2XjLT8H2bR5vSV1xprMZtbKyZk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2XjLT8H2bR5vSV1xprMZtbKyZk.jpg 800w\"},className:\"framer-x9slqg\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"Billede af cocktails\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+586.494+48+0+699+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"120px\",src:\"https://framerusercontent.com/images/OALU5CpgnBSH46rfC4QdtdXPueA.jpg\",srcSet:\"https://framerusercontent.com/images/OALU5CpgnBSH46rfC4QdtdXPueA.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/OALU5CpgnBSH46rfC4QdtdXPueA.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/OALU5CpgnBSH46rfC4QdtdXPueA.jpg 3024w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"Billede af cocktails\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+603.1807+120+0+699+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"166px\",src:\"https://framerusercontent.com/images/OALU5CpgnBSH46rfC4QdtdXPueA.jpg\",srcSet:\"https://framerusercontent.com/images/OALU5CpgnBSH46rfC4QdtdXPueA.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/OALU5CpgnBSH46rfC4QdtdXPueA.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/OALU5CpgnBSH46rfC4QdtdXPueA.jpg 3024w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"Billede af cocktails\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+543.5823+48+301+24+699+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"109px\",src:\"https://framerusercontent.com/images/OALU5CpgnBSH46rfC4QdtdXPueA.jpg\",srcSet:\"https://framerusercontent.com/images/OALU5CpgnBSH46rfC4QdtdXPueA.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/OALU5CpgnBSH46rfC4QdtdXPueA.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/OALU5CpgnBSH46rfC4QdtdXPueA.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"Billede af cocktails\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+653.241+120+0+699+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"180px\",src:\"https://framerusercontent.com/images/OALU5CpgnBSH46rfC4QdtdXPueA.jpg\",srcSet:\"https://framerusercontent.com/images/OALU5CpgnBSH46rfC4QdtdXPueA.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/OALU5CpgnBSH46rfC4QdtdXPueA.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/OALU5CpgnBSH46rfC4QdtdXPueA.jpg 3024w\"},className:\"framer-1kc77en\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m4i5qq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{y:(componentViewport?.y||0)+0+800+0+586.494+48+0+699+0+169.494+0+0},o7HZspqgA:{width:\"150px\",y:(componentViewport?.y||0)+0+800+0+603.1807+120+0+699+0+220.6667+0},Oaw0BLRU7:{y:(componentViewport?.y||0)+0+800+0+543.5823+48+301+24+699+0+157.257+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"200px\",y:(componentViewport?.y||0)+0+800+0+653.241+120+0+699+0+236.241+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11699v2-container\",nodeId:\"TgODvWFwn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{egNmiz6Mo:getLocalizedValue(\"v20\",activeLocale)??\"Bestil bord\",gOOytn378:\"https://book.easytable.com/book/?id=25e7a&lang=auto\",height:\"100%\",HTzRKVpYS:true,id:\"TgODvWFwn\",layoutId:\"TgODvWFwn\",style:{width:\"100%\"},variant:\"Y5TwznyWi\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hk4yvp\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined},{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined},{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined},{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{y:(componentViewport?.y||0)+0+800+0+586.494+48+0+699+0+169.494+0+64+0},o7HZspqgA:{y:(componentViewport?.y||0)+0+800+0+603.1807+120+0+699+0+220.6667+0+0},Oaw0BLRU7:{y:(componentViewport?.y||0)+0+800+0+543.5823+48+301+24+699+0+157.257+0+64+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"150px\",y:(componentViewport?.y||0)+0+800+0+653.241+120+0+699+0+236.241+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gjxnpe-container\",nodeId:\"qCei0iHi4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{gOOytn378:resolvedLinks2[2]},o7HZspqgA:{gOOytn378:resolvedLinks2[1]},Oaw0BLRU7:{gOOytn378:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(Button,{egNmiz6Mo:getLocalizedValue(\"v21\",activeLocale)??\"Se menukort\",gOOytn378:resolvedLinks2[0],height:\"100%\",HTzRKVpYS:false,id:\"qCei0iHi4\",layoutId:\"qCei0iHi4\",style:{width:\"100%\"},variant:\"Y5TwznyWi\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YpUkUH0c0\"},implicitPathVariables:undefined},{href:{webPageId:\"YpUkUH0c0\"},implicitPathVariables:undefined},{href:{webPageId:\"YpUkUH0c0\"},implicitPathVariables:undefined},{href:{webPageId:\"YpUkUH0c0\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{y:(componentViewport?.y||0)+0+800+0+586.494+48+0+699+0+169.494+0+64+0},o7HZspqgA:{y:(componentViewport?.y||0)+0+800+0+603.1807+120+0+699+0+220.6667+0+0},Oaw0BLRU7:{y:(componentViewport?.y||0)+0+800+0+543.5823+48+301+24+699+0+157.257+0+64+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"150px\",y:(componentViewport?.y||0)+0+800+0+653.241+120+0+699+0+236.241+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ei4kt3-container\",nodeId:\"EH7NTEtQW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{gOOytn378:resolvedLinks3[2]},o7HZspqgA:{gOOytn378:resolvedLinks3[1]},Oaw0BLRU7:{gOOytn378:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(Button,{egNmiz6Mo:getLocalizedValue(\"v22\",activeLocale)??\"Se vinkort\",gOOytn378:resolvedLinks3[0],height:\"100%\",HTzRKVpYS:false,id:\"EH7NTEtQW\",layoutId:\"EH7NTEtQW\",style:{width:\"100%\"},variant:\"Y5TwznyWi\",width:\"100%\"})})})})})})]})]})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j7i3vx\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m216jt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nounjm\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-imo1h4\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y7nj4w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-n2v7ub\",\"data-styles-preset\":\"deYXjan9W\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Hygge italiensk restaurant i hjertet af K\\xf8benhavn\"})}),className:\"framer-1ujoc7c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",children:[\"Vi \",/*#__PURE__*/_jsx(\"strong\",{children:\"mestrer\"}),\" det italienske k\\xf8kken og s\\xe6tter pris p\\xe5 god mad og gode oplevelser, til fair priser. \"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",children:\"Vi laver mad med personlighed og passion med k\\xe6rlighed til r\\xe5varerne og vi br\\xe6nder for vores fag og kan vores h\\xe5ndv\\xe6rk. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",children:[\"Er du mest til en god pizza eller en italiensk pasta bolognaise? Kom ind og nyd god \",/*#__PURE__*/_jsx(Link,{href:\"https://tiomarios.dk/menukort/\",motionChild:true,nodeId:\"Ujp2mhudB\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"mad\"})}),\" og \",/*#__PURE__*/_jsx(Link,{href:\"https://tiomarios.dk/vinkort/\",motionChild:true,nodeId:\"Ujp2mhudB\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"vin\"})}),\", i en afslappet atmosf\\xe6re.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",children:[\"Vi befinder os p\\xe5 adressen \",/*#__PURE__*/_jsx(Link,{href:\"google.com\",motionChild:true,nodeId:\"Ujp2mhudB\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-194xo82\",\"data-styles-preset\":\"krRFbxBdt\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Amerika Pl. 4, 2100 K\\xf8benhavn \\xd8\"})})})]})]}),className:\"framer-1wc9lma\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tzqjuq\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{y:(componentViewport?.y||0)+0+2510.988+0+48+0+0+951},o7HZspqgA:{y:(componentViewport?.y||0)+0+2586.8474+0+48+0+0+951},Oaw0BLRU7:{width:\"250px\",y:(componentViewport?.y||0)+0+2732.8393+0+24+0+0+0+951}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"300px\",y:(componentViewport?.y||0)+0+2652.482+0+48+0+0+951,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zh6b60-container\",nodeId:\"DuGOlcZwI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{egNmiz6Mo:getLocalizedValue(\"v25\",activeLocale)??\"VIs rutevejledning\",gOOytn378:\"https://maps.app.goo.gl/bBNr2XLBabwxwV7t9\",height:\"100%\",HTzRKVpYS:true,id:\"DuGOlcZwI\",layoutId:\"DuGOlcZwI\",style:{width:\"100%\"},variant:\"HPoMqByjt\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined},{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined},{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined},{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{y:(componentViewport?.y||0)+0+2510.988+0+48+0+0+1007},o7HZspqgA:{y:(componentViewport?.y||0)+0+2586.8474+0+48+0+0+1007},Oaw0BLRU7:{width:\"250px\",y:(componentViewport?.y||0)+0+2732.8393+0+24+0+0+0+1007}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"300px\",y:(componentViewport?.y||0)+0+2652.482+0+48+0+0+1007,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k9dm9x-container\",nodeId:\"cmNIiJAwC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{gOOytn378:resolvedLinks4[2]},o7HZspqgA:{gOOytn378:resolvedLinks4[1]},Oaw0BLRU7:{gOOytn378:resolvedLinks4[3]}},children:/*#__PURE__*/_jsx(Button,{egNmiz6Mo:getLocalizedValue(\"v6\",activeLocale)??\"Se vores menukort\",gOOytn378:resolvedLinks4[0],height:\"100%\",HTzRKVpYS:true,id:\"cmNIiJAwC\",layoutId:\"cmNIiJAwC\",style:{width:\"100%\"},variant:\"HPoMqByjt\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f6d0cd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v1\",activeLocale)??\"Restauranten indenfor\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2510.988+0+48+0+0),pixelHeight:3024,pixelWidth:4032,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 1px) / 2, 1px)`,src:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg\",srcSet:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg 4032w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v1\",activeLocale)??\"Restauranten indenfor\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2586.8474+0+48+0+0),pixelHeight:3024,pixelWidth:4032,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 1px) / 2, 1px)`,src:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg\",srcSet:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg 4032w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v1\",activeLocale)??\"Restauranten indenfor\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2732.8393+0+24+1067+0+0),pixelHeight:3024,pixelWidth:4032,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 40px)`,src:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg\",srcSet:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg 4032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v1\",activeLocale)??\"Restauranten indenfor\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2652.482+0+48+0+0),pixelHeight:3024,pixelWidth:4032,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 1px) / 2, 1px)`,src:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg\",srcSet:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg 4032w\"},className:\"framer-2toh7l\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v26\",activeLocale)??\"Indgang til restauranten\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2510.988+0+48+0+0+214),pixelHeight:801,pixelWidth:1200,sizes:\"220px\",src:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg\",srcSet:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg 1200w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v26\",activeLocale)??\"Indgang til restauranten\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2586.8474+0+48+0+0+300-101),pixelHeight:801,pixelWidth:1200,sizes:\"312px\",src:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg\",srcSet:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg 1200w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v26\",activeLocale)??\"Indgang til restauranten\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2732.8393+0+24+1067+0+0+148),pixelHeight:801,pixelWidth:1200,sizes:\"185px\",src:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg\",srcSet:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v26\",activeLocale)??\"Indgang til restauranten\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2652.482+0+48+0+0+300-101),pixelHeight:801,pixelWidth:1200,sizes:\"312px\",src:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg\",srcSet:\"https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sxsPLqrPnjBzoEMUDYDdHjvb5c.jpg 1200w\"},className:\"framer-6wfz7s\",\"data-border\":true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v27\",activeLocale)??\"Udend\\xf8rs pladser til restauranten\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2510.988+0+48+0+300),pixelHeight:3024,pixelWidth:4032,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 1px) / 2, 1px)`,src:\"https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg\",srcSet:\"https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg 4032w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v27\",activeLocale)??\"Udend\\xf8rs pladser til restauranten\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2586.8474+0+48+0+300),pixelHeight:3024,pixelWidth:4032,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 1px) / 2, 1px)`,src:\"https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg\",srcSet:\"https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg 4032w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v27\",activeLocale)??\"Udend\\xf8rs pladser til restauranten\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2732.8393+0+24+1067+0+200),pixelHeight:3024,pixelWidth:4032,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 40px)`,src:\"https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg\",srcSet:\"https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg 4032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v27\",activeLocale)??\"Udend\\xf8rs pladser til restauranten\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2652.482+0+48+0+300),pixelHeight:3024,pixelWidth:4032,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 1px) / 2, 1px)`,src:\"https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg\",srcSet:\"https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IBEWOsXzsJgYb8MEXygDeBCTsU.jpg 4032w\"},className:\"framer-11t5hba\",\"data-border\":true})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3613.988),pixelHeight:600,pixelWidth:900,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/m9rknbZMJWkQU2ErGvrVYxyooeY.svg\",srcSet:\"https://framerusercontent.com/images/m9rknbZMJWkQU2ErGvrVYxyooeY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/m9rknbZMJWkQU2ErGvrVYxyooeY.svg 900w\"}},o7HZspqgA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3689.8474),pixelHeight:600,pixelWidth:900,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/m9rknbZMJWkQU2ErGvrVYxyooeY.svg\",srcSet:\"https://framerusercontent.com/images/m9rknbZMJWkQU2ErGvrVYxyooeY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/m9rknbZMJWkQU2ErGvrVYxyooeY.svg 900w\"}},Oaw0BLRU7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4223.8393),pixelHeight:600,pixelWidth:900,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/m9rknbZMJWkQU2ErGvrVYxyooeY.svg\",srcSet:\"https://framerusercontent.com/images/m9rknbZMJWkQU2ErGvrVYxyooeY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/m9rknbZMJWkQU2ErGvrVYxyooeY.svg 900w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3755.482),pixelHeight:600,pixelWidth:900,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/m9rknbZMJWkQU2ErGvrVYxyooeY.svg\",srcSet:\"https://framerusercontent.com/images/m9rknbZMJWkQU2ErGvrVYxyooeY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/m9rknbZMJWkQU2ErGvrVYxyooeY.svg 900w\"},className:\"framer-18ikce6\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-15zlbx0\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-r5anux\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r74h93\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mdbtcf\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Oplev den \\xe6gte italienske stemning midt i K\\xf8benhavn \\xd8\"})})},o7HZspqgA:{children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Oplev den \\xe6gte italienske stemning midt i K\\xf8benhavn \\xd8\"})})},Oaw0BLRU7:{children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Oplev den \\xe6gte italienske stemning midt i K\\xf8benhavn \\xd8\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Oplev den \\xe6gte italienske stemning midt i K\\xf8benhavn \\xd8\"})}),className:\"framer-1whean1\",fonts:[\"FS;Anton-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dh7ucs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Tio Mario\u2019s, en fremtr\\xe6dende restaurant i Nordhavn, K\\xf8benhavn, inviterer dig indenfor til en uforglemmelig italiensk oplevelse. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Kendt for sin autenticitet og charme, har Tio Mario\u2019s siden 2013 v\\xe6ret et yndet sted for dem, der s\\xf8ger \\xe6gte italiensk madkultur i K\\xf8benhavn.\"})]}),className:\"framer-osb400\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bkkzxw\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r0e6b0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-56tl4g\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jjfcct\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v33\",activeLocale)??\"Pastaret\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3613.988+0+185+0+0+439.2+0+0+0+0),pixelHeight:4032,pixelWidth:3024,positionX:\"50.8%\",positionY:\"34.9%\",sizes:\"150px\",src:\"https://framerusercontent.com/images/MIa9Vrl6g0eO9D8vkh8s9kLiT8s.jpg\",srcSet:\"https://framerusercontent.com/images/MIa9Vrl6g0eO9D8vkh8s9kLiT8s.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/MIa9Vrl6g0eO9D8vkh8s9kLiT8s.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/MIa9Vrl6g0eO9D8vkh8s9kLiT8s.jpg 3024w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v33\",activeLocale)??\"Pastaret\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3689.8474+0+185+0+0+446.4+0+0+0+0),pixelHeight:4032,pixelWidth:3024,positionX:\"50.8%\",positionY:\"34.9%\",sizes:\"150px\",src:\"https://framerusercontent.com/images/MIa9Vrl6g0eO9D8vkh8s9kLiT8s.jpg\",srcSet:\"https://framerusercontent.com/images/MIa9Vrl6g0eO9D8vkh8s9kLiT8s.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/MIa9Vrl6g0eO9D8vkh8s9kLiT8s.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/MIa9Vrl6g0eO9D8vkh8s9kLiT8s.jpg 3024w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v33\",activeLocale)??\"Pastaret\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4223.8393+0+96+0+0+434.4+0+0+0+0),pixelHeight:4032,pixelWidth:3024,positionX:\"50.8%\",positionY:\"34.9%\",sizes:\"75px\",src:\"https://framerusercontent.com/images/MIa9Vrl6g0eO9D8vkh8s9kLiT8s.jpg\",srcSet:\"https://framerusercontent.com/images/MIa9Vrl6g0eO9D8vkh8s9kLiT8s.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/MIa9Vrl6g0eO9D8vkh8s9kLiT8s.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/MIa9Vrl6g0eO9D8vkh8s9kLiT8s.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v33\",activeLocale)??\"Pastaret\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3755.482+0+185+0+0+451.2+0+0+0+0),pixelHeight:4032,pixelWidth:3024,positionX:\"50.8%\",positionY:\"34.9%\",sizes:\"150px\",src:\"https://framerusercontent.com/images/MIa9Vrl6g0eO9D8vkh8s9kLiT8s.jpg\",srcSet:\"https://framerusercontent.com/images/MIa9Vrl6g0eO9D8vkh8s9kLiT8s.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/MIa9Vrl6g0eO9D8vkh8s9kLiT8s.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/MIa9Vrl6g0eO9D8vkh8s9kLiT8s.jpg 3024w\"},className:\"framer-1p09s9z\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v34\",activeLocale)??\"Brownie dessert\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3613.988+0+185+0+0+439.2+0+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/DkStAX9SLrUTo2VjVDRIa2HQvso.jpg\",srcSet:\"https://framerusercontent.com/images/DkStAX9SLrUTo2VjVDRIa2HQvso.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/DkStAX9SLrUTo2VjVDRIa2HQvso.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/DkStAX9SLrUTo2VjVDRIa2HQvso.jpg 3024w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v34\",activeLocale)??\"Brownie dessert\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3689.8474+0+185+0+0+446.4+0+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/DkStAX9SLrUTo2VjVDRIa2HQvso.jpg\",srcSet:\"https://framerusercontent.com/images/DkStAX9SLrUTo2VjVDRIa2HQvso.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/DkStAX9SLrUTo2VjVDRIa2HQvso.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/DkStAX9SLrUTo2VjVDRIa2HQvso.jpg 3024w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v34\",activeLocale)??\"Brownie dessert\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4223.8393+0+96+0+0+434.4+0+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"75px\",src:\"https://framerusercontent.com/images/DkStAX9SLrUTo2VjVDRIa2HQvso.jpg\",srcSet:\"https://framerusercontent.com/images/DkStAX9SLrUTo2VjVDRIa2HQvso.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/DkStAX9SLrUTo2VjVDRIa2HQvso.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/DkStAX9SLrUTo2VjVDRIa2HQvso.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v34\",activeLocale)??\"Brownie dessert\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3755.482+0+185+0+0+451.2+0+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/DkStAX9SLrUTo2VjVDRIa2HQvso.jpg\",srcSet:\"https://framerusercontent.com/images/DkStAX9SLrUTo2VjVDRIa2HQvso.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/DkStAX9SLrUTo2VjVDRIa2HQvso.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/DkStAX9SLrUTo2VjVDRIa2HQvso.jpg 3024w\"},className:\"framer-yz35oq\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9rpb66\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v35\",activeLocale)??\"Mojito drink\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3613.988+0+185+0+0+439.2+0+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/qfUEIetXeSuQPoyP5KUAi9Ct4M.jpg\",srcSet:\"https://framerusercontent.com/images/qfUEIetXeSuQPoyP5KUAi9Ct4M.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/qfUEIetXeSuQPoyP5KUAi9Ct4M.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/qfUEIetXeSuQPoyP5KUAi9Ct4M.jpg 3024w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v35\",activeLocale)??\"Mojito drink\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3689.8474+0+185+0+0+446.4+0+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/qfUEIetXeSuQPoyP5KUAi9Ct4M.jpg\",srcSet:\"https://framerusercontent.com/images/qfUEIetXeSuQPoyP5KUAi9Ct4M.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/qfUEIetXeSuQPoyP5KUAi9Ct4M.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/qfUEIetXeSuQPoyP5KUAi9Ct4M.jpg 3024w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v35\",activeLocale)??\"Mojito drink\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4223.8393+0+96+0+0+434.4+0+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"75px\",src:\"https://framerusercontent.com/images/qfUEIetXeSuQPoyP5KUAi9Ct4M.jpg\",srcSet:\"https://framerusercontent.com/images/qfUEIetXeSuQPoyP5KUAi9Ct4M.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/qfUEIetXeSuQPoyP5KUAi9Ct4M.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/qfUEIetXeSuQPoyP5KUAi9Ct4M.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v35\",activeLocale)??\"Mojito drink\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3755.482+0+185+0+0+451.2+0+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/qfUEIetXeSuQPoyP5KUAi9Ct4M.jpg\",srcSet:\"https://framerusercontent.com/images/qfUEIetXeSuQPoyP5KUAi9Ct4M.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/qfUEIetXeSuQPoyP5KUAi9Ct4M.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/qfUEIetXeSuQPoyP5KUAi9Ct4M.jpg 3024w\"},className:\"framer-gz0sdq\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v36\",activeLocale)??\"Salatpizza\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3613.988+0+185+0+0+439.2+0+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg\",srcSet:\"https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg 3024w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v36\",activeLocale)??\"Salatpizza\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3689.8474+0+185+0+0+446.4+0+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg\",srcSet:\"https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg 3024w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v36\",activeLocale)??\"Salatpizza\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4223.8393+0+96+0+0+434.4+0+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"75px\",src:\"https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg\",srcSet:\"https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v36\",activeLocale)??\"Salatpizza\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3755.482+0+185+0+0+451.2+0+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg\",srcSet:\"https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/2QOGXzClZVntHz805jQG9Wcn4Ok.jpg 3024w\"},className:\"framer-1t6hkv7\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15mun7j\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16s2b5b\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v1\",activeLocale)??\"Restauranten indenfor\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3613.988+0+185+0+0+439.2+0+174+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/C4kegdsnI4p08M1lFRerCpjTcSg.jpg\",srcSet:\"https://framerusercontent.com/images/C4kegdsnI4p08M1lFRerCpjTcSg.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/C4kegdsnI4p08M1lFRerCpjTcSg.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/C4kegdsnI4p08M1lFRerCpjTcSg.jpg 3024w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v1\",activeLocale)??\"Restauranten indenfor\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3689.8474+0+185+0+0+446.4+0+174+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/C4kegdsnI4p08M1lFRerCpjTcSg.jpg\",srcSet:\"https://framerusercontent.com/images/C4kegdsnI4p08M1lFRerCpjTcSg.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/C4kegdsnI4p08M1lFRerCpjTcSg.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/C4kegdsnI4p08M1lFRerCpjTcSg.jpg 3024w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v1\",activeLocale)??\"Restauranten indenfor\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4223.8393+0+96+0+0+434.4+0+158+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"75px\",src:\"https://framerusercontent.com/images/C4kegdsnI4p08M1lFRerCpjTcSg.jpg\",srcSet:\"https://framerusercontent.com/images/C4kegdsnI4p08M1lFRerCpjTcSg.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/C4kegdsnI4p08M1lFRerCpjTcSg.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/C4kegdsnI4p08M1lFRerCpjTcSg.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v1\",activeLocale)??\"Restauranten indenfor\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3755.482+0+185+0+0+451.2+0+174+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/C4kegdsnI4p08M1lFRerCpjTcSg.jpg\",srcSet:\"https://framerusercontent.com/images/C4kegdsnI4p08M1lFRerCpjTcSg.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/C4kegdsnI4p08M1lFRerCpjTcSg.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/C4kegdsnI4p08M1lFRerCpjTcSg.jpg 3024w\"},className:\"framer-1yg2h7\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v37\",activeLocale)??\"Pizza\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3613.988+0+185+0+0+439.2+0+174+0+0),pixelHeight:4032,pixelWidth:3024,positionX:\"51.5%\",positionY:\"36.9%\",sizes:\"150px\",src:\"https://framerusercontent.com/images/AxJU98RZ4WsMxbX9sawuf6Mjjk.jpg\",srcSet:\"https://framerusercontent.com/images/AxJU98RZ4WsMxbX9sawuf6Mjjk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/AxJU98RZ4WsMxbX9sawuf6Mjjk.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/AxJU98RZ4WsMxbX9sawuf6Mjjk.jpg 3024w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v37\",activeLocale)??\"Pizza\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3689.8474+0+185+0+0+446.4+0+174+0+0),pixelHeight:4032,pixelWidth:3024,positionX:\"51.5%\",positionY:\"36.9%\",sizes:\"150px\",src:\"https://framerusercontent.com/images/AxJU98RZ4WsMxbX9sawuf6Mjjk.jpg\",srcSet:\"https://framerusercontent.com/images/AxJU98RZ4WsMxbX9sawuf6Mjjk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/AxJU98RZ4WsMxbX9sawuf6Mjjk.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/AxJU98RZ4WsMxbX9sawuf6Mjjk.jpg 3024w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v37\",activeLocale)??\"Pizza\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4223.8393+0+96+0+0+434.4+0+158+0+0),pixelHeight:4032,pixelWidth:3024,positionX:\"51.5%\",positionY:\"36.9%\",sizes:\"75px\",src:\"https://framerusercontent.com/images/AxJU98RZ4WsMxbX9sawuf6Mjjk.jpg\",srcSet:\"https://framerusercontent.com/images/AxJU98RZ4WsMxbX9sawuf6Mjjk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/AxJU98RZ4WsMxbX9sawuf6Mjjk.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/AxJU98RZ4WsMxbX9sawuf6Mjjk.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v37\",activeLocale)??\"Pizza\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3755.482+0+185+0+0+451.2+0+174+0+0),pixelHeight:4032,pixelWidth:3024,positionX:\"51.5%\",positionY:\"36.9%\",sizes:\"150px\",src:\"https://framerusercontent.com/images/AxJU98RZ4WsMxbX9sawuf6Mjjk.jpg\",srcSet:\"https://framerusercontent.com/images/AxJU98RZ4WsMxbX9sawuf6Mjjk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/AxJU98RZ4WsMxbX9sawuf6Mjjk.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/AxJU98RZ4WsMxbX9sawuf6Mjjk.jpg 3024w\"},className:\"framer-8cxqnv\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lqa2q2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v38\",activeLocale)??\"Menukort\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3613.988+0+185+0+0+439.2+0+174+0+0),pixelHeight:800,pixelWidth:1e3,sizes:\"150px\",src:\"https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg\",srcSet:\"https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg 1000w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v38\",activeLocale)??\"Menukort\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3689.8474+0+185+0+0+446.4+0+174+0+0),pixelHeight:800,pixelWidth:1e3,sizes:\"150px\",src:\"https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg\",srcSet:\"https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg 1000w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v38\",activeLocale)??\"Menukort\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4223.8393+0+96+0+0+434.4+0+158+0+0),pixelHeight:800,pixelWidth:1e3,sizes:\"75px\",src:\"https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg\",srcSet:\"https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v38\",activeLocale)??\"Menukort\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3755.482+0+185+0+0+451.2+0+174+0+0),pixelHeight:800,pixelWidth:1e3,sizes:\"150px\",src:\"https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg\",srcSet:\"https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg 1000w\"},className:\"framer-14wd92h\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v39\",activeLocale)??\"\\xd8l og cocktails\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3613.988+0+185+0+0+439.2+0+174+0+0),pixelHeight:4032,pixelWidth:3024,positionX:\"67%\",positionY:\"74%\",sizes:\"150px\",src:\"https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg\",srcSet:\"https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg 3024w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v39\",activeLocale)??\"\\xd8l og cocktails\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3689.8474+0+185+0+0+446.4+0+174+0+0),pixelHeight:4032,pixelWidth:3024,positionX:\"67%\",positionY:\"74%\",sizes:\"150px\",src:\"https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg\",srcSet:\"https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg 3024w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v39\",activeLocale)??\"\\xd8l og cocktails\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4223.8393+0+96+0+0+434.4+0+158+0+0),pixelHeight:4032,pixelWidth:3024,positionX:\"67%\",positionY:\"74%\",sizes:\"75px\",src:\"https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg\",srcSet:\"https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v39\",activeLocale)??\"\\xd8l og cocktails\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3755.482+0+185+0+0+451.2+0+174+0+0),pixelHeight:4032,pixelWidth:3024,positionX:\"67%\",positionY:\"74%\",sizes:\"150px\",src:\"https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg\",srcSet:\"https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/Kd4T6WsK76P7xV6eNuvnc2jfk.jpg 3024w\"},className:\"framer-1o5yp73\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z4nric\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mlfows\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v40\",activeLocale)??\"B\\xf8f\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3613.988+0+185+0+0+439.2+0+348+0+0),pixelHeight:1708,pixelWidth:1944,sizes:\"150px\",src:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg\",srcSet:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg 1944w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v40\",activeLocale)??\"B\\xf8f\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3689.8474+0+185+0+0+446.4+0+348+0+0),pixelHeight:1708,pixelWidth:1944,sizes:\"150px\",src:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg\",srcSet:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg 1944w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v40\",activeLocale)??\"B\\xf8f\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4223.8393+0+96+0+0+434.4+0+316+0+0),pixelHeight:1708,pixelWidth:1944,sizes:\"75px\",src:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg\",srcSet:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg 1944w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v40\",activeLocale)??\"B\\xf8f\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3755.482+0+185+0+0+451.2+0+348+0+0),pixelHeight:1708,pixelWidth:1944,sizes:\"150px\",src:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg\",srcSet:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg 1944w\"},className:\"framer-17wl3tr\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v41\",activeLocale)??\"Stemningsbillede\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3613.988+0+185+0+0+439.2+0+348+0+0),pixelHeight:3024,pixelWidth:4032,sizes:\"150px\",src:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg\",srcSet:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg 4032w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v41\",activeLocale)??\"Stemningsbillede\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3689.8474+0+185+0+0+446.4+0+348+0+0),pixelHeight:3024,pixelWidth:4032,sizes:\"150px\",src:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg\",srcSet:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg 4032w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v41\",activeLocale)??\"Stemningsbillede\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4223.8393+0+96+0+0+434.4+0+316+0+0),pixelHeight:3024,pixelWidth:4032,sizes:\"75px\",src:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg\",srcSet:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg 4032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v41\",activeLocale)??\"Stemningsbillede\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3755.482+0+185+0+0+451.2+0+348+0+0),pixelHeight:3024,pixelWidth:4032,sizes:\"150px\",src:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg\",srcSet:\"https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bU1pclfw0L6DOTnenYmY1ZI2FxE.jpg 4032w\"},className:\"framer-1r9xs9h\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13j16fc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v42\",activeLocale)??\"Laks og kartofler\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3613.988+0+185+0+0+439.2+0+348+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg\",srcSet:\"https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg 3024w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v42\",activeLocale)??\"Laks og kartofler\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3689.8474+0+185+0+0+446.4+0+348+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg\",srcSet:\"https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg 3024w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v42\",activeLocale)??\"Laks og kartofler\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4223.8393+0+96+0+0+434.4+0+316+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"75px\",src:\"https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg\",srcSet:\"https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v42\",activeLocale)??\"Laks og kartofler\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3755.482+0+185+0+0+451.2+0+348+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg\",srcSet:\"https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/4LvdUGgyRu5d9Tar7Kyq5E3KGM.jpg 3024w\"},className:\"framer-1cdcqsh\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v43\",activeLocale)??\"Kaffe\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3613.988+0+185+0+0+439.2+0+348+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/Nwob1mqYCEml9PZah6DlAkSjg.jpg\",srcSet:\"https://framerusercontent.com/images/Nwob1mqYCEml9PZah6DlAkSjg.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/Nwob1mqYCEml9PZah6DlAkSjg.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/Nwob1mqYCEml9PZah6DlAkSjg.jpg 3024w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v43\",activeLocale)??\"Kaffe\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3689.8474+0+185+0+0+446.4+0+348+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/Nwob1mqYCEml9PZah6DlAkSjg.jpg\",srcSet:\"https://framerusercontent.com/images/Nwob1mqYCEml9PZah6DlAkSjg.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/Nwob1mqYCEml9PZah6DlAkSjg.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/Nwob1mqYCEml9PZah6DlAkSjg.jpg 3024w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v43\",activeLocale)??\"Kaffe\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4223.8393+0+96+0+0+434.4+0+316+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"75px\",src:\"https://framerusercontent.com/images/Nwob1mqYCEml9PZah6DlAkSjg.jpg\",srcSet:\"https://framerusercontent.com/images/Nwob1mqYCEml9PZah6DlAkSjg.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/Nwob1mqYCEml9PZah6DlAkSjg.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/Nwob1mqYCEml9PZah6DlAkSjg.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v43\",activeLocale)??\"Kaffe\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3755.482+0+185+0+0+451.2+0+348+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"150px\",src:\"https://framerusercontent.com/images/Nwob1mqYCEml9PZah6DlAkSjg.jpg\",srcSet:\"https://framerusercontent.com/images/Nwob1mqYCEml9PZah6DlAkSjg.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/Nwob1mqYCEml9PZah6DlAkSjg.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/Nwob1mqYCEml9PZah6DlAkSjg.jpg 3024w\"},className:\"framer-3whwfg\"})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15p1qpm\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined},{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined},{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined},{href:{webPageId:\"e2Q4A0D1X\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{y:(componentViewport?.y||0)+0+3613.988+0+185+0+0+961.2+0+0},o7HZspqgA:{y:(componentViewport?.y||0)+0+3689.8474+0+185+0+0+968.4+0+0},Oaw0BLRU7:{y:(componentViewport?.y||0)+0+4223.8393+0+96+0+0+924.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"300px\",y:(componentViewport?.y||0)+0+3755.482+0+185+0+0+973.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18x0tfu-container\",nodeId:\"c9O05Ht6c\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{gOOytn378:resolvedLinks5[2]},o7HZspqgA:{gOOytn378:resolvedLinks5[1]},Oaw0BLRU7:{gOOytn378:resolvedLinks5[3]}},children:/*#__PURE__*/_jsx(Button,{egNmiz6Mo:getLocalizedValue(\"v6\",activeLocale)??\"Se vores menukort\",gOOytn378:resolvedLinks5[0],height:\"100%\",HTzRKVpYS:false,id:\"c9O05Ht6c\",layoutId:\"c9O05Ht6c\",style:{width:\"100%\"},variant:\"Y5TwznyWi\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mjh302\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{y:(componentViewport?.y||0)+0+3613.988+0+185+0+0+961.2+0+60+0},o7HZspqgA:{y:(componentViewport?.y||0)+0+3689.8474+0+185+0+0+968.4+0+60+0},Oaw0BLRU7:{y:(componentViewport?.y||0)+0+4223.8393+0+96+0+0+924.4+0+60+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"180px\",y:(componentViewport?.y||0)+0+3755.482+0+185+0+0+973.2+0+60+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j9kwhi-container\",nodeId:\"wfy_5rhZ0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{egNmiz6Mo:getLocalizedValue(\"v4\",activeLocale)??\"Bestil bord\",gOOytn378:\"https://book.easytable.com/book/?id=25e7a&lang=auto\",height:\"100%\",HTzRKVpYS:true,id:\"wfy_5rhZ0\",layoutId:\"wfy_5rhZ0\",style:{width:\"100%\"},variant:\"Y5TwznyWi\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{y:(componentViewport?.y||0)+0+3613.988+0+185+0+0+961.2+0+60+0},o7HZspqgA:{y:(componentViewport?.y||0)+0+3689.8474+0+185+0+0+968.4+0+60+0},Oaw0BLRU7:{y:(componentViewport?.y||0)+0+4223.8393+0+96+0+0+924.4+0+60+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"180px\",y:(componentViewport?.y||0)+0+3755.482+0+185+0+0+973.2+0+60+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kjo9gd-container\",nodeId:\"vFY4gQiBx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{egNmiz6Mo:getLocalizedValue(\"v5\",activeLocale)??\"Bestil take-away\",gOOytn378:\"https://www.foodbooking.com/ordering/restaurant/menu?restaurant_uid=07005658-c1fc-4044-abeb-8f14bbac2150\",height:\"100%\",HTzRKVpYS:true,id:\"vFY4gQiBx\",layoutId:\"vFY4gQiBx\",style:{width:\"100%\"},variant:\"Y5TwznyWi\",width:\"100%\"})})})})]})]})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1osa355\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k8tkjz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5xgeo4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13b0d8f\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3sk33u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-n2v7ub\",\"data-styles-preset\":\"deYXjan9W\",style:{\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Hold din f\\xf8dselsdag eller arrangement hos Tio Marios\"})}),className:\"framer-4bp5rp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Skal du fejre f\\xf8dselsdag, konfirmation eller et andet s\\xe6rligt arrangement? Hos Tio Mario\u2019s s\\xf8rger vi for god stemning og italiensk mad i topklasse \u2013 perfekt til b\\xe5de sm\\xe5 og st\\xf8rre selskaber. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Vi skr\\xe6ddersyr menuen efter dine \\xf8nsker, s\\xe5 du kan l\\xe6ne dig tilbage og nyde dagen med dine g\\xe6ster.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Kontakt os og h\\xf8r mere om mulighederne.\"})]}),className:\"framer-5zfum8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8d0svp\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2dtay7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14c56bc\",\"data-framer-name\":\"Pictures\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v46\",activeLocale)??\"Billede af en b\\xf8f\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4916.188+0+0+0+48+699+0+0+0),pixelHeight:1708,pixelWidth:1944,sizes:\"120px\",src:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg\",srcSet:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg 1944w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v46\",activeLocale)??\"Billede af en b\\xf8f\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4999.2474+0+0+0+48+699+0+0+0),pixelHeight:1708,pixelWidth:1944,sizes:\"135px\",src:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg\",srcSet:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg 1944w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v46\",activeLocale)??\"Billede af en b\\xf8f\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5460.2393+0+0+0+0+24+699+0+0+0),pixelHeight:1708,pixelWidth:1944,sizes:\"103px\",src:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg\",srcSet:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg 1944w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v46\",activeLocale)??\"Billede af en b\\xf8f\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5069.682+0+0+0+48+699+0+0+0),pixelHeight:1708,pixelWidth:1944,sizes:\"180px\",src:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg\",srcSet:\"https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JA8wvnyNqcxnmY1Zr5L4efh0DU.jpg 1944w\"},className:\"framer-11nybib\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v47\",activeLocale)??\"B\\xf8f og kartofler\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4916.188+0+0+0+48+699+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"120px\",src:\"https://framerusercontent.com/images/crt2zXNc6XpleDHIvBBZDDSlNDI.jpg\",srcSet:\"https://framerusercontent.com/images/crt2zXNc6XpleDHIvBBZDDSlNDI.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/crt2zXNc6XpleDHIvBBZDDSlNDI.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/crt2zXNc6XpleDHIvBBZDDSlNDI.jpg 3024w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v47\",activeLocale)??\"B\\xf8f og kartofler\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4999.2474+0+0+0+48+699+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"135px\",src:\"https://framerusercontent.com/images/crt2zXNc6XpleDHIvBBZDDSlNDI.jpg\",srcSet:\"https://framerusercontent.com/images/crt2zXNc6XpleDHIvBBZDDSlNDI.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/crt2zXNc6XpleDHIvBBZDDSlNDI.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/crt2zXNc6XpleDHIvBBZDDSlNDI.jpg 3024w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v47\",activeLocale)??\"B\\xf8f og kartofler\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5460.2393+0+0+0+0+24+699+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"103px\",src:\"https://framerusercontent.com/images/crt2zXNc6XpleDHIvBBZDDSlNDI.jpg\",srcSet:\"https://framerusercontent.com/images/crt2zXNc6XpleDHIvBBZDDSlNDI.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/crt2zXNc6XpleDHIvBBZDDSlNDI.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/crt2zXNc6XpleDHIvBBZDDSlNDI.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v47\",activeLocale)??\"B\\xf8f og kartofler\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5069.682+0+0+0+48+699+0+0+0),pixelHeight:4032,pixelWidth:3024,sizes:\"180px\",src:\"https://framerusercontent.com/images/crt2zXNc6XpleDHIvBBZDDSlNDI.jpg\",srcSet:\"https://framerusercontent.com/images/crt2zXNc6XpleDHIvBBZDDSlNDI.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/crt2zXNc6XpleDHIvBBZDDSlNDI.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/crt2zXNc6XpleDHIvBBZDDSlNDI.jpg 3024w\"},className:\"framer-11sgnd0\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v48\",activeLocale)??\"Italiensk mad\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4916.188+0+0+0+48+699+0+0+0),pixelHeight:4032,pixelWidth:1960,positionX:\"55.1%\",positionY:\"37.9%\",sizes:\"120px\",src:\"https://framerusercontent.com/images/TGlm4qTHwdg8zNMOThQDUO1FVJQ.jpg\",srcSet:\"https://framerusercontent.com/images/TGlm4qTHwdg8zNMOThQDUO1FVJQ.jpg?scale-down-to=2048 995w,https://framerusercontent.com/images/TGlm4qTHwdg8zNMOThQDUO1FVJQ.jpg 1960w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v48\",activeLocale)??\"Italiensk mad\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4999.2474+0+0+0+48+699+0+0+0),pixelHeight:4032,pixelWidth:1960,positionX:\"55.1%\",positionY:\"37.9%\",sizes:\"135px\",src:\"https://framerusercontent.com/images/TGlm4qTHwdg8zNMOThQDUO1FVJQ.jpg\",srcSet:\"https://framerusercontent.com/images/TGlm4qTHwdg8zNMOThQDUO1FVJQ.jpg?scale-down-to=2048 995w,https://framerusercontent.com/images/TGlm4qTHwdg8zNMOThQDUO1FVJQ.jpg 1960w\"}},Oaw0BLRU7:{background:{alt:getLocalizedValue(\"v48\",activeLocale)??\"Italiensk mad\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5460.2393+0+0+0+0+24+699+0+0+0),pixelHeight:4032,pixelWidth:1960,positionX:\"55.1%\",positionY:\"37.9%\",sizes:\"103px\",src:\"https://framerusercontent.com/images/TGlm4qTHwdg8zNMOThQDUO1FVJQ.jpg\",srcSet:\"https://framerusercontent.com/images/TGlm4qTHwdg8zNMOThQDUO1FVJQ.jpg?scale-down-to=2048 995w,https://framerusercontent.com/images/TGlm4qTHwdg8zNMOThQDUO1FVJQ.jpg 1960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v48\",activeLocale)??\"Italiensk mad\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5069.682+0+0+0+48+699+0+0+0),pixelHeight:4032,pixelWidth:1960,positionX:\"55.1%\",positionY:\"37.9%\",sizes:\"180px\",src:\"https://framerusercontent.com/images/TGlm4qTHwdg8zNMOThQDUO1FVJQ.jpg\",srcSet:\"https://framerusercontent.com/images/TGlm4qTHwdg8zNMOThQDUO1FVJQ.jpg?scale-down-to=2048 995w,https://framerusercontent.com/images/TGlm4qTHwdg8zNMOThQDUO1FVJQ.jpg 1960w\"},className:\"framer-14x62cx\"})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pOMLIovIg\"},implicitPathVariables:undefined},{href:{webPageId:\"pOMLIovIg\"},implicitPathVariables:undefined},{href:{webPageId:\"pOMLIovIg\"},implicitPathVariables:undefined},{href:{webPageId:\"pOMLIovIg\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{y:(componentViewport?.y||0)+0+4916.188+0+0+0+48+699+0+169.494},o7HZspqgA:{y:(componentViewport?.y||0)+0+4999.2474+0+0+0+48+699+0+186.1807},Oaw0BLRU7:{y:(componentViewport?.y||0)+0+5460.2393+0+0+0+0+24+699+0+150.5823}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"300px\",y:(componentViewport?.y||0)+0+5069.682+0+0+0+48+699+0+236.241,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kb3y0c-container\",nodeId:\"sC1AXx64t\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{gOOytn378:resolvedLinks6[2]},o7HZspqgA:{gOOytn378:resolvedLinks6[1]},Oaw0BLRU7:{gOOytn378:resolvedLinks6[3]}},children:/*#__PURE__*/_jsx(Button,{egNmiz6Mo:getLocalizedValue(\"v49\",activeLocale)??\"Kontakt os\",gOOytn378:resolvedLinks6[0],height:\"100%\",HTzRKVpYS:true,id:\"sC1AXx64t\",layoutId:\"sC1AXx64t\",style:{width:\"100%\"},variant:\"Y5TwznyWi\",width:\"100%\"})})})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{background:{alt:getLocalizedValue(\"v38\",activeLocale)??\"Menukort\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4916.188+0+0+0),pixelHeight:800,pixelWidth:1e3,sizes:\"300px\",src:\"https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg\",srcSet:\"https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg 1000w\"}},o7HZspqgA:{background:{alt:getLocalizedValue(\"v38\",activeLocale)??\"Menukort\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4999.2474+0+0+0),pixelHeight:800,pixelWidth:1e3,sizes:\"420px\",src:\"https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg\",srcSet:\"https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v38\",activeLocale)??\"Menukort\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5069.682+0+0+0),pixelHeight:800,pixelWidth:1e3,sizes:\"420px\",src:\"https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg\",srcSet:\"https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1F56WAUersw6DXMxiLdlBSBWJI.jpg 1000w\"},className:\"framer-1ersmp0 hidden-ghq5ul\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w6ywjr\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g8qzj1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c4tqze\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s93ikf\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-177idcj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkxwlj2F4:{children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xx8ppm\",\"data-styles-preset\":\"tCXc8ygKP\",children:\"Oplev den \\xe6gte italienske stemning midt i K\\xf8benhavn\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Tio Mario\u2019s, en fremtr\\xe6dende restaurant i Nordhavn, K\\xf8benhavn, inviterer dig indenfor til en uforglemmelig italiensk oplevelse. Kendt for sin autenticitet og charme, har Tio Mario\u2019s siden 2013 v\\xe6ret et yndet sted for dem, der s\\xf8ger \\xe6gte italiensk madkultur i K\\xf8benhavn. Her kombineres passion for italienske retter med en indbydende atmosf\\xe6re, perfekt for alle lejligheder.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xx8ppm\",\"data-styles-preset\":\"tCXc8ygKP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Nyd en uforglemmelig pizzaoplevelse i hjertet af K\\xf8benhavn\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Tio Mario\u2019s er ikke kun en restaurant i K\\xf8benhavn; det er et pizzeria i K\\xf8benhavn, hvor hver pizza er et mesterv\\xe6rk. Kombinationen af traditionelle metoder og friske ingredienser g\\xf8r pizza i K\\xf8benhavn til en unik oplevelse hos Tio Mario\u2019s. Fra den klassiske Margherita til nye skabelser, hver bid er et vidnesbyrd om, hvorfor Tio Mario\u2019s betragtes som et af de bedste steder for pizza i Nordhavn og K\\xf8benhavn generelt.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xx8ppm\",\"data-styles-preset\":\"tCXc8ygKP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Skab varige minder p\\xe5 Tio Mario\u2019s\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Som en f\\xf8rende pizza restaurant i K\\xf8benhavn, s\\xe6tter Tio Mario\u2019s standarden for kulinarisk oplevelse. Men Tio Mario\u2019s er mere end bare en pizzeria i K\\xf8benhavn; det er et sted, hvor minder skabes. Med sit engagerede team, der v\\xe6gter kvalitet og service h\\xf8jt, er hver bes\\xf8g hos Tio Mario\u2019s en garanti for en mindev\\xe6rdig oplevelse. Uanset om du v\\xe6lger at nyde maden i vores hyggelige lokaler eller bestiller mad ud af huset, lover vi en smagsoplevelse, der s\\xe6tter standarden for restauranter i K\\xf8benhavn.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Restaurant Tio Mario\u2019s, beliggende i det pulserende K\\xf8benhavnske kvarter Amerika Plads, er et sandt gastronomisk h\\xf8jdepunkt for enhver, der s\\xf8ger en \\xe6gte pizza i K\\xf8benhavn. Med sin kombination af traditionelle italienske smage, f\\xf8rsteklasses service og en indbydende atmosf\\xe6re, st\\xe5r Tio Mario\u2019s som en b\\xe6rende s\\xf8jle i K\\xf8benhavns restaurantlandskab. Vi inviterer dig til at deltage i vores passion for italiensk mad og blive en del af vores historie. Bes\\xf8g Tio Mario\u2019s for en oplevelse, der transcenderer det almindelige og definerer, hvad en restaurant i K\\xf8benhavn kan tilbyde.\"})]})},o7HZspqgA:{children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xx8ppm\",\"data-styles-preset\":\"tCXc8ygKP\",children:\"Oplev den \\xe6gte italienske stemning midt i K\\xf8benhavn\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Tio Mario\u2019s, en fremtr\\xe6dende restaurant i Nordhavn, K\\xf8benhavn, inviterer dig indenfor til en uforglemmelig italiensk oplevelse. Kendt for sin autenticitet og charme, har Tio Mario\u2019s siden 2013 v\\xe6ret et yndet sted for dem, der s\\xf8ger \\xe6gte italiensk madkultur i K\\xf8benhavn. Her kombineres passion for italienske retter med en indbydende atmosf\\xe6re, perfekt for alle lejligheder.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xx8ppm\",\"data-styles-preset\":\"tCXc8ygKP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Nyd en uforglemmelig pizzaoplevelse i hjertet af K\\xf8benhavn\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Tio Mario\u2019s er ikke kun en restaurant i K\\xf8benhavn; det er et pizzeria i K\\xf8benhavn, hvor hver pizza er et mesterv\\xe6rk. Kombinationen af traditionelle metoder og friske ingredienser g\\xf8r pizza i K\\xf8benhavn til en unik oplevelse hos Tio Mario\u2019s. Fra den klassiske Margherita til nye skabelser, hver bid er et vidnesbyrd om, hvorfor Tio Mario\u2019s betragtes som et af de bedste steder for pizza i Nordhavn og K\\xf8benhavn generelt.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xx8ppm\",\"data-styles-preset\":\"tCXc8ygKP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Skab varige minder p\\xe5 Tio Mario\u2019s\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Som en f\\xf8rende pizza restaurant i K\\xf8benhavn, s\\xe6tter Tio Mario\u2019s standarden for kulinarisk oplevelse. Men Tio Mario\u2019s er mere end bare en pizzeria i K\\xf8benhavn; det er et sted, hvor minder skabes. Med sit engagerede team, der v\\xe6gter kvalitet og service h\\xf8jt, er hver bes\\xf8g hos Tio Mario\u2019s en garanti for en mindev\\xe6rdig oplevelse. Uanset om du v\\xe6lger at nyde maden i vores hyggelige lokaler eller bestiller mad ud af huset, lover vi en smagsoplevelse, der s\\xe6tter standarden for restauranter i K\\xf8benhavn.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Restaurant Tio Mario\u2019s, beliggende i det pulserende K\\xf8benhavnske kvarter Amerika Plads, er et sandt gastronomisk h\\xf8jdepunkt for enhver, der s\\xf8ger en \\xe6gte pizza i K\\xf8benhavn. Med sin kombination af traditionelle italienske smage, f\\xf8rsteklasses service og en indbydende atmosf\\xe6re, st\\xe5r Tio Mario\u2019s som en b\\xe6rende s\\xf8jle i K\\xf8benhavns restaurantlandskab. Vi inviterer dig til at deltage i vores passion for italiensk mad og blive en del af vores historie. Bes\\xf8g Tio Mario\u2019s for en oplevelse, der transcenderer det almindelige og definerer, hvad en restaurant i K\\xf8benhavn kan tilbyde.\"})]})},Oaw0BLRU7:{children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xx8ppm\",\"data-styles-preset\":\"tCXc8ygKP\",children:\"Oplev den \\xe6gte italienske stemning midt i K\\xf8benhavn\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Tio Mario\u2019s, en fremtr\\xe6dende restaurant i Nordhavn, K\\xf8benhavn, inviterer dig indenfor til en uforglemmelig italiensk oplevelse. Kendt for sin autenticitet og charme, har Tio Mario\u2019s siden 2013 v\\xe6ret et yndet sted for dem, der s\\xf8ger \\xe6gte italiensk madkultur i K\\xf8benhavn. Her kombineres passion for italienske retter med en indbydende atmosf\\xe6re, perfekt for alle lejligheder.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xx8ppm\",\"data-styles-preset\":\"tCXc8ygKP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Nyd en uforglemmelig pizzaoplevelse i hjertet af K\\xf8benhavn\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Tio Mario\u2019s er ikke kun en restaurant i K\\xf8benhavn; det er et pizzeria i K\\xf8benhavn, hvor hver pizza er et mesterv\\xe6rk. Kombinationen af traditionelle metoder og friske ingredienser g\\xf8r pizza i K\\xf8benhavn til en unik oplevelse hos Tio Mario\u2019s. Fra den klassiske Margherita til nye skabelser, hver bid er et vidnesbyrd om, hvorfor Tio Mario\u2019s betragtes som et af de bedste steder for pizza i Nordhavn og K\\xf8benhavn generelt.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xx8ppm\",\"data-styles-preset\":\"tCXc8ygKP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Skab varige minder p\\xe5 Tio Mario\u2019s\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Som en f\\xf8rende pizza restaurant i K\\xf8benhavn, s\\xe6tter Tio Mario\u2019s standarden for kulinarisk oplevelse. Men Tio Mario\u2019s er mere end bare en pizzeria i K\\xf8benhavn; det er et sted, hvor minder skabes. Med sit engagerede team, der v\\xe6gter kvalitet og service h\\xf8jt, er hver bes\\xf8g hos Tio Mario\u2019s en garanti for en mindev\\xe6rdig oplevelse. Uanset om du v\\xe6lger at nyde maden i vores hyggelige lokaler eller bestiller mad ud af huset, lover vi en smagsoplevelse, der s\\xe6tter standarden for restauranter i K\\xf8benhavn.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Restaurant Tio Mario\u2019s, beliggende i det pulserende K\\xf8benhavnske kvarter Amerika Plads, er et sandt gastronomisk h\\xf8jdepunkt for enhver, der s\\xf8ger en \\xe6gte pizza i K\\xf8benhavn. Med sin kombination af traditionelle italienske smage, f\\xf8rsteklasses service og en indbydende atmosf\\xe6re, st\\xe5r Tio Mario\u2019s som en b\\xe6rende s\\xf8jle i K\\xf8benhavns restaurantlandskab. Vi inviterer dig til at deltage i vores passion for italiensk mad og blive en del af vores historie. Bes\\xf8g Tio Mario\u2019s for en oplevelse, der transcenderer det almindelige og definerer, hvad en restaurant i K\\xf8benhavn kan tilbyde.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xx8ppm\",\"data-styles-preset\":\"tCXc8ygKP\",children:\"Oplev den \\xe6gte italienske stemning midt i K\\xf8benhavn\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Tio Mario\u2019s, en fremtr\\xe6dende restaurant i Nordhavn, K\\xf8benhavn, inviterer dig indenfor til en uforglemmelig italiensk oplevelse. Kendt for sin autenticitet og charme, har Tio Mario\u2019s siden 2013 v\\xe6ret et yndet sted for dem, der s\\xf8ger \\xe6gte italiensk madkultur i K\\xf8benhavn. Her kombineres passion for italienske retter med en indbydende atmosf\\xe6re, perfekt for alle lejligheder.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xx8ppm\",\"data-styles-preset\":\"tCXc8ygKP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Nyd en uforglemmelig pizzaoplevelse i hjertet af K\\xf8benhavn\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Tio Mario\u2019s er ikke kun en restaurant i K\\xf8benhavn; det er et pizzeria i K\\xf8benhavn, hvor hver pizza er et mesterv\\xe6rk. Kombinationen af traditionelle metoder og friske ingredienser g\\xf8r pizza i K\\xf8benhavn til en unik oplevelse hos Tio Mario\u2019s. Fra den klassiske Margherita til nye skabelser, hver bid er et vidnesbyrd om, hvorfor Tio Mario\u2019s betragtes som et af de bedste steder for pizza i Nordhavn og K\\xf8benhavn generelt.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xx8ppm\",\"data-styles-preset\":\"tCXc8ygKP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Skab varige minder p\\xe5 Tio Mario\u2019s\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Som en f\\xf8rende pizza restaurant i K\\xf8benhavn, s\\xe6tter Tio Mario\u2019s standarden for kulinarisk oplevelse. Men Tio Mario\u2019s er mere end bare en pizzeria i K\\xf8benhavn; det er et sted, hvor minder skabes. Med sit engagerede team, der v\\xe6gter kvalitet og service h\\xf8jt, er hver bes\\xf8g hos Tio Mario\u2019s en garanti for en mindev\\xe6rdig oplevelse. Uanset om du v\\xe6lger at nyde maden i vores hyggelige lokaler eller bestiller mad ud af huset, lover vi en smagsoplevelse, der s\\xe6tter standarden for restauranter i K\\xf8benhavn.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z2btlg\",\"data-styles-preset\":\"We_FCWyZV\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b700032-121f-4bee-b782-45401202e30e, rgb(35, 7, 9))\"},children:\"Restaurant Tio Mario\u2019s, beliggende i det pulserende K\\xf8benhavnske kvarter Amerika Plads, er et sandt gastronomisk h\\xf8jdepunkt for enhver, der s\\xf8ger en \\xe6gte pizza i K\\xf8benhavn. Med sin kombination af traditionelle italienske smage, f\\xf8rsteklasses service og en indbydende atmosf\\xe6re, st\\xe5r Tio Mario\u2019s som en b\\xe6rende s\\xf8jle i K\\xf8benhavns restaurantlandskab. Vi inviterer dig til at deltage i vores passion for italiensk mad og blive en del af vores historie. Bes\\xf8g Tio Mario\u2019s for en oplevelse, der transcenderer det almindelige og definerer, hvad en restaurant i K\\xf8benhavn kan tilbyde.\"})]}),className:\"framer-rbw2ve\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9HBTA.framer-lux5qc, .framer-9HBTA .framer-lux5qc { display: block; }\",\".framer-9HBTA.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1000px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-9HBTA .framer-1j5k7zh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; min-height: 80vh; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-127mug0-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-9HBTA .framer-fceb1j, .framer-9HBTA .framer-16t8d37, .framer-9HBTA .framer-14ryghx { height: 629px; overflow: hidden; position: relative; width: 1039px; }\",\".framer-9HBTA .framer-ez8dmg { background-color: rgba(0, 0, 0, 0.4); flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 2; }\",\".framer-9HBTA .framer-q0xyrg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 1px; z-index: 3; }\",\".framer-9HBTA .framer-36p3q5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-1o22f4, .framer-9HBTA .framer-hm7psv, .framer-9HBTA .framer-a1s45r, .framer-9HBTA .framer-1r6mu1s, .framer-9HBTA .framer-m8jya1, .framer-9HBTA .framer-1ujoc7c, .framer-9HBTA .framer-1whean1, .framer-9HBTA .framer-4bp5rp, .framer-9HBTA .framer-5zfum8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9HBTA .framer-1yb8rzc, .framer-9HBTA .framer-15p1qpm, .framer-9HBTA .framer-177idcj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-1doz0ki, .framer-9HBTA .framer-1mjh302 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-8zpony-container, .framer-9HBTA .framer-1xmeze4-container, .framer-9HBTA .framer-11699v2-container { flex: none; height: auto; position: relative; width: 200px; }\",\".framer-9HBTA .framer-1raejae-container, .framer-9HBTA .framer-184so37-container, .framer-9HBTA .framer-zh6b60-container, .framer-9HBTA .framer-1k9dm9x-container, .framer-9HBTA .framer-18x0tfu-container, .framer-9HBTA .framer-kb3y0c-container { flex: none; height: auto; position: relative; width: 300px; }\",\".framer-9HBTA .framer-v0zay0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-4swce4, .framer-9HBTA .framer-1k8tkjz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-15w142z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 30px 0px 30px; position: relative; width: 1px; }\",\".framer-9HBTA .framer-m91iik, .framer-9HBTA .framer-1jzmi6k, .framer-9HBTA .framer-13b0d8f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-1b2p221, .framer-9HBTA .framer-55wc3q, .framer-9HBTA .framer-y7nj4w, .framer-9HBTA .framer-1mdbtcf, .framer-9HBTA .framer-3sk33u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-k38e2i, .framer-9HBTA .framer-1a0x1um, .framer-9HBTA .framer-8d0svp { background-color: var(--token-be59fa75-1fef-4a58-baaf-521dff49a55f, #9e4a33); flex: none; height: 4px; overflow: hidden; position: relative; width: 250px; }\",\".framer-9HBTA .framer-vjfa3e, .framer-9HBTA .framer-1gpchks, .framer-9HBTA .framer-2dtay7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-rp8zvq, .framer-9HBTA .framer-ad5edn, .framer-9HBTA .framer-14c56bc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-oope8d, .framer-9HBTA .framer-s3q8i6, .framer-9HBTA .framer-11ys1i4, .framer-9HBTA .framer-1mokmdj, .framer-9HBTA .framer-x9slqg, .framer-9HBTA .framer-1kc77en, .framer-9HBTA .framer-11nybib, .framer-9HBTA .framer-11sgnd0, .framer-9HBTA .framer-14x62cx { aspect-ratio: 0.8989169675090253 / 1; flex: none; height: 200px; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 180px); }\",\".framer-9HBTA .framer-17otd7r, .framer-9HBTA .framer-1ersmp0 { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 420px; }\",\".framer-9HBTA .framer-12byf7c { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; max-width: 1200px; min-height: 100px; overflow: hidden; padding: 120px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-1l843d7 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-9HBTA .framer-1r9y8e6 { -webkit-filter: contrast(1.16) saturate(1.42); filter: contrast(1.16) saturate(1.42); flex: none; height: 471px; overflow: hidden; position: relative; width: 420px; }\",\".framer-9HBTA .framer-mhb1hp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 72px; position: relative; width: 1px; }\",\".framer-9HBTA .framer-j5mnah, .framer-9HBTA .framer-1wc9lma, .framer-9HBTA .framer-osb400, .framer-9HBTA .framer-rbw2ve { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9HBTA .framer-m4i5qq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-1hk4yvp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-9HBTA .framer-gjxnpe-container, .framer-9HBTA .framer-1ei4kt3-container { flex: none; height: auto; position: relative; width: 150px; }\",\".framer-9HBTA .framer-j7i3vx { align-content: center; align-items: center; background-color: var(--token-be59fa75-1fef-4a58-baaf-521dff49a55f, #9e4a33); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-m216jt { align-content: flex-start; align-items: flex-start; background-color: var(--token-be59fa75-1fef-4a58-baaf-521dff49a55f, #9e4a33); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; max-width: 1200px; min-height: 100px; overflow: hidden; padding: 48px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-9HBTA .framer-1nounjm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 72px; position: relative; width: 1px; }\",\".framer-9HBTA .framer-imo1h4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-9HBTA .framer-1tzqjuq { background-color: #ffffff; flex: none; height: 4px; overflow: hidden; position: relative; width: 250px; }\",\".framer-9HBTA .framer-f6d0cd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-9HBTA .framer-2toh7l { --border-bottom-width: 5px; --border-color: #ffffff; --border-left-width: 10px; --border-right-width: 10px; --border-style: solid; --border-top-width: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; z-index: 1; }\",\".framer-9HBTA .framer-6wfz7s { --border-bottom-width: 12px; --border-color: #ffffff; --border-left-width: 12px; --border-right-width: 12px; --border-style: solid; --border-top-width: 12px; -webkit-filter: saturate(1.42); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: -101px; filter: saturate(1.42); flex: none; height: 202px; left: calc(50.00000000000002% - 312px / 2); overflow: hidden; position: absolute; width: 312px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-9HBTA .framer-11t5hba { --border-bottom-width: 10px; --border-color: #ffffff; --border-left-width: 10px; --border-right-width: 10px; --border-style: solid; --border-top-width: 5px; -webkit-filter: saturate(2); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; filter: saturate(2); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9HBTA .framer-18ikce6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-15zlbx0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; max-width: 1200px; min-height: 100px; overflow: hidden; padding: 185px 0px 48px 0px; position: relative; width: 1px; }\",\".framer-9HBTA .framer-r5anux { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 1px; }\",\".framer-9HBTA .framer-1r74h93, .framer-9HBTA .framer-1s93ikf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-9HBTA .framer-dh7ucs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; max-width: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-bkkzxw { background-color: var(--token-be59fa75-1fef-4a58-baaf-521dff49a55f, #9e4a33); flex: none; height: 4px; overflow: hidden; position: relative; width: 100%; }\",\".framer-9HBTA .framer-1r0e6b0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-56tl4g, .framer-9HBTA .framer-15mun7j, .framer-9HBTA .framer-z4nric { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-jjfcct, .framer-9HBTA .framer-9rpb66, .framer-9HBTA .framer-16s2b5b, .framer-9HBTA .framer-lqa2q2, .framer-9HBTA .framer-mlfows, .framer-9HBTA .framer-13j16fc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-9HBTA .framer-1p09s9z { border-top-left-radius: 50px; flex: none; height: 150px; overflow: hidden; position: relative; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9HBTA .framer-yz35oq, .framer-9HBTA .framer-gz0sdq, .framer-9HBTA .framer-1yg2h7, .framer-9HBTA .framer-8cxqnv, .framer-9HBTA .framer-14wd92h, .framer-9HBTA .framer-1o5yp73, .framer-9HBTA .framer-1r9xs9h, .framer-9HBTA .framer-1cdcqsh { flex: none; height: 150px; overflow: hidden; position: relative; width: 150px; }\",\".framer-9HBTA .framer-1t6hkv7 { border-top-right-radius: 50px; flex: none; height: 150px; overflow: hidden; position: relative; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9HBTA .framer-17wl3tr { border-bottom-left-radius: 50px; flex: none; height: 150px; overflow: hidden; position: relative; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9HBTA .framer-3whwfg { border-bottom-right-radius: 50px; flex: none; height: 150px; overflow: hidden; position: relative; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9HBTA .framer-j9kwhi-container, .framer-9HBTA .framer-kjo9gd-container { flex: none; height: auto; position: relative; width: 180px; }\",\".framer-9HBTA .framer-1osa355 { align-content: center; align-items: center; background-color: var(--token-d49ff846-b6df-4950-8a61-593f91a9e54e, #f5e9e0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-5xgeo4 { align-content: flex-start; align-items: flex-start; background-color: var(--token-d49ff846-b6df-4950-8a61-593f91a9e54e, #f5e9e0); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 30px 0px 30px; position: relative; width: 1px; }\",\".framer-9HBTA .framer-1w6ywjr { align-content: center; align-items: center; background-color: var(--token-d49ff846-b6df-4950-8a61-593f91a9e54e, #f5e9e0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9HBTA .framer-1g8qzj1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; max-width: 1200px; min-height: 100px; overflow: hidden; padding: 0px 0px 96px 0px; position: relative; width: 1px; }\",\".framer-9HBTA .framer-1c4tqze { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 30px 0px 30px; position: relative; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-9HBTA[data-border=\"true\"]::after, .framer-9HBTA [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-9HBTA.framer-72rtr7 { width: 1200px; } .framer-9HBTA .framer-oope8d, .framer-9HBTA .framer-s3q8i6, .framer-9HBTA .framer-11ys1i4, .framer-9HBTA .framer-11nybib, .framer-9HBTA .framer-11sgnd0, .framer-9HBTA .framer-14x62cx { height: 150px; width: var(--framer-aspect-ratio-supported, 135px); } .framer-9HBTA .framer-17otd7r, .framer-9HBTA .framer-1ersmp0 { align-self: unset; height: 549px; } .framer-9HBTA .framer-1r9y8e6 { aspect-ratio: 0.89171974522293 / 1; height: var(--framer-aspect-ratio-supported, 336px); width: 300px; } .framer-9HBTA .framer-1mokmdj, .framer-9HBTA .framer-1kc77en { height: 185px; width: var(--framer-aspect-ratio-supported, 166px); } .framer-9HBTA .framer-x9slqg { height: 156px; width: var(--framer-aspect-ratio-supported, 140px); } .framer-9HBTA .framer-11699v2-container { width: 150px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-9HBTA.framer-72rtr7 { width: 810px; } .framer-9HBTA .framer-oope8d, .framer-9HBTA .framer-s3q8i6, .framer-9HBTA .framer-11ys1i4, .framer-9HBTA .framer-1mokmdj, .framer-9HBTA .framer-x9slqg, .framer-9HBTA .framer-1kc77en, .framer-9HBTA .framer-11nybib, .framer-9HBTA .framer-11sgnd0, .framer-9HBTA .framer-14x62cx { height: 133px; width: var(--framer-aspect-ratio-supported, 120px); } .framer-9HBTA .framer-17otd7r, .framer-9HBTA .framer-1r9y8e6, .framer-9HBTA .framer-1ersmp0 { width: 300px; } .framer-9HBTA .framer-12byf7c { padding: 48px 0px 96px 0px; } .framer-9HBTA .framer-mhb1hp { padding: 0px 30px 0px 30px; } .framer-9HBTA .framer-m4i5qq { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-9HBTA .framer-1hk4yvp { flex: none; width: 100%; } .framer-9HBTA .framer-1nounjm { padding: 0px 30px 0px 50px; } .framer-9HBTA .framer-2toh7l { --border-left-width: 5px; --border-right-width: 5px; --border-top-width: 5px; } .framer-9HBTA .framer-6wfz7s { --border-bottom-width: 5px; --border-left-width: 5px; --border-right-width: 5px; --border-top-width: 5px; aspect-ratio: 1.5445544554455446 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 142px); left: 81px; top: 214px; width: 220px; } .framer-9HBTA .framer-11t5hba { --border-bottom-width: 5px; --border-left-width: 5px; --border-right-width: 5px; }}\",\"@media (max-width: 809px) { .framer-9HBTA.framer-72rtr7 { width: 390px; } .framer-9HBTA .framer-127mug0-container { left: 0px; right: 0px; top: -1px; width: unset; } .framer-9HBTA .framer-ez8dmg { right: 0px; width: unset; } .framer-9HBTA .framer-q0xyrg { padding: 0px 20px 0px 20px; } .framer-9HBTA .framer-1doz0ki, .framer-9HBTA .framer-4swce4, .framer-9HBTA .framer-m4i5qq, .framer-9HBTA .framer-1mjh302, .framer-9HBTA .framer-1k8tkjz { flex-direction: column; } .framer-9HBTA .framer-15w142z, .framer-9HBTA .framer-mhb1hp, .framer-9HBTA .framer-5xgeo4 { flex: none; padding: 24px 20px 0px 20px; width: 100%; } .framer-9HBTA .framer-oope8d, .framer-9HBTA .framer-s3q8i6, .framer-9HBTA .framer-11ys1i4, .framer-9HBTA .framer-11nybib, .framer-9HBTA .framer-11sgnd0, .framer-9HBTA .framer-14x62cx { height: 115px; width: var(--framer-aspect-ratio-supported, 103px); } .framer-9HBTA .framer-12byf7c { flex-direction: column; justify-content: flex-start; padding: 48px 0px 48px 0px; } .framer-9HBTA .framer-1l843d7 { align-self: unset; height: 300px; width: 100%; } .framer-9HBTA .framer-1r9y8e6 { flex: 1 0 0px; height: 100%; width: 1px; } .framer-9HBTA .framer-1mokmdj, .framer-9HBTA .framer-x9slqg, .framer-9HBTA .framer-1kc77en { height: 121px; width: var(--framer-aspect-ratio-supported, 109px); } .framer-9HBTA .framer-1hk4yvp { flex: none; justify-content: center; width: 100%; } .framer-9HBTA .framer-m216jt { flex-direction: column; gap: 12px; padding: 24px 0px 0px 0px; } .framer-9HBTA .framer-1nounjm { flex: none; padding: 0px 20px 0px 20px; width: 100%; } .framer-9HBTA .framer-zh6b60-container, .framer-9HBTA .framer-1k9dm9x-container { width: 250px; } .framer-9HBTA .framer-f6d0cd { flex: none; height: 400px; padding: 0px 20px 0px 20px; width: 100%; } .framer-9HBTA .framer-2toh7l, .framer-9HBTA .framer-11t5hba { --border-bottom-width: 3px; --border-left-width: 3px; --border-right-width: 3px; --border-top-width: 3px; } .framer-9HBTA .framer-6wfz7s { --border-bottom-width: 3px; --border-left-width: 3px; --border-right-width: 3px; --border-top-width: 3px; bottom: unset; height: 124px; left: calc(49.71428571428574% - 185px / 2); top: 148px; width: 185px; } .framer-9HBTA .framer-15zlbx0 { padding: 96px 0px 48px 0px; } .framer-9HBTA .framer-1r0e6b0, .framer-9HBTA .framer-56tl4g, .framer-9HBTA .framer-jjfcct, .framer-9HBTA .framer-9rpb66, .framer-9HBTA .framer-15mun7j, .framer-9HBTA .framer-16s2b5b, .framer-9HBTA .framer-lqa2q2, .framer-9HBTA .framer-z4nric, .framer-9HBTA .framer-mlfows, .framer-9HBTA .framer-13j16fc { gap: 8px; } .framer-9HBTA .framer-1p09s9z, .framer-9HBTA .framer-yz35oq, .framer-9HBTA .framer-gz0sdq, .framer-9HBTA .framer-1t6hkv7, .framer-9HBTA .framer-1yg2h7, .framer-9HBTA .framer-8cxqnv, .framer-9HBTA .framer-14wd92h, .framer-9HBTA .framer-1o5yp73, .framer-9HBTA .framer-17wl3tr, .framer-9HBTA .framer-1r9xs9h, .framer-9HBTA .framer-1cdcqsh, .framer-9HBTA .framer-3whwfg { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 150px); width: 75px; } .framer-9HBTA .framer-1c4tqze { padding: 24px 20px 0px 20px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6222\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"o7HZspqgA\":{\"layout\":[\"fixed\",\"fixed\"]},\"gkxwlj2F4\":{\"layout\":[\"fixed\",\"fixed\"]},\"Oaw0BLRU7\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-9HBTA\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6222,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:\"Quicksand\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WU5OG2GSPINGGM3H4OYTA3X6KAGKBE73/562UDHJ54ELTED64HZCI73O7SLOPKYWI/QERYRXWWKF2PFJC4W77VI22OBVHWX3AN.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Anton\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TPY5PBRHOSXJ53WNSUYZQYX4FZUMAYNF/YHKM2QXXZHS7MS6DJUZXTGRXMIGWH7K5/PCXT6E5YCQO6SSVLT6UZPPGT7QKGXOUS.woff2\",weight:\"400\"}]},...SlideshowFonts,...ButtonFonts,...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\":{\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"6222\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"o7HZspqgA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gkxwlj2F4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Oaw0BLRU7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "o", "c", "isNumberOrNull", "l", "f", "u", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "i", "s", "__rest", "inView$1", "o", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "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", "amountChildren", "j", "hasChildren", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "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", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "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", "index", "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", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "SlideshowFonts", "getFonts", "Slideshow", "ButtonFonts", "DEu0DC58E_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "usePreloadLocalizedValues", "router", "useRouter", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "Image2", "getLocalizedValue", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "Container", "RichText2", "x", "PropertyOverrides2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "Link", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
