{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.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/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js", "ssg:https://framerusercontent.com/modules/epJlNf5iAvWBxlJi0YrF/Ro9P6ccQ0mDhB7qNcFuH/uT88SCypF.js", "ssg:https://framerusercontent.com/modules/ygXIscTVoUYYzBTWfROp/QxPYnBNHp53VadDmu6Fm/zJTbCSG3u.js", "ssg:https://framerusercontent.com/modules/mFaUFdgpJ1O3IuPHStU7/mD8U17v6gpt0ush08aPW/AS4PcgcTr.js", "ssg:https://framerusercontent.com/modules/5qRLwgBau8i2gO6XzDGa/Oe3aolOv9Drsf45i8iR8/faWe0BQmM.js", "ssg:https://framerusercontent.com/modules/zogIMe3znuq2hCVbL8ya/r3so8dCqDrdw1XJq05Gy/fVxnimdqP.js", "ssg:https://framerusercontent.com/modules/pIUIaaLPOpEzFXw4unIO/3UetMqKcLpQS92pllZQK/rmj4E8YO4.js", "ssg:https://framerusercontent.com/modules/yy16CXjNg9bn2kqoUXL4/i2rMvyy3gORCOD98FXBY/UxlceifrX.js", "ssg:https://framerusercontent.com/modules/8n6esTO8mY03fjNjwZ0J/iXlGz5KA0Bq4W4VuICeg/xZndidUCt.js", "ssg:https://framerusercontent.com/modules/1wSqsB9jlaeJoDYW4BTm/ZxNuigY6yO8PivI7s0xY/z0KHErAaX.js", "ssg:https://framerusercontent.com/modules/5CRZL9ClVtiH8SBRyQ2j/AoqYamiZvWfogAWfexDw/cjv51Cbc9.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 isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);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 r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}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,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 { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (e39ee10)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/zdcJdq6JjfDm40l6hlYE/AvEUSRNK06YeQL4lC7Pg/sxe9VTiBu.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/v47scWbndkinHC5AKSlo/xgvKwCxwgJgqlZ3q5FIP/VsLNQ2OH4.js\";const cycleOrder=[\"Q5fQGMr3k\",\"KDkGr4SnD\"];const serializationHash=\"framer-aOT8B\";const variantClassNames={KDkGr4SnD:\"framer-v-11w40u7\",Q5fQGMr3k:\"framer-v-1npctkt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"Q5fQGMr3k\",Phone:\"KDkGr4SnD\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Q5fQGMr3k\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Q5fQGMr3k\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.section,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1npctkt\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Q5fQGMr3k\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, rgb(15, 27, 28))\",...style},...addPropertyOverrides({KDkGr4SnD:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16j5rk3\",\"data-styles-preset\":\"sxe9VTiBu\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/eclettico_molecular_bar/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19zbf6e\",\"data-styles-preset\":\"VsLNQ2OH4\",children:\"@eclettico_molecular_bar\"})})})}),className:\"framer-1sxy0lk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CCkGXlrkJ\",style:{textShadow:\"0px 1px 12px rgb(0, 0, 0)\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-49tgf9\",\"data-framer-name\":\"1-2\",layoutDependency:layoutDependency,layoutId:\"KA84BK6uw\",style:{opacity:.75},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bm2atc\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"h9jeEYBM_\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Completing a plate on a wood cutting board\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:960,pixelWidth:720,sizes:`max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px) / 2, 1px)`,src:\"https://framerusercontent.com/images/HM85Jee9mydUFD5XcPVigpR0Fg.webp\",srcSet:\"https://framerusercontent.com/images/HM85Jee9mydUFD5XcPVigpR0Fg.webp 720w\"},className:\"framer-13n4mec\",\"data-framer-name\":\"img\",layoutDependency:layoutDependency,layoutId:\"gJb78hI9C\",...addPropertyOverrides({KDkGr4SnD:{background:{alt:\"Completing a plate on a wood cutting board\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:960,pixelWidth:720,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/HM85Jee9mydUFD5XcPVigpR0Fg.webp\",srcSet:\"https://framerusercontent.com/images/HM85Jee9mydUFD5XcPVigpR0Fg.webp 720w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z3igsb\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"RKigWPhNO\",style:{backgroundColor:\"var(--token-0f4c8d47-2151-4fab-9887-bdd5e863a19c, rgba(255, 255, 255, 0.08))\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Macro shot of an orange peel being placed on a cocktail\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:960,pixelWidth:720,sizes:`max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px) / 2, 1px)`,src:\"https://framerusercontent.com/images/6z1ZTJ2SxlWHMgZt4wlS6jT4UK8.webp\",srcSet:\"https://framerusercontent.com/images/6z1ZTJ2SxlWHMgZt4wlS6jT4UK8.webp 720w\"},className:\"framer-1v4mqwk\",\"data-framer-name\":\"img\",layoutDependency:layoutDependency,layoutId:\"ofck7DC8J\",...addPropertyOverrides({KDkGr4SnD:{background:{alt:\"Macro shot of an orange peel being placed on a cocktail\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:960,pixelWidth:720,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/6z1ZTJ2SxlWHMgZt4wlS6jT4UK8.webp\",srcSet:\"https://framerusercontent.com/images/6z1ZTJ2SxlWHMgZt4wlS6jT4UK8.webp 720w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a555of\",\"data-framer-name\":\"3-4\",layoutDependency:layoutDependency,layoutId:\"pG1N3_9zn\",style:{opacity:.75},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r7b2zj\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"Ac3q42Ofp\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Dark and moody shot of a cocktail sitting on a bar\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:960,pixelWidth:720,sizes:`max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px) / 2, 1px)`,src:\"https://framerusercontent.com/images/ODtQUrlfEi5GgyJLq79opcpZ61s.webp\",srcSet:\"https://framerusercontent.com/images/ODtQUrlfEi5GgyJLq79opcpZ61s.webp 720w\"},className:\"framer-1q3oimn\",\"data-framer-name\":\"img\",layoutDependency:layoutDependency,layoutId:\"fgzsxjW2J\",...addPropertyOverrides({KDkGr4SnD:{background:{alt:\"Dark and moody shot of a cocktail sitting on a bar\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:960,pixelWidth:720,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/ODtQUrlfEi5GgyJLq79opcpZ61s.webp\",srcSet:\"https://framerusercontent.com/images/ODtQUrlfEi5GgyJLq79opcpZ61s.webp 720w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9359p8\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"bVya6ol9M\",style:{backgroundColor:\"var(--token-0f4c8d47-2151-4fab-9887-bdd5e863a19c, rgba(255, 255, 255, 0.08))\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"A man hand-making pasta\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:765,pixelWidth:720,sizes:`max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px) / 2, 1px)`,src:\"https://framerusercontent.com/images/OiviyB62OiXeZRwqLgXjpvuHVo.webp\",srcSet:\"https://framerusercontent.com/images/OiviyB62OiXeZRwqLgXjpvuHVo.webp 720w\"},className:\"framer-1ul1z5z\",\"data-framer-name\":\"img\",layoutDependency:layoutDependency,layoutId:\"sR_Ievq5Q\",...addPropertyOverrides({KDkGr4SnD:{background:{alt:\"A man hand-making pasta\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:765,pixelWidth:720,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/OiviyB62OiXeZRwqLgXjpvuHVo.webp\",srcSet:\"https://framerusercontent.com/images/OiviyB62OiXeZRwqLgXjpvuHVo.webp 720w\"}}},baseVariant,gestureVariant)})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aOT8B.framer-foga73, .framer-aOT8B .framer-foga73 { display: block; }\",\".framer-aOT8B.framer-1npctkt { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-aOT8B .framer-1sxy0lk { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; z-index: 1; }\",\".framer-aOT8B .framer-49tgf9, .framer-aOT8B .framer-1a555of { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aOT8B .framer-1bm2atc, .framer-aOT8B .framer-z3igsb, .framer-aOT8B .framer-1r7b2zj, .framer-aOT8B .framer-9359p8 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 300px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-aOT8B .framer-13n4mec, .framer-aOT8B .framer-1v4mqwk, .framer-aOT8B .framer-1q3oimn, .framer-aOT8B .framer-1ul1z5z { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aOT8B.framer-1npctkt, .framer-aOT8B .framer-49tgf9, .framer-aOT8B .framer-1bm2atc, .framer-aOT8B .framer-z3igsb, .framer-aOT8B .framer-1a555of, .framer-aOT8B .framer-1r7b2zj, .framer-aOT8B .framer-9359p8 { gap: 0px; } .framer-aOT8B.framer-1npctkt > *, .framer-aOT8B .framer-49tgf9 > *, .framer-aOT8B .framer-1a555of > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-aOT8B.framer-1npctkt > :first-child, .framer-aOT8B .framer-49tgf9 > :first-child, .framer-aOT8B .framer-1bm2atc > :first-child, .framer-aOT8B .framer-z3igsb > :first-child, .framer-aOT8B .framer-1a555of > :first-child, .framer-aOT8B .framer-1r7b2zj > :first-child, .framer-aOT8B .framer-9359p8 > :first-child { margin-left: 0px; } .framer-aOT8B.framer-1npctkt > :last-child, .framer-aOT8B .framer-49tgf9 > :last-child, .framer-aOT8B .framer-1bm2atc > :last-child, .framer-aOT8B .framer-z3igsb > :last-child, .framer-aOT8B .framer-1a555of > :last-child, .framer-aOT8B .framer-1r7b2zj > :last-child, .framer-aOT8B .framer-9359p8 > :last-child { margin-right: 0px; } .framer-aOT8B .framer-1bm2atc > *, .framer-aOT8B .framer-z3igsb > *, .framer-aOT8B .framer-1r7b2zj > *, .framer-aOT8B .framer-9359p8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-aOT8B.framer-v-11w40u7.framer-1npctkt { flex-direction: column; }\",\".framer-aOT8B.framer-v-11w40u7 .framer-49tgf9, .framer-aOT8B.framer-v-11w40u7 .framer-1a555of { flex: none; width: 100%; }\",\".framer-aOT8B.framer-v-11w40u7 .framer-1bm2atc, .framer-aOT8B.framer-v-11w40u7 .framer-z3igsb, .framer-aOT8B.framer-v-11w40u7 .framer-1r7b2zj, .framer-aOT8B.framer-v-11w40u7 .framer-9359p8 { height: var(--framer-aspect-ratio-supported, 200px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aOT8B.framer-v-11w40u7.framer-1npctkt { gap: 0px; } .framer-aOT8B.framer-v-11w40u7.framer-1npctkt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-aOT8B.framer-v-11w40u7.framer-1npctkt > :first-child { margin-top: 0px; } .framer-aOT8B.framer-v-11w40u7.framer-1npctkt > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 300\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KDkGr4SnD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruT88SCypF=withCSS(Component,css,\"framer-aOT8B\");export default FrameruT88SCypF;FrameruT88SCypF.displayName=\"images / image-grid\";FrameruT88SCypF.defaultProps={height:300,width:1200};addPropertyControls(FrameruT88SCypF,{variant:{options:[\"Q5fQGMr3k\",\"KDkGr4SnD\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameruT88SCypF,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruT88SCypF\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KDkGr4SnD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"300\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uT88SCypF.map", "// Generated by Framer (0e4faa7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/n77sy7nj7A40kK2dX40U/lyCxzgZxPutK8vYkzHuV/pspIaWqVU.js\";const enabledGestures={s1sZgH9Cq:{hover:true}};const cycleOrder=[\"s1sZgH9Cq\",\"SjH75i6SO\",\"aXEldtVqy\"];const variantClassNames={aXEldtVqy:\"framer-v-11nebii\",s1sZgH9Cq:\"framer-v-1cw1n1i\",SjH75i6SO:\"framer-v-5ahgx5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"No caption\":\"aXEldtVqy\",Desktop:\"s1sZgH9Cq\",Phone:\"SjH75i6SO\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Component=/*#__PURE__*/React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"s1sZgH9Cq\",image:vH00MtOs2,caption:FOxrYESyq=\"Title\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"s1sZgH9Cq\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const isDisplayed=()=>{if(baseVariant===\"aXEldtVqy\")return false;return true;};const defaultLayoutId=React.useId();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-Ztmwk\",sharedStyle.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsxs(motion.div,{...restProps,background:{alt:\"\",fit:\"fill\",intrinsicHeight:672.5,intrinsicWidth:500,pixelHeight:1345,pixelWidth:1e3},className:cx(\"framer-1cw1n1i\",className),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"s1sZgH9Cq\",ref:ref,style:{...style},transition:transition,...addPropertyOverrides({\"s1sZgH9Cq-hover\":{\"data-framer-name\":undefined},aXEldtVqy:{\"data-framer-name\":\"No caption\"},SjH75i6SO:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ontct5\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"b1F3i8pTE\",style:{backgroundColor:\"var(--token-1ebda09f-1ec3-428b-80af-06f88ae5f131, rgb(242, 232, 220))\"},transition:transition,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:750,intrinsicWidth:500,pixelHeight:1500,pixelWidth:1e3,...toResponsiveImage(vH00MtOs2)},className:\"framer-1hf1047\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"Um9fiHmdF\",transition:transition})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1er26kz\",\"data-styles-preset\":\"pspIaWqVU\",children:\"Title\"})}),className:\"framer-7ukygu\",layoutDependency:layoutDependency,layoutId:\"KO5C376qg\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},text:FOxrYESyq,transition:transition,variants:{\"s1sZgH9Cq-hover\":{opacity:1},SjH75i6SO:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})]})})});});const css=['.framer-Ztmwk [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ztmwk * { box-sizing: border-box; }\",\".framer-Ztmwk .framer-1rca5am { display: block; }\",\".framer-Ztmwk .framer-1cw1n1i { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 500px; }\",\".framer-Ztmwk .framer-ontct5 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 200px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Ztmwk .framer-1hf1047 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-Ztmwk .framer-7ukygu { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Ztmwk .framer-v-1cw1n1i .framer-1cw1n1i { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ztmwk .framer-1cw1n1i, .framer-Ztmwk .framer-ontct5 { gap: 0px; } .framer-Ztmwk .framer-1cw1n1i > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Ztmwk .framer-1cw1n1i > :first-child { margin-top: 0px; } .framer-Ztmwk .framer-1cw1n1i > :last-child { margin-bottom: 0px; } .framer-Ztmwk .framer-ontct5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Ztmwk .framer-ontct5 > :first-child { margin-left: 0px; } .framer-Ztmwk .framer-ontct5 > :last-child { margin-right: 0px; } }\",\".framer-Ztmwk.framer-v-1cw1n1i.hover .framer-1hf1047 { height: 125%; left: calc(50.00000000000002% - 125% / 2); top: calc(50.00000000000002% - 125% / 2); width: 125%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 533\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SjH75i6SO\":{\"layout\":[\"fixed\",\"auto\"]},\"aXEldtVqy\":{\"layout\":[\"fixed\",\"auto\"]},\"Rfcog71QT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vH00MtOs2\":\"image\",\"FOxrYESyq\":\"caption\"}\n */const FramerzJTbCSG3u=withCSS(Component,css,\"framer-Ztmwk\");export default FramerzJTbCSG3u;FramerzJTbCSG3u.displayName=\"images / gallery-item\";FramerzJTbCSG3u.defaultProps={height:533,width:500};addPropertyControls(FramerzJTbCSG3u,{variant:{options:[\"s1sZgH9Cq\",\"SjH75i6SO\",\"aXEldtVqy\"],optionTitles:[\"Desktop\",\"Phone\",\"No caption\"],title:\"Variant\",type:ControlType.Enum},vH00MtOs2:{title:\"Image\",type:ControlType.ResponsiveImage},FOxrYESyq:{defaultValue:\"Title\",displayTextArea:false,title:\"Caption\",type:ControlType.String}});addFonts(FramerzJTbCSG3u,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzJTbCSG3u\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SjH75i6SO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aXEldtVqy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Rfcog71QT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"533\",\"framerIntrinsicWidth\":\"500\",\"framerVariables\":\"{\\\"vH00MtOs2\\\":\\\"image\\\",\\\"FOxrYESyq\\\":\\\"caption\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=[\".framer-qNwP2 .framer-styles-preset-fsrzda:not(.rich-text-wrapper), .framer-qNwP2 .framer-styles-preset-fsrzda.rich-text-wrapper a { --framer-link-hover-text-color: var(--token-ce9e87c6-6b3f-4fdb-b05b-4d781ce573bd, #6d7a62); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-ce9e87c6-6b3f-4fdb-b05b-4d781ce573bd, #6d7a62); --framer-link-text-decoration: none; }\"];export const className=\"framer-qNwP2\";\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 (6b748fa)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;PP Hatton Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"PP Hatton Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/tw6kDeMOeeTnFuMAcCqSEtSbX8.woff2\"}]}];export const css=['.framer-0Jd3L .framer-styles-preset-yg32ve:not(.rich-text-wrapper), .framer-0Jd3L .framer-styles-preset-yg32ve.rich-text-wrapper h3 { --framer-font-family: \"PP Hatton Medium\", \"PP Hatton Medium Placeholder\", sans-serif; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-0Jd3L .framer-styles-preset-yg32ve:not(.rich-text-wrapper), .framer-0Jd3L .framer-styles-preset-yg32ve.rich-text-wrapper h3 { --framer-font-family: \"PP Hatton Medium\", \"PP Hatton Medium Placeholder\", sans-serif; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-0Jd3L .framer-styles-preset-yg32ve:not(.rich-text-wrapper), .framer-0Jd3L .framer-styles-preset-yg32ve.rich-text-wrapper h3 { --framer-font-family: \"PP Hatton Medium\", \"PP Hatton Medium Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-0Jd3L\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (838580a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;PP Hatton Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"PP Hatton Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/tw6kDeMOeeTnFuMAcCqSEtSbX8.woff2\"}]}];export const css=['.framer-HKgV6 .framer-styles-preset-1wml6uu:not(.rich-text-wrapper), .framer-HKgV6 .framer-styles-preset-1wml6uu.rich-text-wrapper h2 { --framer-font-family: \"PP Hatton Medium\", \"PP Hatton Medium Placeholder\", sans-serif; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-HKgV6 .framer-styles-preset-1wml6uu:not(.rich-text-wrapper), .framer-HKgV6 .framer-styles-preset-1wml6uu.rich-text-wrapper h2 { --framer-font-family: \"PP Hatton Medium\", \"PP Hatton Medium Placeholder\", sans-serif; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-HKgV6 .framer-styles-preset-1wml6uu:not(.rich-text-wrapper), .framer-HKgV6 .framer-styles-preset-1wml6uu.rich-text-wrapper h2 { --framer-font-family: \"PP Hatton Medium\", \"PP Hatton Medium Placeholder\", sans-serif; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-HKgV6\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (838580a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Quattrocento Sans-regular\",\"GF;Quattrocento Sans-700\",\"GF;Quattrocento Sans-700italic\",\"GF;Quattrocento Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Quattrocento Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/quattrocentosans/v21/va9c4lja2NVIDdIAAoMR5MfuElaRB3zLvU7eHGHJ.woff2\",weight:\"400\"},{family:\"Quattrocento Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/quattrocentosans/v21/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrTN33AiasJ.woff2\",weight:\"700\"},{family:\"Quattrocento Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/quattrocentosans/v21/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXzijLsJV7E.woff2\",weight:\"700\"},{family:\"Quattrocento Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/quattrocentosans/v21/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0_8GXHJkLI.woff2\",weight:\"400\"}]}];export const css=['.framer-1o083 .framer-styles-preset-p5viac:not(.rich-text-wrapper), .framer-1o083 .framer-styles-preset-p5viac.rich-text-wrapper p { --framer-font-family: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 125%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-1o083 .framer-styles-preset-p5viac:not(.rich-text-wrapper), .framer-1o083 .framer-styles-preset-p5viac.rich-text-wrapper p { --framer-font-family: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 125%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-1o083 .framer-styles-preset-p5viac:not(.rich-text-wrapper), .framer-1o083 .framer-styles-preset-p5viac.rich-text-wrapper p { --framer-font-family: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 125%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-1o083\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (838580a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Quattrocento Sans-regular\",\"GF;Quattrocento Sans-700\",\"GF;Quattrocento Sans-700italic\",\"GF;Quattrocento Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Quattrocento Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/quattrocentosans/v21/va9c4lja2NVIDdIAAoMR5MfuElaRB3zLvU7eHGHJ.woff2\",weight:\"400\"},{family:\"Quattrocento Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/quattrocentosans/v21/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrTN33AiasJ.woff2\",weight:\"700\"},{family:\"Quattrocento Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/quattrocentosans/v21/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXzijLsJV7E.woff2\",weight:\"700\"},{family:\"Quattrocento Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/quattrocentosans/v21/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0_8GXHJkLI.woff2\",weight:\"400\"}]}];export const css=['.framer-fM2Sg .framer-styles-preset-1aqwpqe:not(.rich-text-wrapper), .framer-fM2Sg .framer-styles-preset-1aqwpqe.rich-text-wrapper p { --framer-font-family: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 24px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-fM2Sg .framer-styles-preset-1aqwpqe:not(.rich-text-wrapper), .framer-fM2Sg .framer-styles-preset-1aqwpqe.rich-text-wrapper p { --framer-font-family: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 24px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-fM2Sg .framer-styles-preset-1aqwpqe:not(.rich-text-wrapper), .framer-fM2Sg .framer-styles-preset-1aqwpqe.rich-text-wrapper p { --framer-font-family: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 24px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-fM2Sg\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (838580a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Quattrocento Sans-regular\",\"GF;Quattrocento Sans-700\",\"GF;Quattrocento Sans-700italic\",\"GF;Quattrocento Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Quattrocento Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/quattrocentosans/v21/va9c4lja2NVIDdIAAoMR5MfuElaRB3zLvU7eHGHJ.woff2\",weight:\"400\"},{family:\"Quattrocento Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/quattrocentosans/v21/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrTN33AiasJ.woff2\",weight:\"700\"},{family:\"Quattrocento Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/quattrocentosans/v21/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXzijLsJV7E.woff2\",weight:\"700\"},{family:\"Quattrocento Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/quattrocentosans/v21/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0_8GXHJkLI.woff2\",weight:\"400\"}]}];export const css=['.framer-S3UzS .framer-styles-preset-21ogod:not(.rich-text-wrapper), .framer-S3UzS .framer-styles-preset-21ogod.rich-text-wrapper p { --framer-font-family: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 125%; --framer-paragraph-spacing: 24px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-S3UzS .framer-styles-preset-21ogod:not(.rich-text-wrapper), .framer-S3UzS .framer-styles-preset-21ogod.rich-text-wrapper p { --framer-font-family: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 125%; --framer-paragraph-spacing: 24px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-S3UzS .framer-styles-preset-21ogod:not(.rich-text-wrapper), .framer-S3UzS .framer-styles-preset-21ogod.rich-text-wrapper p { --framer-font-family: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Quattrocento Sans\", \"Quattrocento Sans Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 125%; --framer-paragraph-spacing: 24px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-S3UzS\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (838580a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;PP Hatton Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"PP Hatton Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/tw6kDeMOeeTnFuMAcCqSEtSbX8.woff2\"}]}];export const css=['.framer-nhadj .framer-styles-preset-m8dd19:not(.rich-text-wrapper), .framer-nhadj .framer-styles-preset-m8dd19.rich-text-wrapper p { --framer-font-family: \"PP Hatton Medium\", \"PP Hatton Medium Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-nhadj .framer-styles-preset-m8dd19:not(.rich-text-wrapper), .framer-nhadj .framer-styles-preset-m8dd19.rich-text-wrapper p { --framer-font-family: \"PP Hatton Medium\", \"PP Hatton Medium Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-nhadj .framer-styles-preset-m8dd19:not(.rich-text-wrapper), .framer-nhadj .framer-styles-preset-m8dd19.rich-text-wrapper p { --framer-font-family: \"PP Hatton Medium\", \"PP Hatton Medium Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #15191a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-nhadj\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import Footer from\"#framer/local/canvasComponent/dZbjmX7N4/dZbjmX7N4.js\";import NavigationBar from\"#framer/local/canvasComponent/F4p7gIkSa/F4p7gIkSa.js\";import NavigationMobile from\"#framer/local/canvasComponent/JFJtp9phd/JFJtp9phd.js\";import Button from\"#framer/local/canvasComponent/N8RU_gCfF/N8RU_gCfF.js\";import ImagesImageGrid from\"#framer/local/canvasComponent/uT88SCypF/uT88SCypF.js\";import ImagesGalleryItem from\"#framer/local/canvasComponent/zJTbCSG3u/zJTbCSG3u.js\";import InfoHours from\"#framer/local/canvasComponent/ZMTBTnrrB/ZMTBTnrrB.js\";import*as sharedStyle9 from\"#framer/local/css/AS4PcgcTr/AS4PcgcTr.js\";import*as sharedStyle7 from\"#framer/local/css/f_JgQVGd5/f_JgQVGd5.js\";import*as sharedStyle5 from\"#framer/local/css/faWe0BQmM/faWe0BQmM.js\";import*as sharedStyle1 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle4 from\"#framer/local/css/lrGj4HChq/lrGj4HChq.js\";import*as sharedStyle from\"#framer/local/css/PvmvDyFsZ/PvmvDyFsZ.js\";import*as sharedStyle8 from\"#framer/local/css/rmj4E8YO4/rmj4E8YO4.js\";import*as sharedStyle6 from\"#framer/local/css/UxlceifrX/UxlceifrX.js\";import*as sharedStyle2 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle3 from\"#framer/local/css/z0KHErAaX/z0KHErAaX.js\";import metadataProvider from\"#framer/local/webPageMetadata/cjv51Cbc9/cjv51Cbc9.js\";const NavigationBarFonts=getFonts(NavigationBar);const NavigationBarWithVariantAppearEffect=withVariantAppearEffect(NavigationBar);const NavigationMobileFonts=getFonts(NavigationMobile);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const CarouselFonts=getFonts(Carousel);const ButtonFonts=getFonts(Button);const ImagesGalleryItemFonts=getFonts(ImagesGalleryItem);const InfoHoursFonts=getFonts(InfoHours);const ImagesImageGridFonts=getFonts(ImagesImageGrid);const FooterFonts=getFonts(Footer);const breakpoints={D7Gn7hrli:\"(min-width: 1200px)\",FXqVWYrMe:\"(max-width: 647px)\",TiWLq0Bmy:\"(min-width: 648px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-JUv8j\";const variantClassNames={D7Gn7hrli:\"framer-v-gymc1q\",FXqVWYrMe:\"framer-v-1ngnl6a\",TiWLq0Bmy:\"framer-v-w6zqkh\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:150,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition2={damping:80,delay:0,mass:1,stiffness:400,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"D7Gn7hrli\",Phone:\"FXqVWYrMe\",Tablet:\"TiWLq0Bmy\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"D7Gn7hrli\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const RSFL9xTPa3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const cu379BuiN1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const ref8=React.useRef(null);const elementId=useRouteElementId(\"H6CSKaXEz\");const elementId1=useRouteElementId(\"ayUJdqu8s\");const elementId2=useRouteElementId(\"SKk38yte3\");const elementId3=useRouteElementId(\"rOlWpx525\");const ref9=React.useRef(null);const elementId4=useRouteElementId(\"WyOz_zoG_\");const ref10=React.useRef(null);const elementId5=useRouteElementId(\"uNoHuPLK0\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"FXqVWYrMe\")return false;return true;};const router=useRouter();const elementId6=useRouteElementId(\"eE5riXvY6\");const ref11=React.useRef(null);const elementId7=useRouteElementId(\"QjudbXfUR\");const ref12=React.useRef(null);const elementId8=useRouteElementId(\"SJYyimy26\");const ref13=React.useRef(null);const elementId9=useRouteElementId(\"BrSYhBFC2\");const ref14=React.useRef(null);const elementId10=useRouteElementId(\"kiJ_A2bTa\");const ref15=React.useRef(null);const elementId11=useRouteElementId(\"npigAIEOA\");const ref16=React.useRef(null);const elementId12=useRouteElementId(\"NWmm7dHYO\");const elementId13=useRouteElementId(\"exsBF7Pup\");const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"FXqVWYrMe\")return true;return false;};const elementId14=useRouteElementId(\"kG1clm2p_\");const ref17=React.useRef(null);const elementId15=useRouteElementId(\"Y93Kf7klT\");const ref18=React.useRef(null);const elementId16=useRouteElementId(\"pAxR3t0kR\");const ref19=React.useRef(null);const elementId17=useRouteElementId(\"NvX4ECb_G\");const elementId18=useRouteElementId(\"gYVdih1Yj\");const ref20=React.useRef(null);const elementId19=useRouteElementId(\"yzFFdWPEu\");const ref21=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"D7Gn7hrli\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-1ebda09f-1ec3-428b-80af-06f88ae5f131, rgb(255, 249, 243)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-gymc1q\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:153,width:\"100vw\",y:0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-f5vild-container\",id:\"f5vild\",layoutScroll:true,nodeId:\"teoSV819W\",rendersWithMotion:true,scopeId:\"cjv51Cbc9\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{__framer__targets:[{ref:ref1,target:\"iWbQQ3qC3\"},{ref:ref2,target:\"dPAPTMKFb\"},{ref:ref3,target:\"sQ7bXexyF\"},{ref:ref4,target:\"dPAPTMKFb\"},{ref:ref5,target:\"sQ7bXexyF\"},{ref:ref6,target:\"dPAPTMKFb\"}],variant:\"Wvw6m_IYf\"},TiWLq0Bmy:{__framer__targets:[{ref:ref1,target:\"X_SXEKfkf\"},{ref:ref2,target:\"YItbGTaXu\"},{ref:ref3,target:\"QxXa8fOjz\"},{ref:ref4,target:\"YItbGTaXu\"},{ref:ref5,target:\"QxXa8fOjz\"},{ref:ref6,target:\"YItbGTaXu\"}],variant:\"na9ORpRm3\"}},children:/*#__PURE__*/_jsx(NavigationBarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"x4t7l5xnA\"},{ref:ref2,target:\"rF5DhfqTH\"},{ref:ref3,target:\"hNaMGqTsW\"},{ref:ref4,target:\"rF5DhfqTH\"},{ref:ref5,target:\"hNaMGqTsW\"},{ref:ref6,target:\"rF5DhfqTH\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"teoSV819W\",layoutId:\"teoSV819W\",RSFL9xTPa:RSFL9xTPa3bnx0g({overlay}),style:{width:\"100%\"},ua7IDMmZV:false,variant:\"W3Mb_boST\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TiWLq0Bmy:{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}}}},children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-a2f01l\"),\"data-framer-portal-id\":\"f5vild\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"ixMUmJLRZ\")}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation1,className:cx(scopingClassNames,\"framer-3vn45c-container\"),\"data-framer-portal-id\":\"f5vild\",exit:animation,inComponentSlot:true,initial:animation2,nodeId:\"OncucHQrc\",rendersWithMotion:true,scopeId:\"cjv51Cbc9\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(NavigationMobile,{cu379BuiN:cu379BuiN1wnntms({overlay}),height:\"100%\",id:\"OncucHQrc\",layoutId:\"OncucHQrc\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mvcoez\",\"data-framer-name\":\"hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m26z0c\",\"data-framer-name\":\"background\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a68g0l\",\"data-framer-name\":\"imageContainer\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{background:{alt:\"A man and a woman sitting at a bar\",fit:\"fill\",intrinsicHeight:1333,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(22737367544323206e-29),pixelHeight:960,pixelWidth:720,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/88Rjl1eNsUbTPvDcMtAryDbM.webp\"}},TiWLq0Bmy:{background:{alt:\"A man and a woman sitting at a bar\",fit:\"fill\",intrinsicHeight:1333,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(22737367544323206e-29),pixelHeight:960,pixelWidth:720,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/88Rjl1eNsUbTPvDcMtAryDbM.webp\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref8,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:.5,background:{alt:\"A man and a woman sitting at a bar\",fit:\"fill\",intrinsicHeight:1333,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(22737367544323206e-29),pixelHeight:1282,pixelWidth:1920,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/zSAyPUuUm7EDVYS8assH2nioHo.webp\"},className:\"framer-u9t4al\",\"data-framer-name\":\"image\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:5,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ymeh7g\",\"data-framer-name\":\"wall\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mahqa\",\"data-framer-name\":\"top\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-efmhlt\",\"data-framer-name\":\"main\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-b77u6f\",\"data-framer-name\":\"left\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1s39j0s\",\"data-framer-name\":\"middle\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition(120),pixelHeight:3040,pixelWidth:1e3,src:\"https://framerusercontent.com/images/yuOw8zPhMOg4qDQuzaUlqVFO8.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition(152),pixelHeight:3040,pixelWidth:1e3,src:\"https://framerusercontent.com/images/yuOw8zPhMOg4qDQuzaUlqVFO8.webp\"},className:\"framer-1jz0w3f\",\"data-framer-name\":\"arch\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-8cwz6x\",\"data-framer-name\":\"right\",style:{transformPerspective:1200}})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:20}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:-40}}]}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:20}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:-80}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wd5l53\",\"data-framer-name\":\"content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lrbl41\",\"data-framer-name\":\"title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13ovp3v\",\"data-framer-name\":\"cocktail\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIEhhdHRvbiBNZWRpdW0=\",\"--framer-font-family\":'\"PP Hatton Medium\", \"PP Hatton Medium Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"88%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Molecular\"})}),viewBox:\"0 0 280 49\"},TiWLq0Bmy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIEhhdHRvbiBNZWRpdW0=\",\"--framer-font-family\":'\"PP Hatton Medium\", \"PP Hatton Medium Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"88%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Molecular\"})}),viewBox:\"0 0 280 49\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIEhhdHRvbiBNZWRpdW0=\",\"--framer-font-family\":'\"PP Hatton Medium\", \"PP Hatton Medium Placeholder\", sans-serif',\"--framer-font-size\":\"107.56173497675609px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"88%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Molecular\"})}),className:\"framer-1cjddkr\",fonts:[\"CUSTOM;PP Hatton Medium\"],verticalAlignment:\"top\",viewBox:\"0 0 520 94\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11rf550\",\"data-framer-name\":\"snackbar\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIEhhdHRvbiBNZWRpdW0=\",\"--framer-font-family\":'\"PP Hatton Medium\", \"PP Hatton Medium Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"88%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"& Cocktail Bar\"})}),viewBox:\"0 0 424 49\"},TiWLq0Bmy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIEhhdHRvbiBNZWRpdW0=\",\"--framer-font-family\":'\"PP Hatton Medium\", \"PP Hatton Medium Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"88%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"& Cocktail Bar\"})}),viewBox:\"0 0 424 49\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIEhhdHRvbiBNZWRpdW0=\",\"--framer-font-family\":'\"PP Hatton Medium\", \"PP Hatton Medium Placeholder\", sans-serif',\"--framer-font-size\":\"97px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"88%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"& Cocktail Bar\"})}),className:\"framer-1jxv7ao\",fonts:[\"CUSTOM;PP Hatton Medium\"],verticalAlignment:\"top\",viewBox:\"0 0 708.94 85\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-129klxe\",\"data-framer-name\":\"info\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qxgeos\",\"data-framer-name\":\"Address\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l5t1x5\",\"data-styles-preset\":\"PvmvDyFsZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Cant\\xf9 - Via A. Grandi, 28\"})}),className:\"framer-agjvc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-269g7u\",\"data-framer-name\":\"Hours\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l5t1x5\",\"data-styles-preset\":\"PvmvDyFsZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Siamo aperti 7 su 7\"})})}),className:\"framer-1a3dklo\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vl1zf2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l5t1x5\",\"data-styles-preset\":\"PvmvDyFsZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"lun-gio 18.00-02.00\"})}),className:\"framer-cyq5hh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l5t1x5\",\"data-styles-preset\":\"PvmvDyFsZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"ven-sab 18.00-03.00\"})}),className:\"framer-pfobae\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l5t1x5\",\"data-styles-preset\":\"PvmvDyFsZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"dom 18.00 - 02.00\"})}),className:\"framer-n8djzl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wrmzq3\",\"data-framer-name\":\"hero-scroll-1\",id:elementId,ref:ref7,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-aux2w0\",\"data-framer-name\":\"nav-buffer-1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q74b5q\",\"data-framer-name\":\"nav-trigger-1\",id:elementId1,ref:ref1}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bdak98\",\"data-framer-name\":\"nav-buffer-2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-808xdu\",\"data-framer-name\":\"nav-trigger-2\",id:elementId2,ref:ref2})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c9m7pu\",\"data-framer-name\":\"hero-scroll-2\"}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1jgtdeq\",\"data-framer-name\":\"main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-xfhtzl\",\"data-framer-name\":\"I migliori cocktail\",id:elementId3,ref:ref9,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fw40jo\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vepsjq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l5t1x5\",\"data-styles-preset\":\"PvmvDyFsZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fbadfa29-2a96-4888-8bb0-a5474b0ad292, rgb(203, 101, 51))\"},children:\"RIVOLUZIONA LA TUA\"})}),className:\"framer-12871ds\",\"data-framer-name\":\"Eclettico\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, rgb(15, 27, 28))\"},children:\"Drink experience\"})}),className:\"framer-570g2z\",\"data-framer-name\":\"Small lot coffess worth being snobby over\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Dall\u2019aperitivo alla cena, fino all\u2019after dinner.\",/*#__PURE__*/_jsx(\"br\",{}),\"Prova qualcosa di Eclettico.\",/*#__PURE__*/_jsx(\"br\",{}),\"Ecco i nostri best of.\\xa0\"]})}),className:\"framer-hrb6vf\",\"data-framer-name\":\"Unique small-lot coffees from our globe-spanning network of artisan producers, roasted to perfection and delivered to you each month.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19r9e2q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nwuwHZS0N\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:0,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:313,type:\"spring\"},fadeWidth:6},gap:24,height:\"100%\",id:\"nwuwHZS0N\",layoutId:\"nwuwHZS0N\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dtksiq\",\"data-framer-name\":\"Spritzissimo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:441,pixelWidth:600,positionX:\"center\",positionY:\"bottom\",sizes:\"305px\",src:\"https://framerusercontent.com/images/xyhm8JKuhqfMSUe9sl0O01UhIY.webp\",srcSet:\"https://framerusercontent.com/images/xyhm8JKuhqfMSUe9sl0O01UhIY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/xyhm8JKuhqfMSUe9sl0O01UhIY.webp 600w\"},className:\"framer-1npedf5\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jv3x2p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Spritzissimo\"})}),className:\"framer-azg90f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Uno Spritz rivisitato con una presentazione unica: la bottiglia di Vino spumante capovolta nel bicchiere. Dalla cannuccia, il primo sorso sar\\xe0 di un delizioso Spritz, mentre pi\\xf9 avanti la bottiglietta inizier\\xe0 a fluire rendendo il drink pi\\xf9 leggero. Gli ultimi sorsi saranno di puro spumante.\"})}),className:\"framer-4sq0f9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15qcfn6\",\"data-framer-name\":\"Candy Cosmo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:449,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"305px\",src:\"https://framerusercontent.com/images/SGvPs2DiUkTgn6MiE0nbRcIMwdU.webp\",srcSet:\"https://framerusercontent.com/images/SGvPs2DiUkTgn6MiE0nbRcIMwdU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SGvPs2DiUkTgn6MiE0nbRcIMwdU.webp 600w\"},className:\"framer-14apcot\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i6st0g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Candy Cosmo\"})}),className:\"framer-179thp7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Una nuvola di zucchero filato servita in un bicchiere accompagnata da uno shaker che contiene il tuo drink. Ora versalo sopra la nuvola. Lo zucchero si scioglie e va a dolcificare il tuo drink. Ora assapora un cocktail unico: Vodka, Liquore agli agrumi, succo di lime, succo di mirtillo.\"})}),className:\"framer-wx1drj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-34o8pr\",\"data-framer-name\":\"Moscow Mule\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:443,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/ld1hgkVaZvg2eQ30to8rHKe0UDA.webp\",srcSet:\"https://framerusercontent.com/images/ld1hgkVaZvg2eQ30to8rHKe0UDA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ld1hgkVaZvg2eQ30to8rHKe0UDA.webp 600w\"},className:\"framer-v3zu0\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19qkpgr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Moscow Mule\"})}),className:\"framer-1so46q3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Cordial lime juice di nostra produzione, Vodka e ginger beer, decorato con foglie di menta\"})}),className:\"framer-118m11g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w8h5ru\",\"data-framer-name\":\"Smoked Fashioned\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:498,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/2VSH470yKMZTgUOZKRw8KKPZCHQ.webp\",srcSet:\"https://framerusercontent.com/images/2VSH470yKMZTgUOZKRw8KKPZCHQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/2VSH470yKMZTgUOZKRw8KKPZCHQ.webp 600w\"},className:\"framer-1tpsuda\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t7uyy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Smoked Fashioned\"})}),className:\"framer-dkpmbz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Un'interpretazione audace del classico \\\"Old Fashioned\\\". Oltre allo zucchero e all'angostura, la nostra versione presenta un intrigante tocco di affumicatura sia nel Whiskey che nel bicchiere. Un connubio irresistibile di tradizione e modernit\\xe0.\"})}),className:\"framer-xtyewd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-huen07\",\"data-framer-name\":\"Vampiro Sardo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:466,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/cNPahRomBbmged50hTY8PyxUK8.webp\",srcSet:\"https://framerusercontent.com/images/cNPahRomBbmged50hTY8PyxUK8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/cNPahRomBbmged50hTY8PyxUK8.webp 600w\"},className:\"framer-yhzcx2\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12aorj0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Vampiro Sardo\"})}),className:\"framer-pdgbe2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Narra la leggenda che il Vampiro Dracula durante le sue vacanze in Sardegna e si innamor\\xf2 del colore e del sapore di un liquore tipico del luogo... noi abbiamo le prove! Questo drink a base di Mirto viene servito direttamente da una sacca per trasfusioni e ti trasporta nell'atmosfera della leggenda.\"})}),className:\"framer-2w7cuh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wfxxbc\",\"data-framer-name\":\"Garibaldi Innamorato\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/v6j3ce3st5grBq4X3b7wBc8h4DI.webp\",srcSet:\"https://framerusercontent.com/images/v6j3ce3st5grBq4X3b7wBc8h4DI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/v6j3ce3st5grBq4X3b7wBc8h4DI.webp 600w\"},className:\"framer-fypcjf\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vorohb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Garibaldi Innamorato\"})}),className:\"framer-hvc65z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Un delizioso mix analcolico di succo d\u2019arancia fresco e vaniglia, servito con una provetta contenente la riduzione di Campari. Puoi scegliere di gustare prima il cocktail e poi il suo ripieno o mescolarli a tuo piacimento!\"})}),className:\"framer-1o1tim2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-153x0sm\",\"data-framer-name\":\"Vodka Sour Frutti di Bosco\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:439,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/xzhhvhrmuyXbMD4j01X09H42g.webp\",srcSet:\"https://framerusercontent.com/images/xzhhvhrmuyXbMD4j01X09H42g.webp?scale-down-to=512 512w,https://framerusercontent.com/images/xzhhvhrmuyXbMD4j01X09H42g.webp 600w\"},className:\"framer-1e74wcl\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hhcbww\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Vodka Sour ai Frutti di Bosco\"})}),className:\"framer-au38df\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Vodka, limone, zucchero e frutti di bosco. Dedicato a un pubblico femminile\u2026 un cocktail dalla bassa gradazione alcolica ma ricco di profumi e servito con frutti di bosco.\"})}),className:\"framer-1oz8w5b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p1dgov\",\"data-framer-name\":\"Bubble Bubble\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:434,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/Dp5iIVv4Z9kyhQGy2sTVXhqQ4U.webp\",srcSet:\"https://framerusercontent.com/images/Dp5iIVv4Z9kyhQGy2sTVXhqQ4U.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Dp5iIVv4Z9kyhQGy2sTVXhqQ4U.webp 600w\"},className:\"framer-1je7bxi\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-og7xx2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Bubble Bubble\"})}),className:\"framer-1svp3jo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Il nuovo drink coinvolgente di Eclettico ti verr\\xe0 servito al tavolo con una bolla di fumo commestibile. Il contenuto alcolico del drink \\xe8 a base di Vodka, succo d'arancia e vaniglia.\"})}),className:\"framer-7wky1u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oj0a7u\",\"data-framer-name\":\"Share the Love\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:456,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/Sm16B0fsMQw6453SuCnvoxryw.webp\",srcSet:\"https://framerusercontent.com/images/Sm16B0fsMQw6453SuCnvoxryw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Sm16B0fsMQw6453SuCnvoxryw.webp 600w\"},className:\"framer-ty3n2k\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dgpmyv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Share the Love\"})}),className:\"framer-1ljmvb5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Intorno ad una tavola ci si incontra, si ride, si chiacchiera e\u2026 si condivide! La nostra ricetta dedicata alla coppia \\xe8 a base di Distillato di vinacce, caff\\xe8, cannella e scorze d'arancia\u2026\"})}),className:\"framer-7rce3m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w346ep\",\"data-framer-name\":\"Mokito\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:420,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/zHMgG4KhUU86uFIkgFXsBTfuBY.webp\",srcSet:\"https://framerusercontent.com/images/zHMgG4KhUU86uFIkgFXsBTfuBY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zHMgG4KhUU86uFIkgFXsBTfuBY.webp 600w\"},className:\"framer-12bggwv\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a9vap4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Mokito\"})}),className:\"framer-tedevc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'Si tratta di un cocktail \"a due piani\": due cannucce inserite in scomparti diversi, il cliente pu\\xf2 degustare alternando un delizioso Mojito cubano e un Liquore al caff\\xe8, o consumarli contemporaneamente, ottenendo cos\\xec una gamma quasi infinita di aromi e sapori.'})}),className:\"framer-g546ij\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16388qy\",\"data-framer-name\":\"Ginger Monster\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:481,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/6HTFm9hWnDgj4t5rFObcZINYLEU.webp\",srcSet:\"https://framerusercontent.com/images/6HTFm9hWnDgj4t5rFObcZINYLEU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/6HTFm9hWnDgj4t5rFObcZINYLEU.webp 600w\"},className:\"framer-1cr1a9b\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17rz938\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ginger Monster\"})}),className:\"framer-1th14p8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Eclettismo nel Moscow Mule: oltre allo zenzero appena grattugiato c'\\xe8 la bottiglietta di ginger beer capovolta nel drink. Subito il classico gusto, poi diventa sempre pi\\xf9 leggero fino agli ultimi sorsi, che saranno puro godimento di ginger beer.\"})}),className:\"framer-15qewiv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jtsn9r\",\"data-framer-name\":\"Lemon Gimlet\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:493,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/loYyQtKi5iPlVRQqQiGb9aqzS1E.webp\",srcSet:\"https://framerusercontent.com/images/loYyQtKi5iPlVRQqQiGb9aqzS1E.webp?scale-down-to=512 512w,https://framerusercontent.com/images/loYyQtKi5iPlVRQqQiGb9aqzS1E.webp 600w\"},className:\"framer-rwssfd\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19f599k\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Lemon Gimlet\"})}),className:\"framer-88hjbk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Vodka, lime juice, molecole di Liquore di limone\"})}),className:\"framer-13wlkub\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hazutf\",\"data-framer-name\":\"Disaronno Stone Sour\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:493,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/3b4AN70IXUqH8MTsfpLsi0YDrX0.webp\",srcSet:\"https://framerusercontent.com/images/3b4AN70IXUqH8MTsfpLsi0YDrX0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3b4AN70IXUqH8MTsfpLsi0YDrX0.webp 600w\"},className:\"framer-pr2lp0\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jrd9eq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Disaronno Stone Sour\"})}),className:\"framer-1fazrk6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"La base di Vodka premium garantisce una piacevole nota alcolica, mentre il mix di Sweet & Sour aggiunge un equilibrio perfetto di dolcezza e acidit\\xe0. Ci\\xf2 che rende questo cocktail straordinario \\xe8 l'utilizzo delle molecole di Disaronno.\"})}),className:\"framer-t4cztv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3bkohp\",\"data-framer-name\":\"Vodka Campari Sour\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:463,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/X4WZG9WyzxmfpN2sLFbwUzbG2zQ.webp\",srcSet:\"https://framerusercontent.com/images/X4WZG9WyzxmfpN2sLFbwUzbG2zQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/X4WZG9WyzxmfpN2sLFbwUzbG2zQ.webp 600w\"},className:\"framer-1fbqhgu\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tmaida\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Vodka Campari Sour\"})}),className:\"framer-1x6k907\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"La base di Vodka premium garantisce una piacevole nota alcolica, mentre il mix di Sweet & Sour aggiunge un equilibrio perfetto di dolcezza e acidit\\xe0. Ci\\xf2 che rende questo cocktail straordinario \\xe8 l'utilizzo delle molecole di Campari.\"})}),className:\"framer-1ybek07\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lgo0x8\",\"data-framer-name\":\"Swimming Pool\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1e3,pixelWidth:1332,positionX:\"center\",positionY:\"center\",sizes:\"305px\",src:\"https://framerusercontent.com/images/XLQIa3enImMZQL45gXZyou7KJzQ.webp\",srcSet:\"https://framerusercontent.com/images/XLQIa3enImMZQL45gXZyou7KJzQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/XLQIa3enImMZQL45gXZyou7KJzQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/XLQIa3enImMZQL45gXZyou7KJzQ.webp 1332w\"},className:\"framer-1honof\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rjzv1a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Swimming Pool\"})}),className:\"framer-1iomjw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Un mix effervescente di Vino spumante, soda e l'elegante estratto di fiori di sambuco, completato con perle di Campari. Un aperitivo leggero e straordinario per chi cerca freschezza e raffinatezza in ogni sorso.\"})}),className:\"framer-8tlrxl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wk31tl\",\"data-framer-name\":\"Mexican Miscelala\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:441,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/2DuFyZU6fU0WFZtuCHv3wEQVMOc.webp\",srcSet:\"https://framerusercontent.com/images/2DuFyZU6fU0WFZtuCHv3wEQVMOc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/2DuFyZU6fU0WFZtuCHv3wEQVMOc.webp 600w\"},className:\"framer-wmfty7\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1waq5rw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Mexican Miscelada\"})}),className:\"framer-84gzep\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Questo drink tipico messicano si serve in un grande bicchiere riempito di ghiaccio a cubetti, lime juice, Tequila, Liquore agli agrumi e una bottiglia di tipica Birra messicana di cui non diciamo il nome\u2026 completano il tutto, fettine di lime e ciliegina maraschino.\"})}),className:\"framer-1q7gn55\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dsj5yb\",\"data-framer-name\":\"Vodka Aperol Sour\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:406,pixelWidth:501,src:\"https://framerusercontent.com/images/pb7brEWEsW5TmaSGJP61hc9g.webp\"},className:\"framer-16pp394\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l6voly\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Vodka Aperol Sour\"})}),className:\"framer-dtiik2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Vodka, succo di limone, sciroppo di zucchero e molecole di Aperol.\"})}),className:\"framer-1asu8sb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-blac27\",\"data-framer-name\":\"Americano in Rosa\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:458,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/02vxqN8EysOBkmb50M9YyHslBqU.webp\",srcSet:\"https://framerusercontent.com/images/02vxqN8EysOBkmb50M9YyHslBqU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/02vxqN8EysOBkmb50M9YyHslBqU.webp 600w\"},className:\"framer-1vvg7rv\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dctfms\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Americano in Rosa\"})}),className:\"framer-15r3n3d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Il bitter, il Vermut e soda al pompelmo rosa sono gli ingredienti distintivi della nostra reinterpretazione dell'Americano. Un mix pi\\xf9 aromatico e fine \\xe8 stato appositamente creato per chi non vuole rinunciare a un grande classico con un gusto pi\\xf9 delicato.\"})}),className:\"framer-1mejnbj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3sg6g8\",\"data-framer-name\":\"Jam Cocktail\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:428,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/cuAhOKLPGbxdiW17ntddVxPtlDQ.webp\",srcSet:\"https://framerusercontent.com/images/cuAhOKLPGbxdiW17ntddVxPtlDQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/cuAhOKLPGbxdiW17ntddVxPtlDQ.webp 600w\"},className:\"framer-1ag57ub\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jdzg9l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Jam Cocktail\"})}),className:\"framer-bkby3l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Succo d'arancia, zucchero di canna, marmellata di arance amare di Siviglia.\"})}),className:\"framer-1g6ligk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e42ul8\",\"data-framer-name\":\"Pisco Sour\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:411,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/IfP3VfOLaX4t8ROODB6ClWSZL8.webp\",srcSet:\"https://framerusercontent.com/images/IfP3VfOLaX4t8ROODB6ClWSZL8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/IfP3VfOLaX4t8ROODB6ClWSZL8.webp 600w\"},className:\"framer-1jtkee2\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g21czv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Pisco Sour\"})}),className:\"framer-10bbi4u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Il nostro Pisco Sour \\xe8 un'esperienza unica grazie al nostro Pisco di alta qualit\\xe0 e al tocco speciale del Loomi, un lime nero essiccato, che conferisce al cocktail un aroma intenso e fresco.  Gusta questa delizia  e lasciati trasportare in un viaggio di sapori unici.\"})}),className:\"framer-2y17jx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17gjpy5\",\"data-framer-name\":\"King Tonic\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:484,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/H6UAS1WdROsVP1wkwxwY7cDfQ.webp\",srcSet:\"https://framerusercontent.com/images/H6UAS1WdROsVP1wkwxwY7cDfQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/H6UAS1WdROsVP1wkwxwY7cDfQ.webp 600w\"},className:\"framer-pk8hdx\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q0egiw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"King Tonic\"})}),className:\"framer-ggxw1w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'Gin tonic \"King size\" servito con un speciale vassoio che render\\xe0 fluorescente il tuo drink... buono, bello e pronto per essere immortalato su Instagram.'})}),className:\"framer-4u2tb5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-31nsz1\",\"data-framer-name\":\"Rose Florida\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:465,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/gbtrXeQxuURbTUT9RAzi5AQgiI.webp\",srcSet:\"https://framerusercontent.com/images/gbtrXeQxuURbTUT9RAzi5AQgiI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/gbtrXeQxuURbTUT9RAzi5AQgiI.webp 600w\"},className:\"framer-1wgidv0\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7oe1tr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Rose Florida\"})}),className:\"framer-zxejqc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Estratto di petali di rosa, sweet & sour, soda water.\"})}),className:\"framer-1ocz5dc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19hq24x\",\"data-framer-name\":\"Cosmopolitan\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:445,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/AX5G18IReyQ9tWqOGIxUDgC0wNE.webp\",srcSet:\"https://framerusercontent.com/images/AX5G18IReyQ9tWqOGIxUDgC0wNE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/AX5G18IReyQ9tWqOGIxUDgC0wNE.webp 600w\"},className:\"framer-1ymb97c\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vv8hc9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Cosmopolitan\"})}),className:\"framer-v5jro\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xc8 il principe indiscusso della vita notturna a Miami e in tutta la zona della Florida. Questo trendy cocktail si distingue per il suo bel colore e la sua potenza, grazie alla Vodka ammorbidita dalla presenza di mirtillo e Triple sec.\"})}),className:\"framer-riv02a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16ub7x9\",\"data-framer-name\":\"Vodka Aperol Sour\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:477,pixelWidth:600,sizes:\"305px\",src:\"https://framerusercontent.com/images/rpRfNjOIGefM2XN3BKHgdtJKdCc.webp\",srcSet:\"https://framerusercontent.com/images/rpRfNjOIGefM2XN3BKHgdtJKdCc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/rpRfNjOIGefM2XN3BKHgdtJKdCc.webp 600w\"},className:\"framer-1pzuw9b\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bn0jbq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Smoked Martini\"})}),className:\"framer-1ed5fpu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Drink a base di Gin e Martini dry\u2026 Servito in una campana riempita di fumo ottenuto dalla combustione di segatura di faggio...\"})}),className:\"framer-tb2rv5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mr3ic1\",\"data-framer-name\":\"Cosmo Rosa\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:444,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"305px\",src:\"https://framerusercontent.com/images/3ozoqOL7DCxZvfeLX2ujHqgRhho.webp\",srcSet:\"https://framerusercontent.com/images/3ozoqOL7DCxZvfeLX2ujHqgRhho.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3ozoqOL7DCxZvfeLX2ujHqgRhho.webp 600w\"},className:\"framer-1cibywa\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-28bn86\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Cosmo Rosa\"})}),className:\"framer-mgu56f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Servito con eleganza e arricchito da un'aria aromatizzata con estratto di petali di rosa, il nostro \\\"Fashion Rose Cocktail\\\" \\xe8 l'emblema del gusto sofisticato. Conquista il palato con la sua armoniosa combinazione di ingredienti di alta qualit\\xe0, creando un'esperienza unica che stimola i sensi.\"})}),className:\"framer-17tfs86\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yyecek\",\"data-framer-name\":\"Vodka Sour Pesca + rid Campari\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:471,pixelWidth:600,positionX:\"center\",positionY:\"top\",sizes:\"305px\",src:\"https://framerusercontent.com/images/tTu4SH5M71on2BtPcOb5hSflCVY.webp\",srcSet:\"https://framerusercontent.com/images/tTu4SH5M71on2BtPcOb5hSflCVY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/tTu4SH5M71on2BtPcOb5hSflCVY.webp 600w\"},className:\"framer-qi2q3t\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1khmy8u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8dd19\",\"data-styles-preset\":\"z0KHErAaX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Vodka Sour alla Pesca e rid. Campari\"})}),className:\"framer-3cymy8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bg58z\",\"data-styles-preset\":\"lrGj4HChq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Scopri il nostro 'Peachy Fusion': Vodka alla Pesca, succo di lime, zucchero con sorprendenti pillole di Campari. Un'esplosione di sapori in ogni sorso, un'esperienza molecolare unica nel nostro cocktail bar.\"})}),className:\"framer-1vm6tsd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-swlj9n\",\"data-framer-name\":\"content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{y:(componentViewport?.y||0)+0+1400+0+0+64+1020.5+0+0},TiWLq0Bmy:{y:(componentViewport?.y||0)+0+1400+0+0+80+1020.5+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1400+0+0+125+988.5+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16dbqmr-container\",nodeId:\"YuVYBZb8Y\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(Button,{GFjGWu41b:\"Sfoglia i migliori drink\",height:\"100%\",i1pHEuxh6:true,id:\"YuVYBZb8Y\",layoutId:\"YuVYBZb8Y\",rPOZChZ9L:\"https://menu.pienissimo.com/?hash=kBh6qibb67e8RUzDUPWgrQkLItd2SwdW&id=27\",style:{height:\"100%\"},T8JH1kstK:true,variant:\"GbUP31IMl\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-pp5n2g\",\"data-framer-name\":\"il fascino\",id:elementId4,ref:ref10,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3rlps5\",\"data-framer-name\":\"images\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:96,__perspectiveFX:false,__targetOpacity:1,className:\"framer-37ljcc\",\"data-framer-name\":\"img right\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{background:{alt:\"A man holding a cocktail in a dimly lit bar\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+1172.5+64+0+0+0+0),pixelHeight:960,pixelWidth:720,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 32px) * 0.55)`,src:\"https://framerusercontent.com/images/4EKj8v4djU7LBc05maFkaupPYM.webp\",srcSet:\"https://framerusercontent.com/images/4EKj8v4djU7LBc05maFkaupPYM.webp 720w\"}},TiWLq0Bmy:{background:{alt:\"A man holding a cocktail in a dimly lit bar\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+1220.5+80+0+0+0),pixelHeight:960,pixelWidth:720,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 2, 1px) * 0.55)`,src:\"https://framerusercontent.com/images/4EKj8v4djU7LBc05maFkaupPYM.webp\",srcSet:\"https://framerusercontent.com/images/4EKj8v4djU7LBc05maFkaupPYM.webp 720w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"A man holding a cocktail in a dimly lit bar\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+1203.5+100+0+0+0),pixelHeight:960,pixelWidth:720,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 2, 1px) * 0.55)`,src:\"https://framerusercontent.com/images/4EKj8v4djU7LBc05maFkaupPYM.webp\",srcSet:\"https://framerusercontent.com/images/4EKj8v4djU7LBc05maFkaupPYM.webp 720w\"},className:\"framer-sk2d65\",\"data-framer-name\":\"img\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:104,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11300gk\",\"data-framer-name\":\"img left\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{background:{alt:\"A chef placing fried chicken in a take away box\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+1172.5+64+0+1-554+0),pixelHeight:1e3,pixelWidth:900,positionX:\"center\",positionY:\"bottom\",sizes:`max((${componentViewport?.width||\"100vw\"} - 32px) * 0.55, 1px)`,src:\"https://framerusercontent.com/images/isPAhiycUKqRQcoi6DSJDuXdgo.webp\",srcSet:\"https://framerusercontent.com/images/isPAhiycUKqRQcoi6DSJDuXdgo.webp 900w\"}},TiWLq0Bmy:{background:{alt:\"A chef placing fried chicken in a take away box\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+1220.5+80+600-554+0),pixelHeight:1e3,pixelWidth:900,positionX:\"center\",positionY:\"bottom\",sizes:`max(max((${componentViewport?.width||\"100vw\"} - 112px) / 2, 1px) * 0.55, 1px)`,src:\"https://framerusercontent.com/images/isPAhiycUKqRQcoi6DSJDuXdgo.webp\",srcSet:\"https://framerusercontent.com/images/isPAhiycUKqRQcoi6DSJDuXdgo.webp 900w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"A chef placing fried chicken in a take away box\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+1203.5+100+600-554+0),pixelHeight:1e3,pixelWidth:900,positionX:\"center\",positionY:\"bottom\",sizes:`max(max((${componentViewport?.width||\"100vw\"} - 240px) / 2, 1px) * 0.55, 1px)`,src:\"https://framerusercontent.com/images/isPAhiycUKqRQcoi6DSJDuXdgo.webp\",srcSet:\"https://framerusercontent.com/images/isPAhiycUKqRQcoi6DSJDuXdgo.webp 900w\"},className:\"framer-18ye9ce\",\"data-framer-name\":\"img\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1woqwat\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pgxc0f\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, rgb(15, 27, 28))\"},children:\"Il fascino del molecular cocktail bar\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, rgb(15, 27, 28))\"},children:\"Il fascino del molecular cocktail bar\"})}),className:\"framer-bj9elr\",\"data-framer-name\":\"Small lot coffess worth being snobby over\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\"},children:\"Sfere che esplodono in bocca, bolle di fumo aromatizzate, caramelle che esaltano i gusti. Sostanze naturali e scienza si combinano per creare qualcosa di incredibile. Se hai voglia di un\u2019autentica avventura sensoriale sei nel posto giusto.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Sfere che esplodono in bocca, bolle di fumo aromatizzate, caramelle che esaltano i gusti. Sostanze naturali e scienza si combinano per creare qualcosa di incredibile. Se hai voglia di un\u2019autentica avventura sensoriale sei nel posto giusto.\"})}),className:\"framer-1j63cvs\",\"data-framer-name\":\"Unique small-lot coffees from our globe-spanning network of artisan producers, roasted to perfection and delivered to you each month.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{y:(componentViewport?.y||0)+0+1400+0+1172.5+64+65+0+273.5},TiWLq0Bmy:{y:(componentViewport?.y||0)+0+1400+0+1220.5+80+0+416.75}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1400+0+1203.5+80+0+436.75,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bvfq5a-container\",nodeId:\"uEBdm3Sir\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(Button,{GFjGWu41b:\"Riserva il tuo tavolo\",height:\"100%\",i1pHEuxh6:false,id:\"uEBdm3Sir\",layoutId:\"uEBdm3Sir\",rPOZChZ9L:\"https://forms.pienissimo.com/?hash=kBh6qibb67e8RUzDUPWgrQkLItd2SwdW&id=Bh0l3Y\",style:{height:\"100%\"},T8JH1kstK:true,variant:\"GbUP31IMl\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ur3xcn\",\"data-framer-name\":\"about\",id:elementId5,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hmm62u\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17dii2m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"L\u2019ora del cocktail \\xe8 sacra.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"L\u2019ora del cocktail \\xe8 sacra.\"})}),className:\"framer-iu1l90\",\"data-framer-name\":\"The moments that deliver the most joy in life are often SIMPL\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Giornata difficile, appuntamento importante, ritrovo tra compagnie o semplicemente voglia di evadere. Un buon cocktail \\xe8 sempre la ciliegina sulla torta.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Prenota il tuo tavolo e godi a ogni sorso. \"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Giornata difficile, appuntamento importante, ritrovo tra compagnie o semplicemente voglia di evadere. Un buon cocktail \\xe8 sempre la ciliegina sulla torta.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Prenota il tuo tavolo e godi a ogni sorso. \"})]}),className:\"framer-1ly0s0o\",\"data-framer-name\":\"Offering craft cocktails, wine, beer and delightful bites - comfort Italian during the day, Taiwanese inspired bites at night. Together they serve up a type of fusion that goes straight to the heart- familiar flavours with a unique twist.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":exsBF7Pup\",webPageId:\"cjv51Cbc9\"},implicitPathVariables:undefined},{href:{hash:\":exsBF7Pup\",webPageId:\"cjv51Cbc9\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TiWLq0Bmy:{y:(componentViewport?.y||0)+0+1400+0+1980.5+0+32+435}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1400+0+2003.5+0+40+435,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ezrm5h-container hidden-1ngnl6a\",nodeId:\"gP86kbBPS\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TiWLq0Bmy:{rPOZChZ9L:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{GFjGWu41b:\"Riserva il tuo tavolo\",height:\"100%\",i1pHEuxh6:false,id:\"gP86kbBPS\",layoutId:\"gP86kbBPS\",rPOZChZ9L:resolvedLinks[0],style:{height:\"100%\"},T8JH1kstK:true,variant:\"GbUP31IMl\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u5ilhs\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oxptqb\",\"data-framer-name\":\"img\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{background:{alt:\"Close up of a cocktail being served at a bar\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+1972.5+0+491+-121.5+17053025658242404e-29),pixelHeight:960,pixelWidth:720,sizes:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,src:\"https://framerusercontent.com/images/8rfEFlWyZ0OeXq779oVXxQ3daI.webp\",srcSet:\"https://framerusercontent.com/images/8rfEFlWyZ0OeXq779oVXxQ3daI.webp 720w\"}},TiWLq0Bmy:{background:{alt:\"Close up of a cocktail being served at a bar\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+1980.5+0+32+17053025658242404e-29),pixelHeight:960,pixelWidth:720,sizes:`calc(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 64px)`,src:\"https://framerusercontent.com/images/8rfEFlWyZ0OeXq779oVXxQ3daI.webp\",srcSet:\"https://framerusercontent.com/images/8rfEFlWyZ0OeXq779oVXxQ3daI.webp 720w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.25,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Close up of a cocktail being served at a bar\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+2003.5+0+40+17053025658242404e-29),pixelHeight:960,pixelWidth:720,sizes:`calc(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 80px)`,src:\"https://framerusercontent.com/images/8rfEFlWyZ0OeXq779oVXxQ3daI.webp\",srcSet:\"https://framerusercontent.com/images/8rfEFlWyZ0OeXq779oVXxQ3daI.webp 720w\"},className:\"framer-12dab0k\",\"data-framer-name\":\"img\",style:{transformPerspective:1200}})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1gqsw9g\",\"data-framer-name\":\"Mr Eclettico\",id:elementId6,ref:ref11,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ofajt3\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Devoti alla cultura del bere bene.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Devoti alla cultura del bere bene.\"})}),className:\"framer-1gwxlct\",\"data-framer-name\":\"Titolo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Eclettico \\xe8 un invito a pensare fuori dagli schemi, con l\u2019obiettivo di generare bellezza e buon gusto. E questo lo si pu\\xf2 fare solo partendo dalla qualit\\xe0. Siamo nel tempio della miscelazione, dove l\u2019arte ricreativa del cocktail \\xe8 presa molto sul serio.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Eclettico \\xe8 un invito a pensare fuori dagli schemi, con l\u2019obiettivo di generare bellezza e buon gusto. E questo lo si pu\\xf2 fare solo partendo dalla qualit\\xe0. Siamo nel tempio della miscelazione, dove l\u2019arte ricreativa del cocktail \\xe8 presa molto sul serio.\"})}),className:\"framer-5dqhb6\",\"data-framer-name\":\"Copy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a2uqqw\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-q3v9hi\",\"data-framer-name\":\"img\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{background:{alt:\"Simone head of bartender\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+3048.5+0+329.5+-121.5+17053025658242404e-29),pixelHeight:960,pixelWidth:1184,sizes:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,src:\"https://framerusercontent.com/images/9Pfma3oygPJ0w9ENMxtL6As4.webp\",srcSet:\"https://framerusercontent.com/images/9Pfma3oygPJ0w9ENMxtL6As4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/9Pfma3oygPJ0w9ENMxtL6As4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/9Pfma3oygPJ0w9ENMxtL6As4.webp 1184w\"}},TiWLq0Bmy:{background:{alt:\"Simone head of bartender\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+2824.5+0+32+17053025658242404e-29),pixelHeight:960,pixelWidth:1184,sizes:`calc(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 64px)`,src:\"https://framerusercontent.com/images/9Pfma3oygPJ0w9ENMxtL6As4.webp\",srcSet:\"https://framerusercontent.com/images/9Pfma3oygPJ0w9ENMxtL6As4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/9Pfma3oygPJ0w9ENMxtL6As4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/9Pfma3oygPJ0w9ENMxtL6As4.webp 1184w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.25,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Simone head of bartender\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+2863.5+0+40+17053025658242404e-29),pixelHeight:960,pixelWidth:1184,sizes:`calc(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 80px)`,src:\"https://framerusercontent.com/images/9Pfma3oygPJ0w9ENMxtL6As4.webp\",srcSet:\"https://framerusercontent.com/images/9Pfma3oygPJ0w9ENMxtL6As4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/9Pfma3oygPJ0w9ENMxtL6As4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/9Pfma3oygPJ0w9ENMxtL6As4.webp 1184w\"},className:\"framer-73vsmj\",\"data-framer-name\":\"img\",style:{transformPerspective:1200}})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1j7prwm\",\"data-framer-name\":\"Mr Eclettico\",id:elementId7,ref:ref12,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18zjpbe\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wosrsc\",\"data-framer-name\":\"img\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{background:{alt:\"Simone head of bartender\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+3947+0+503.5+-121.5+17053025658242404e-29),pixelHeight:960,pixelWidth:720,sizes:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,src:\"https://framerusercontent.com/images/Bl1JBaFCCjFifPyXd3gWnhywcs.webp\",srcSet:\"https://framerusercontent.com/images/Bl1JBaFCCjFifPyXd3gWnhywcs.webp 720w\"}},TiWLq0Bmy:{background:{alt:\"Simone head of bartender\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+3756.5+0+32+17053025658242404e-29),pixelHeight:960,pixelWidth:720,sizes:`calc(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 64px)`,src:\"https://framerusercontent.com/images/Bl1JBaFCCjFifPyXd3gWnhywcs.webp\",srcSet:\"https://framerusercontent.com/images/Bl1JBaFCCjFifPyXd3gWnhywcs.webp 720w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.25,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Simone head of bartender\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+3811.5+0+40+17053025658242404e-29),pixelHeight:960,pixelWidth:720,sizes:`calc(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 80px)`,src:\"https://framerusercontent.com/images/Bl1JBaFCCjFifPyXd3gWnhywcs.webp\",srcSet:\"https://framerusercontent.com/images/Bl1JBaFCCjFifPyXd3gWnhywcs.webp 720w\"},className:\"framer-7gygvr\",\"data-framer-name\":\"img\",style:{transformPerspective:1200}})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c9yq65\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Incontra Mr. Eclettico\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Incontra Mr. Eclettico\"})}),className:\"framer-1cykgzw\",\"data-framer-name\":\"Titolo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"20 anni di esperienza, diversi locali gestiti e contaminazioni internazionali collezionate, lo hanno portato qui. Potresti sorprenderlo mentre racconta storie di cocktail incredibili ai clienti pi\\xf9 curiosi, o mentre inietta in un drink sangue finto da bere. Cose da far rabbrividire Tarantino, per capirci.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"20 anni di esperienza, diversi locali gestiti e contaminazioni internazionali collezionate, lo hanno portato qui. Potresti sorprenderlo mentre racconta storie di cocktail incredibili ai clienti pi\\xf9 curiosi, o mentre inietta in un drink sangue finto da bere. Cose da far rabbrividire Tarantino, per capirci.\"})}),className:\"framer-18uccfl\",\"data-framer-name\":\"Copy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l5t1x5\",\"data-styles-preset\":\"PvmvDyFsZ\",style:{\"--framer-text-color\":\"var(--token-0ba737d5-a4c0-4e25-a9c2-124db9c3e0bd, rgb(175, 145, 69))\"},children:\"Tutto nella norma.\"})}),className:\"framer-hk55fh\",\"data-framer-name\":\"copy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-11uwicj\",\"data-border\":true,\"data-framer-name\":\"Fan dell'acqua?\",id:elementId8,ref:ref13,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hpgdlv\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cjnkrx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, rgb(29, 28, 26))\"},children:[\"Fan dell\u2019acqua?\",/*#__PURE__*/_jsx(\"br\",{}),\"Pronti a convertirti.\"]})}),className:\"framer-cltihw\",\"data-framer-name\":\"Fan dell'acqua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, rgb(29, 28, 26))\"},children:\"Se la parola gradazione non ti piace, non ti preoccupare. Prepariamo buonissimi analcolici contemporanei che ti stupiranno, sempre in stile Eclettico.\"})}),className:\"framer-k48szk\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{y:(componentViewport?.y||0)+0+1400+0+5035.5+0+0+64+241.5},TiWLq0Bmy:{y:(componentViewport?.y||0)+0+1400+0+4688.5+125+0+273.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1400+0+4759.5+223.25+0+273.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bqtbq4-container\",nodeId:\"bdnVFrD60\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(Button,{GFjGWu41b:\"Sfoglia i nostri cocktail analcolici\",height:\"100%\",i1pHEuxh6:false,id:\"bdnVFrD60\",layoutId:\"bdnVFrD60\",rPOZChZ9L:\"https://menu.pienissimo.com/?hash=kBh6qibb67e8RUzDUPWgrQkLItd2SwdW&id=23\",style:{height:\"100%\"},T8JH1kstK:true,variant:\"GbUP31IMl\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b30ey5\",\"data-framer-name\":\"convertirti\",id:elementId9,ref:ref14,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16b6xl5\",\"data-framer-name\":\"1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{background:{alt:\"Chef cutting red bell peppers\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+5035.5+0+393.5+0+0+0),pixelHeight:1494,pixelWidth:1454,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,src:\"https://framerusercontent.com/images/23k03CEh3Eo2BENwqCSbcp0XNOo.webp\",srcSet:\"https://framerusercontent.com/images/23k03CEh3Eo2BENwqCSbcp0XNOo.webp?scale-down-to=1024 996w,https://framerusercontent.com/images/23k03CEh3Eo2BENwqCSbcp0XNOo.webp 1454w\"}},TiWLq0Bmy:{background:{alt:\"Chef cutting red bell peppers\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+4688.5+151.25+0+0),pixelHeight:1494,pixelWidth:1454,sizes:\"200px\",src:\"https://framerusercontent.com/images/23k03CEh3Eo2BENwqCSbcp0XNOo.webp\",srcSet:\"https://framerusercontent.com/images/23k03CEh3Eo2BENwqCSbcp0XNOo.webp?scale-down-to=1024 996w,https://framerusercontent.com/images/23k03CEh3Eo2BENwqCSbcp0XNOo.webp 1454w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:267,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:-15,y:-10}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Chef cutting red bell peppers\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+4759.5+125+0+0),pixelHeight:1494,pixelWidth:1454,sizes:\"452px\",src:\"https://framerusercontent.com/images/23k03CEh3Eo2BENwqCSbcp0XNOo.webp\",srcSet:\"https://framerusercontent.com/images/23k03CEh3Eo2BENwqCSbcp0XNOo.webp?scale-down-to=1024 996w,https://framerusercontent.com/images/23k03CEh3Eo2BENwqCSbcp0XNOo.webp 1454w\"},className:\"framer-147bf0\",\"data-framer-name\":\"img\"})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-2cpgrm\",\"data-framer-name\":\"Dimentica i classici attrezzi del mestiere\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-f9tfj9\",\"data-framer-name\":\"image\",id:elementId10,ref:ref15,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{background:{alt:\"Two chefs behind the kitchen counter\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+5715.5+0+0+0+0),pixelHeight:563,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/FF5DFuMrgwwuSQl0HK9275sub8.webp\",srcSet:\"https://framerusercontent.com/images/FF5DFuMrgwwuSQl0HK9275sub8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/FF5DFuMrgwwuSQl0HK9275sub8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/FF5DFuMrgwwuSQl0HK9275sub8.webp 1600w\"}},TiWLq0Bmy:{background:{alt:\"Two chefs behind the kitchen counter\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+5252+0+0+0+0),pixelHeight:563,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/FF5DFuMrgwwuSQl0HK9275sub8.webp\",srcSet:\"https://framerusercontent.com/images/FF5DFuMrgwwuSQl0HK9275sub8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/FF5DFuMrgwwuSQl0HK9275sub8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/FF5DFuMrgwwuSQl0HK9275sub8.webp 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Two chefs behind the kitchen counter\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+5519.5+0+0+0+0),pixelHeight:563,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/FF5DFuMrgwwuSQl0HK9275sub8.webp\",srcSet:\"https://framerusercontent.com/images/FF5DFuMrgwwuSQl0HK9275sub8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/FF5DFuMrgwwuSQl0HK9275sub8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/FF5DFuMrgwwuSQl0HK9275sub8.webp 1600w\"},className:\"framer-15ub4mi\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vir0zq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l5t1x5\",\"data-styles-preset\":\"PvmvDyFsZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-174080a1-98de-43c5-8523-cd2c7e899733, rgb(229, 216, 203))\"},children:\"Behind the Bar\"})}),className:\"framer-ogbanm\",\"data-framer-name\":\"Small lot coffess worth being snobby over\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Dimentica i classici \u201Cattrezzi del mestiere\u201D\"})}),className:\"framer-1vaqfq3\",\"data-framer-name\":\"Small lot coffess worth being snobby over\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l5t1x5\",\"data-styles-preset\":\"PvmvDyFsZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"I nostri strumenti sono sifoni, azoto liquido e ghiaccio secco per creare effetti spettacolari.\"})}),className:\"framer-4izt7y\",\"data-framer-name\":\"Unique small-lot coffees from our globe-spanning network of artisan producers, roasted to perfection and delivered to you each month.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1g1bf4h\",\"data-framer-name\":\"Il locale\",id:elementId11,ref:ref16,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Il Locale\"})}),className:\"framer-17m0hek\",\"data-framer-name\":\"meet the team\",fonts:[\"Inter\"],verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xyntd5\",\"data-framer-name\":\"foto locale\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-axsd0u\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kewg8e\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-40,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-10cnsdg\",\"data-framer-name\":\"image\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{background:{alt:\"Portrait of a man stirring a pan\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:531,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+6211.5+64+104+0+0+0+485+0+0+0),pixelHeight:720,pixelWidth:960,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,src:\"https://framerusercontent.com/images/NjScoVZOMPc46WM9g87lEywDLeA.webp\",srcSet:\"https://framerusercontent.com/images/NjScoVZOMPc46WM9g87lEywDLeA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/NjScoVZOMPc46WM9g87lEywDLeA.webp 960w\"}},TiWLq0Bmy:{background:{alt:\"Portrait of a man stirring a pan\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:531,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+5812+72+104+0+0+0+0+0+0),pixelHeight:720,pixelWidth:960,sizes:`max(max((${componentViewport?.width||\"100vw\"} - 104px) / 2, 1px) * 0.9987, 1px)`,src:\"https://framerusercontent.com/images/NjScoVZOMPc46WM9g87lEywDLeA.webp\",srcSet:\"https://framerusercontent.com/images/NjScoVZOMPc46WM9g87lEywDLeA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/NjScoVZOMPc46WM9g87lEywDLeA.webp 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Portrait of a man stirring a pan\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:531,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+6079.5+125+0+0+0+0+0+0),pixelHeight:720,pixelWidth:960,sizes:`max(max((max(${componentViewport?.width||\"100vw\"} - 374px, 1px) - 40px) / 2, 1px) * 0.9987, 1px)`,src:\"https://framerusercontent.com/images/NjScoVZOMPc46WM9g87lEywDLeA.webp\",srcSet:\"https://framerusercontent.com/images/NjScoVZOMPc46WM9g87lEywDLeA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/NjScoVZOMPc46WM9g87lEywDLeA.webp 960w\"},className:\"framer-1wm91e\",\"data-framer-name\":\"img\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-40,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-13lrun6\",\"data-framer-name\":\"image\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{background:{alt:\"Portrait of a woman standing at a bar\",fit:\"fill\",intrinsicHeight:1205,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+6211.5+64+104+0+0+0+485+0+577.5+0),pixelHeight:960,pixelWidth:720,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,src:\"https://framerusercontent.com/images/ABAhO2jarBVHrYZLsskzQ8J8.webp\",srcSet:\"https://framerusercontent.com/images/ABAhO2jarBVHrYZLsskzQ8J8.webp 720w\"}},TiWLq0Bmy:{background:{alt:\"Portrait of a woman standing at a bar\",fit:\"fill\",intrinsicHeight:1205,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+5812+72+104+0+0+0+0+629.5+0),pixelHeight:960,pixelWidth:720,sizes:`max(max((${componentViewport?.width||\"100vw\"} - 104px) / 2, 1px) * 1.0064, 1px)`,src:\"https://framerusercontent.com/images/ABAhO2jarBVHrYZLsskzQ8J8.webp\",srcSet:\"https://framerusercontent.com/images/ABAhO2jarBVHrYZLsskzQ8J8.webp 720w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Portrait of a woman standing at a bar\",fit:\"fill\",intrinsicHeight:1205,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+6079.5+125+0+0+0+0+629.5+0),pixelHeight:960,pixelWidth:720,sizes:`max(max((max(${componentViewport?.width||\"100vw\"} - 374px, 1px) - 40px) / 2, 1px) * 1.0064, 1px)`,src:\"https://framerusercontent.com/images/ABAhO2jarBVHrYZLsskzQ8J8.webp\",srcSet:\"https://framerusercontent.com/images/ABAhO2jarBVHrYZLsskzQ8J8.webp 720w\"},className:\"framer-x06jsg\",\"data-framer-name\":\"img\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-40,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-cd87zg\",\"data-framer-name\":\"image\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{background:{alt:\"Portrait of a bartender pouring a cocktail\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:531,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+6211.5+64+104+0+0+0+485+0+1155+0),pixelHeight:960,pixelWidth:720,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,src:\"https://framerusercontent.com/images/85y04iaJq8guDu7QibKmXZLhP4.webp\",srcSet:\"https://framerusercontent.com/images/85y04iaJq8guDu7QibKmXZLhP4.webp 720w\"}},TiWLq0Bmy:{background:{alt:\"Portrait of a bartender pouring a cocktail\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:531,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+5812+72+104+0+0+0+0+1259+0),pixelHeight:960,pixelWidth:720,sizes:`max(max((${componentViewport?.width||\"100vw\"} - 104px) / 2, 1px) * 1.0064, 1px)`,src:\"https://framerusercontent.com/images/85y04iaJq8guDu7QibKmXZLhP4.webp\",srcSet:\"https://framerusercontent.com/images/85y04iaJq8guDu7QibKmXZLhP4.webp 720w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Portrait of a bartender pouring a cocktail\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:531,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+6079.5+125+0+0+0+0+1259+0),pixelHeight:960,pixelWidth:720,sizes:`max(max((max(${componentViewport?.width||\"100vw\"} - 374px, 1px) - 40px) / 2, 1px) * 1.0064, 1px)`,src:\"https://framerusercontent.com/images/85y04iaJq8guDu7QibKmXZLhP4.webp\",srcSet:\"https://framerusercontent.com/images/85y04iaJq8guDu7QibKmXZLhP4.webp 720w\"},className:\"framer-15l5ot0\",\"data-framer-name\":\"img\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wdc6r9\",\"data-framer-name\":\"bio\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yg32ve\",\"data-styles-preset\":\"faWe0BQmM\",style:{\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Idee classiche, accostamenti eclettici\"})}),className:\"framer-gj020j\",\"data-framer-name\":\"Come nel salotto di casa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1aqwpqe\",\"data-styles-preset\":\"UxlceifrX\",style:{\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:[\"Gli spazi di Eclettico si sviluppano in un grande ambiente unico, con un particolare arredamento. Gli interni sono una combinazione tra scelte classiche e design contemporanei, dove potrai gustare intimamente la tua esperienza, o sentirti parte di un gruppo. Elementi di diversi stili, epoche, forme e colori, accuratamente scelti negli anni dall\u2019interior designer \",/*#__PURE__*/_jsx(Link,{href:\"https://onahome.it\",motionChild:true,nodeId:\"buub1xRPH\",openInNewTab:true,scopeId:\"cjv51Cbc9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-pbndum\",\"data-styles-preset\":\"f_JgQVGd5\",children:\"Renata Piasecka\"})}),\", costellano il locale.\"]})}),className:\"framer-1lyro5q\",\"data-framer-name\":\"Evelyn Chick is a highly accredited specialist in the world of wine, spirits and the anatomy of all things hospitality. She has a gleaming resume of globally-recognized certifications including WSET Sommelier and Certified Specialist of Spirits. In 2020 she founded Evelyn Chick Projects Inc. beverage design and consultancy. Ahma, a dynamic pop up and event space on Queen St W opened in 2021 as well as Love of Cocktails - a cocktail experience and gift set company. Her book 'For the Love of Cocktails!' is slated for release in May 2023, and her newest venture is SIMPL THINGS boasts an all day food and beverage collective with a homely, nostalgic feel.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l5t1x5\",\"data-styles-preset\":\"PvmvDyFsZ\",style:{\"--framer-text-color\":\"var(--token-0ba737d5-a4c0-4e25-a9c2-124db9c3e0bd, rgb(175, 145, 69))\"},children:\"Mixare, come avrete capito, ci piace.\"})}),className:\"framer-13flho\",\"data-framer-name\":\"Eclettico\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{y:(componentViewport?.y||0)+0+1400+0+6211.5+64+104+0+0+0+0+0+405},TiWLq0Bmy:{y:(componentViewport?.y||0)+0+1400+0+5812+72+104+0+0+0+0+405}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1400+0+6079.5+125+0+0+0+0+405,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cgm5wm-container\",nodeId:\"Yb1iRcKTv\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(Button,{GFjGWu41b:\"Sfoglia i cocktail classici\",height:\"100%\",i1pHEuxh6:false,id:\"Yb1iRcKTv\",layoutId:\"Yb1iRcKTv\",rPOZChZ9L:\"https://menu.pienissimo.com/?hash=kBh6qibb67e8RUzDUPWgrQkLItd2SwdW&id=26\",style:{height:\"100%\"},T8JH1kstK:true,variant:\"GbUP31IMl\",width:\"100%\"})})})})]})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-x84jyp\",\"data-framer-name\":\"gallery\",id:elementId12,ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-76a48x\",\"data-framer-name\":\"images\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-120,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:200,y:0}}]}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-120,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:400,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-j5xums\",\"data-framer-name\":\"row 1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-alkyy-container\",nodeId:\"AVXErGy_J\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(ImagesGalleryItem,{caption:\"Brunch\",height:\"100%\",id:\"AVXErGy_J\",image:addImageAlt({src:\"https://framerusercontent.com/images/3yLbZidCePUxDZg4pDQFlghWkh4.webp\",srcSet:\"https://framerusercontent.com/images/3yLbZidCePUxDZg4pDQFlghWkh4.webp 720w\"},\"\"),layoutId:\"AVXErGy_J\",style:{width:\"100%\"},variant:\"aXEldtVqy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jwymrm-container\",nodeId:\"Q9x1GukHl\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(ImagesGalleryItem,{caption:\"Plated dish on a dinner table\",height:\"100%\",id:\"Q9x1GukHl\",image:addImageAlt({src:\"https://framerusercontent.com/images/MZrVi4Hno7o0baVaZDUcXgRnPo.webp\",srcSet:\"https://framerusercontent.com/images/MZrVi4Hno7o0baVaZDUcXgRnPo.webp 720w\"},\"\"),layoutId:\"Q9x1GukHl\",style:{width:\"100%\"},variant:\"aXEldtVqy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b5l7mg-container\",nodeId:\"tDb6vzLKU\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(ImagesGalleryItem,{caption:\"Closeup of a bartender peeling an orange\",height:\"100%\",id:\"tDb6vzLKU\",image:addImageAlt({src:\"https://framerusercontent.com/images/tshMJkljotafB3s3BndAM19nA.webp\",srcSet:\"https://framerusercontent.com/images/tshMJkljotafB3s3BndAM19nA.webp 720w\"},\"\"),layoutId:\"tDb6vzLKU\",style:{width:\"100%\"},variant:\"aXEldtVqy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3udbzs-container\",nodeId:\"RIVaqE7Bt\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(ImagesGalleryItem,{caption:\"Chef handling pasta in a pot\",height:\"100%\",id:\"RIVaqE7Bt\",image:addImageAlt({src:\"https://framerusercontent.com/images/MglFZvLy7EUutE3S1NVIAuW0CoE.webp\",srcSet:\"https://framerusercontent.com/images/MglFZvLy7EUutE3S1NVIAuW0CoE.webp 720w\"},\"\"),layoutId:\"RIVaqE7Bt\",style:{width:\"100%\"},variant:\"aXEldtVqy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d0v53v-container\",nodeId:\"KqEFhqtKR\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(ImagesGalleryItem,{caption:\"Close up of a bartender using a dropper in a cocktail\",height:\"100%\",id:\"KqEFhqtKR\",image:addImageAlt({src:\"https://framerusercontent.com/images/uBPpfwDDPH0dSL0hSiOFJEG53fA.webp\",srcSet:\"https://framerusercontent.com/images/uBPpfwDDPH0dSL0hSiOFJEG53fA.webp 720w\"},\"\"),layoutId:\"KqEFhqtKR\",style:{width:\"100%\"},variant:\"aXEldtVqy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4j09yl-container\",nodeId:\"mCSnpCBVn\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(ImagesGalleryItem,{caption:\"Signature cocktail\",height:\"100%\",id:\"mCSnpCBVn\",image:addImageAlt({src:\"https://framerusercontent.com/images/uk5geIjG0pZS42CbGZ30Je7g0SQ.webp\",srcSet:\"https://framerusercontent.com/images/uk5geIjG0pZS42CbGZ30Je7g0SQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/uk5geIjG0pZS42CbGZ30Je7g0SQ.webp 960w\"},\"\"),layoutId:\"mCSnpCBVn\",style:{width:\"100%\"},variant:\"aXEldtVqy\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:120,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-200,y:0}}]}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:120,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-400,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1v1ngm6\",\"data-framer-name\":\"row 2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hoxpy3-container\",nodeId:\"whnRSdicq\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(ImagesGalleryItem,{caption:\"Close up of a chef plating a cheeseburger\",height:\"100%\",id:\"whnRSdicq\",image:addImageAlt({src:\"https://framerusercontent.com/images/yCyDHXBhkfTnlrxDNyNUodmg2MQ.webp\",srcSet:\"https://framerusercontent.com/images/yCyDHXBhkfTnlrxDNyNUodmg2MQ.webp 720w\"},\"\"),layoutId:\"whnRSdicq\",style:{width:\"100%\"},variant:\"aXEldtVqy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tfl8li-container\",nodeId:\"Awor6HLr4\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(ImagesGalleryItem,{caption:\"Bartender stirring in a shaker\",height:\"100%\",id:\"Awor6HLr4\",image:addImageAlt({src:\"https://framerusercontent.com/images/OWY4FCqRWhmHMjdZWkH9mfSrr0.webp\",srcSet:\"https://framerusercontent.com/images/OWY4FCqRWhmHMjdZWkH9mfSrr0.webp 720w\"},\"\"),layoutId:\"Awor6HLr4\",style:{width:\"100%\"},variant:\"aXEldtVqy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nn61aw-container\",nodeId:\"iCvfLCq0D\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(ImagesGalleryItem,{caption:\"Chef plating a pasta dish\",height:\"100%\",id:\"iCvfLCq0D\",image:addImageAlt({src:\"https://framerusercontent.com/images/WNVHqNmPgM0tAsLPoLrVoUyuCE.webp\",srcSet:\"https://framerusercontent.com/images/WNVHqNmPgM0tAsLPoLrVoUyuCE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/WNVHqNmPgM0tAsLPoLrVoUyuCE.webp 968w\"},\"\"),layoutId:\"iCvfLCq0D\",style:{width:\"100%\"},variant:\"aXEldtVqy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yrjh9t-container\",nodeId:\"FfMBAaYvz\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(ImagesGalleryItem,{caption:\"Steak dish on a white plate\",height:\"100%\",id:\"FfMBAaYvz\",image:addImageAlt({src:\"https://framerusercontent.com/images/2h1aL10gheFhT7mttb9y91WBTo.webp\",srcSet:\"https://framerusercontent.com/images/2h1aL10gheFhT7mttb9y91WBTo.webp 720w\"},\"\"),layoutId:\"FfMBAaYvz\",style:{width:\"100%\"},variant:\"aXEldtVqy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eqjqei-container\",nodeId:\"T7psR7SYF\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(ImagesGalleryItem,{caption:\"Bartender pouring a cocktail\",height:\"100%\",id:\"T7psR7SYF\",image:addImageAlt({src:\"https://framerusercontent.com/images/Q1OgjPN1hmVcamouILFFmgPc.webp\",srcSet:\"https://framerusercontent.com/images/Q1OgjPN1hmVcamouILFFmgPc.webp 720w\"},\"\"),layoutId:\"T7psR7SYF\",style:{width:\"100%\"},variant:\"aXEldtVqy\",width:\"100%\"})})})]})})]})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-luhjas\",\"data-framer-name\":\"reserve\",id:elementId13,ref:ref5,children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-htnfm1 hidden-1ngnl6a\",\"data-framer-name\":\"widget\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-40,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1plfi89\",\"data-framer-name\":\"image\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TiWLq0Bmy:{background:{alt:\"Portrait of a bartender pouring a cocktail\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:531,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+7811+114.25+0+0+0),pixelHeight:1e3,pixelWidth:750,sizes:\"193px\",src:\"https://framerusercontent.com/images/t53ALpLLkhldyh0YIXAEmL0xE.webp\",srcSet:\"https://framerusercontent.com/images/t53ALpLLkhldyh0YIXAEmL0xE.webp 750w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Portrait of a bartender pouring a cocktail\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:531,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+8019.5+130.5+0+0+0),pixelHeight:1e3,pixelWidth:750,sizes:`max(max(${componentViewport?.width||\"100vw\"} / 2, 1px) / 1.836, 1px)`,src:\"https://framerusercontent.com/images/t53ALpLLkhldyh0YIXAEmL0xE.webp\",srcSet:\"https://framerusercontent.com/images/t53ALpLLkhldyh0YIXAEmL0xE.webp 750w\"},className:\"framer-du0fs0\",\"data-framer-name\":\"img\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-148ojnu\",\"data-framer-name\":\"type\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qetxqq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x1f93r\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, rgb(15, 27, 28))\"},children:\"Riserva il tuo tavolo\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, rgb(15, 27, 28))\"},children:\"Riserva il tuo tavolo\"})}),className:\"framer-17l4bp6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vdeq2s\",\"data-framer-name\":\"body\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, rgb(15, 27, 28))\"},children:\"Sistema rapido di prenotazione.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, rgb(15, 27, 28))\"},children:\"Sistema rapido di prenotazione.\"})}),className:\"framer-2gflz5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5viac\",\"data-styles-preset\":\"rmj4E8YO4\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/393518963929\",motionChild:true,nodeId:\"toeKuJlTU\",openInNewTab:true,scopeId:\"cjv51Cbc9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Contattaci ora \u2192\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5viac\",\"data-styles-preset\":\"rmj4E8YO4\",children:/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/393518963929\",motionChild:true,nodeId:\"toeKuJlTU\",openInNewTab:true,scopeId:\"cjv51Cbc9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fsrzda\",\"data-styles-preset\":\"AS4PcgcTr\",children:\"Contattaci ora \u2192\"})})})}),className:\"framer-sucnro\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{y:(componentViewport?.y||0)+0+1400+0+9711+0+0+64+0+0+379.5},TiWLq0Bmy:{y:(componentViewport?.y||0)+0+1400+0+7811+72+0+0+42+341.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1400+0+8019.5+125+0+0+0+379.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p1dlqn-container\",nodeId:\"rNZX6AGXN\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(Button,{GFjGWu41b:\"Prenota ora\",height:\"100%\",i1pHEuxh6:false,id:\"rNZX6AGXN\",layoutId:\"rNZX6AGXN\",rPOZChZ9L:\"https://forms.pienissimo.com/?hash=kBh6qibb67e8RUzDUPWgrQkLItd2SwdW&id=Bh0l3Y\",style:{height:\"100%\"},T8JH1kstK:true,variant:\"pCGGpnEiP\",width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-rzkel0 hidden-gymc1q hidden-w6zqkh\",\"data-framer-name\":\"convertirti\",id:elementId14,ref:ref17,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ta0h8d\",\"data-framer-name\":\"1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{background:{alt:\"Chef cutting red bell peppers\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+9711+0+0+64+467.5+0+0+0),pixelHeight:1e3,pixelWidth:750,sizes:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,src:\"https://framerusercontent.com/images/t53ALpLLkhldyh0YIXAEmL0xE.webp\",srcSet:\"https://framerusercontent.com/images/t53ALpLLkhldyh0YIXAEmL0xE.webp 750w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:267,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:-15,y:-10}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Chef cutting red bell peppers\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,pixelHeight:1e3,pixelWidth:750,src:\"https://framerusercontent.com/images/t53ALpLLkhldyh0YIXAEmL0xE.webp\",srcSet:\"https://framerusercontent.com/images/t53ALpLLkhldyh0YIXAEmL0xE.webp 750w\"},className:\"framer-12foj9d\",\"data-framer-name\":\"img\"})})})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-144pqn6\",\"data-framer-name\":\"Bevi responsabilmente\",id:elementId15,ref:ref18,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kntz0v\",\"data-framer-name\":\"image\",id:elementId16,ref:ref19,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{background:{alt:\"Two chefs behind the kitchen counter\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+10545+0+0+0+0),pixelHeight:742,pixelWidth:1500,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qZOnxFXiHMTBP8qxUkRRd37EFY.webp\",srcSet:\"https://framerusercontent.com/images/qZOnxFXiHMTBP8qxUkRRd37EFY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/qZOnxFXiHMTBP8qxUkRRd37EFY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/qZOnxFXiHMTBP8qxUkRRd37EFY.webp 1500w\"}},TiWLq0Bmy:{background:{alt:\"Two chefs behind the kitchen counter\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+8378.5+0+0+0+0),pixelHeight:742,pixelWidth:1500,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qZOnxFXiHMTBP8qxUkRRd37EFY.webp\",srcSet:\"https://framerusercontent.com/images/qZOnxFXiHMTBP8qxUkRRd37EFY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/qZOnxFXiHMTBP8qxUkRRd37EFY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/qZOnxFXiHMTBP8qxUkRRd37EFY.webp 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Two chefs behind the kitchen counter\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+8652+0+0+0+0),pixelHeight:742,pixelWidth:1500,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qZOnxFXiHMTBP8qxUkRRd37EFY.webp\",srcSet:\"https://framerusercontent.com/images/qZOnxFXiHMTBP8qxUkRRd37EFY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/qZOnxFXiHMTBP8qxUkRRd37EFY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/qZOnxFXiHMTBP8qxUkRRd37EFY.webp 1500w\"},className:\"framer-1jxqedb\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xp3xuw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l5t1x5\",\"data-styles-preset\":\"PvmvDyFsZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-174080a1-98de-43c5-8523-cd2c7e899733, rgb(229, 216, 203))\"},children:\"Eclettico \\xe8 l\u2019arte di mixare gusti diversi rispettando i principi dell\u2019armonia. Gli eccessi non ci divertono.\"})}),className:\"framer-14qgvey\",\"data-framer-name\":\"Small lot coffess worth being snobby over\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f31e7d26-b109-456c-b275-c53864e9aa91, rgb(255, 255, 255))\"},children:\"Bevi responsabilmente.\"})}),className:\"framer-191eq0f\",\"data-framer-name\":\"Small lot coffess worth being snobby over\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1ofhrex\",\"data-framer-name\":\"visit\",id:elementId17,ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pf49lv\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l5t1x5\",\"data-styles-preset\":\"PvmvDyFsZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0ba737d5-a4c0-4e25-a9c2-124db9c3e0bd, rgb(175, 145, 69))\"},children:\"Visitaci\"})}),className:\"framer-y1oiqf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Via A. Grandi, 28 Cant\\xf9\"})}),className:\"framer-1tjph2r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+1400+0+10895+48+0+8+262},TiWLq0Bmy:{width:`max((${componentViewport?.width||\"100vw\"} - 96px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1400+0+8852.5+41.5+0+262}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1400+0+9126+40+0+527,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1shy78t-container\",nodeId:\"aP3Bta1Th\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(InfoHours,{height:\"100%\",id:\"aP3Bta1Th\",layoutId:\"aP3Bta1Th\",style:{width:\"100%\"},variant:\"Kf666yz_O\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{y:(componentViewport?.y||0)+0+1400+0+10895+48+0+8+350},TiWLq0Bmy:{y:(componentViewport?.y||0)+0+1400+0+8852.5+41.5+0+350}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1400+0+9126+40+0+615,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ejd5i7-container\",nodeId:\"sr_ZmsYUR\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(Button,{GFjGWu41b:\"Indicazioni stradali\",height:\"100%\",i1pHEuxh6:false,id:\"sr_ZmsYUR\",layoutId:\"sr_ZmsYUR\",rPOZChZ9L:\"https://www.google.com/maps/dir//Via+A.+Grandi,+28,+22063+Cant%C3%B9+CO/@45.7422665,9.0370928,12z/data=!4m8!4m7!1m0!1m5!1m1!1s0x4786991058f4cf0b:0xc9f1ff735c0a158b!2m2!1d9.1194934!2d45.7422961?entry=ttu\",style:{height:\"100%\"},T8JH1kstK:true,variant:\"sfm7PhDpm\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x0w0ef\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{background:{alt:\"Woman pulling back a barstool\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+10895+48+430+0+0),pixelHeight:960,pixelWidth:720,sizes:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,src:\"https://framerusercontent.com/images/ocJ0GwuUt3mBKvprPfGJVRwU9vw.webp\",srcSet:\"https://framerusercontent.com/images/ocJ0GwuUt3mBKvprPfGJVRwU9vw.webp 720w\"}},TiWLq0Bmy:{background:{alt:\"Woman pulling back a barstool\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+8852.5+32+0+0),pixelHeight:960,pixelWidth:720,sizes:`max((${componentViewport?.width||\"100vw\"} - 96px) / 2, 1px)`,src:\"https://framerusercontent.com/images/ocJ0GwuUt3mBKvprPfGJVRwU9vw.webp\",srcSet:\"https://framerusercontent.com/images/ocJ0GwuUt3mBKvprPfGJVRwU9vw.webp 720w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.25,skewX:0,skewY:0,x:1,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Woman pulling back a barstool\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1400+0+9126+40+0+0),pixelHeight:960,pixelWidth:720,sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 1px)`,src:\"https://framerusercontent.com/images/ocJ0GwuUt3mBKvprPfGJVRwU9vw.webp\",srcSet:\"https://framerusercontent.com/images/ocJ0GwuUt3mBKvprPfGJVRwU9vw.webp 720w\"},className:\"framer-1h4vs7r\",\"data-framer-name\":\"img\",style:{transformPerspective:1200}})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pn4g5\",\"data-framer-name\":\"image-feed\",id:elementId18,ref:ref20,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{y:(componentViewport?.y||0)+0+1400+0+11821+0+0},TiWLq0Bmy:{y:(componentViewport?.y||0)+0+1400+0+9325.5+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1400+0+10126+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mwbtf5-container\",nodeId:\"rY6fKMmM1\",scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{variant:\"KDkGr4SnD\"}},children:/*#__PURE__*/_jsx(ImagesImageGrid,{height:\"100%\",id:\"rY6fKMmM1\",layoutId:\"rY6fKMmM1\",style:{width:\"100%\"},variant:\"Q5fQGMr3k\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{y:(componentViewport?.y||0)+0+13521},TiWLq0Bmy:{y:(componentViewport?.y||0)+0+11025.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:532,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+11826,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ozj93s-container\",\"data-framer-name\":\"footer\",id:elementId19,name:\"footer\",nodeId:\"yzFFdWPEu\",ref:ref21,scopeId:\"cjv51Cbc9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FXqVWYrMe:{variant:\"lolLCkDms\"},TiWLq0Bmy:{variant:\"s32wo8xVK\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"yzFFdWPEu\",layoutId:\"yzFFdWPEu\",name:\"footer\",style:{width:\"100%\"},variant:\"TuaAWMCF9\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JUv8j.framer-11ofbxc, .framer-JUv8j .framer-11ofbxc { display: block; }\",\".framer-JUv8j.framer-gymc1q { align-content: center; align-items: center; background-color: var(--token-1ebda09f-1ec3-428b-80af-06f88ae5f131, #fff9f3); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-JUv8j .framer-f5vild-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 8; }\",\".framer-JUv8j.framer-a2f01l { inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-JUv8j.framer-3vn45c-container { flex: none; height: 100%; left: 0px; position: fixed; top: calc(50.00000000000002% - 100% / 2); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-JUv8j .framer-mvcoez { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: fixed; top: 0px; width: 100%; z-index: 3; }\",\".framer-JUv8j .framer-m26z0c { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px; pointer-events: none; position: relative; user-select: none; width: 1px; }\",\".framer-JUv8j .framer-a68g0l { align-content: flex-start; align-items: flex-start; background-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #0f1b1c); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-JUv8j .framer-u9t4al { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; opacity: 0.5; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-JUv8j .framer-ymeh7g { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-JUv8j .framer-1mahqa { align-content: flex-start; align-items: flex-start; background-color: var(--token-9ed11789-89c5-4deb-9c04-f475d86fe735, #e9e9e2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 152px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JUv8j .framer-efmhlt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JUv8j .framer-b77u6f { align-content: flex-start; align-items: flex-start; background-color: var(--token-9ed11789-89c5-4deb-9c04-f475d86fe735, #e9e9e2); display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-JUv8j .framer-1s39j0s { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 9; }\",\".framer-JUv8j .framer-1jz0w3f { aspect-ratio: 0.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1800px); overflow: visible; position: relative; width: 100%; }\",\".framer-JUv8j .framer-8cwz6x { align-content: flex-start; align-items: flex-start; background-color: var(--token-9ed11789-89c5-4deb-9c04-f475d86fe735, #171c14); display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-JUv8j .framer-wd5l53 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: center; left: calc(50.00000000000002% - min(600px, 100%) / 2); max-width: 600px; overflow: visible; padding: 200px 40px 0px 40px; pointer-events: auto; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 8; }\",\".framer-JUv8j .framer-lrbl41 { -webkit-user-select: auto; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; user-select: auto; width: 100%; }\",\".framer-JUv8j .framer-13ovp3v, .framer-JUv8j .framer-11rf550, .framer-JUv8j .framer-qxgeos { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JUv8j .framer-1cjddkr, .framer-JUv8j .framer-1jxv7ao { flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre; width: 1px; }\",\".framer-JUv8j .framer-129klxe { -webkit-user-select: auto; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; user-select: auto; width: 100%; }\",\".framer-JUv8j .framer-agjvc { flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-JUv8j .framer-269g7u { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JUv8j .framer-1a3dklo, .framer-JUv8j .framer-cyq5hh, .framer-JUv8j .framer-pfobae, .framer-JUv8j .framer-n8djzl, .framer-JUv8j .framer-12871ds, .framer-JUv8j .framer-hrb6vf, .framer-JUv8j .framer-1j63cvs, .framer-JUv8j .framer-1ly0s0o, .framer-JUv8j .framer-5dqhb6, .framer-JUv8j .framer-18uccfl, .framer-JUv8j .framer-hk55fh, .framer-JUv8j .framer-ogbanm, .framer-JUv8j .framer-1lyro5q, .framer-JUv8j .framer-13flho, .framer-JUv8j .framer-sucnro { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JUv8j .framer-vl1zf2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JUv8j .framer-wrmzq3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-JUv8j .framer-aux2w0, .framer-JUv8j .framer-1q74b5q, .framer-JUv8j .framer-808xdu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 8px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JUv8j .framer-bdak98 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JUv8j .framer-c9m7pu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 40vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-JUv8j .framer-1jgtdeq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JUv8j .framer-xfhtzl { align-content: center; align-items: center; background-color: var(--token-1ebda09f-1ec3-428b-80af-06f88ae5f131, #fff9f3); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; min-height: 800px; overflow: visible; padding: 125px 40px 50px 40px; position: relative; width: 100%; z-index: 4; }\",\".framer-JUv8j .framer-fw40jo, .framer-JUv8j .framer-swlj9n { 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: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-JUv8j .framer-1vepsjq { 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-JUv8j .framer-570g2z, .framer-JUv8j .framer-bj9elr, .framer-JUv8j .framer-iu1l90, .framer-JUv8j .framer-1gwxlct, .framer-JUv8j .framer-1cykgzw, .framer-JUv8j .framer-cltihw, .framer-JUv8j .framer-gj020j, .framer-JUv8j .framer-17l4bp6 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JUv8j .framer-19r9e2q-container { flex: none; height: 541px; position: relative; width: 100%; }\",\".framer-JUv8j .framer-dtksiq, .framer-JUv8j .framer-15qcfn6, .framer-JUv8j .framer-34o8pr, .framer-JUv8j .framer-w8h5ru, .framer-JUv8j .framer-huen07, .framer-JUv8j .framer-153x0sm, .framer-JUv8j .framer-p1dgov, .framer-JUv8j .framer-oj0a7u, .framer-JUv8j .framer-w346ep, .framer-JUv8j .framer-16388qy, .framer-JUv8j .framer-jtsn9r, .framer-JUv8j .framer-1hazutf, .framer-JUv8j .framer-3bkohp, .framer-JUv8j .framer-1lgo0x8, .framer-JUv8j .framer-wk31tl, .framer-JUv8j .framer-dsj5yb, .framer-JUv8j .framer-blac27, .framer-JUv8j .framer-3sg6g8, .framer-JUv8j .framer-e42ul8, .framer-JUv8j .framer-17gjpy5, .framer-JUv8j .framer-31nsz1, .framer-JUv8j .framer-19hq24x, .framer-JUv8j .framer-16ub7x9, .framer-JUv8j .framer-mr3ic1, .framer-JUv8j .framer-1yyecek { align-content: center; align-items: center; background-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #1d1c1a); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 517px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 305px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JUv8j .framer-1npedf5, .framer-JUv8j .framer-14apcot, .framer-JUv8j .framer-v3zu0, .framer-JUv8j .framer-1tpsuda, .framer-JUv8j .framer-yhzcx2, .framer-JUv8j .framer-fypcjf, .framer-JUv8j .framer-1e74wcl, .framer-JUv8j .framer-1je7bxi, .framer-JUv8j .framer-ty3n2k, .framer-JUv8j .framer-12bggwv, .framer-JUv8j .framer-1cr1a9b, .framer-JUv8j .framer-rwssfd, .framer-JUv8j .framer-pr2lp0, .framer-JUv8j .framer-1fbqhgu, .framer-JUv8j .framer-1honof, .framer-JUv8j .framer-wmfty7, .framer-JUv8j .framer-16pp394, .framer-JUv8j .framer-1vvg7rv, .framer-JUv8j .framer-1ag57ub, .framer-JUv8j .framer-1jtkee2, .framer-JUv8j .framer-pk8hdx, .framer-JUv8j .framer-1wgidv0, .framer-JUv8j .framer-1ymb97c, .framer-JUv8j .framer-1pzuw9b, .framer-JUv8j .framer-1cibywa, .framer-JUv8j .framer-qi2q3t { flex: none; height: 215px; overflow: hidden; position: relative; width: 305px; }\",\".framer-JUv8j .framer-1jv3x2p, .framer-JUv8j .framer-1i6st0g, .framer-JUv8j .framer-19qkpgr, .framer-JUv8j .framer-12aorj0, .framer-JUv8j .framer-1vorohb, .framer-JUv8j .framer-hhcbww, .framer-JUv8j .framer-og7xx2, .framer-JUv8j .framer-dgpmyv, .framer-JUv8j .framer-1a9vap4, .framer-JUv8j .framer-17rz938, .framer-JUv8j .framer-19f599k, .framer-JUv8j .framer-jrd9eq, .framer-JUv8j .framer-1tmaida, .framer-JUv8j .framer-1rjzv1a, .framer-JUv8j .framer-1waq5rw, .framer-JUv8j .framer-l6voly, .framer-JUv8j .framer-1dctfms, .framer-JUv8j .framer-1jdzg9l, .framer-JUv8j .framer-1g21czv, .framer-JUv8j .framer-q0egiw, .framer-JUv8j .framer-7oe1tr, .framer-JUv8j .framer-1vv8hc9, .framer-JUv8j .framer-bn0jbq, .framer-JUv8j .framer-28bn86, .framer-JUv8j .framer-1khmy8u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 26px 0px 0px 0px; position: relative; width: 80%; }\",\".framer-JUv8j .framer-azg90f, .framer-JUv8j .framer-4sq0f9, .framer-JUv8j .framer-179thp7, .framer-JUv8j .framer-wx1drj, .framer-JUv8j .framer-1so46q3, .framer-JUv8j .framer-118m11g, .framer-JUv8j .framer-dkpmbz, .framer-JUv8j .framer-xtyewd, .framer-JUv8j .framer-pdgbe2, .framer-JUv8j .framer-2w7cuh, .framer-JUv8j .framer-hvc65z, .framer-JUv8j .framer-1o1tim2, .framer-JUv8j .framer-au38df, .framer-JUv8j .framer-1oz8w5b, .framer-JUv8j .framer-1svp3jo, .framer-JUv8j .framer-7wky1u, .framer-JUv8j .framer-1ljmvb5, .framer-JUv8j .framer-7rce3m, .framer-JUv8j .framer-tedevc, .framer-JUv8j .framer-g546ij, .framer-JUv8j .framer-1th14p8, .framer-JUv8j .framer-15qewiv, .framer-JUv8j .framer-88hjbk, .framer-JUv8j .framer-13wlkub, .framer-JUv8j .framer-1fazrk6, .framer-JUv8j .framer-t4cztv, .framer-JUv8j .framer-1x6k907, .framer-JUv8j .framer-1ybek07, .framer-JUv8j .framer-1iomjw, .framer-JUv8j .framer-8tlrxl, .framer-JUv8j .framer-84gzep, .framer-JUv8j .framer-1q7gn55, .framer-JUv8j .framer-dtiik2, .framer-JUv8j .framer-1asu8sb, .framer-JUv8j .framer-15r3n3d, .framer-JUv8j .framer-1mejnbj, .framer-JUv8j .framer-bkby3l, .framer-JUv8j .framer-1g6ligk, .framer-JUv8j .framer-10bbi4u, .framer-JUv8j .framer-2y17jx, .framer-JUv8j .framer-ggxw1w, .framer-JUv8j .framer-4u2tb5, .framer-JUv8j .framer-zxejqc, .framer-JUv8j .framer-1ocz5dc, .framer-JUv8j .framer-v5jro, .framer-JUv8j .framer-riv02a, .framer-JUv8j .framer-1ed5fpu, .framer-JUv8j .framer-tb2rv5, .framer-JUv8j .framer-mgu56f, .framer-JUv8j .framer-17tfs86, .framer-JUv8j .framer-3cymy8, .framer-JUv8j .framer-1vm6tsd { --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-JUv8j .framer-t7uyy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 26px 0px 26px 0px; position: relative; width: 80%; }\",\".framer-JUv8j .framer-wfxxbc { align-content: center; align-items: center; background-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #1d1c1a); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 517px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 305px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JUv8j .framer-16dbqmr-container, .framer-JUv8j .framer-bvfq5a-container, .framer-JUv8j .framer-ezrm5h-container, .framer-JUv8j .framer-bqtbq4-container, .framer-JUv8j .framer-cgm5wm-container, .framer-JUv8j .framer-p1dlqn-container, .framer-JUv8j .framer-ejd5i7-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-JUv8j .framer-pp5n2g { align-content: center; align-items: center; background-color: var(--token-1ebda09f-1ec3-428b-80af-06f88ae5f131, #fff9f3); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; min-height: 800px; overflow: visible; padding: 80px; position: relative; width: 100%; z-index: 4; }\",\".framer-JUv8j .framer-3rlps5 { aspect-ratio: 0.9333333333333333 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 514px); overflow: visible; position: relative; width: 1px; z-index: 1; }\",\".framer-JUv8j .framer-37ljcc { align-content: center; align-items: center; aspect-ratio: 0.6666666666666666 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 396px); justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: -1px; top: 0px; width: 55%; }\",\".framer-JUv8j .framer-sk2d65 { border-bottom-right-radius: 150px; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JUv8j .framer-11300gk { align-content: center; align-items: center; aspect-ratio: 0.6669675090252708 / 1; border-bottom-left-radius: 150px; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 396px); justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; width: 55%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JUv8j .framer-18ye9ce { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-JUv8j .framer-1woqwat { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: auto; justify-content: center; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-JUv8j .framer-1pgxc0f, .framer-JUv8j .framer-17dii2m { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JUv8j .framer-ur3xcn { align-content: flex-start; align-items: flex-start; background-color: var(--token-ce9e87c6-6b3f-4fdb-b05b-4d781ce573bd, #6d7a62); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-JUv8j .framer-1hmm62u { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: sticky; top: 48px; width: 1px; z-index: 3; }\",\".framer-JUv8j .framer-u5ilhs, .framer-JUv8j .framer-1a2uqqw, .framer-JUv8j .framer-18zjpbe { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1px; }\",\".framer-JUv8j .framer-1oxptqb { align-content: flex-start; align-items: flex-start; aspect-ratio: 0.6666666666666666 / 1; background-color: var(--token-ce9e87c6-6b3f-4fdb-b05b-4d781ce573bd, #6d7a62); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 780px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-JUv8j .framer-12dab0k, .framer-JUv8j .framer-73vsmj, .framer-JUv8j .framer-7gygvr { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-JUv8j .framer-1gqsw9g, .framer-JUv8j .framer-1j7prwm { align-content: flex-start; align-items: flex-start; background-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #1d1c1a); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 88px 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-JUv8j .framer-1ofajt3, .framer-JUv8j .framer-1c9yq65 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: sticky; top: 48px; width: 1px; z-index: 3; }\",\".framer-JUv8j .framer-q3v9hi { align-content: flex-start; align-items: flex-start; aspect-ratio: 0.6666666666666666 / 1; background-color: var(--token-ce9e87c6-6b3f-4fdb-b05b-4d781ce573bd, #6d7a62); border-top-left-radius: 200px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 780px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-JUv8j .framer-1wosrsc { align-content: flex-start; align-items: flex-start; aspect-ratio: 0.6666666666666666 / 1; background-color: var(--token-ce9e87c6-6b3f-4fdb-b05b-4d781ce573bd, #6d7a62); border-top-right-radius: 200px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 780px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-JUv8j .framer-11uwicj { --border-bottom-width: 0px; --border-color: var(--token-0ba737d5-a4c0-4e25-a9c2-124db9c3e0bd, #af9145); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-1ebda09f-1ec3-428b-80af-06f88ae5f131, #fff9f3); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 125px 40px 125px 40px; position: relative; width: 100%; z-index: 4; }\",\".framer-JUv8j .framer-1hpgdlv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-JUv8j .framer-1cjnkrx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JUv8j .framer-k48szk, .framer-JUv8j .framer-14qgvey { flex: none; height: auto; max-width: 600px; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JUv8j .framer-1b30ey5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-JUv8j .framer-16b6xl5 { align-content: center; align-items: center; background-color: var(--token-174080a1-98de-43c5-8523-cd2c7e899733, #e5d8cb); border-bottom-left-radius: 200px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 510px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 452px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JUv8j .framer-147bf0 { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-JUv8j .framer-2cpgrm, .framer-JUv8j .framer-144pqn6 { align-content: center; align-items: center; background-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #1d1c1a); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-JUv8j .framer-f9tfj9, .framer-JUv8j .framer-kntz0v { align-content: center; align-items: center; background-color: var(--token-174080a1-98de-43c5-8523-cd2c7e899733, #e5d8cb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JUv8j .framer-15ub4mi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 88px 0px 88px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-JUv8j .framer-vir0zq { align-content: center; align-items: center; background: radial-gradient(50% 75% at 50% 50%, #000000 0%, rgba(0, 0, 0, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 64%; }\",\".framer-JUv8j .framer-1vaqfq3, .framer-JUv8j .framer-191eq0f { flex: none; height: auto; overflow: visible; position: relative; text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JUv8j .framer-4izt7y { flex: none; height: auto; overflow: hidden; position: relative; text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.67); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JUv8j .framer-1g1bf4h { align-content: flex-start; align-items: flex-start; background-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #0f1b1c); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 125px 40px 88px 40px; position: relative; width: 100%; z-index: 3; }\",\".framer-JUv8j .framer-17m0hek { flex: none; height: auto; overflow: hidden; position: sticky; top: 80px; white-space: pre-wrap; width: 254px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-JUv8j .framer-xyntd5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-JUv8j .framer-axsd0u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JUv8j .framer-kewg8e { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-JUv8j .framer-10cnsdg { align-content: center; align-items: center; aspect-ratio: 0.7466666666666667 / 1; background-color: var(--token-0f4c8d47-2151-4fab-9887-bdd5e863a19c, rgba(255, 255, 255, 0.08)); border-top-left-radius: 200px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 526px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JUv8j .framer-1wm91e, .framer-JUv8j .framer-x06jsg, .framer-JUv8j .framer-15l5ot0, .framer-JUv8j .framer-du0fs0 { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; z-index: 1; }\",\".framer-JUv8j .framer-13lrun6 { align-content: center; align-items: center; aspect-ratio: 0.7466666666666667 / 1; background-color: var(--token-0f4c8d47-2151-4fab-9887-bdd5e863a19c, rgba(255, 255, 255, 0.08)); border-bottom-right-radius: 200px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 530px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 101%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JUv8j .framer-cd87zg { align-content: center; align-items: center; aspect-ratio: 0.7466666666666667 / 1; background-color: var(--token-0f4c8d47-2151-4fab-9887-bdd5e863a19c, rgba(255, 255, 255, 0.08)); border-bottom-left-radius: 200px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 530px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 101%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JUv8j .framer-wdc6r9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 120px; width: 1px; z-index: 1; }\",\".framer-JUv8j .framer-x84jyp { align-content: center; align-items: center; background-color: var(--token-28080534-ce0d-4a80-8b1f-16507cde6186, #0f1b1c); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 88px 0px 88px 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-JUv8j .framer-76a48x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-JUv8j .framer-j5xums { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-JUv8j .framer-alkyy-container, .framer-JUv8j .framer-1b5l7mg-container, .framer-JUv8j .framer-3udbzs-container, .framer-JUv8j .framer-1d0v53v-container, .framer-JUv8j .framer-4j09yl-container, .framer-JUv8j .framer-hoxpy3-container, .framer-JUv8j .framer-tfl8li-container, .framer-JUv8j .framer-1nn61aw-container, .framer-JUv8j .framer-1yrjh9t-container, .framer-JUv8j .framer-eqjqei-container { flex: none; height: auto; position: relative; width: 25%; }\",\".framer-JUv8j .framer-jwymrm-container { flex: none; height: auto; position: relative; width: 25%; z-index: 8; }\",\".framer-JUv8j .framer-1v1ngm6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-JUv8j .framer-luhjas { align-content: center; align-items: center; background-color: var(--token-174080a1-98de-43c5-8523-cd2c7e899733, #fff9f3); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 125px 0px 88px 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-JUv8j .framer-htnfm1 { align-content: center; align-items: center; background-color: var(--token-174080a1-98de-43c5-8523-cd2c7e899733, #e5d8cb); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-JUv8j .framer-1plfi89 { align-content: center; align-items: center; aspect-ratio: 0.7466666666666667 / 1; background-color: var(--token-0f4c8d47-2151-4fab-9887-bdd5e863a19c, rgba(255, 255, 255, 0.08)); border-bottom-left-radius: 130px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 409px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 54%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JUv8j .framer-148ojnu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 1px; }\",\".framer-JUv8j .framer-qetxqq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JUv8j .framer-x1f93r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JUv8j .framer-1vdeq2s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JUv8j .framer-2gflz5 { flex: none; height: auto; max-width: 440px; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JUv8j .framer-rzkel0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-JUv8j .framer-1ta0h8d { align-content: center; align-items: center; background-color: var(--token-174080a1-98de-43c5-8523-cd2c7e899733, #e5d8cb); border-bottom-left-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 239px; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 64px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-JUv8j .framer-12foj9d { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; z-index: 1; }\",\".framer-JUv8j .framer-1jxqedb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 125px 0px 125px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-JUv8j .framer-xp3xuw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 71%; }\",\".framer-JUv8j .framer-1ofhrex { align-content: center; align-items: center; background-color: var(--token-1ebda09f-1ec3-428b-80af-06f88ae5f131, #e9e9e2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 100vh; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 100%; z-index: 4; }\",\".framer-JUv8j .framer-pf49lv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-JUv8j .framer-y1oiqf { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-JUv8j .framer-1tjph2r { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-JUv8j .framer-1shy78t-container, .framer-JUv8j .framer-mwbtf5-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-JUv8j .framer-x0w0ef { align-content: center; align-items: center; background-color: var(--token-174080a1-98de-43c5-8523-cd2c7e899733, #f6f5f2); border-bottom-left-radius: 200px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 5; }\",\".framer-JUv8j .framer-1h4vs7r { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; }\",\".framer-JUv8j .framer-pn4g5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-JUv8j .framer-ozj93s-container { flex: none; height: auto; position: relative; width: 100%; z-index: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JUv8j.framer-gymc1q, .framer-JUv8j .framer-mvcoez, .framer-JUv8j .framer-m26z0c, .framer-JUv8j .framer-a68g0l, .framer-JUv8j .framer-u9t4al, .framer-JUv8j .framer-ymeh7g, .framer-JUv8j .framer-1mahqa, .framer-JUv8j .framer-efmhlt, .framer-JUv8j .framer-b77u6f, .framer-JUv8j .framer-1s39j0s, .framer-JUv8j .framer-8cwz6x, .framer-JUv8j .framer-wd5l53, .framer-JUv8j .framer-lrbl41, .framer-JUv8j .framer-13ovp3v, .framer-JUv8j .framer-11rf550, .framer-JUv8j .framer-129klxe, .framer-JUv8j .framer-qxgeos, .framer-JUv8j .framer-269g7u, .framer-JUv8j .framer-vl1zf2, .framer-JUv8j .framer-wrmzq3, .framer-JUv8j .framer-aux2w0, .framer-JUv8j .framer-1q74b5q, .framer-JUv8j .framer-bdak98, .framer-JUv8j .framer-808xdu, .framer-JUv8j .framer-c9m7pu, .framer-JUv8j .framer-1jgtdeq, .framer-JUv8j .framer-xfhtzl, .framer-JUv8j .framer-fw40jo, .framer-JUv8j .framer-1vepsjq, .framer-JUv8j .framer-dtksiq, .framer-JUv8j .framer-1jv3x2p, .framer-JUv8j .framer-15qcfn6, .framer-JUv8j .framer-1i6st0g, .framer-JUv8j .framer-34o8pr, .framer-JUv8j .framer-19qkpgr, .framer-JUv8j .framer-w8h5ru, .framer-JUv8j .framer-t7uyy, .framer-JUv8j .framer-huen07, .framer-JUv8j .framer-12aorj0, .framer-JUv8j .framer-wfxxbc, .framer-JUv8j .framer-1vorohb, .framer-JUv8j .framer-153x0sm, .framer-JUv8j .framer-hhcbww, .framer-JUv8j .framer-p1dgov, .framer-JUv8j .framer-og7xx2, .framer-JUv8j .framer-oj0a7u, .framer-JUv8j .framer-dgpmyv, .framer-JUv8j .framer-w346ep, .framer-JUv8j .framer-1a9vap4, .framer-JUv8j .framer-16388qy, .framer-JUv8j .framer-17rz938, .framer-JUv8j .framer-jtsn9r, .framer-JUv8j .framer-19f599k, .framer-JUv8j .framer-1hazutf, .framer-JUv8j .framer-jrd9eq, .framer-JUv8j .framer-3bkohp, .framer-JUv8j .framer-1tmaida, .framer-JUv8j .framer-1lgo0x8, .framer-JUv8j .framer-1rjzv1a, .framer-JUv8j .framer-wk31tl, .framer-JUv8j .framer-1waq5rw, .framer-JUv8j .framer-dsj5yb, .framer-JUv8j .framer-l6voly, .framer-JUv8j .framer-blac27, .framer-JUv8j .framer-1dctfms, .framer-JUv8j .framer-3sg6g8, .framer-JUv8j .framer-1jdzg9l, .framer-JUv8j .framer-e42ul8, .framer-JUv8j .framer-1g21czv, .framer-JUv8j .framer-17gjpy5, .framer-JUv8j .framer-q0egiw, .framer-JUv8j .framer-31nsz1, .framer-JUv8j .framer-7oe1tr, .framer-JUv8j .framer-19hq24x, .framer-JUv8j .framer-1vv8hc9, .framer-JUv8j .framer-16ub7x9, .framer-JUv8j .framer-bn0jbq, .framer-JUv8j .framer-mr3ic1, .framer-JUv8j .framer-28bn86, .framer-JUv8j .framer-1yyecek, .framer-JUv8j .framer-1khmy8u, .framer-JUv8j .framer-swlj9n, .framer-JUv8j .framer-pp5n2g, .framer-JUv8j .framer-37ljcc, .framer-JUv8j .framer-11300gk, .framer-JUv8j .framer-1woqwat, .framer-JUv8j .framer-1pgxc0f, .framer-JUv8j .framer-ur3xcn, .framer-JUv8j .framer-1hmm62u, .framer-JUv8j .framer-17dii2m, .framer-JUv8j .framer-u5ilhs, .framer-JUv8j .framer-1oxptqb, .framer-JUv8j .framer-1gqsw9g, .framer-JUv8j .framer-1ofajt3, .framer-JUv8j .framer-1a2uqqw, .framer-JUv8j .framer-q3v9hi, .framer-JUv8j .framer-1j7prwm, .framer-JUv8j .framer-18zjpbe, .framer-JUv8j .framer-1wosrsc, .framer-JUv8j .framer-1c9yq65, .framer-JUv8j .framer-11uwicj, .framer-JUv8j .framer-1hpgdlv, .framer-JUv8j .framer-1cjnkrx, .framer-JUv8j .framer-1b30ey5, .framer-JUv8j .framer-16b6xl5, .framer-JUv8j .framer-2cpgrm, .framer-JUv8j .framer-f9tfj9, .framer-JUv8j .framer-15ub4mi, .framer-JUv8j .framer-vir0zq, .framer-JUv8j .framer-1g1bf4h, .framer-JUv8j .framer-xyntd5, .framer-JUv8j .framer-axsd0u, .framer-JUv8j .framer-kewg8e, .framer-JUv8j .framer-10cnsdg, .framer-JUv8j .framer-13lrun6, .framer-JUv8j .framer-cd87zg, .framer-JUv8j .framer-wdc6r9, .framer-JUv8j .framer-x84jyp, .framer-JUv8j .framer-76a48x, .framer-JUv8j .framer-j5xums, .framer-JUv8j .framer-1v1ngm6, .framer-JUv8j .framer-luhjas, .framer-JUv8j .framer-htnfm1, .framer-JUv8j .framer-1plfi89, .framer-JUv8j .framer-148ojnu, .framer-JUv8j .framer-qetxqq, .framer-JUv8j .framer-x1f93r, .framer-JUv8j .framer-1vdeq2s, .framer-JUv8j .framer-rzkel0, .framer-JUv8j .framer-1ta0h8d, .framer-JUv8j .framer-144pqn6, .framer-JUv8j .framer-kntz0v, .framer-JUv8j .framer-1jxqedb, .framer-JUv8j .framer-xp3xuw, .framer-JUv8j .framer-1ofhrex, .framer-JUv8j .framer-pf49lv, .framer-JUv8j .framer-x0w0ef, .framer-JUv8j .framer-pn4g5 { gap: 0px; } .framer-JUv8j.framer-gymc1q > *, .framer-JUv8j .framer-m26z0c > *, .framer-JUv8j .framer-ymeh7g > *, .framer-JUv8j .framer-lrbl41 > *, .framer-JUv8j .framer-vl1zf2 > *, .framer-JUv8j .framer-wrmzq3 > *, .framer-JUv8j .framer-c9m7pu > *, .framer-JUv8j .framer-1jgtdeq > *, .framer-JUv8j .framer-37ljcc > *, .framer-JUv8j .framer-1oxptqb > *, .framer-JUv8j .framer-q3v9hi > *, .framer-JUv8j .framer-1wosrsc > *, .framer-JUv8j .framer-htnfm1 > *, .framer-JUv8j .framer-148ojnu > *, .framer-JUv8j .framer-x0w0ef > *, .framer-JUv8j .framer-pn4g5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-JUv8j.framer-gymc1q > :first-child, .framer-JUv8j .framer-m26z0c > :first-child, .framer-JUv8j .framer-ymeh7g > :first-child, .framer-JUv8j .framer-wd5l53 > :first-child, .framer-JUv8j .framer-lrbl41 > :first-child, .framer-JUv8j .framer-129klxe > :first-child, .framer-JUv8j .framer-269g7u > :first-child, .framer-JUv8j .framer-vl1zf2 > :first-child, .framer-JUv8j .framer-wrmzq3 > :first-child, .framer-JUv8j .framer-c9m7pu > :first-child, .framer-JUv8j .framer-1jgtdeq > :first-child, .framer-JUv8j .framer-xfhtzl > :first-child, .framer-JUv8j .framer-fw40jo > :first-child, .framer-JUv8j .framer-1vepsjq > :first-child, .framer-JUv8j .framer-dtksiq > :first-child, .framer-JUv8j .framer-1jv3x2p > :first-child, .framer-JUv8j .framer-15qcfn6 > :first-child, .framer-JUv8j .framer-1i6st0g > :first-child, .framer-JUv8j .framer-34o8pr > :first-child, .framer-JUv8j .framer-19qkpgr > :first-child, .framer-JUv8j .framer-w8h5ru > :first-child, .framer-JUv8j .framer-t7uyy > :first-child, .framer-JUv8j .framer-huen07 > :first-child, .framer-JUv8j .framer-12aorj0 > :first-child, .framer-JUv8j .framer-wfxxbc > :first-child, .framer-JUv8j .framer-1vorohb > :first-child, .framer-JUv8j .framer-153x0sm > :first-child, .framer-JUv8j .framer-hhcbww > :first-child, .framer-JUv8j .framer-p1dgov > :first-child, .framer-JUv8j .framer-og7xx2 > :first-child, .framer-JUv8j .framer-oj0a7u > :first-child, .framer-JUv8j .framer-dgpmyv > :first-child, .framer-JUv8j .framer-w346ep > :first-child, .framer-JUv8j .framer-1a9vap4 > :first-child, .framer-JUv8j .framer-16388qy > :first-child, .framer-JUv8j .framer-17rz938 > :first-child, .framer-JUv8j .framer-jtsn9r > :first-child, .framer-JUv8j .framer-19f599k > :first-child, .framer-JUv8j .framer-1hazutf > :first-child, .framer-JUv8j .framer-jrd9eq > :first-child, .framer-JUv8j .framer-3bkohp > :first-child, .framer-JUv8j .framer-1tmaida > :first-child, .framer-JUv8j .framer-1lgo0x8 > :first-child, .framer-JUv8j .framer-1rjzv1a > :first-child, .framer-JUv8j .framer-wk31tl > :first-child, .framer-JUv8j .framer-1waq5rw > :first-child, .framer-JUv8j .framer-dsj5yb > :first-child, .framer-JUv8j .framer-l6voly > :first-child, .framer-JUv8j .framer-blac27 > :first-child, .framer-JUv8j .framer-1dctfms > :first-child, .framer-JUv8j .framer-3sg6g8 > :first-child, .framer-JUv8j .framer-1jdzg9l > :first-child, .framer-JUv8j .framer-e42ul8 > :first-child, .framer-JUv8j .framer-1g21czv > :first-child, .framer-JUv8j .framer-17gjpy5 > :first-child, .framer-JUv8j .framer-q0egiw > :first-child, .framer-JUv8j .framer-31nsz1 > :first-child, .framer-JUv8j .framer-7oe1tr > :first-child, .framer-JUv8j .framer-19hq24x > :first-child, .framer-JUv8j .framer-1vv8hc9 > :first-child, .framer-JUv8j .framer-16ub7x9 > :first-child, .framer-JUv8j .framer-bn0jbq > :first-child, .framer-JUv8j .framer-mr3ic1 > :first-child, .framer-JUv8j .framer-28bn86 > :first-child, .framer-JUv8j .framer-1yyecek > :first-child, .framer-JUv8j .framer-1khmy8u > :first-child, .framer-JUv8j .framer-swlj9n > :first-child, .framer-JUv8j .framer-37ljcc > :first-child, .framer-JUv8j .framer-1woqwat > :first-child, .framer-JUv8j .framer-1pgxc0f > :first-child, .framer-JUv8j .framer-1hmm62u > :first-child, .framer-JUv8j .framer-17dii2m > :first-child, .framer-JUv8j .framer-1oxptqb > :first-child, .framer-JUv8j .framer-1ofajt3 > :first-child, .framer-JUv8j .framer-q3v9hi > :first-child, .framer-JUv8j .framer-1wosrsc > :first-child, .framer-JUv8j .framer-1c9yq65 > :first-child, .framer-JUv8j .framer-1hpgdlv > :first-child, .framer-JUv8j .framer-1cjnkrx > :first-child, .framer-JUv8j .framer-2cpgrm > :first-child, .framer-JUv8j .framer-f9tfj9 > :first-child, .framer-JUv8j .framer-15ub4mi > :first-child, .framer-JUv8j .framer-vir0zq > :first-child, .framer-JUv8j .framer-xyntd5 > :first-child, .framer-JUv8j .framer-kewg8e > :first-child, .framer-JUv8j .framer-wdc6r9 > :first-child, .framer-JUv8j .framer-x84jyp > :first-child, .framer-JUv8j .framer-76a48x > :first-child, .framer-JUv8j .framer-htnfm1 > :first-child, .framer-JUv8j .framer-148ojnu > :first-child, .framer-JUv8j .framer-qetxqq > :first-child, .framer-JUv8j .framer-x1f93r > :first-child, .framer-JUv8j .framer-1vdeq2s > :first-child, .framer-JUv8j .framer-rzkel0 > :first-child, .framer-JUv8j .framer-144pqn6 > :first-child, .framer-JUv8j .framer-kntz0v > :first-child, .framer-JUv8j .framer-1jxqedb > :first-child, .framer-JUv8j .framer-xp3xuw > :first-child, .framer-JUv8j .framer-pf49lv > :first-child, .framer-JUv8j .framer-x0w0ef > :first-child, .framer-JUv8j .framer-pn4g5 > :first-child { margin-top: 0px; } .framer-JUv8j.framer-gymc1q > :last-child, .framer-JUv8j .framer-m26z0c > :last-child, .framer-JUv8j .framer-ymeh7g > :last-child, .framer-JUv8j .framer-wd5l53 > :last-child, .framer-JUv8j .framer-lrbl41 > :last-child, .framer-JUv8j .framer-129klxe > :last-child, .framer-JUv8j .framer-269g7u > :last-child, .framer-JUv8j .framer-vl1zf2 > :last-child, .framer-JUv8j .framer-wrmzq3 > :last-child, .framer-JUv8j .framer-c9m7pu > :last-child, .framer-JUv8j .framer-1jgtdeq > :last-child, .framer-JUv8j .framer-xfhtzl > :last-child, .framer-JUv8j .framer-fw40jo > :last-child, .framer-JUv8j .framer-1vepsjq > :last-child, .framer-JUv8j .framer-dtksiq > :last-child, .framer-JUv8j .framer-1jv3x2p > :last-child, .framer-JUv8j .framer-15qcfn6 > :last-child, .framer-JUv8j .framer-1i6st0g > :last-child, .framer-JUv8j .framer-34o8pr > :last-child, .framer-JUv8j .framer-19qkpgr > :last-child, .framer-JUv8j .framer-w8h5ru > :last-child, .framer-JUv8j .framer-t7uyy > :last-child, .framer-JUv8j .framer-huen07 > :last-child, .framer-JUv8j .framer-12aorj0 > :last-child, .framer-JUv8j .framer-wfxxbc > :last-child, .framer-JUv8j .framer-1vorohb > :last-child, .framer-JUv8j .framer-153x0sm > :last-child, .framer-JUv8j .framer-hhcbww > :last-child, .framer-JUv8j .framer-p1dgov > :last-child, .framer-JUv8j .framer-og7xx2 > :last-child, .framer-JUv8j .framer-oj0a7u > :last-child, .framer-JUv8j .framer-dgpmyv > :last-child, .framer-JUv8j .framer-w346ep > :last-child, .framer-JUv8j .framer-1a9vap4 > :last-child, .framer-JUv8j .framer-16388qy > :last-child, .framer-JUv8j .framer-17rz938 > :last-child, .framer-JUv8j .framer-jtsn9r > :last-child, .framer-JUv8j .framer-19f599k > :last-child, .framer-JUv8j .framer-1hazutf > :last-child, .framer-JUv8j .framer-jrd9eq > :last-child, .framer-JUv8j .framer-3bkohp > :last-child, .framer-JUv8j .framer-1tmaida > :last-child, .framer-JUv8j .framer-1lgo0x8 > :last-child, .framer-JUv8j .framer-1rjzv1a > :last-child, .framer-JUv8j .framer-wk31tl > :last-child, .framer-JUv8j .framer-1waq5rw > :last-child, .framer-JUv8j .framer-dsj5yb > :last-child, .framer-JUv8j .framer-l6voly > :last-child, .framer-JUv8j .framer-blac27 > :last-child, .framer-JUv8j .framer-1dctfms > :last-child, .framer-JUv8j .framer-3sg6g8 > :last-child, .framer-JUv8j .framer-1jdzg9l > :last-child, .framer-JUv8j .framer-e42ul8 > :last-child, .framer-JUv8j .framer-1g21czv > :last-child, .framer-JUv8j .framer-17gjpy5 > :last-child, .framer-JUv8j .framer-q0egiw > :last-child, .framer-JUv8j .framer-31nsz1 > :last-child, .framer-JUv8j .framer-7oe1tr > :last-child, .framer-JUv8j .framer-19hq24x > :last-child, .framer-JUv8j .framer-1vv8hc9 > :last-child, .framer-JUv8j .framer-16ub7x9 > :last-child, .framer-JUv8j .framer-bn0jbq > :last-child, .framer-JUv8j .framer-mr3ic1 > :last-child, .framer-JUv8j .framer-28bn86 > :last-child, .framer-JUv8j .framer-1yyecek > :last-child, .framer-JUv8j .framer-1khmy8u > :last-child, .framer-JUv8j .framer-swlj9n > :last-child, .framer-JUv8j .framer-37ljcc > :last-child, .framer-JUv8j .framer-1woqwat > :last-child, .framer-JUv8j .framer-1pgxc0f > :last-child, .framer-JUv8j .framer-1hmm62u > :last-child, .framer-JUv8j .framer-17dii2m > :last-child, .framer-JUv8j .framer-1oxptqb > :last-child, .framer-JUv8j .framer-1ofajt3 > :last-child, .framer-JUv8j .framer-q3v9hi > :last-child, .framer-JUv8j .framer-1wosrsc > :last-child, .framer-JUv8j .framer-1c9yq65 > :last-child, .framer-JUv8j .framer-1hpgdlv > :last-child, .framer-JUv8j .framer-1cjnkrx > :last-child, .framer-JUv8j .framer-2cpgrm > :last-child, .framer-JUv8j .framer-f9tfj9 > :last-child, .framer-JUv8j .framer-15ub4mi > :last-child, .framer-JUv8j .framer-vir0zq > :last-child, .framer-JUv8j .framer-xyntd5 > :last-child, .framer-JUv8j .framer-kewg8e > :last-child, .framer-JUv8j .framer-wdc6r9 > :last-child, .framer-JUv8j .framer-x84jyp > :last-child, .framer-JUv8j .framer-76a48x > :last-child, .framer-JUv8j .framer-htnfm1 > :last-child, .framer-JUv8j .framer-148ojnu > :last-child, .framer-JUv8j .framer-qetxqq > :last-child, .framer-JUv8j .framer-x1f93r > :last-child, .framer-JUv8j .framer-1vdeq2s > :last-child, .framer-JUv8j .framer-rzkel0 > :last-child, .framer-JUv8j .framer-144pqn6 > :last-child, .framer-JUv8j .framer-kntz0v > :last-child, .framer-JUv8j .framer-1jxqedb > :last-child, .framer-JUv8j .framer-xp3xuw > :last-child, .framer-JUv8j .framer-pf49lv > :last-child, .framer-JUv8j .framer-x0w0ef > :last-child, .framer-JUv8j .framer-pn4g5 > :last-child { margin-bottom: 0px; } .framer-JUv8j .framer-mvcoez > *, .framer-JUv8j .framer-a68g0l > *, .framer-JUv8j .framer-u9t4al > *, .framer-JUv8j .framer-1mahqa > *, .framer-JUv8j .framer-efmhlt > *, .framer-JUv8j .framer-b77u6f > *, .framer-JUv8j .framer-1s39j0s > *, .framer-JUv8j .framer-8cwz6x > *, .framer-JUv8j .framer-13ovp3v > *, .framer-JUv8j .framer-11rf550 > *, .framer-JUv8j .framer-qxgeos > *, .framer-JUv8j .framer-aux2w0 > *, .framer-JUv8j .framer-1q74b5q > *, .framer-JUv8j .framer-bdak98 > *, .framer-JUv8j .framer-808xdu > *, .framer-JUv8j .framer-11300gk > *, .framer-JUv8j .framer-ur3xcn > *, .framer-JUv8j .framer-u5ilhs > *, .framer-JUv8j .framer-1gqsw9g > *, .framer-JUv8j .framer-1a2uqqw > *, .framer-JUv8j .framer-1j7prwm > *, .framer-JUv8j .framer-18zjpbe > *, .framer-JUv8j .framer-16b6xl5 > *, .framer-JUv8j .framer-10cnsdg > *, .framer-JUv8j .framer-13lrun6 > *, .framer-JUv8j .framer-cd87zg > *, .framer-JUv8j .framer-luhjas > *, .framer-JUv8j .framer-1plfi89 > *, .framer-JUv8j .framer-1ta0h8d > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-JUv8j .framer-mvcoez > :first-child, .framer-JUv8j .framer-a68g0l > :first-child, .framer-JUv8j .framer-u9t4al > :first-child, .framer-JUv8j .framer-1mahqa > :first-child, .framer-JUv8j .framer-efmhlt > :first-child, .framer-JUv8j .framer-b77u6f > :first-child, .framer-JUv8j .framer-1s39j0s > :first-child, .framer-JUv8j .framer-8cwz6x > :first-child, .framer-JUv8j .framer-13ovp3v > :first-child, .framer-JUv8j .framer-11rf550 > :first-child, .framer-JUv8j .framer-qxgeos > :first-child, .framer-JUv8j .framer-aux2w0 > :first-child, .framer-JUv8j .framer-1q74b5q > :first-child, .framer-JUv8j .framer-bdak98 > :first-child, .framer-JUv8j .framer-808xdu > :first-child, .framer-JUv8j .framer-pp5n2g > :first-child, .framer-JUv8j .framer-11300gk > :first-child, .framer-JUv8j .framer-ur3xcn > :first-child, .framer-JUv8j .framer-u5ilhs > :first-child, .framer-JUv8j .framer-1gqsw9g > :first-child, .framer-JUv8j .framer-1a2uqqw > :first-child, .framer-JUv8j .framer-1j7prwm > :first-child, .framer-JUv8j .framer-18zjpbe > :first-child, .framer-JUv8j .framer-11uwicj > :first-child, .framer-JUv8j .framer-1b30ey5 > :first-child, .framer-JUv8j .framer-16b6xl5 > :first-child, .framer-JUv8j .framer-1g1bf4h > :first-child, .framer-JUv8j .framer-axsd0u > :first-child, .framer-JUv8j .framer-10cnsdg > :first-child, .framer-JUv8j .framer-13lrun6 > :first-child, .framer-JUv8j .framer-cd87zg > :first-child, .framer-JUv8j .framer-j5xums > :first-child, .framer-JUv8j .framer-1v1ngm6 > :first-child, .framer-JUv8j .framer-luhjas > :first-child, .framer-JUv8j .framer-1plfi89 > :first-child, .framer-JUv8j .framer-1ta0h8d > :first-child, .framer-JUv8j .framer-1ofhrex > :first-child { margin-left: 0px; } .framer-JUv8j .framer-mvcoez > :last-child, .framer-JUv8j .framer-a68g0l > :last-child, .framer-JUv8j .framer-u9t4al > :last-child, .framer-JUv8j .framer-1mahqa > :last-child, .framer-JUv8j .framer-efmhlt > :last-child, .framer-JUv8j .framer-b77u6f > :last-child, .framer-JUv8j .framer-1s39j0s > :last-child, .framer-JUv8j .framer-8cwz6x > :last-child, .framer-JUv8j .framer-13ovp3v > :last-child, .framer-JUv8j .framer-11rf550 > :last-child, .framer-JUv8j .framer-qxgeos > :last-child, .framer-JUv8j .framer-aux2w0 > :last-child, .framer-JUv8j .framer-1q74b5q > :last-child, .framer-JUv8j .framer-bdak98 > :last-child, .framer-JUv8j .framer-808xdu > :last-child, .framer-JUv8j .framer-pp5n2g > :last-child, .framer-JUv8j .framer-11300gk > :last-child, .framer-JUv8j .framer-ur3xcn > :last-child, .framer-JUv8j .framer-u5ilhs > :last-child, .framer-JUv8j .framer-1gqsw9g > :last-child, .framer-JUv8j .framer-1a2uqqw > :last-child, .framer-JUv8j .framer-1j7prwm > :last-child, .framer-JUv8j .framer-18zjpbe > :last-child, .framer-JUv8j .framer-11uwicj > :last-child, .framer-JUv8j .framer-1b30ey5 > :last-child, .framer-JUv8j .framer-16b6xl5 > :last-child, .framer-JUv8j .framer-1g1bf4h > :last-child, .framer-JUv8j .framer-axsd0u > :last-child, .framer-JUv8j .framer-10cnsdg > :last-child, .framer-JUv8j .framer-13lrun6 > :last-child, .framer-JUv8j .framer-cd87zg > :last-child, .framer-JUv8j .framer-j5xums > :last-child, .framer-JUv8j .framer-1v1ngm6 > :last-child, .framer-JUv8j .framer-luhjas > :last-child, .framer-JUv8j .framer-1plfi89 > :last-child, .framer-JUv8j .framer-1ta0h8d > :last-child, .framer-JUv8j .framer-1ofhrex > :last-child { margin-right: 0px; } .framer-JUv8j .framer-wd5l53 > *, .framer-JUv8j .framer-fw40jo > *, .framer-JUv8j .framer-swlj9n > *, .framer-JUv8j .framer-1pgxc0f > *, .framer-JUv8j .framer-17dii2m > *, .framer-JUv8j .framer-1ofajt3 > *, .framer-JUv8j .framer-1c9yq65 > *, .framer-JUv8j .framer-1cjnkrx > *, .framer-JUv8j .framer-wdc6r9 > *, .framer-JUv8j .framer-pf49lv > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-JUv8j .framer-129klxe > *, .framer-JUv8j .framer-1jv3x2p > *, .framer-JUv8j .framer-1i6st0g > *, .framer-JUv8j .framer-19qkpgr > *, .framer-JUv8j .framer-t7uyy > *, .framer-JUv8j .framer-12aorj0 > *, .framer-JUv8j .framer-1vorohb > *, .framer-JUv8j .framer-hhcbww > *, .framer-JUv8j .framer-og7xx2 > *, .framer-JUv8j .framer-dgpmyv > *, .framer-JUv8j .framer-1a9vap4 > *, .framer-JUv8j .framer-17rz938 > *, .framer-JUv8j .framer-19f599k > *, .framer-JUv8j .framer-jrd9eq > *, .framer-JUv8j .framer-1tmaida > *, .framer-JUv8j .framer-1rjzv1a > *, .framer-JUv8j .framer-1waq5rw > *, .framer-JUv8j .framer-l6voly > *, .framer-JUv8j .framer-1dctfms > *, .framer-JUv8j .framer-1jdzg9l > *, .framer-JUv8j .framer-1g21czv > *, .framer-JUv8j .framer-q0egiw > *, .framer-JUv8j .framer-7oe1tr > *, .framer-JUv8j .framer-1vv8hc9 > *, .framer-JUv8j .framer-bn0jbq > *, .framer-JUv8j .framer-28bn86 > *, .framer-JUv8j .framer-1khmy8u > *, .framer-JUv8j .framer-rzkel0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-JUv8j .framer-269g7u > *, .framer-JUv8j .framer-1vepsjq > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-JUv8j .framer-xfhtzl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-JUv8j .framer-dtksiq > *, .framer-JUv8j .framer-15qcfn6 > *, .framer-JUv8j .framer-34o8pr > *, .framer-JUv8j .framer-w8h5ru > *, .framer-JUv8j .framer-huen07 > *, .framer-JUv8j .framer-wfxxbc > *, .framer-JUv8j .framer-153x0sm > *, .framer-JUv8j .framer-p1dgov > *, .framer-JUv8j .framer-oj0a7u > *, .framer-JUv8j .framer-w346ep > *, .framer-JUv8j .framer-16388qy > *, .framer-JUv8j .framer-jtsn9r > *, .framer-JUv8j .framer-1hazutf > *, .framer-JUv8j .framer-3bkohp > *, .framer-JUv8j .framer-1lgo0x8 > *, .framer-JUv8j .framer-wk31tl > *, .framer-JUv8j .framer-dsj5yb > *, .framer-JUv8j .framer-blac27 > *, .framer-JUv8j .framer-3sg6g8 > *, .framer-JUv8j .framer-e42ul8 > *, .framer-JUv8j .framer-17gjpy5 > *, .framer-JUv8j .framer-31nsz1 > *, .framer-JUv8j .framer-19hq24x > *, .framer-JUv8j .framer-16ub7x9 > *, .framer-JUv8j .framer-mr3ic1 > *, .framer-JUv8j .framer-1yyecek > *, .framer-JUv8j .framer-vir0zq > *, .framer-JUv8j .framer-x1f93r > *, .framer-JUv8j .framer-xp3xuw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-JUv8j .framer-pp5n2g > *, .framer-JUv8j .framer-11uwicj > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-JUv8j .framer-1woqwat > *, .framer-JUv8j .framer-1hmm62u > *, .framer-JUv8j .framer-1hpgdlv > *, .framer-JUv8j .framer-f9tfj9 > *, .framer-JUv8j .framer-15ub4mi > *, .framer-JUv8j .framer-qetxqq > *, .framer-JUv8j .framer-kntz0v > *, .framer-JUv8j .framer-1jxqedb > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-JUv8j .framer-1b30ey5 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-JUv8j .framer-2cpgrm > *, .framer-JUv8j .framer-xyntd5 > *, .framer-JUv8j .framer-144pqn6 > * { margin: 0px; margin-bottom: calc(88px / 2); margin-top: calc(88px / 2); } .framer-JUv8j .framer-1g1bf4h > *, .framer-JUv8j .framer-axsd0u > *, .framer-JUv8j .framer-j5xums > *, .framer-JUv8j .framer-1v1ngm6 > *, .framer-JUv8j .framer-1ofhrex > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-JUv8j .framer-kewg8e > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-JUv8j .framer-x84jyp > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-JUv8j .framer-76a48x > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-JUv8j .framer-1vdeq2s > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-JUv8j[data-border=\"true\"]::after, .framer-JUv8j [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: 648px) and (max-width: 1199px) { .framer-JUv8j.framer-gymc1q { width: 648px; } .framer-JUv8j .framer-b77u6f, .framer-JUv8j .framer-8cwz6x { flex: 1 0 0px; } .framer-JUv8j .framer-1s39j0s { flex: none; width: 600px; } .framer-JUv8j .framer-wd5l53 { left: calc(50.00000000000002% - 100% / 2); max-width: unset; padding: 200px 48px 0px 48px; } .framer-JUv8j .framer-xfhtzl, .framer-JUv8j .framer-pp5n2g { gap: 48px; min-height: unset; padding: 80px 32px 80px 32px; } .framer-JUv8j .framer-3rlps5 { height: var(--framer-aspect-ratio-supported, 287px); } .framer-JUv8j .framer-37ljcc { border-bottom-right-radius: 80px; height: var(--framer-aspect-ratio-supported, 221px); will-change: var(--framer-will-change-override, transform); } .framer-JUv8j .framer-sk2d65 { border-bottom-right-radius: unset; will-change: unset; } .framer-JUv8j .framer-11300gk { border-bottom-left-radius: 80px; height: var(--framer-aspect-ratio-supported, 221px); } .framer-JUv8j .framer-1hmm62u, .framer-JUv8j .framer-u5ilhs, .framer-JUv8j .framer-1ofajt3, .framer-JUv8j .framer-1a2uqqw, .framer-JUv8j .framer-18zjpbe, .framer-JUv8j .framer-1c9yq65 { padding: 32px; } .framer-JUv8j .framer-1oxptqb, .framer-JUv8j .framer-q3v9hi, .framer-JUv8j .framer-1wosrsc { height: var(--framer-aspect-ratio-supported, 390px); } .framer-JUv8j .framer-11uwicj { gap: 40px; padding: 125px 32px 125px 32px; } .framer-JUv8j .framer-1cjnkrx { max-width: 400px; } .framer-JUv8j .framer-16b6xl5 { border-bottom-left-radius: 100px; height: 261px; width: 200px; } .framer-JUv8j .framer-2cpgrm, .framer-JUv8j .framer-144pqn6 { background-color: var(--token-174080a1-98de-43c5-8523-cd2c7e899733, #fff9f3); gap: 72px; } .framer-JUv8j .framer-1g1bf4h { flex-direction: column; padding: 72px 32px 72px 32px; } .framer-JUv8j .framer-xyntd5 { flex: none; width: 100%; } .framer-JUv8j .framer-10cnsdg { height: var(--framer-aspect-ratio-supported, 364px); } .framer-JUv8j .framer-13lrun6, .framer-JUv8j .framer-cd87zg { height: var(--framer-aspect-ratio-supported, 367px); } .framer-JUv8j .framer-x84jyp, .framer-JUv8j .framer-luhjas { padding: 72px 0px 72px 0px; } .framer-JUv8j .framer-76a48x { gap: 32px; padding: 32px; } .framer-JUv8j .framer-htnfm1 { flex: none; padding: 0px 32px 0px 32px; width: 257px; } .framer-JUv8j .framer-1plfi89 { height: var(--framer-aspect-ratio-supported, 259px); width: 100%; } .framer-JUv8j .framer-148ojnu { justify-content: flex-start; padding: 0px 32px 0px 32px; } .framer-JUv8j .framer-qetxqq { gap: 10px; justify-content: center; overflow: hidden; padding: 42px 0px 0px 0px; } .framer-JUv8j .framer-xp3xuw { width: 100%; } .framer-JUv8j .framer-14qgvey { max-width: 500px; } .framer-JUv8j .framer-1ofhrex { gap: 32px; height: min-content; padding: 32px; } .framer-JUv8j .framer-pf49lv { height: min-content; } .framer-JUv8j .framer-x0w0ef { border-bottom-left-radius: 150px; height: 409px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JUv8j .framer-xfhtzl, .framer-JUv8j .framer-pp5n2g, .framer-JUv8j .framer-11uwicj, .framer-JUv8j .framer-2cpgrm, .framer-JUv8j .framer-1g1bf4h, .framer-JUv8j .framer-76a48x, .framer-JUv8j .framer-qetxqq, .framer-JUv8j .framer-144pqn6, .framer-JUv8j .framer-1ofhrex { gap: 0px; } .framer-JUv8j .framer-xfhtzl > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-JUv8j .framer-xfhtzl > :first-child, .framer-JUv8j .framer-2cpgrm > :first-child, .framer-JUv8j .framer-1g1bf4h > :first-child, .framer-JUv8j .framer-76a48x > :first-child, .framer-JUv8j .framer-qetxqq > :first-child, .framer-JUv8j .framer-144pqn6 > :first-child { margin-top: 0px; } .framer-JUv8j .framer-xfhtzl > :last-child, .framer-JUv8j .framer-2cpgrm > :last-child, .framer-JUv8j .framer-1g1bf4h > :last-child, .framer-JUv8j .framer-76a48x > :last-child, .framer-JUv8j .framer-qetxqq > :last-child, .framer-JUv8j .framer-144pqn6 > :last-child { margin-bottom: 0px; } .framer-JUv8j .framer-pp5n2g > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-JUv8j .framer-pp5n2g > :first-child, .framer-JUv8j .framer-11uwicj > :first-child, .framer-JUv8j .framer-1ofhrex > :first-child { margin-left: 0px; } .framer-JUv8j .framer-pp5n2g > :last-child, .framer-JUv8j .framer-11uwicj > :last-child, .framer-JUv8j .framer-1ofhrex > :last-child { margin-right: 0px; } .framer-JUv8j .framer-11uwicj > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-JUv8j .framer-2cpgrm > *, .framer-JUv8j .framer-144pqn6 > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-JUv8j .framer-1g1bf4h > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-JUv8j .framer-76a48x > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-JUv8j .framer-qetxqq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-JUv8j .framer-1ofhrex > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }}\",\"@media (max-width: 647px) { .framer-JUv8j.framer-gymc1q { width: 390px; } .framer-JUv8j .framer-mvcoez, .framer-JUv8j .framer-axsd0u { flex-direction: column; } .framer-JUv8j .framer-m26z0c { height: 1px; width: 100%; } .framer-JUv8j .framer-1mahqa { height: 120px; } .framer-JUv8j .framer-b77u6f, .framer-JUv8j .framer-8cwz6x { flex: none; width: 24px; } .framer-JUv8j .framer-1jz0w3f { height: var(--framer-aspect-ratio-supported, 1026px); } .framer-JUv8j .framer-wd5l53 { left: calc(50.00000000000002% - 100% / 2); max-width: unset; padding: 40px; } .framer-JUv8j .framer-xfhtzl { gap: 48px; overflow: hidden; padding: 64px 16px 48px 16px; } .framer-JUv8j .framer-pp5n2g { flex-direction: column; gap: 64px; overflow: hidden; padding: 64px 16px 48px 16px; } .framer-JUv8j .framer-3rlps5 { flex: none; height: var(--framer-aspect-ratio-supported, 384px); width: 100%; } .framer-JUv8j .framer-37ljcc { border-bottom-right-radius: 100px; height: var(--framer-aspect-ratio-supported, 296px); will-change: var(--framer-will-change-override, transform); } .framer-JUv8j .framer-sk2d65 { border-bottom-right-radius: unset; will-change: unset; } .framer-JUv8j .framer-11300gk { border-bottom-left-radius: 100px; height: var(--framer-aspect-ratio-supported, 295px); } .framer-JUv8j .framer-1woqwat { align-content: center; align-items: center; align-self: unset; flex: none; height: min-content; width: 100%; } .framer-JUv8j .framer-ur3xcn, .framer-JUv8j .framer-1j7prwm { flex-direction: column; padding: 0px 0px 48px 0px; } .framer-JUv8j .framer-1hmm62u { align-content: center; align-items: center; flex: none; gap: 24px; padding: 64px 16px 40px 16px; position: relative; top: unset; width: 100%; } .framer-JUv8j .framer-u5ilhs, .framer-JUv8j .framer-1a2uqqw { aspect-ratio: 0.7262569832402235 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 537px); padding: 16px; width: 100%; } .framer-JUv8j .framer-1oxptqb, .framer-JUv8j .framer-q3v9hi, .framer-JUv8j .framer-1wosrsc { align-content: center; align-items: center; gap: 24px; height: var(--framer-aspect-ratio-supported, 537px); } .framer-JUv8j .framer-1gqsw9g { flex-direction: column; padding: 0px 0px 32px 0px; } .framer-JUv8j .framer-1ofajt3 { align-content: center; align-items: center; flex: none; padding: 64px 16px 40px 16px; position: relative; top: unset; width: 100%; } .framer-JUv8j .framer-18zjpbe { aspect-ratio: 0.7262569832402235 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 537px); order: 1; padding: 16px; width: 100%; } .framer-JUv8j .framer-1c9yq65 { align-content: center; align-items: center; flex: none; order: 0; padding: 64px 16px 40px 16px; position: relative; top: unset; width: 100%; } .framer-JUv8j .framer-11uwicj { flex-direction: column; gap: 0px; padding: 0px 0px 48px 0px; } .framer-JUv8j .framer-1hpgdlv { align-content: center; align-items: center; flex: none; gap: 16px; padding: 64px 16px 48px 16px; width: 100%; } .framer-JUv8j .framer-1cjnkrx, .framer-JUv8j .framer-qetxqq, .framer-JUv8j .framer-1vdeq2s { align-content: center; align-items: center; } .framer-JUv8j .framer-1b30ey5 { flex-direction: column; gap: 16px; padding: 0px 16px 0px 16px; width: 100%; } .framer-JUv8j .framer-16b6xl5 { border-bottom-left-radius: 100px; height: 239px; position: sticky; top: 64px; width: 100%; z-index: 1; } .framer-JUv8j .framer-147bf0 { z-index: 1; } .framer-JUv8j .framer-2cpgrm, .framer-JUv8j .framer-144pqn6 { background-color: var(--token-174080a1-98de-43c5-8523-cd2c7e899733, #fff9f3); gap: 64px; } .framer-JUv8j .framer-15ub4mi, .framer-JUv8j .framer-1jxqedb { padding: 64px 0px 48px 0px; position: sticky; top: 0px; } .framer-JUv8j .framer-vir0zq { width: 100%; } .framer-JUv8j .framer-1g1bf4h { flex-direction: column; padding: 64px 16px 48px 16px; } .framer-JUv8j .framer-17m0hek { position: relative; top: unset; } .framer-JUv8j .framer-xyntd5 { flex: none; gap: 64px; width: 100%; } .framer-JUv8j .framer-kewg8e { align-self: unset; flex: none; gap: 48px; height: min-content; order: 1; width: 100%; } .framer-JUv8j .framer-10cnsdg, .framer-JUv8j .framer-13lrun6, .framer-JUv8j .framer-cd87zg { height: var(--framer-aspect-ratio-supported, 480px); width: 100%; } .framer-JUv8j .framer-wdc6r9 { flex: none; order: 0; position: relative; top: unset; width: 100%; } .framer-JUv8j .framer-x84jyp { gap: 0px; padding: 0px; } .framer-JUv8j .framer-76a48x { gap: 16px; padding: 16px; } .framer-JUv8j .framer-j5xums, .framer-JUv8j .framer-1v1ngm6 { gap: 16px; } .framer-JUv8j .framer-alkyy-container, .framer-JUv8j .framer-jwymrm-container, .framer-JUv8j .framer-1b5l7mg-container, .framer-JUv8j .framer-3udbzs-container, .framer-JUv8j .framer-1d0v53v-container, .framer-JUv8j .framer-4j09yl-container, .framer-JUv8j .framer-hoxpy3-container, .framer-JUv8j .framer-tfl8li-container, .framer-JUv8j .framer-1nn61aw-container, .framer-JUv8j .framer-1yrjh9t-container, .framer-JUv8j .framer-eqjqei-container { width: 33%; } .framer-JUv8j .framer-luhjas { flex-direction: column; padding: 0px; } .framer-JUv8j .framer-148ojnu { flex: none; gap: 48px; justify-content: flex-start; order: 0; padding: 64px 24px 64px 24px; width: 100%; } .framer-JUv8j .framer-xp3xuw { gap: 24px; padding: 0px 16px 0px 16px; width: 100%; } .framer-JUv8j .framer-14qgvey { order: 1; } .framer-JUv8j .framer-191eq0f { order: 0; } .framer-JUv8j .framer-1ofhrex { flex-direction: column; gap: 24px; height: min-content; padding: 48px 16px 48px 16px; } .framer-JUv8j .framer-pf49lv { flex: none; height: min-content; padding: 8px; width: 100%; } .framer-JUv8j .framer-x0w0ef { border-bottom-left-radius: 150px; flex: none; height: 400px; width: 100%; } .framer-JUv8j .framer-ozj93s-container { pointer-events: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JUv8j .framer-mvcoez, .framer-JUv8j .framer-xfhtzl, .framer-JUv8j .framer-pp5n2g, .framer-JUv8j .framer-ur3xcn, .framer-JUv8j .framer-1hmm62u, .framer-JUv8j .framer-1oxptqb, .framer-JUv8j .framer-1gqsw9g, .framer-JUv8j .framer-q3v9hi, .framer-JUv8j .framer-1j7prwm, .framer-JUv8j .framer-1wosrsc, .framer-JUv8j .framer-11uwicj, .framer-JUv8j .framer-1hpgdlv, .framer-JUv8j .framer-1b30ey5, .framer-JUv8j .framer-2cpgrm, .framer-JUv8j .framer-1g1bf4h, .framer-JUv8j .framer-xyntd5, .framer-JUv8j .framer-axsd0u, .framer-JUv8j .framer-kewg8e, .framer-JUv8j .framer-x84jyp, .framer-JUv8j .framer-76a48x, .framer-JUv8j .framer-j5xums, .framer-JUv8j .framer-1v1ngm6, .framer-JUv8j .framer-luhjas, .framer-JUv8j .framer-148ojnu, .framer-JUv8j .framer-144pqn6, .framer-JUv8j .framer-xp3xuw, .framer-JUv8j .framer-1ofhrex { gap: 0px; } .framer-JUv8j .framer-mvcoez > *, .framer-JUv8j .framer-ur3xcn > *, .framer-JUv8j .framer-1gqsw9g > *, .framer-JUv8j .framer-1j7prwm > *, .framer-JUv8j .framer-11uwicj > *, .framer-JUv8j .framer-x84jyp > *, .framer-JUv8j .framer-luhjas > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-JUv8j .framer-mvcoez > :first-child, .framer-JUv8j .framer-xfhtzl > :first-child, .framer-JUv8j .framer-pp5n2g > :first-child, .framer-JUv8j .framer-ur3xcn > :first-child, .framer-JUv8j .framer-1hmm62u > :first-child, .framer-JUv8j .framer-1oxptqb > :first-child, .framer-JUv8j .framer-1gqsw9g > :first-child, .framer-JUv8j .framer-q3v9hi > :first-child, .framer-JUv8j .framer-1j7prwm > :first-child, .framer-JUv8j .framer-1wosrsc > :first-child, .framer-JUv8j .framer-11uwicj > :first-child, .framer-JUv8j .framer-1hpgdlv > :first-child, .framer-JUv8j .framer-1b30ey5 > :first-child, .framer-JUv8j .framer-2cpgrm > :first-child, .framer-JUv8j .framer-1g1bf4h > :first-child, .framer-JUv8j .framer-xyntd5 > :first-child, .framer-JUv8j .framer-axsd0u > :first-child, .framer-JUv8j .framer-kewg8e > :first-child, .framer-JUv8j .framer-x84jyp > :first-child, .framer-JUv8j .framer-76a48x > :first-child, .framer-JUv8j .framer-luhjas > :first-child, .framer-JUv8j .framer-148ojnu > :first-child, .framer-JUv8j .framer-144pqn6 > :first-child, .framer-JUv8j .framer-xp3xuw > :first-child, .framer-JUv8j .framer-1ofhrex > :first-child { margin-top: 0px; } .framer-JUv8j .framer-mvcoez > :last-child, .framer-JUv8j .framer-xfhtzl > :last-child, .framer-JUv8j .framer-pp5n2g > :last-child, .framer-JUv8j .framer-ur3xcn > :last-child, .framer-JUv8j .framer-1hmm62u > :last-child, .framer-JUv8j .framer-1oxptqb > :last-child, .framer-JUv8j .framer-1gqsw9g > :last-child, .framer-JUv8j .framer-q3v9hi > :last-child, .framer-JUv8j .framer-1j7prwm > :last-child, .framer-JUv8j .framer-1wosrsc > :last-child, .framer-JUv8j .framer-11uwicj > :last-child, .framer-JUv8j .framer-1hpgdlv > :last-child, .framer-JUv8j .framer-1b30ey5 > :last-child, .framer-JUv8j .framer-2cpgrm > :last-child, .framer-JUv8j .framer-1g1bf4h > :last-child, .framer-JUv8j .framer-xyntd5 > :last-child, .framer-JUv8j .framer-axsd0u > :last-child, .framer-JUv8j .framer-kewg8e > :last-child, .framer-JUv8j .framer-x84jyp > :last-child, .framer-JUv8j .framer-76a48x > :last-child, .framer-JUv8j .framer-luhjas > :last-child, .framer-JUv8j .framer-148ojnu > :last-child, .framer-JUv8j .framer-144pqn6 > :last-child, .framer-JUv8j .framer-xp3xuw > :last-child, .framer-JUv8j .framer-1ofhrex > :last-child { margin-bottom: 0px; } .framer-JUv8j .framer-xfhtzl > *, .framer-JUv8j .framer-kewg8e > *, .framer-JUv8j .framer-148ojnu > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-JUv8j .framer-pp5n2g > *, .framer-JUv8j .framer-2cpgrm > *, .framer-JUv8j .framer-xyntd5 > *, .framer-JUv8j .framer-144pqn6 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-JUv8j .framer-1hmm62u > *, .framer-JUv8j .framer-1oxptqb > *, .framer-JUv8j .framer-q3v9hi > *, .framer-JUv8j .framer-1wosrsc > *, .framer-JUv8j .framer-xp3xuw > *, .framer-JUv8j .framer-1ofhrex > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-JUv8j .framer-1hpgdlv > *, .framer-JUv8j .framer-1b30ey5 > *, .framer-JUv8j .framer-76a48x > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-JUv8j .framer-1g1bf4h > *, .framer-JUv8j .framer-axsd0u > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-JUv8j .framer-j5xums > *, .framer-JUv8j .framer-1v1ngm6 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-JUv8j .framer-j5xums > :first-child, .framer-JUv8j .framer-1v1ngm6 > :first-child { margin-left: 0px; } .framer-JUv8j .framer-j5xums > :last-child, .framer-JUv8j .framer-1v1ngm6 > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12330.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TiWLq0Bmy\":{\"layout\":[\"fixed\",\"auto\"]},\"FXqVWYrMe\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"H6CSKaXEz\":{\"pattern\":\":H6CSKaXEz\",\"name\":\"hero-scroll-1\"},\"ayUJdqu8s\":{\"pattern\":\":ayUJdqu8s\",\"name\":\"nav-trigger-1\"},\"SKk38yte3\":{\"pattern\":\":SKk38yte3\",\"name\":\"nav-trigger-2\"},\"rOlWpx525\":{\"pattern\":\":rOlWpx525\",\"name\":\"i-migliori-cocktail\"},\"WyOz_zoG_\":{\"pattern\":\":WyOz_zoG_\",\"name\":\"il-fascino\"},\"uNoHuPLK0\":{\"pattern\":\":uNoHuPLK0\",\"name\":\"about\"},\"eE5riXvY6\":{\"pattern\":\":eE5riXvY6\",\"name\":\"devoti-al-bere-bene\"},\"QjudbXfUR\":{\"pattern\":\":QjudbXfUR\",\"name\":\"mr-eclettico\"},\"SJYyimy26\":{\"pattern\":\":SJYyimy26\",\"name\":\"fan-dell-acqua\"},\"BrSYhBFC2\":{\"pattern\":\":BrSYhBFC2\",\"name\":\"convertirti\"},\"kiJ_A2bTa\":{\"pattern\":\":kiJ_A2bTa\",\"name\":\"story-image\"},\"npigAIEOA\":{\"pattern\":\":npigAIEOA\",\"name\":\"il-locale\"},\"NWmm7dHYO\":{\"pattern\":\":NWmm7dHYO\",\"name\":\"gallery\"},\"exsBF7Pup\":{\"pattern\":\":exsBF7Pup\",\"name\":\"reserve\"},\"kG1clm2p_\":{\"pattern\":\":kG1clm2p_\",\"name\":\"convertirti\"},\"Y93Kf7klT\":{\"pattern\":\":Y93Kf7klT\",\"name\":\"bevi-responsabilmente\"},\"pAxR3t0kR\":{\"pattern\":\":pAxR3t0kR\",\"name\":\"story-image\"},\"NvX4ECb_G\":{\"pattern\":\":NvX4ECb_G\",\"name\":\"visit\"},\"gYVdih1Yj\":{\"pattern\":\":gYVdih1Yj\",\"name\":\"image-feed\"},\"yzFFdWPEu\":{\"pattern\":\":yzFFdWPEu\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const Framercjv51Cbc9=withCSS(Component,css,\"framer-JUv8j\");export default Framercjv51Cbc9;Framercjv51Cbc9.displayName=\"Home\";Framercjv51Cbc9.defaultProps={height:12330.5,width:1200};addFonts(Framercjv51Cbc9,[{explicitInter:true,fonts:[{family:\"PP Hatton Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/tw6kDeMOeeTnFuMAcCqSEtSbX8.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...NavigationBarFonts,...NavigationMobileFonts,...CarouselFonts,...ButtonFonts,...ImagesGalleryItemFonts,...InfoHoursFonts,...ImagesImageGridFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framercjv51Cbc9\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"H6CSKaXEz\\\":{\\\"pattern\\\":\\\":H6CSKaXEz\\\",\\\"name\\\":\\\"hero-scroll-1\\\"},\\\"ayUJdqu8s\\\":{\\\"pattern\\\":\\\":ayUJdqu8s\\\",\\\"name\\\":\\\"nav-trigger-1\\\"},\\\"SKk38yte3\\\":{\\\"pattern\\\":\\\":SKk38yte3\\\",\\\"name\\\":\\\"nav-trigger-2\\\"},\\\"rOlWpx525\\\":{\\\"pattern\\\":\\\":rOlWpx525\\\",\\\"name\\\":\\\"i-migliori-cocktail\\\"},\\\"WyOz_zoG_\\\":{\\\"pattern\\\":\\\":WyOz_zoG_\\\",\\\"name\\\":\\\"il-fascino\\\"},\\\"uNoHuPLK0\\\":{\\\"pattern\\\":\\\":uNoHuPLK0\\\",\\\"name\\\":\\\"about\\\"},\\\"eE5riXvY6\\\":{\\\"pattern\\\":\\\":eE5riXvY6\\\",\\\"name\\\":\\\"devoti-al-bere-bene\\\"},\\\"QjudbXfUR\\\":{\\\"pattern\\\":\\\":QjudbXfUR\\\",\\\"name\\\":\\\"mr-eclettico\\\"},\\\"SJYyimy26\\\":{\\\"pattern\\\":\\\":SJYyimy26\\\",\\\"name\\\":\\\"fan-dell-acqua\\\"},\\\"BrSYhBFC2\\\":{\\\"pattern\\\":\\\":BrSYhBFC2\\\",\\\"name\\\":\\\"convertirti\\\"},\\\"kiJ_A2bTa\\\":{\\\"pattern\\\":\\\":kiJ_A2bTa\\\",\\\"name\\\":\\\"story-image\\\"},\\\"npigAIEOA\\\":{\\\"pattern\\\":\\\":npigAIEOA\\\",\\\"name\\\":\\\"il-locale\\\"},\\\"NWmm7dHYO\\\":{\\\"pattern\\\":\\\":NWmm7dHYO\\\",\\\"name\\\":\\\"gallery\\\"},\\\"exsBF7Pup\\\":{\\\"pattern\\\":\\\":exsBF7Pup\\\",\\\"name\\\":\\\"reserve\\\"},\\\"kG1clm2p_\\\":{\\\"pattern\\\":\\\":kG1clm2p_\\\",\\\"name\\\":\\\"convertirti\\\"},\\\"Y93Kf7klT\\\":{\\\"pattern\\\":\\\":Y93Kf7klT\\\",\\\"name\\\":\\\"bevi-responsabilmente\\\"},\\\"pAxR3t0kR\\\":{\\\"pattern\\\":\\\":pAxR3t0kR\\\",\\\"name\\\":\\\"story-image\\\"},\\\"NvX4ECb_G\\\":{\\\"pattern\\\":\\\":NvX4ECb_G\\\",\\\"name\\\":\\\"visit\\\"},\\\"gYVdih1Yj\\\":{\\\"pattern\\\":\\\":gYVdih1Yj\\\",\\\"name\\\":\\\"image-feed\\\"},\\\"yzFFdWPEu\\\":{\\\"pattern\\\":\\\":yzFFdWPEu\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TiWLq0Bmy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FXqVWYrMe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"12330.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "n", "isNumber", "t", "isString", "isEasingList", "t", "isNumber", "wrap", "e", "n", "o", "getEasingForSegment", "mix", "noopReturn", "t", "progress", "e", "n", "fillOffset", "o", "s", "mix", "defaultOffset", "interpolate", "r", "f", "clamp", "getEasingForSegment", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "o", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "n", "createGeneratorEasing", "e", "n", "o", "getGenerator", "t", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "i", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "Z", "createAxisInfo", "createScrollInfo", "X", "updateAxisInfo", "progress", "velocityPerSecond", "updateScrollInfo", "calcInset", "Y", "J", "resolveEdge", "isString", "isNumber", "Q", "resolveOffset", "ee", "resolveOffsets", "interpolate", "defaultOffset", "measure", "createOnScrollHandler", "scrubAnimation", "noopReturn", "te", "ne", "oe", "getEventTarget", "scroll", "__rest", "listener", "dispatchPointerEvent", "e", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "borderRadiusControl", "ControlType", "usePadding", "props", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "se", "paddingControl", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Link", "Image2", "css", "FrameruT88SCypF", "withCSS", "uT88SCypF_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "toResponsiveImage", "value", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "vH00MtOs2", "FOxrYESyq", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "isDisplayed", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "Image2", "RichText2", "x", "css", "FramerzJTbCSG3u", "withCSS", "zJTbCSG3u_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavigationBarFonts", "getFonts", "F4p7gIkSa_default", "NavigationBarWithVariantAppearEffect", "withVariantAppearEffect", "NavigationMobileFonts", "JFJtp9phd_default", "ImageWithFX", "withFX", "Image2", "MotionDivWithFX", "motion", "CarouselFonts", "Carousel", "ButtonFonts", "N8RU_gCfF_default", "ImagesGalleryItemFonts", "zJTbCSG3u_default", "InfoHoursFonts", "ZMTBTnrrB_default", "ImagesImageGridFonts", "uT88SCypF_default", "FooterFonts", "dZbjmX7N4_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "transition1", "animation", "animation1", "animation2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation3", "transition2", "addImageAlt", "image", "alt", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "RSFL9xTPa3bnx0g", "overlay", "loadMore", "args", "cu379BuiN1wnntms", "scopingClassNames", "cx", "ref1", "ref2", "ref3", "ref4", "ref5", "ref6", "ref7", "ref8", "elementId", "useRouteElementId", "elementId1", "elementId2", "elementId3", "ref9", "elementId4", "ref10", "elementId5", "isDisplayed", "router", "useRouter", "elementId6", "ref11", "elementId7", "ref12", "elementId8", "ref13", "elementId9", "ref14", "elementId10", "ref15", "elementId11", "ref16", "elementId12", "elementId13", "isDisplayed1", "elementId14", "ref17", "elementId15", "ref18", "elementId16", "ref19", "elementId17", "elementId18", "ref20", "elementId19", "ref21", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "l", "ComponentViewportProvider", "Container", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "getLoadingLazyAtYPosition", "RichText2", "ResolveLinks", "resolvedLinks", "Link", "css", "Framercjv51Cbc9", "withCSS", "cjv51Cbc9_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
