{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.14.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.14.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/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/n6p0PRYKzMGKmctpW9bB/8gb2GJsXxHt4RkDTw0b8/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{isFunction as t,isCubicBezier as i,noopReturn as e,defaults as s,isEasingGenerator as a,isEasingList as n,interpolate as r}from\"@motionone/utils\";import{cubicBezier as h,steps as o}from\"@motionone/easing\";const l={ease:h(.25,.1,.25,1),\"ease-in\":h(.42,0,1,1),\"ease-in-out\":h(.42,0,.58,1),\"ease-out\":h(0,0,.58,1)};const u=/\\((.*?)\\)/;function getEasingFunction(s){if(t(s))return s;if(i(s))return h(...s);if(l[s])return l[s];if(s.startsWith(\"steps\")){const t=u.exec(s);if(t){const i=t[1].split(\",\");return o(parseFloat(i[0]),i[1].trim())}}return e}class Animation{constructor(t,i=[0,1],{easing:h,duration:o=s.duration,delay:l=s.delay,endDelay:u=s.endDelay,repeat:m=s.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=e;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));h=h||s.easing;if(a(h)){const t=h.createAnimation(i);h=t.easing;i=t.keyframes||i;o=t.duration||o}this.repeat=m;this.easing=n(h)?e:getEasingFunction(h);this.updateDuration(o);const d=r(i,c,n(h)?h.map(getEasingFunction):e);this.tick=i=>{var e;l=l;let s=0;s=void 0!==this.pauseTime?this.pauseTime:(i-this.startTime)*this.rate;this.t=s;s/=1e3;s=Math.max(s-l,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(s=this.totalDuration);const a=s/this.duration;let n=Math.floor(a);let r=a%1;!r&&a>=1&&(r=1);1===r&&n--;const h=n%2;(\"reverse\"===p||\"alternate\"===p&&h||\"alternate-reverse\"===p&&!h)&&(r=1-r);const o=s>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(o));t(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||s>=this.totalDuration+u);if(c){this.playState=\"finished\";null===(e=this.resolve)||void 0===e?void 0:e.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,noopReturn as s}from\"@motionone/utils\";const n=5;function calcGeneratorVelocity(t,s,r){const a=Math.max(s-n,0);return e(r-t(a),s-a)}const r={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=r.stiffness,t=r.damping,s=r.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=r.stiffness,damping:s=r.damping,mass:n=r.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/n)/1e3;const l=calcDampingRatio(e,s,n);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 a=10;const o=1e4;function pregenerateKeyframes(e,t=s){let n;let r=a;let c=e(0);const i=[t(c.current)];while(!c.done&&r<o){c=e(r);i.push(t(c.done?c.target:c.current));void 0===n&&c.hasReachedTarget&&(n=r);r+=a}const h=r-a;1===i.length&&i.push(c.current);return{keyframes:i,duration:h/1e3,overshootDuration:(null!==n&&void 0!==n?n:h)/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{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){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 infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import NavbarLogoDark from\"#framer/local/canvasComponent/O6Z98jrq7/O6Z98jrq7.js\";import Mailchimp from\"#framer/local/codeFile/Vuflrl2/Mailchimp.js\";import*as sharedStyle2 from\"#framer/local/css/DRndUEaGA/DRndUEaGA.js\";import*as sharedStyle from\"#framer/local/css/DVJETT8D0/DVJETT8D0.js\";import*as sharedStyle3 from\"#framer/local/css/m_UvZ3Ley/m_UvZ3Ley.js\";import*as sharedStyle1 from\"#framer/local/css/xWV9a_rWX/xWV9a_rWX.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarLogoDarkFonts=getFonts(NavbarLogoDark);const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const TickerFonts=getFonts(Ticker);const EmbedFonts=getFonts(Embed);const MailchimpFonts=getFonts(Mailchimp);const MaterialFonts=getFonts(Material);const breakpoints={R5cjfhnTd:\"(max-width: 809px)\",v4Uz11cw7:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-gM8Hv\";const variantClassNames={R5cjfhnTd:\"framer-v-djy17h\",v4Uz11cw7:\"framer-v-hq688s\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition1={damping:80,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:20};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"R5cjfhnTd\",Tablet:\"v4Uz11cw7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"R5cjfhnTd\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"R5cjfhnTd\")return true;return false;};const elementId=useRouteElementId(\"WtigvMB1G\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(247, 247, 247); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cgp4m2\",\"data-framer-name\":\"Navigation\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18qzxp1-container\",nodeId:\"fTNlEVbEu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R5cjfhnTd:{variant:\"v3dJOYpLH\"},v4Uz11cw7:{variant:\"v3dJOYpLH\"}},children:/*#__PURE__*/_jsx(NavbarLogoDark,{height:\"100%\",id:\"fTNlEVbEu\",layoutId:\"fTNlEVbEu\",style:{width:\"100%\"},variant:\"zWUX4kvn0\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-anggjf\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R5cjfhnTd:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 158 138\"><g transform=\"translate(-0.005 0.001)\" id=\"ss9477831338_1\"><path d=\"M 85.586 46.222 C 80.189 50.018 75.077 53.911 70.666 59.175 C 77.343 56.546 83.209 53.529 85.586 46.222 M 85.074 9.921 C 82.388 17.174 79.764 24.418 79.063 32.18 C 83.262 25.353 86.369 18.225 85.074 9.921 M 54.31 74.519 C 53.228 68.234 51.131 62.855 46.391 58.942 C 44.1 57.054 41.515 55.524 39.056 53.844 C 38.234 53.282 37.379 52.764 36.292 52.067 C 39.476 61.978 46.13 68.627 54.315 74.519 M 27.793 89.085 C 27.609 90.673 27.576 92.518 27.136 94.261 C 26.807 95.573 27.31 96.018 28.334 96.328 C 28.745 96.454 29.175 96.546 29.6 96.561 C 37.983 96.851 46.362 97.282 54.75 97.355 C 59.354 97.394 63.964 96.817 68.573 96.546 C 69.578 96.488 70.033 96.004 70.12 95.035 C 70.347 92.547 70.598 90.063 70.844 87.491 C 68.96 87.293 67.206 87.022 65.447 86.939 C 63.249 86.833 61.041 86.867 58.837 86.867 C 56.673 86.867 54.498 87.065 52.353 86.881 C 50.193 86.697 48.12 87.245 45.985 87.303 C 42.371 87.399 38.771 88.024 35.161 88.397 C 32.775 88.644 30.383 88.847 27.788 89.089 M 28.01 98.502 C 28.523 99.713 29.146 101.093 29.687 102.502 C 31.62 107.499 33.813 112.414 35.355 117.532 C 36.79 122.301 36.732 127.139 32.808 131.109 C 34.876 132.988 37.37 133.937 39.935 134.45 C 46.115 135.685 52.392 135.796 58.659 135.423 C 60.504 135.312 62.365 134.649 64.118 133.971 C 65.534 133.424 66.336 132.17 66.211 130.552 C 65.81 125.478 65.93 120.423 66.457 115.363 C 66.834 111.746 67.066 108.109 67.515 104.502 C 67.752 102.609 68.322 100.759 68.718 98.996 C 55.112 100.304 41.602 99.389 28.01 98.498 M 67.254 52.788 C 69.327 48.663 71.405 44.547 73.468 40.417 C 75.024 37.293 76.295 34.228 76.299 30.51 C 76.304 22.602 78.517 15.044 81.122 7.621 C 81.479 6.599 81.866 5.582 82.107 4.532 C 82.247 3.922 82.131 3.253 82.131 2.503 C 82.474 2.062 82.934 1.501 83.364 0.919 C 84.32 -0.373 85.311 -0.325 85.963 1.205 C 86.639 2.789 87.243 4.435 87.611 6.115 C 89.964 16.957 88.118 27.009 81.74 36.136 C 81.107 37.042 80.179 37.749 79.353 38.504 C 79.083 38.751 78.614 39.066 78.343 38.988 C 77.01 38.591 76.783 39.559 76.353 40.397 C 72.903 47.137 69.433 53.873 65.974 60.608 C 65.877 60.797 65.8 60.995 65.868 61.426 C 66.385 61.073 67.1 60.836 67.385 60.347 C 70.791 54.507 75.203 49.525 80.455 45.341 C 84.243 42.324 88.258 39.603 92.167 36.737 C 92.834 36.247 93.336 36.344 93.8 37.017 C 94.728 38.368 94.568 39.138 93.728 40.513 C 92.104 43.162 90.544 45.864 89.176 48.648 C 87.741 51.578 86.383 54.517 83.953 56.788 C 80.88 59.654 77.135 61.325 73.27 62.743 C 71.328 63.455 69.332 64.017 67.341 64.588 C 66.776 64.753 66.075 64.922 65.568 64.734 C 64.418 64.307 63.916 64.879 63.437 65.736 C 62.49 67.435 61.504 69.116 60.582 70.83 C 60.422 71.13 60.485 71.551 60.485 71.575 C 59.659 72.646 58.944 73.546 58.253 74.466 C 56.866 76.311 55.523 78.19 54.102 80.006 C 52.88 81.574 51.58 83.08 50.198 84.751 C 50.614 84.785 50.918 84.819 51.222 84.828 C 56.233 84.998 61.244 85.109 66.249 85.361 C 67.515 85.424 68.762 85.942 70.013 86.262 C 70.265 86.325 70.55 86.552 70.743 86.484 C 72.487 85.894 72.362 87.201 72.415 88.179 C 72.579 91.346 72.434 94.459 71.419 97.539 C 69.839 102.328 69.989 107.373 69.636 112.331 C 69.395 115.702 69.274 119.086 69.197 122.466 C 69.144 124.718 69.206 126.974 69.317 129.226 C 69.491 132.755 68.332 135.012 65.022 136.285 C 62.795 137.142 60.383 137.815 58.021 137.956 C 51.145 138.367 44.265 138.179 37.519 136.581 C 34.33 135.825 32.581 134.649 30.745 132.576 C 27.952 133.361 25.256 134.281 22.488 134.862 C 17.723 135.869 12.897 136.184 8.041 135.569 C 6.18 135.331 4.745 134.397 3.315 133.157 C 0.532 130.751 0.706 127.405 0.285 124.34 C -0.778 116.573 1.295 109.203 3.74 101.955 C 5.219 97.573 6.847 93.234 8.504 88.915 C 10.49 83.734 10.282 78.393 9.997 73.004 C 9.862 70.418 9.843 67.794 10.152 65.232 C 10.423 62.952 11.635 61.194 14.303 61.005 C 15.327 60.933 16.322 60.521 17.347 60.419 C 17.738 60.381 18.294 60.671 18.564 60.991 C 19.313 61.872 18.96 62.463 17.922 62.753 C 17.173 62.961 16.438 63.257 15.68 63.373 C 14.433 63.567 14.003 64.327 14.071 65.465 C 14.245 68.365 14.293 71.28 14.67 74.151 C 15.559 80.916 14.94 87.399 12.123 93.709 C 9.567 99.432 7.335 105.296 5.91 111.441 C 4.682 116.747 4.499 122.059 5.253 127.444 C 5.475 129.027 5.286 130.664 5.286 132.329 C 11.718 132.634 18.337 132.039 24.73 129.681 C 25.783 129.293 26.846 128.925 27.875 128.48 C 30.789 127.221 32.122 125.357 31.808 122.171 C 31.562 119.658 31.059 117.091 30.18 114.733 C 27.923 108.656 25.295 102.715 23 96.648 C 20.376 89.704 18.39 82.557 18.057 75.105 C 17.912 71.851 18.419 68.559 18.709 65.29 C 18.902 63.126 20.941 62.492 22.531 60.874 C 22.739 62.133 23.183 63.131 23 63.993 C 21.333 71.943 22.633 79.676 24.507 87.385 C 24.71 88.208 24.933 89.026 25.242 90.213 C 25.406 89.259 25.522 88.687 25.594 88.116 C 25.73 87.09 26.599 86.663 27.266 86.959 C 28.764 87.627 30.122 86.939 31.504 86.804 C 36.534 86.305 41.549 85.666 46.569 85.061 C 46.883 85.022 47.299 84.935 47.468 84.712 C 49.686 81.831 51.865 78.921 54.049 76.021 C 54.092 75.962 54.092 75.87 54.121 75.764 C 46.738 72.534 41.032 67.3 36.408 60.782 C 33.862 57.194 32.427 53.132 31.393 48.9 C 31.161 47.941 30.494 47.045 31.349 45.985 C 32.383 44.702 33.828 44.682 34.335 46.256 C 34.886 47.956 36.123 48.745 37.5 49.457 C 40.298 50.909 43.187 52.197 45.936 53.737 C 51.314 56.749 55.315 60.942 56.716 67.189 C 56.866 67.857 56.992 68.535 57.383 69.275 C 58.267 67.179 59.267 65.116 60.016 62.971 C 61.05 59.988 61.886 56.943 62.824 53.926 C 63.075 53.113 63.249 52.217 64.297 51.965 C 64.447 51.931 64.582 51.674 64.65 51.495 C 66.945 45.046 66.974 38.514 65.128 31.982 C 64.307 29.076 63.196 26.249 62.215 23.387 C 62.171 23.266 62.133 23.14 62.021 22.786 C 60.625 32.272 62.365 41.148 64.089 49.975 C 62.819 50.58 62.239 50.047 61.799 49.098 C 59.978 45.176 59.05 41.007 58.402 36.761 C 57.576 31.318 58.257 25.963 59.306 20.627 C 59.562 19.31 59.731 17.978 59.992 16.661 C 60.185 15.698 60.775 15.131 61.814 15.179 C 62.664 15.223 63.162 15.431 62.944 16.54 C 62.799 17.281 62.983 18.196 63.307 18.898 C 64.428 21.334 65.616 23.74 66.887 26.103 C 69.491 30.941 70.989 36.025 70.356 41.569 C 69.955 45.099 69.506 48.643 66.935 51.452 C 66.708 51.699 66.824 52.26 66.781 52.672 L 67.245 52.774\" fill=\"var(--token-39bcef1d-b7c3-4f42-b96c-853873d32f23, rgb(181, 131, 107)) /* {&quot;name&quot;:&quot;Tan&quot;} */\"></path><path d=\"M 136.827 104.996 C 139.538 103.863 142.162 102.793 144.766 101.674 C 147.95 100.309 150.482 98.12 152.449 95.282 C 155.251 91.239 156.406 86.939 154.285 82.199 C 153.231 79.846 151.439 78.577 148.82 78.534 C 145.984 78.485 143.462 79.357 141.268 81.119 C 140.881 81.429 140.577 82.068 140.553 82.567 C 140.437 84.988 140.553 87.424 140.355 89.84 C 139.929 95.031 138.765 100.076 136.832 104.991 M 78.855 77.885 C 79.285 79.308 79.812 80.906 80.247 82.533 C 81.566 87.458 82.711 92.44 84.19 97.321 C 86.118 103.683 88.664 109.809 92.988 114.985 C 97.057 119.861 102.241 122.568 108.673 122.558 C 115.031 122.548 120.394 120.026 124.772 115.571 C 134.397 105.77 137.059 93.675 135.948 80.398 C 135.74 77.933 134.726 75.483 135.74 72.868 C 134.088 73.052 132.513 73.265 130.933 73.391 C 126.149 73.783 121.346 73.992 116.587 74.558 C 109.074 75.454 101.579 76.456 93.979 76.287 C 91.399 76.229 88.794 76.485 86.219 76.761 C 83.76 77.023 81.325 77.502 78.855 77.89 M 75.676 75.367 C 77.734 73.304 80.735 73.314 83.586 73.164 C 89.5 72.849 95.433 72.844 101.348 72.554 C 104.667 72.389 107.962 71.851 111.277 71.566 C 113.988 71.333 116.722 71.338 119.423 71.033 C 125.12 70.389 130.817 69.668 136.489 68.835 C 137.731 68.651 138.113 69.256 138.335 70.094 C 138.939 72.345 139.437 74.631 139.978 76.902 C 140.055 77.236 140.118 77.57 140.157 77.754 C 142.07 77.309 143.906 76.708 145.79 76.471 C 150.608 75.856 153.637 77.463 155.899 81.754 C 159.952 89.457 158.759 95.617 151.647 102.303 C 147.549 106.153 142.365 107.945 136.885 108.671 C 135.528 108.85 134.871 109.189 134.199 110.361 C 131.715 114.68 128.57 118.505 124.463 121.352 C 115.64 127.463 105.643 129.313 95.11 122.766 C 89.287 119.144 85.509 114.065 82.842 107.94 C 79.358 99.941 76.783 91.661 75.145 83.095 C 74.768 81.114 74.85 79.139 75.546 77.202 C 75.705 76.752 75.628 76.219 75.681 75.386\" fill=\"var(--token-39bcef1d-b7c3-4f42-b96c-853873d32f23, rgb(181, 131, 107)) /* {&quot;name&quot;:&quot;Tan&quot;} */\"></path></g></svg>',svgContentId:9477831338}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-hsbpqc\",\"data-framer-name\":\"Asset_1\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 197 172\"><g transform=\"translate(-0.007 0.001)\" id=\"ss8785228500_1\"><path d=\"M 106.712 57.61 C 99.983 62.342 93.609 67.194 88.108 73.754 C 96.434 70.477 103.748 66.717 106.712 57.61 M 106.073 12.365 C 102.724 21.406 99.452 30.434 98.579 40.109 C 103.814 31.599 107.688 22.715 106.073 12.365 M 67.716 92.879 C 66.366 85.046 63.751 78.341 57.841 73.464 C 54.986 71.111 51.763 69.204 48.696 67.11 C 47.672 66.409 46.606 65.764 45.25 64.895 C 49.22 77.248 57.516 85.535 67.722 92.879 M 34.653 111.033 C 34.424 113.012 34.382 115.312 33.834 117.484 C 33.424 119.12 34.051 119.675 35.328 120.061 C 35.84 120.218 36.376 120.333 36.906 120.351 C 47.359 120.713 57.805 121.25 68.264 121.341 C 74.005 121.389 79.752 120.671 85.5 120.333 C 86.753 120.261 87.319 119.657 87.428 118.45 C 87.711 115.348 88.024 112.252 88.331 109.047 C 85.982 108.8 83.795 108.462 81.602 108.359 C 78.861 108.227 76.108 108.269 73.36 108.269 C 70.661 108.269 67.95 108.516 65.276 108.287 C 62.583 108.058 59.998 108.74 57.335 108.812 C 52.829 108.933 48.341 109.711 43.841 110.176 C 40.864 110.484 37.882 110.737 34.647 111.039 M 34.924 122.771 C 35.563 124.28 36.34 126 37.015 127.756 C 39.425 133.984 42.16 140.11 44.082 146.489 C 45.871 152.434 45.798 158.463 40.907 163.411 C 43.485 165.753 46.594 166.936 49.793 167.576 C 57.498 169.115 65.324 169.253 73.138 168.789 C 75.439 168.65 77.758 167.823 79.945 166.978 C 81.71 166.296 82.71 164.733 82.554 162.717 C 82.054 156.393 82.204 150.092 82.861 143.785 C 83.331 139.277 83.62 134.745 84.18 130.249 C 84.476 127.889 85.186 125.583 85.68 123.387 C 68.716 125.016 51.871 123.876 34.924 122.765 M 83.855 65.794 C 86.44 60.652 89.03 55.522 91.603 50.374 C 93.542 46.482 95.127 42.661 95.133 38.026 C 95.139 28.171 97.898 18.75 101.145 9.499 C 101.591 8.225 102.073 6.958 102.374 5.648 C 102.549 4.888 102.404 4.055 102.404 3.119 C 102.832 2.57 103.404 1.87 103.941 1.146 C 105.133 -0.465 106.368 -0.405 107.182 1.502 C 108.025 3.476 108.778 5.527 109.236 7.622 C 112.17 21.134 109.869 33.663 101.916 45.039 C 101.127 46.168 99.97 47.049 98.94 47.99 C 98.603 48.298 98.019 48.69 97.681 48.594 C 96.018 48.099 95.735 49.306 95.199 50.35 C 90.898 58.751 86.572 67.146 82.259 75.541 C 82.138 75.776 82.042 76.023 82.126 76.56 C 82.771 76.12 83.662 75.824 84.018 75.215 C 88.265 67.936 93.765 61.726 100.314 56.512 C 105.037 52.752 110.043 49.36 114.917 45.788 C 115.749 45.178 116.375 45.299 116.953 46.138 C 118.11 47.821 117.911 48.781 116.863 50.495 C 114.839 53.796 112.893 57.164 111.188 60.634 C 109.399 64.285 107.706 67.948 104.676 70.779 C 100.844 74.352 96.175 76.434 91.356 78.202 C 88.934 79.089 86.446 79.789 83.963 80.501 C 83.259 80.707 82.385 80.918 81.753 80.682 C 80.319 80.151 79.692 80.863 79.096 81.932 C 77.915 84.05 76.686 86.144 75.535 88.281 C 75.336 88.655 75.415 89.18 75.415 89.21 C 74.385 90.544 73.493 91.666 72.631 92.813 C 70.902 95.112 69.228 97.454 67.456 99.717 C 65.932 101.672 64.312 103.549 62.589 105.631 C 63.107 105.674 63.486 105.716 63.866 105.728 C 70.113 105.939 76.361 106.078 82.602 106.392 C 84.18 106.47 85.735 107.116 87.295 107.514 C 87.608 107.593 87.964 107.877 88.205 107.792 C 90.38 107.056 90.223 108.685 90.289 109.904 C 90.494 113.851 90.313 117.732 89.048 121.57 C 87.078 127.539 87.265 133.827 86.825 140.007 C 86.524 144.208 86.373 148.426 86.277 152.639 C 86.211 155.445 86.289 158.257 86.427 161.064 C 86.644 165.463 85.198 168.276 81.072 169.863 C 78.294 170.931 75.288 171.77 72.342 171.945 C 63.769 172.458 55.191 172.223 46.78 170.231 C 42.804 169.29 40.623 167.823 38.334 165.24 C 34.852 166.218 31.49 167.364 28.038 168.089 C 22.098 169.344 16.08 169.736 10.025 168.97 C 7.706 168.674 5.917 167.509 4.133 165.964 C 0.663 162.965 0.88 158.795 0.356 154.974 C -0.969 145.294 1.615 136.109 4.663 127.074 C 6.507 121.612 8.537 116.205 10.604 110.822 C 13.08 104.364 12.821 97.707 12.465 90.99 C 12.296 87.768 12.272 84.497 12.658 81.304 C 12.995 78.462 14.507 76.271 17.833 76.035 C 19.11 75.945 20.351 75.432 21.628 75.305 C 22.116 75.257 22.809 75.619 23.147 76.017 C 24.08 77.116 23.641 77.852 22.345 78.214 C 21.411 78.474 20.496 78.842 19.55 78.987 C 17.996 79.228 17.459 80.175 17.544 81.594 C 17.761 85.209 17.821 88.842 18.291 92.421 C 19.399 100.852 18.628 108.933 15.116 116.796 C 11.929 123.93 9.146 131.238 7.368 138.897 C 5.838 145.511 5.609 152.132 6.549 158.843 C 6.826 160.816 6.591 162.856 6.591 164.932 C 14.61 165.312 22.863 164.57 30.834 161.631 C 32.147 161.148 33.472 160.69 34.756 160.134 C 38.388 158.565 40.051 156.242 39.66 152.271 C 39.352 149.138 38.726 145.94 37.629 143.001 C 34.816 135.427 31.539 128.022 28.677 120.46 C 25.406 111.805 22.93 102.898 22.514 93.61 C 22.333 89.554 22.966 85.45 23.327 81.376 C 23.568 78.679 26.111 77.888 28.093 75.872 C 28.352 77.442 28.906 78.685 28.677 79.759 C 26.599 89.669 28.219 99.307 30.557 108.915 C 30.81 109.941 31.087 110.96 31.472 112.439 C 31.677 111.25 31.822 110.538 31.912 109.826 C 32.081 108.546 33.165 108.015 33.997 108.383 C 35.864 109.216 37.557 108.359 39.28 108.19 C 45.551 107.569 51.805 106.772 58.064 106.018 C 58.456 105.969 58.974 105.861 59.185 105.583 C 61.95 101.992 64.667 98.365 67.39 94.75 C 67.444 94.678 67.444 94.563 67.481 94.43 C 58.275 90.405 51.16 83.881 45.395 75.758 C 42.22 71.286 40.431 66.222 39.141 60.948 C 38.852 59.753 38.021 58.636 39.087 57.315 C 40.376 55.715 42.178 55.691 42.81 57.653 C 43.497 59.771 45.039 60.755 46.756 61.642 C 50.245 63.452 53.847 65.058 57.275 66.977 C 63.98 70.731 68.969 75.957 70.716 83.742 C 70.902 84.575 71.059 85.42 71.547 86.343 C 72.65 83.73 73.897 81.159 74.83 78.486 C 76.12 74.768 77.162 70.972 78.331 67.212 C 78.644 66.198 78.861 65.082 80.168 64.768 C 80.355 64.726 80.524 64.406 80.608 64.183 C 83.469 56.144 83.506 48.002 81.204 39.861 C 80.18 36.24 78.794 32.716 77.572 29.149 C 77.517 28.998 77.469 28.841 77.331 28.4 C 75.589 40.223 77.758 51.286 79.909 62.287 C 78.325 63.042 77.602 62.378 77.053 61.195 C 74.782 56.307 73.626 51.111 72.818 45.818 C 71.788 39.034 72.637 32.359 73.945 25.709 C 74.264 24.067 74.475 22.408 74.8 20.766 C 75.041 19.565 75.776 18.859 77.071 18.919 C 78.132 18.974 78.752 19.233 78.481 20.615 C 78.3 21.539 78.529 22.679 78.933 23.554 C 80.331 26.59 81.813 29.589 83.397 32.535 C 86.644 38.564 88.512 44.9 87.723 51.811 C 87.223 56.21 86.662 60.628 83.457 64.128 C 83.174 64.436 83.319 65.136 83.265 65.649 L 83.843 65.776\" fill=\"var(--token-39bcef1d-b7c3-4f42-b96c-853873d32f23, rgb(181, 131, 107)) /* {&quot;name&quot;:&quot;Tan&quot;} */\"></path><path d=\"M 170.601 130.864 C 173.981 129.452 177.252 128.118 180.5 126.724 C 184.47 125.022 187.626 122.294 190.078 118.758 C 193.573 113.719 195.012 108.359 192.368 102.451 C 191.054 99.518 188.819 97.937 185.554 97.882 C 182.018 97.822 178.873 98.908 176.138 101.105 C 175.656 101.491 175.276 102.288 175.246 102.91 C 175.102 105.927 175.246 108.963 174.999 111.974 C 174.469 118.444 173.017 124.733 170.607 130.858 M 98.32 97.074 C 98.856 98.848 99.513 100.84 100.055 102.867 C 101.7 109.005 103.127 115.215 104.971 121.299 C 107.375 129.229 110.549 136.863 115.941 143.315 C 121.014 149.392 127.478 152.766 135.497 152.753 C 143.425 152.741 150.112 149.597 155.57 144.045 C 167.571 131.83 170.89 116.754 169.505 100.206 C 169.246 97.134 167.981 94.08 169.246 90.821 C 167.185 91.051 165.221 91.316 163.251 91.473 C 157.287 91.962 151.299 92.222 145.365 92.928 C 135.997 94.044 126.653 95.293 117.176 95.082 C 113.959 95.01 110.712 95.33 107.501 95.674 C 104.435 95.999 101.398 96.597 98.32 97.08 M 94.356 93.935 C 96.922 91.365 100.663 91.377 104.218 91.19 C 111.592 90.797 118.99 90.791 126.364 90.429 C 130.502 90.224 134.611 89.554 138.744 89.198 C 142.124 88.908 145.534 88.914 148.901 88.534 C 156.004 87.731 163.107 86.832 170.18 85.794 C 171.728 85.565 172.204 86.319 172.481 87.363 C 173.234 90.17 173.855 93.018 174.529 95.849 C 174.626 96.265 174.704 96.681 174.752 96.911 C 177.138 96.356 179.427 95.607 181.777 95.311 C 187.783 94.545 191.56 96.549 194.38 101.896 C 199.434 111.498 197.946 119.174 189.078 127.509 C 183.97 132.307 177.505 134.54 170.674 135.445 C 168.981 135.668 168.161 136.091 167.324 137.551 C 164.227 142.934 160.306 147.702 155.185 151.251 C 144.184 158.867 131.719 161.172 118.586 153.013 C 111.327 148.499 106.615 142.168 103.29 134.534 C 98.946 124.564 95.735 114.244 93.693 103.567 C 93.223 101.099 93.326 98.637 94.193 96.223 C 94.392 95.662 94.295 94.998 94.362 93.96\" fill=\"var(--token-39bcef1d-b7c3-4f42-b96c-853873d32f23, rgb(181, 131, 107)) /* {&quot;name&quot;:&quot;Tan&quot;} */\"></path></g></svg>',svgContentId:8785228500,withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1b9ezx3\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ok1cbl\",\"data-framer-name\":\"link\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1angllf\",\"data-styles-preset\":\"DVJETT8D0\",children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1SuW54_XK0Qfd33E5hben_AERNT0XZLnh/view?usp=sharing\",motionChild:true,nodeId:\"avMvVgIWg\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7xk7et\",\"data-styles-preset\":\"xWV9a_rWX\",children:\"menus\"})})})}),className:\"framer-lzplb3\",\"data-framer-name\":\"Home\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1angllf\",\"data-styles-preset\":\"DVJETT8D0\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":WtigvMB1G\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"PQ4ctVqwF\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7xk7et\",\"data-styles-preset\":\"xWV9a_rWX\",children:\"find us\"})})})}),className:\"framer-1ekdk6i hidden-djy17h\",\"data-framer-name\":\"Home\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1angllf\",\"data-styles-preset\":\"DVJETT8D0\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ame_5u2Ef\"},motionChild:true,nodeId:\"DmgVtbgtx\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7xk7et\",\"data-styles-preset\":\"xWV9a_rWX\",children:\"events\"})})})}),className:\"framer-nuyvey\",\"data-framer-name\":\"Home\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1angllf\",\"data-styles-preset\":\"DVJETT8D0\",children:/*#__PURE__*/_jsx(Link,{href:\"https://squareup.com/gift/MLD0B4H4DN8XJ/order\",motionChild:true,nodeId:\"zQPSKbVif\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7xk7et\",\"data-styles-preset\":\"xWV9a_rWX\",children:\"gift vouchers\"})})})}),className:\"framer-jopo00\",\"data-framer-name\":\"Home\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R5cjfhnTd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+469.2),pixelHeight:928,pixelWidth:1232,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/iTRdoMepVtq50YrT1NHNIHBpudM.png\",srcSet:\"https://framerusercontent.com/images/iTRdoMepVtq50YrT1NHNIHBpudM.png?scale-down-to=512 512w,https://framerusercontent.com/images/iTRdoMepVtq50YrT1NHNIHBpudM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iTRdoMepVtq50YrT1NHNIHBpudM.png 1232w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+435),pixelHeight:928,pixelWidth:1232,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/iTRdoMepVtq50YrT1NHNIHBpudM.png\",srcSet:\"https://framerusercontent.com/images/iTRdoMepVtq50YrT1NHNIHBpudM.png?scale-down-to=512 512w,https://framerusercontent.com/images/iTRdoMepVtq50YrT1NHNIHBpudM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iTRdoMepVtq50YrT1NHNIHBpudM.png 1232w\"},className:\"framer-vcp8qs\",\"data-framer-name\":\"Header Image\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vjkxhp\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"1.9px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\"},children:\"join us for all day brunch at Lakeside\"})}),className:\"framer-192d4v8 hidden-djy17h\",fonts:[\"GF;Libre Baskerville-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"2.9px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\"},children:\"join us for all day brunch at Lakeside\"})}),className:\"framer-1fhx1le hidden-72rtr7 hidden-hq688s\",fonts:[\"GF;Libre Baskerville-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-174ikov\",\"data-framer-name\":\"Overlay\"}),/*#__PURE__*/_jsx(Link,{href:{hash:\":WtigvMB1G\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"cunUWrnwe\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1qkrkbr framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"book a table\"})}),className:\"framer-cgv59r\",fonts:[\"GF;Libre Baskerville-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vzd9aj\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"1.9px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\"},children:\"please note reservations are for diners only.\"})}),className:\"framer-1grc9q3 hidden-djy17h\",fonts:[\"GF;Libre Baskerville-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"2.9px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\"},children:\"please note reservations are for diners only.\"})}),className:\"framer-gtzfl0 hidden-72rtr7 hidden-hq688s\",fonts:[\"GF;Libre Baskerville-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1egaxp4\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R5cjfhnTd:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.7px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-39bcef1d-b7c3-4f42-b96c-853873d32f23, rgb(181, 131, 107))\"},children:\"Park Side Kitchen is an all day dining casual restaurant, located in the suburbs of Cardiff.  In addition to our original little coffee shop in Heath, you can now join us for a relaxed atmosphere, delicious food, and maybe even a glass of wine or two at our Lakeside branch.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.7px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-39bcef1d-b7c3-4f42-b96c-853873d32f23, rgb(181, 131, 107))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.7px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-39bcef1d-b7c3-4f42-b96c-853873d32f23, rgb(181, 131, 107))\"},children:\"We're open late on Friday & Saturday evenings, with our happy hour between 6-7pm offering two for \\xa315 cocktails.\"})]}),fonts:[\"GF;Libre Baskerville-regular\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1angllf\",\"data-styles-preset\":\"DVJETT8D0\",children:\"Park Side Kitchen is an all day dining casual restaurant, located in the suburbs of Cardiff.  In addition to our original little coffee shop in Heath, you can join us for a relaxed atmosphere, delicious food, and maybe even a glass of wine or two at our Lakeside branch.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1angllf\",\"data-styles-preset\":\"DVJETT8D0\",children:\"We're open late on Friday & Saturday evenings, with our happy hour between 6-7pm offering two for \\xa315 cocktails.\"})]}),className:\"framer-1uz6vqt\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R5cjfhnTd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.7px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-39bcef1d-b7c3-4f42-b96c-853873d32f23, rgb(181, 131, 107))\"},children:[\"Just fancy a coffee?\",/*#__PURE__*/_jsx(\"br\",{}),\"Our Heath branch offers coffee, cake and snacks.\"]})}),fonts:[\"GF;Libre Baskerville-regular\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1angllf\",\"data-styles-preset\":\"DVJETT8D0\",children:[\"Just fancy a coffee?\",/*#__PURE__*/_jsx(\"br\",{}),\"Our Heath branch offers coffee, cake and snacks.\"]})}),className:\"framer-eklhq8\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-buh8yu\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wemrnq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gA8fOdCMM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:.2,id:\"gA8fOdCMM\",layoutId:\"gA8fOdCMM\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1537,pixelHeight:2048,pixelWidth:1537,src:\"https://framerusercontent.com/images/IsrtMXsMqqMQB1iIhEH3grBLHM.jpg?scale-down-to=512\"},className:\"framer-1jh0cc\",\"data-framer-name\":\"P1424642\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1537,pixelHeight:2048,pixelWidth:1537,src:\"https://framerusercontent.com/images/800TxhjzzekR2M6gWNpliB9k76c.jpg?scale-down-to=512\"},className:\"framer-129g9zs\",\"data-framer-name\":\"P1491643\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1537,pixelHeight:2560,pixelWidth:1921,sizes:\"804.5234px\",src:\"https://framerusercontent.com/images/bQrJ9BMhK8GO3iiIGvk78niYw8.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/bQrJ9BMhK8GO3iiIGvk78niYw8.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/bQrJ9BMhK8GO3iiIGvk78niYw8.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/bQrJ9BMhK8GO3iiIGvk78niYw8.jpg 1921w\"},className:\"framer-6fpvog\",\"data-framer-name\":\"P1424043\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1537,pixelHeight:2048,pixelWidth:1537,src:\"https://framerusercontent.com/images/UfaXWAX7uJFUhIAiX0f9HHJw8n0.jpg?scale-down-to=512\"},className:\"framer-1nwu299\",\"data-framer-name\":\"P1480779\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1536,pixelHeight:2048,pixelWidth:1536,src:\"https://framerusercontent.com/images/qvVMCq8p0SAQ2I31GrdpLssUqc.jpg?scale-down-to=512\"},className:\"framer-sd4sx\",\"data-framer-name\":\"P1457512\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1537,pixelHeight:2048,pixelWidth:1537,src:\"https://framerusercontent.com/images/X5baAhpVBSX1exG2F6DEvum1GwI.jpg?scale-down-to=512\"},className:\"framer-11b9tek\",\"data-framer-name\":\"P1435357\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1537,pixelHeight:2048,pixelWidth:1537,sizes:\"805.2739px\",src:\"https://framerusercontent.com/images/vWNHA2oafujgR2ggP50xcG60Y.jpg\",srcSet:\"https://framerusercontent.com/images/vWNHA2oafujgR2ggP50xcG60Y.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/vWNHA2oafujgR2ggP50xcG60Y.jpg 1537w\"},className:\"framer-omryfj\",\"data-framer-name\":\"P1435785\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1537,pixelHeight:2048,pixelWidth:1537,src:\"https://framerusercontent.com/images/16E7Ux6kGbYnMH0EfPDUKTZ2b8.jpg?scale-down-to=512\"},className:\"framer-1i3tslu\",\"data-framer-name\":\"P1457504\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1536,pixelHeight:2048,pixelWidth:1537,sizes:\"798px\",src:\"https://framerusercontent.com/images/ikWeSl20XjGjk0AGYV5CLs820.jpg\",srcSet:\"https://framerusercontent.com/images/ikWeSl20XjGjk0AGYV5CLs820.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/ikWeSl20XjGjk0AGYV5CLs820.jpg 1537w\"},className:\"framer-16fuvue\",\"data-framer-name\":\"P1424489\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1537,pixelHeight:2048,pixelWidth:1537,src:\"https://framerusercontent.com/images/0I3NzRvPIkCA3tI4uvcu6bvzCoI.jpg?scale-down-to=512\"},className:\"framer-1u9mplu\",\"data-framer-name\":\"P1435486\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1537,pixelHeight:2048,pixelWidth:1537,sizes:\"796.2681px\",src:\"https://framerusercontent.com/images/QUCq1pNbBRIRZH2vi3SiYlVGCQI.jpg\",srcSet:\"https://framerusercontent.com/images/QUCq1pNbBRIRZH2vi3SiYlVGCQI.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/QUCq1pNbBRIRZH2vi3SiYlVGCQI.jpg 1537w\"},className:\"framer-kax9e0\",\"data-framer-name\":\"P1435641\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1537,pixelHeight:2048,pixelWidth:1537,src:\"https://framerusercontent.com/images/IsrtMXsMqqMQB1iIhEH3grBLHM.jpg?scale-down-to=512\"},className:\"framer-1jh0cc\",\"data-framer-name\":\"P1424642\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1537,pixelHeight:2048,pixelWidth:1537,src:\"https://framerusercontent.com/images/QPUHxxEbGjzcgMjmbdTx8b8Dvg.jpg?scale-down-to=512\"},className:\"framer-1xaeeqx\",\"data-framer-name\":\"P1424707\"})],speed:10,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uwmcx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R5cjfhnTd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1930.2+0),pixelHeight:1921,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/4YkCNxmMKmZGquqJuAysGQwjx6k.jpg\",srcSet:\"https://framerusercontent.com/images/4YkCNxmMKmZGquqJuAysGQwjx6k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4YkCNxmMKmZGquqJuAysGQwjx6k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4YkCNxmMKmZGquqJuAysGQwjx6k.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4YkCNxmMKmZGquqJuAysGQwjx6k.jpg 2560w\"}},v4Uz11cw7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1788+0),pixelHeight:1921,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/4YkCNxmMKmZGquqJuAysGQwjx6k.jpg\",srcSet:\"https://framerusercontent.com/images/4YkCNxmMKmZGquqJuAysGQwjx6k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4YkCNxmMKmZGquqJuAysGQwjx6k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4YkCNxmMKmZGquqJuAysGQwjx6k.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4YkCNxmMKmZGquqJuAysGQwjx6k.jpg 2560w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1824+0),pixelHeight:1921,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/4YkCNxmMKmZGquqJuAysGQwjx6k.jpg\",srcSet:\"https://framerusercontent.com/images/4YkCNxmMKmZGquqJuAysGQwjx6k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4YkCNxmMKmZGquqJuAysGQwjx6k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4YkCNxmMKmZGquqJuAysGQwjx6k.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4YkCNxmMKmZGquqJuAysGQwjx6k.jpg 2560w\"},className:\"framer-1j4mh61\",\"data-framer-name\":\"Header Image\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R5cjfhnTd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2484.2),pixelHeight:928,pixelWidth:1232,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/F5ahNyZ1ubtXcOpH2RqQcECYTgo.png\",srcSet:\"https://framerusercontent.com/images/F5ahNyZ1ubtXcOpH2RqQcECYTgo.png?scale-down-to=512 512w,https://framerusercontent.com/images/F5ahNyZ1ubtXcOpH2RqQcECYTgo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F5ahNyZ1ubtXcOpH2RqQcECYTgo.png 1232w\"}},v4Uz11cw7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2259),pixelHeight:928,pixelWidth:1232,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/F5ahNyZ1ubtXcOpH2RqQcECYTgo.png\",srcSet:\"https://framerusercontent.com/images/F5ahNyZ1ubtXcOpH2RqQcECYTgo.png?scale-down-to=512 512w,https://framerusercontent.com/images/F5ahNyZ1ubtXcOpH2RqQcECYTgo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F5ahNyZ1ubtXcOpH2RqQcECYTgo.png 1232w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2273),pixelHeight:928,pixelWidth:1232,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/F5ahNyZ1ubtXcOpH2RqQcECYTgo.png\",srcSet:\"https://framerusercontent.com/images/F5ahNyZ1ubtXcOpH2RqQcECYTgo.png?scale-down-to=512 512w,https://framerusercontent.com/images/F5ahNyZ1ubtXcOpH2RqQcECYTgo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F5ahNyZ1ubtXcOpH2RqQcECYTgo.png 1232w\"},className:\"framer-rk3jfl\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f3cl9g\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"1.9px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"book a table\"})}),className:\"framer-ktqt9g\",fonts:[\"GF;Libre Baskerville-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R5cjfhnTd:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"at Park Side Kitchen  \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Lakeside, Amber Vista, \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Clear Water Way,   Cardiff  CF23 6DZ\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Tel. 029 2294 9900\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Sun - Thurs  9am - 5pm\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Fri & Sat  9am - 10pm  \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Brunch menu  9am - 4pm\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Bar snacks menu  4pm - 10pm\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"at Park Side Kitchen  |  Lakeside, \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Amber Vista, Clear Water Way, Cardiff  CF23 6DZ\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Tel. 029 2294 9900\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Sun - Thurs 9am - 5pm   |  Fri & Sat 9am - 10pm  \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Brunch menu 9am - 4pm   |  Bar snacks menu 4pm-10pm\"})]}),className:\"framer-6sjyey\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ymxuz4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-502e50-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RbI9okngB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\\'https://booking.resdiary.com/bundles/jquery.js\\' type=\\'text/javascript\\'></script>\\n<script>\\n  $(function() {\\n    var widgetFrame = $(\"#rd-widget-frame\");\\n    widgetFrame.load(\"https://booking.resdiary.com/widget/Mini/Landscape/Parkside/53078?includeJquery=false\", function() {\\n      $(this).contents().find(\"html\").css({\\n        \"display\": \"flex\",\\n        \"flex-direction\": \"column\"\\n      });\\n      $(this).contents().find(\"body\").css({\\n        \"margin\": \"0\",\\n        \"display\": \"flex\",\\n        \"flex-direction\": \"column\",\\n        \"justify-content\": \"flex-start\"\\n      });\\n    });\\n  })\\n</script>\\n<div id=\\'rd-widget-frame\\' style=\\'width: 100%; height: 100%;\\'></div>',id:\"RbI9okngB\",layoutId:\"RbI9okngB\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hbwbd\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ng12gq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R5cjfhnTd:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Also find us at \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Park Side Coffee  |  Heath (walk in only), \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"32 St Anthony Rd, Cardiff  CF14 4DJ\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Open: Tues - Fri 8:30am - 4pm\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Sat & Sun 9am - 4pm\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Also find us at \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Park Side Coffee  |  Heath (walk in only), 32 St Anthony Rd, Cardiff  CF14 4DJ\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-copgu7\",\"data-styles-preset\":\"DRndUEaGA\",children:\"Open: Tues - Fri 8:30am - 4pm  |  Sat & Sun 9am - 4pm\"})]}),className:\"framer-9mx815\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-40vzsk\",\"data-framer-name\":\"Overlay\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nzaj0g\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-5jgdpu\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ygfrc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1barrk3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6d2wx9\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.bodegawine.bar\",motionChild:true,nodeId:\"yzCYu0QYs\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R5cjfhnTd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1364,intrinsicWidth:950,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3343.7999999999997+0+0+0+29+138.39999999999998+0+0+0),pixelHeight:1364,pixelWidth:950,sizes:\"55.1583px\",src:\"https://framerusercontent.com/images/iMRIce1L7tA78SyDaigZPHsJaY.png\",srcSet:\"https://framerusercontent.com/images/iMRIce1L7tA78SyDaigZPHsJaY.png?scale-down-to=1024 713w,https://framerusercontent.com/images/iMRIce1L7tA78SyDaigZPHsJaY.png 950w\"}},v4Uz11cw7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1364,intrinsicWidth:950,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2918.6+0+0+0+38+0+0+0),pixelHeight:1364,pixelWidth:950,sizes:\"55.1583px\",src:\"https://framerusercontent.com/images/iMRIce1L7tA78SyDaigZPHsJaY.png\",srcSet:\"https://framerusercontent.com/images/iMRIce1L7tA78SyDaigZPHsJaY.png?scale-down-to=1024 713w,https://framerusercontent.com/images/iMRIce1L7tA78SyDaigZPHsJaY.png 950w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1364,intrinsicWidth:950,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2855.6+0+0+0+38+0+0+0),pixelHeight:1364,pixelWidth:950,sizes:\"55.1583px\",src:\"https://framerusercontent.com/images/iMRIce1L7tA78SyDaigZPHsJaY.png\",srcSet:\"https://framerusercontent.com/images/iMRIce1L7tA78SyDaigZPHsJaY.png?scale-down-to=1024 713w,https://framerusercontent.com/images/iMRIce1L7tA78SyDaigZPHsJaY.png 950w\"},className:\"framer-uivc8v framer-lux5qc\",\"data-framer-name\":\"Bodego_Logo_bw_lakeside\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.ballers.pizza\",motionChild:true,nodeId:\"DLBe6CM7L\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R5cjfhnTd:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 86 35\"><path d=\"M 26.661 17.524 C 25.93 17.475 25.3 17.673 24.821 17.946 C 22.905 18.789 21.619 20.078 20.939 21.616 C 20.687 22.087 20.636 22.558 20.762 23.03 C 20.888 23.6 21.317 23.873 22.123 23.823 C 22.552 23.774 22.93 23.724 23.308 23.575 C 24.543 23.154 25.526 22.484 26.257 21.69 C 26.434 21.492 26.51 21.269 26.51 21.07 C 26.56 20.178 26.636 19.285 26.686 18.343 Z M 26.61 23.873 C 26.232 24.071 25.93 24.245 25.627 24.443 C 24.77 24.914 23.787 25.237 22.728 25.386 C 20.51 25.708 18.72 24.691 18.594 22.98 C 18.519 22.087 18.771 21.244 19.275 20.376 C 20.132 18.913 21.418 17.698 23.157 16.78 C 24.014 16.309 24.947 15.987 26.005 15.887 L 26.862 15.739 C 26.862 15.54 26.913 15.416 26.913 15.267 C 26.963 13.383 26.963 14.375 26.711 12.539 C 26.585 11.597 26.207 11.622 25.602 10.804 C 24.669 9.663 23.384 9.018 21.569 8.968 C 21.266 8.968 21.014 9.018 20.712 8.968 C 20.46 8.919 20.208 8.82 20.031 8.745 C 19.729 8.596 19.527 8.274 19.653 8.051 C 19.829 7.778 20.082 7.53 20.46 7.53 C 21.821 7.48 23.182 7.48 24.417 8.001 C 25.905 8.572 27.089 9.316 27.77 10.481 C 28.451 11.572 28.829 11.795 28.904 12.961 C 29.156 15.838 29.106 15.838 28.803 18.665 C 28.677 19.979 28.703 21.294 28.703 22.633 L 28.955 23.798 C 29.03 24.27 29.383 24.542 29.938 24.691 L 30.744 24.84 C 31.375 25.038 31.602 25.41 31.425 25.832 C 31.299 26.154 30.82 26.452 30.316 26.402 C 28.904 26.254 27.467 25.758 27.039 24.617 L 26.862 24.245 C 26.812 24.121 26.736 24.022 26.61 23.873 M 32.963 8.82 L 32.912 3.091 C 32.912 2.892 32.912 2.669 32.963 2.471 C 33.089 2.198 33.391 2 33.769 1.95 C 34.198 1.95 34.5 2.099 34.702 2.372 C 34.753 2.595 34.828 2.793 34.828 3.041 L 35.03 8.448 C 35.055 13.011 35.055 11.572 35.156 16.086 C 35.231 17.698 35.484 19.285 35.66 20.847 C 35.736 21.591 36.089 22.31 36.593 22.955 C 37.021 23.476 37.525 23.947 38.206 24.22 L 38.71 24.493 C 39.139 24.766 39.265 25.237 38.962 25.584 C 38.66 25.956 38.03 26.105 37.551 25.832 C 36.92 25.51 36.24 25.162 35.761 24.741 C 34.702 23.848 33.971 22.806 33.719 21.69 C 33.517 20.649 33.341 19.607 33.215 18.64 C 32.862 15.069 32.988 12.391 32.963 8.82 M 40.676 7.58 L 40.626 1.851 C 40.626 1.653 40.626 1.429 40.676 1.231 C 40.802 0.958 41.105 0.76 41.483 0.71 C 41.912 0.71 42.214 0.859 42.416 1.132 C 42.466 1.355 42.542 1.553 42.542 1.801 L 42.743 7.208 C 42.769 11.771 42.769 10.332 42.869 14.846 C 42.945 16.458 43.197 18.045 43.374 19.607 C 43.449 20.351 43.802 21.07 44.306 21.715 C 44.735 22.236 45.239 22.707 45.92 22.98 L 46.424 23.253 C 46.852 23.526 46.978 23.997 46.676 24.344 C 46.373 24.716 45.743 24.865 45.264 24.592 C 44.634 24.27 43.953 23.922 43.474 23.501 C 42.416 22.608 41.685 21.566 41.433 20.45 C 41.231 19.409 41.054 18.367 40.928 17.4 C 40.576 13.829 40.676 11.151 40.676 7.58 M 56.86 9.712 C 56.961 8.919 56.683 8.15 56.179 7.456 C 55.524 6.563 54.238 6.439 53.305 7.084 C 53.079 7.208 52.877 7.381 52.701 7.58 C 52.322 8.076 51.944 8.596 51.667 9.092 C 51.112 10.134 50.785 11.225 50.633 12.341 C 50.583 12.539 50.633 12.812 50.684 13.011 C 51.339 14.523 52.827 14.821 54.44 14.052 C 55.146 13.705 55.65 13.209 55.978 12.663 C 56.532 11.746 56.86 10.779 56.86 9.712 M 50.331 15.243 C 50.281 16.582 50.281 17.896 50.507 19.186 C 50.684 20.277 51.062 21.318 51.667 22.286 C 51.944 22.707 52.272 23.129 52.776 23.426 C 53.759 24.146 55.196 24.27 56.305 23.426 C 57.061 22.881 57.616 22.236 57.994 21.492 C 58.498 20.649 58.876 19.731 58.927 18.764 C 58.977 18.69 58.977 18.591 58.977 18.516 C 59.078 18.169 59.406 17.971 59.91 17.971 C 60.338 17.971 60.742 18.169 60.792 18.566 C 60.843 18.739 60.843 18.938 60.792 19.161 C 60.465 20.624 59.935 22.062 58.826 23.377 C 58.397 23.873 57.843 24.344 57.238 24.716 C 55.7 25.634 53.986 25.683 52.348 24.964 C 51.465 24.542 50.734 23.947 50.255 23.278 C 49.323 21.889 48.768 20.475 48.592 18.913 C 48.365 17.103 48.415 15.342 48.566 13.581 C 48.718 12.068 49.096 10.605 49.65 9.167 C 49.978 8.324 50.457 7.58 51.138 6.885 C 51.465 6.538 51.843 6.166 52.297 5.918 C 54.062 4.777 56.583 5.149 57.742 6.662 C 58.347 7.456 58.675 8.348 58.75 9.316 C 58.801 10.779 58.423 12.217 57.49 13.556 C 56.935 14.275 56.28 14.895 55.347 15.317 C 53.86 15.962 52.322 16.111 50.785 15.367 C 50.734 15.317 50.684 15.317 50.608 15.292 Z M 63.893 9.44 C 63.641 9.415 63.515 9.34 63.313 9.266 C 62.96 9.117 62.784 8.894 62.859 8.646 C 62.91 8.348 63.162 8.2 63.489 8.125 L 63.868 8.125 C 64.75 8.076 65.632 8.076 66.489 8.076 C 66.59 8.076 66.741 8.076 66.842 8.1 C 67.22 8.125 67.472 8.348 67.472 8.646 C 67.523 8.944 67.271 9.167 66.893 9.241 C 66.64 9.291 66.414 9.291 66.161 9.316 C 65.96 9.316 65.809 9.365 65.683 9.365 C 65.531 9.911 65.506 11.523 65.657 12.787 C 65.859 12.812 65.909 12.713 65.985 12.589 C 66.237 12.291 66.514 11.994 66.766 11.647 C 67.724 10.556 69.01 9.737 70.497 9.117 C 71.178 8.82 71.959 8.621 72.791 8.596 C 72.993 8.596 73.22 8.621 73.472 8.671 C 73.774 8.696 74.001 8.968 74.001 9.192 C 74.052 9.44 73.749 9.762 73.421 9.836 L 73.119 9.836 C 72.035 9.886 71.178 10.258 70.296 10.729 C 68.733 11.547 67.724 12.713 66.943 13.978 C 66.212 15.168 65.834 16.433 65.683 17.772 C 65.506 19.93 65.657 22.087 65.657 24.27 L 65.657 24.542 C 65.96 24.716 66.237 24.617 66.54 24.642 C 66.792 24.666 67.069 24.666 67.321 24.741 C 67.624 24.815 67.8 25.063 67.75 25.336 C 67.75 25.559 67.548 25.758 67.271 25.832 C 67.069 25.906 66.842 25.956 66.64 25.956 L 63.414 25.956 C 63.212 25.956 62.985 25.931 62.784 25.857 C 62.481 25.782 62.305 25.609 62.305 25.386 C 62.305 25.113 62.456 24.914 62.784 24.79 C 62.935 24.716 63.162 24.716 63.313 24.666 C 63.515 24.666 63.666 24.617 63.792 24.617 C 63.842 24.617 63.842 24.567 63.893 24.567 C 64.094 23.972 64.044 11.151 63.893 9.44 M 75.665 26.229 C 75.463 26.353 75.312 26.502 75.11 26.576 C 74.808 26.725 74.455 26.7 74.203 26.551 C 73.9 26.353 73.799 26.105 73.951 25.782 L 74.102 25.51 C 74.606 24.89 75.06 24.294 75.488 23.674 L 75.791 23.402 C 76.043 23.203 76.547 23.178 76.85 23.278 C 77.102 23.426 77.253 23.699 77.203 23.972 C 77.152 24.096 77.102 24.195 77.001 24.319 L 76.497 25.014 C 77.303 25.634 78.211 25.807 79.295 25.807 C 79.496 25.807 79.698 25.733 79.849 25.733 C 81.538 25.51 82.395 24.741 82.345 23.402 C 82.345 22.211 81.74 21.194 80.732 20.302 C 79.723 19.359 78.665 18.467 77.606 17.549 C 76.9 16.979 76.345 16.359 75.892 15.689 C 74.278 13.482 75.564 10.531 77.908 9.241 C 79.597 8.274 81.412 8.175 83.303 8.968 C 83.404 9.043 83.504 9.092 83.706 9.167 C 83.807 9.117 84.009 9.043 84.16 9.018 C 84.513 8.944 84.815 8.894 85.118 9.142 C 85.37 9.365 85.37 9.638 85.219 9.911 L 85.067 10.134 L 83.58 12.093 C 83.479 12.217 83.429 12.316 83.278 12.391 C 82.975 12.614 82.622 12.688 82.32 12.539 C 81.916 12.391 81.765 12.093 81.916 11.771 C 81.967 11.572 82.118 11.423 82.219 11.275 C 82.421 11.002 82.622 10.704 82.874 10.432 L 82.874 10.283 C 82.723 10.208 82.622 10.06 82.421 9.985 C 81.614 9.688 80.757 9.638 79.925 9.886 C 79.32 10.084 78.816 10.357 78.387 10.68 C 76.85 11.895 76.497 13.73 77.505 15.267 C 77.908 15.838 78.412 16.334 78.967 16.805 C 80.026 17.723 81.085 18.64 82.093 19.558 C 83.252 20.599 83.958 21.765 84.109 23.154 C 84.311 25.063 83.026 26.601 80.53 27.022 C 79.925 27.146 79.32 27.146 78.74 27.146 C 77.883 27.146 77.127 26.923 76.396 26.65 C 76.169 26.452 75.917 26.353 75.665 26.229 M 6.268 22.484 C 6.268 22.98 6.217 23.377 6.268 23.774 C 6.268 24.17 6.142 24.617 6.394 25.038 C 7.578 25.038 8.612 24.865 9.671 24.642 C 10.099 24.567 10.603 24.443 10.956 24.27 C 11.385 24.096 11.813 23.947 11.813 23.625 C 11.813 23.302 11.309 23.178 10.881 23.054 C 9.469 22.608 7.982 22.434 6.268 22.484 M 6.192 2.397 L 6.192 17.103 C 6.192 18.194 6.192 19.26 6.242 20.302 C 6.242 20.475 6.116 20.624 6.495 20.798 C 7.856 20.55 9.015 20.078 10.074 19.409 C 11.435 18.591 12.368 17.673 13.099 16.607 C 15.015 13.73 15.191 10.779 13.906 7.753 C 13.275 6.488 12.418 5.323 11.057 4.306 C 9.998 3.488 8.763 2.892 7.226 2.521 C 6.948 2.496 6.646 2.496 6.192 2.397 M 4.049 2.273 C 3.318 2.397 2.764 2.521 2.209 2.595 C 1.957 2.669 1.655 2.768 1.403 2.768 C 0.974 2.818 0.546 2.644 0.419 2.397 C 0.243 2.149 0.293 1.777 0.672 1.578 C 0.974 1.454 1.226 1.38 1.529 1.305 C 3.949 0.685 6.343 0.735 8.688 1.429 C 10.477 1.95 11.889 2.768 13.074 3.736 C 14.813 5.199 15.922 6.86 16.401 8.696 C 17.208 11.374 16.956 14.003 15.469 16.557 C 14.41 18.343 12.872 19.88 10.477 21.07 C 10.351 21.12 10.301 21.194 10.099 21.318 C 10.528 21.442 10.83 21.517 11.208 21.591 C 11.839 21.765 12.444 21.963 12.998 22.286 C 14.284 23.104 14.359 24.121 13.049 24.964 C 12.544 25.237 11.99 25.485 11.435 25.683 C 10.503 25.956 9.519 26.179 8.536 26.303 C 6.444 26.551 4.402 26.576 2.31 26.353 C 2.008 26.303 1.755 26.278 1.503 26.179 C 0.999 26.055 0.772 25.733 0.823 25.46 C 0.873 25.138 1.327 24.89 1.882 24.89 C 2.26 24.89 2.613 24.964 2.94 25.014 C 3.318 25.014 3.671 25.138 4.125 24.964 C 4.125 24.766 4.175 24.567 4.175 24.344 C 4.1 17.053 4.049 9.712 4.049 2.273 M 23.913 33.197 L 23.913 34.685 L 23.737 34.685 L 23.737 34.041 L 22.98 34.041 L 22.98 34.685 L 22.804 34.685 L 22.804 33.197 L 22.98 33.197 L 22.98 33.867 L 23.737 33.867 L 23.737 33.197 Z M 25.93 34.313 L 25.577 33.545 L 25.224 34.313 Z M 25.98 34.462 L 25.148 34.462 L 25.048 34.71 L 24.871 34.71 L 25.577 33.197 L 25.602 33.197 L 26.308 34.71 L 26.131 34.71 Z M 28.451 33.197 L 28.451 34.71 L 27.417 33.594 L 27.417 34.685 L 27.241 34.685 L 27.241 33.173 L 28.274 34.313 L 28.274 33.197 Z M 30.568 33.941 C 30.568 33.594 30.341 33.371 29.963 33.371 L 29.711 33.371 L 29.711 34.537 L 29.963 34.537 C 30.316 34.537 30.568 34.313 30.568 33.941 M 30.744 33.941 C 30.744 34.388 30.442 34.685 29.963 34.685 L 29.535 34.685 L 29.535 33.197 L 29.963 33.197 C 30.442 33.197 30.744 33.495 30.744 33.941 M 32.988 34.437 L 33.114 34.338 C 33.19 34.462 33.341 34.561 33.492 34.561 C 33.694 34.561 33.845 34.462 33.845 34.313 C 33.845 34.14 33.618 34.065 33.442 33.991 C 33.265 33.917 33.038 33.842 33.038 33.594 C 33.038 33.371 33.24 33.197 33.517 33.197 C 33.744 33.197 33.895 33.321 33.946 33.47 L 33.82 33.545 C 33.769 33.421 33.643 33.346 33.517 33.346 C 33.366 33.346 33.215 33.445 33.215 33.594 C 33.215 33.743 33.391 33.793 33.568 33.867 C 33.795 33.966 34.022 34.065 34.022 34.289 C 34.022 34.537 33.769 34.71 33.492 34.71 C 33.24 34.71 33.064 34.586 32.988 34.437 M 35.963 33.371 L 35.509 33.371 L 35.509 34.685 L 35.358 34.685 L 35.358 33.371 L 34.904 33.371 L 34.904 33.197 L 35.963 33.197 Z M 37.399 33.966 C 37.576 33.966 37.727 33.842 37.727 33.669 C 37.727 33.495 37.576 33.371 37.399 33.371 L 37.122 33.371 L 37.122 33.966 Z M 37.803 34.685 L 37.374 34.115 L 37.097 34.115 L 37.097 34.685 L 36.92 34.685 L 36.92 33.197 L 37.374 33.197 C 37.651 33.197 37.878 33.421 37.878 33.669 C 37.878 33.867 37.752 34.016 37.551 34.09 L 38.004 34.685 Z M 39.139 33.371 L 39.139 33.842 L 39.769 33.842 L 39.769 34.016 L 39.139 34.016 L 39.139 34.537 L 39.87 34.537 L 39.87 34.685 L 38.962 34.685 L 38.962 33.197 L 39.87 33.197 L 39.87 33.371 Z M 41.836 33.371 L 41.407 33.371 L 41.407 34.685 L 41.231 34.685 L 41.231 33.371 L 40.777 33.371 L 40.777 33.197 L 41.836 33.197 Z M 42.668 33.941 C 42.668 33.52 43.021 33.173 43.449 33.173 C 43.651 33.173 43.827 33.272 43.979 33.396 L 43.878 33.52 C 43.777 33.421 43.626 33.321 43.449 33.321 C 43.147 33.321 42.844 33.569 42.844 33.917 C 42.844 34.264 43.147 34.512 43.449 34.512 C 43.626 34.512 43.777 34.437 43.878 34.338 L 43.979 34.462 C 43.853 34.586 43.676 34.685 43.449 34.685 C 43.021 34.71 42.668 34.363 42.668 33.941 M 46.046 33.197 L 46.046 34.685 L 45.869 34.685 L 45.869 34.041 L 45.113 34.041 L 45.113 34.685 L 44.936 34.685 L 44.936 33.197 L 45.113 33.197 L 45.113 33.867 L 45.869 33.867 L 45.869 33.197 Z M 47.306 33.371 L 47.306 33.842 L 47.936 33.842 L 47.936 34.016 L 47.306 34.016 L 47.306 34.537 L 48.012 34.537 L 48.012 34.685 L 47.13 34.685 L 47.13 33.197 L 48.012 33.197 L 48.012 33.371 Z M 50.079 33.941 C 50.079 33.594 49.852 33.371 49.474 33.371 L 49.222 33.371 L 49.222 34.537 L 49.474 34.537 C 49.852 34.537 50.079 34.313 50.079 33.941 M 50.255 33.941 C 50.255 34.388 49.953 34.685 49.474 34.685 L 49.045 34.685 L 49.045 33.197 L 49.474 33.197 C 49.953 33.197 50.255 33.495 50.255 33.941 M 53.432 33.693 C 53.432 33.52 53.28 33.371 53.079 33.371 L 52.776 33.371 L 52.776 33.966 L 53.079 33.966 C 53.28 33.991 53.432 33.842 53.432 33.693 M 52.6 33.197 L 53.079 33.197 C 53.381 33.197 53.608 33.421 53.608 33.669 C 53.608 33.917 53.381 34.115 53.079 34.115 L 52.776 34.115 L 52.776 34.661 L 52.6 34.661 Z M 54.591 33.197 L 54.768 33.197 L 54.768 34.685 L 54.591 34.685 Z M 56.582 33.371 L 55.776 33.371 L 55.776 33.197 L 56.835 33.197 L 56.053 34.537 L 56.835 34.537 L 56.835 34.685 L 55.776 34.685 Z M 58.599 33.371 L 57.818 33.371 L 57.818 33.197 L 58.876 33.197 L 58.095 34.537 L 58.876 34.537 L 58.876 34.685 L 57.818 34.685 Z M 60.817 34.313 L 60.465 33.545 L 60.112 34.313 Z M 60.893 34.462 L 60.061 34.462 L 59.96 34.71 L 59.784 34.71 L 60.49 33.197 L 60.515 33.197 L 61.221 34.71 L 60.994 34.71 Z M 62.002 34.437 L 62.128 34.338 C 62.204 34.462 62.355 34.561 62.506 34.561 C 62.708 34.561 62.859 34.462 62.859 34.313 C 62.859 34.14 62.632 34.065 62.456 33.991 C 62.279 33.917 62.053 33.842 62.053 33.594 C 62.053 33.371 62.254 33.197 62.532 33.197 C 62.758 33.197 62.91 33.321 62.96 33.47 L 62.834 33.545 C 62.784 33.421 62.658 33.346 62.532 33.346 C 62.38 33.346 62.229 33.445 62.229 33.594 C 62.229 33.743 62.406 33.793 62.582 33.867 C 62.809 33.966 63.036 34.065 63.036 34.289 C 63.036 34.537 62.784 34.71 62.506 34.71 C 62.254 34.71 62.053 34.586 62.002 34.437\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:12458454925}},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1j3odgs framer-lux5qc\",layout:\"position\",opacity:.6,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 114 47\"><path d=\"M 35.383 23.447 C 34.411 23.38 33.574 23.648 32.937 24.017 C 30.39 25.158 28.681 26.903 27.776 28.983 C 27.441 29.621 27.374 30.258 27.542 30.895 C 27.709 31.667 28.279 32.036 29.351 31.969 C 29.921 31.902 30.424 31.835 30.926 31.634 C 32.568 31.063 33.875 30.157 34.847 29.084 C 35.082 28.815 35.182 28.513 35.182 28.245 C 35.249 27.037 35.35 25.829 35.417 24.554 Z M 35.316 32.036 C 34.814 32.305 34.411 32.54 34.009 32.808 C 32.87 33.445 31.563 33.882 30.155 34.083 C 27.206 34.519 24.827 33.143 24.66 30.828 C 24.559 29.621 24.894 28.48 25.564 27.305 C 26.704 25.326 28.413 23.682 30.725 22.44 C 31.865 21.803 33.105 21.367 34.512 21.232 L 35.651 21.031 C 35.651 20.763 35.718 20.595 35.718 20.394 C 35.785 17.844 35.785 19.186 35.45 16.703 C 35.283 15.428 34.78 15.461 33.976 14.354 C 32.736 12.811 31.027 11.939 28.614 11.871 C 28.212 11.871 27.877 11.939 27.475 11.871 C 27.139 11.804 26.804 11.67 26.57 11.569 C 26.168 11.368 25.9 10.932 26.067 10.63 C 26.302 10.261 26.637 9.925 27.139 9.925 C 28.949 9.858 30.759 9.858 32.401 10.563 C 34.378 11.335 35.953 12.341 36.858 13.918 C 37.763 15.394 38.265 15.696 38.366 17.273 C 38.701 21.165 38.634 21.165 38.232 24.99 C 38.064 26.769 38.098 28.547 38.098 30.359 L 38.433 31.936 C 38.533 32.573 39.003 32.942 39.74 33.143 L 40.812 33.345 C 41.65 33.613 41.952 34.116 41.717 34.687 C 41.549 35.123 40.913 35.526 40.242 35.459 C 38.366 35.257 36.456 34.586 35.886 33.043 L 35.651 32.54 C 35.584 32.372 35.484 32.238 35.316 32.036 M 43.761 11.67 L 43.694 3.92 C 43.694 3.651 43.694 3.349 43.761 3.081 C 43.929 2.712 44.331 2.443 44.834 2.376 C 45.403 2.376 45.805 2.577 46.073 2.947 C 46.141 3.249 46.241 3.517 46.241 3.852 L 46.509 11.167 C 46.543 17.34 46.543 15.394 46.677 21.501 C 46.777 23.682 47.112 25.829 47.347 27.943 C 47.447 28.949 47.917 29.922 48.587 30.795 C 49.157 31.499 49.827 32.137 50.732 32.506 L 51.402 32.875 C 51.972 33.244 52.139 33.882 51.737 34.351 C 51.335 34.855 50.497 35.056 49.86 34.687 C 49.023 34.251 48.118 33.781 47.481 33.211 C 46.073 32.003 45.102 30.594 44.767 29.084 C 44.498 27.674 44.264 26.265 44.096 24.957 C 43.627 20.125 43.795 16.502 43.761 11.67 M 54.016 9.992 L 53.949 2.242 C 53.949 1.974 53.949 1.672 54.016 1.403 C 54.183 1.034 54.585 0.766 55.088 0.699 C 55.658 0.699 56.06 0.9 56.328 1.269 C 56.395 1.571 56.496 1.839 56.496 2.175 L 56.764 9.489 C 56.797 15.663 56.797 13.717 56.931 19.823 C 57.032 22.004 57.367 24.152 57.601 26.265 C 57.702 27.272 58.171 28.245 58.841 29.117 C 59.411 29.822 60.081 30.459 60.986 30.828 L 61.656 31.197 C 62.226 31.567 62.394 32.204 61.991 32.674 C 61.589 33.177 60.752 33.378 60.115 33.009 C 59.277 32.573 58.372 32.103 57.736 31.533 C 56.328 30.325 55.356 28.916 55.021 27.406 C 54.753 25.997 54.518 24.588 54.351 23.279 C 53.882 18.448 54.016 14.824 54.016 9.992 M 75.53 12.878 C 75.664 11.804 75.296 10.764 74.625 9.825 C 73.754 8.617 72.045 8.449 70.805 9.321 C 70.503 9.489 70.235 9.724 70.001 9.992 C 69.498 10.664 68.995 11.368 68.627 12.039 C 67.89 13.448 67.454 14.925 67.253 16.435 C 67.186 16.703 67.253 17.072 67.32 17.34 C 68.191 19.387 70.168 19.79 72.313 18.75 C 73.251 18.28 73.922 17.609 74.357 16.871 C 75.095 15.629 75.53 14.321 75.53 12.878 M 66.851 20.36 C 66.784 22.172 66.784 23.95 67.085 25.695 C 67.32 27.171 67.823 28.58 68.627 29.889 C 68.995 30.459 69.431 31.03 70.101 31.432 C 71.408 32.405 73.318 32.573 74.793 31.432 C 75.798 30.694 76.536 29.822 77.038 28.815 C 77.708 27.674 78.211 26.433 78.278 25.125 C 78.345 25.024 78.345 24.89 78.345 24.789 C 78.479 24.319 78.915 24.051 79.585 24.051 C 80.155 24.051 80.691 24.319 80.758 24.856 C 80.825 25.091 80.825 25.359 80.758 25.661 C 80.322 27.641 79.619 29.587 78.144 31.365 C 77.574 32.036 76.837 32.674 76.033 33.177 C 73.989 34.418 71.71 34.486 69.532 33.513 C 68.359 32.942 67.387 32.137 66.75 31.231 C 65.51 29.352 64.773 27.44 64.538 25.326 C 64.237 22.877 64.304 20.494 64.505 18.112 C 64.706 16.065 65.209 14.086 65.946 12.14 C 66.382 10.999 67.018 9.992 67.923 9.053 C 68.359 8.583 68.861 8.08 69.465 7.745 C 71.81 6.201 75.162 6.704 76.703 8.751 C 77.507 9.825 77.943 11.033 78.044 12.341 C 78.111 14.321 77.608 16.267 76.368 18.079 C 75.631 19.052 74.759 19.89 73.519 20.461 C 71.542 21.333 69.498 21.534 67.454 20.528 C 67.387 20.461 67.32 20.461 67.219 20.427 Z M 84.88 12.509 C 84.545 12.475 84.377 12.375 84.109 12.274 C 83.64 12.073 83.405 11.771 83.506 11.435 C 83.573 11.033 83.908 10.831 84.344 10.731 L 84.846 10.731 C 86.019 10.664 87.192 10.664 88.332 10.664 C 88.466 10.664 88.667 10.664 88.801 10.697 C 89.303 10.731 89.639 11.033 89.639 11.435 C 89.706 11.838 89.37 12.14 88.868 12.24 C 88.533 12.308 88.231 12.308 87.896 12.341 C 87.628 12.341 87.427 12.408 87.259 12.408 C 87.058 13.146 87.025 15.327 87.226 17.038 C 87.494 17.072 87.561 16.938 87.661 16.77 C 87.996 16.367 88.365 15.965 88.7 15.495 C 89.974 14.019 91.683 12.912 93.66 12.073 C 94.565 11.67 95.604 11.402 96.709 11.368 C 96.978 11.368 97.279 11.402 97.614 11.469 C 98.016 11.502 98.318 11.871 98.318 12.173 C 98.385 12.509 97.983 12.945 97.547 13.046 L 97.145 13.046 C 95.704 13.113 94.565 13.616 93.392 14.254 C 91.314 15.361 89.974 16.938 88.935 18.649 C 87.963 20.259 87.46 21.971 87.259 23.782 C 87.025 26.701 87.226 29.621 87.226 32.573 L 87.226 32.942 C 87.628 33.177 87.996 33.043 88.399 33.076 C 88.734 33.11 89.102 33.11 89.437 33.211 C 89.84 33.311 90.074 33.647 90.007 34.016 C 90.007 34.318 89.739 34.586 89.37 34.687 C 89.102 34.788 88.801 34.855 88.533 34.855 L 84.243 34.855 C 83.975 34.855 83.673 34.821 83.405 34.72 C 83.003 34.62 82.769 34.385 82.769 34.083 C 82.769 33.714 82.97 33.445 83.405 33.278 C 83.606 33.177 83.908 33.177 84.109 33.11 C 84.377 33.11 84.578 33.043 84.746 33.043 C 84.813 33.043 84.813 32.976 84.88 32.976 C 85.148 32.17 85.081 14.824 84.88 12.509 M 100.53 35.224 C 100.262 35.391 100.061 35.593 99.793 35.693 C 99.39 35.895 98.921 35.861 98.586 35.66 C 98.184 35.391 98.05 35.056 98.251 34.62 L 98.452 34.251 C 99.122 33.412 99.726 32.607 100.295 31.768 L 100.697 31.399 C 101.032 31.13 101.703 31.097 102.105 31.231 C 102.44 31.432 102.641 31.801 102.574 32.17 C 102.507 32.338 102.44 32.472 102.306 32.64 L 101.636 33.58 C 102.708 34.418 103.914 34.653 105.355 34.653 C 105.624 34.653 105.892 34.553 106.093 34.553 C 108.338 34.251 109.477 33.211 109.41 31.399 C 109.41 29.788 108.606 28.413 107.266 27.205 C 105.925 25.93 104.518 24.722 103.11 23.48 C 102.172 22.709 101.435 21.87 100.831 20.964 C 98.687 17.978 100.396 13.985 103.512 12.24 C 105.758 10.932 108.17 10.798 110.684 11.871 C 110.818 11.972 110.952 12.039 111.22 12.14 C 111.354 12.073 111.622 11.972 111.823 11.939 C 112.292 11.838 112.695 11.771 113.097 12.106 C 113.432 12.408 113.432 12.777 113.231 13.146 L 113.03 13.448 L 111.052 16.099 C 110.918 16.267 110.851 16.401 110.65 16.502 C 110.248 16.804 109.779 16.904 109.377 16.703 C 108.841 16.502 108.64 16.099 108.841 15.663 C 108.908 15.394 109.109 15.193 109.243 14.992 C 109.511 14.623 109.779 14.22 110.114 13.851 L 110.114 13.65 C 109.913 13.549 109.779 13.348 109.511 13.247 C 108.439 12.844 107.299 12.777 106.193 13.113 C 105.389 13.381 104.719 13.75 104.149 14.187 C 102.105 15.831 101.636 18.313 102.976 20.394 C 103.512 21.165 104.183 21.836 104.92 22.474 C 106.327 23.715 107.735 24.957 109.075 26.198 C 110.617 27.607 111.555 29.184 111.756 31.063 C 112.024 33.647 110.315 35.727 106.998 36.297 C 106.193 36.465 105.389 36.465 104.618 36.465 C 103.479 36.465 102.473 36.163 101.502 35.794 C 101.2 35.526 100.865 35.391 100.53 35.224 M 8.272 30.157 C 8.272 30.828 8.205 31.365 8.272 31.902 C 8.272 32.439 8.105 33.043 8.44 33.613 C 10.015 33.613 11.389 33.378 12.796 33.076 C 13.366 32.976 14.036 32.808 14.506 32.573 C 15.075 32.338 15.645 32.137 15.645 31.701 C 15.645 31.265 14.975 31.097 14.405 30.929 C 12.528 30.325 10.551 30.09 8.272 30.157 M 8.172 2.98 L 8.172 22.877 C 8.172 24.353 8.172 25.796 8.239 27.205 C 8.239 27.44 8.071 27.641 8.574 27.876 C 10.384 27.54 11.925 26.903 13.333 25.997 C 15.142 24.89 16.382 23.648 17.354 22.205 C 19.901 18.313 20.136 14.321 18.426 10.227 C 17.589 8.516 16.449 6.939 14.64 5.564 C 13.232 4.456 11.59 3.651 9.546 3.148 C 9.177 3.114 8.775 3.114 8.172 2.98 M 5.323 2.812 C 4.352 2.98 3.614 3.148 2.877 3.249 C 2.542 3.349 2.14 3.483 1.805 3.483 C 1.235 3.55 0.665 3.316 0.498 2.98 C 0.263 2.645 0.33 2.141 0.833 1.873 C 1.235 1.705 1.57 1.604 1.972 1.504 C 5.189 0.665 8.373 0.732 11.49 1.672 C 13.869 2.376 15.746 3.483 17.321 4.792 C 19.633 6.771 21.107 9.019 21.744 11.502 C 22.816 15.126 22.481 18.683 20.504 22.138 C 19.097 24.554 17.052 26.634 13.869 28.245 C 13.701 28.312 13.634 28.413 13.366 28.58 C 13.936 28.748 14.338 28.849 14.841 28.949 C 15.678 29.184 16.483 29.453 17.22 29.889 C 18.929 30.996 19.03 32.372 17.287 33.513 C 16.617 33.882 15.88 34.217 15.142 34.486 C 13.902 34.855 12.595 35.157 11.288 35.324 C 8.507 35.66 5.793 35.693 3.011 35.391 C 2.609 35.324 2.274 35.291 1.939 35.157 C 1.269 34.989 0.967 34.553 1.034 34.184 C 1.101 33.747 1.704 33.412 2.441 33.412 C 2.944 33.412 3.413 33.513 3.849 33.58 C 4.352 33.58 4.821 33.747 5.424 33.513 C 5.424 33.244 5.491 32.976 5.491 32.674 C 5.39 22.809 5.323 12.878 5.323 2.812 M 31.731 44.652 L 31.731 46.665 L 31.496 46.665 L 31.496 45.793 L 30.491 45.793 L 30.491 46.665 L 30.256 46.665 L 30.256 44.652 L 30.491 44.652 L 30.491 45.558 L 31.496 45.558 L 31.496 44.652 Z M 34.411 46.162 L 33.942 45.122 L 33.473 46.162 Z M 34.478 46.363 L 33.373 46.363 L 33.239 46.699 L 33.004 46.699 L 33.942 44.652 L 33.976 44.652 L 34.914 46.699 L 34.68 46.699 Z M 37.763 44.652 L 37.763 46.699 L 36.389 45.189 L 36.389 46.665 L 36.154 46.665 L 36.154 44.618 L 37.528 46.162 L 37.528 44.652 Z M 40.578 45.658 C 40.578 45.189 40.276 44.887 39.773 44.887 L 39.438 44.887 L 39.438 46.464 L 39.773 46.464 C 40.242 46.464 40.578 46.162 40.578 45.658 M 40.812 45.658 C 40.812 46.262 40.41 46.665 39.773 46.665 L 39.204 46.665 L 39.204 44.652 L 39.773 44.652 C 40.41 44.652 40.812 45.054 40.812 45.658 M 43.795 46.329 L 43.962 46.195 C 44.063 46.363 44.264 46.497 44.465 46.497 C 44.733 46.497 44.934 46.363 44.934 46.162 C 44.934 45.927 44.632 45.826 44.398 45.726 C 44.163 45.625 43.862 45.524 43.862 45.189 C 43.862 44.887 44.13 44.652 44.498 44.652 C 44.8 44.652 45.001 44.82 45.068 45.021 L 44.901 45.122 C 44.834 44.954 44.666 44.853 44.498 44.853 C 44.297 44.853 44.096 44.987 44.096 45.189 C 44.096 45.39 44.331 45.457 44.565 45.558 C 44.867 45.692 45.169 45.826 45.169 46.128 C 45.169 46.464 44.834 46.699 44.465 46.699 C 44.13 46.699 43.895 46.531 43.795 46.329 M 47.749 44.887 L 47.146 44.887 L 47.146 46.665 L 46.945 46.665 L 46.945 44.887 L 46.342 44.887 L 46.342 44.652 L 47.749 44.652 Z M 49.659 45.692 C 49.894 45.692 50.095 45.524 50.095 45.289 C 50.095 45.054 49.894 44.887 49.659 44.887 L 49.291 44.887 L 49.291 45.692 Z M 50.195 46.665 L 49.626 45.893 L 49.257 45.893 L 49.257 46.665 L 49.023 46.665 L 49.023 44.652 L 49.626 44.652 C 49.994 44.652 50.296 44.954 50.296 45.289 C 50.296 45.558 50.128 45.759 49.86 45.86 L 50.464 46.665 Z M 51.972 44.887 L 51.972 45.524 L 52.809 45.524 L 52.809 45.759 L 51.972 45.759 L 51.972 46.464 L 52.943 46.464 L 52.943 46.665 L 51.737 46.665 L 51.737 44.652 L 52.943 44.652 L 52.943 44.887 Z M 55.557 44.887 L 54.988 44.887 L 54.988 46.665 L 54.753 46.665 L 54.753 44.887 L 54.15 44.887 L 54.15 44.652 L 55.557 44.652 Z M 56.663 45.658 C 56.663 45.088 57.132 44.618 57.702 44.618 C 57.97 44.618 58.205 44.753 58.406 44.92 L 58.272 45.088 C 58.138 44.954 57.937 44.82 57.702 44.82 C 57.3 44.82 56.898 45.155 56.898 45.625 C 56.898 46.095 57.3 46.43 57.702 46.43 C 57.937 46.43 58.138 46.329 58.272 46.195 L 58.406 46.363 C 58.238 46.531 58.004 46.665 57.702 46.665 C 57.132 46.699 56.663 46.229 56.663 45.658 M 61.154 44.652 L 61.154 46.665 L 60.919 46.665 L 60.919 45.793 L 59.914 45.793 L 59.914 46.665 L 59.679 46.665 L 59.679 44.652 L 59.914 44.652 L 59.914 45.558 L 60.919 45.558 L 60.919 44.652 Z M 62.829 44.887 L 62.829 45.524 L 63.667 45.524 L 63.667 45.759 L 62.829 45.759 L 62.829 46.464 L 63.768 46.464 L 63.768 46.665 L 62.595 46.665 L 62.595 44.652 L 63.768 44.652 L 63.768 44.887 Z M 66.516 45.658 C 66.516 45.189 66.214 44.887 65.711 44.887 L 65.376 44.887 L 65.376 46.464 L 65.711 46.464 C 66.214 46.464 66.516 46.162 66.516 45.658 M 66.75 45.658 C 66.75 46.262 66.348 46.665 65.711 46.665 L 65.142 46.665 L 65.142 44.652 L 65.711 44.652 C 66.348 44.652 66.75 45.054 66.75 45.658 M 70.973 45.323 C 70.973 45.088 70.772 44.887 70.503 44.887 L 70.101 44.887 L 70.101 45.692 L 70.503 45.692 C 70.772 45.726 70.973 45.524 70.973 45.323 M 69.867 44.652 L 70.503 44.652 C 70.906 44.652 71.207 44.954 71.207 45.289 C 71.207 45.625 70.906 45.893 70.503 45.893 L 70.101 45.893 L 70.101 46.631 L 69.867 46.631 Z M 72.514 44.652 L 72.749 44.652 L 72.749 46.665 L 72.514 46.665 Z M 75.162 44.887 L 74.089 44.887 L 74.089 44.652 L 75.497 44.652 L 74.458 46.464 L 75.497 46.464 L 75.497 46.665 L 74.089 46.665 Z M 77.842 44.887 L 76.804 44.887 L 76.804 44.652 L 78.211 44.652 L 77.172 46.464 L 78.211 46.464 L 78.211 46.665 L 76.804 46.665 Z M 80.791 46.162 L 80.322 45.122 L 79.853 46.162 Z M 80.892 46.363 L 79.786 46.363 L 79.652 46.699 L 79.418 46.699 L 80.356 44.652 L 80.389 44.652 L 81.328 46.699 L 81.026 46.699 Z M 82.367 46.329 L 82.534 46.195 C 82.635 46.363 82.836 46.497 83.037 46.497 C 83.305 46.497 83.506 46.363 83.506 46.162 C 83.506 45.927 83.204 45.826 82.97 45.726 C 82.735 45.625 82.434 45.524 82.434 45.189 C 82.434 44.887 82.702 44.652 83.07 44.652 C 83.372 44.652 83.573 44.82 83.64 45.021 L 83.472 45.122 C 83.405 44.954 83.238 44.853 83.07 44.853 C 82.869 44.853 82.668 44.987 82.668 45.189 C 82.668 45.39 82.903 45.457 83.137 45.558 C 83.439 45.692 83.74 45.826 83.74 46.128 C 83.74 46.464 83.405 46.699 83.037 46.699 C 82.702 46.699 82.434 46.531 82.367 46.329\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:10591898271,withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mzaw4\",\"data-framer-name\":\"Copyright\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x4pbjq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R5cjfhnTd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"Designed by\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"Designed by\"})}),className:\"framer-1afknpj\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R5cjfhnTd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.severn.design\",motionChild:true,nodeId:\"BVg4fFK5n\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1gacwm7\",\"data-styles-preset\":\"m_UvZ3Ley\",children:\"Studio Severn\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.severn.design\",motionChild:true,nodeId:\"BVg4fFK5n\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1gacwm7\",\"data-styles-preset\":\"m_UvZ3Ley\",children:\"Studio Severn\"})})})}),className:\"framer-qmr6i3\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f513ho\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"1.9px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\"},children:\"subscribe to our mailing list\"})}),className:\"framer-bc0qxn hidden-djy17h\",fonts:[\"GF;Libre Baskerville-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v13zcy-container\",isAuthoredByUser:true,nodeId:\"i7kxiyUlt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Mailchimp,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,button:{color:\"var(--token-48286fe0-fa20-4ac6-946e-023558ae2478, rgb(0, 0, 0))\",fill:\"var(--token-66967fea-ad22-43ea-bb58-9a731e7fe98c, rgb(217, 195, 174))\",fontWeight:600,label:\"subscribe\"},font:false,fontFamily:\"Libre Baskerville\",fontSize:16,fontWeight:400,gap:15,height:\"100%\",id:\"i7kxiyUlt\",input:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(255, 255, 255)\",placeholder:\"email address\",placeholderColor:\"rgba(0, 0, 0, 0.6)\",value:\"\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"i7kxiyUlt\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,url:\"https://thepriorycaerleon.us9.list-manage.com/subscribe/post?u=957bd7857cb04981707933604&amp;id=4d2bbf22af&amp;f_id=00fad6e3f0\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/park_side_cardiff\",motionChild:true,nodeId:\"KxXJ206ho\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-3daco2 hidden-djy17h framer-lux5qc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ax4xr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RGcNONIhG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-39bcef1d-b7c3-4f42-b96c-853873d32f23, rgb(181, 131, 107))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Instagram\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"RGcNONIhG\",layoutId:\"RGcNONIhG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"1.9px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\"},children:\"subscribe to our mailing list\"})}),className:\"framer-ufu501 hidden-72rtr7 hidden-hq688s\",fonts:[\"GF;Libre Baskerville-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gM8Hv.framer-lux5qc, .framer-gM8Hv .framer-lux5qc { display: block; }\",\".framer-gM8Hv.framer-72rtr7 { align-content: center; align-items: center; background-color: #f7f7f7; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-gM8Hv .framer-1cgp4m2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 71px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 9; }\",\".framer-gM8Hv .framer-18qzxp1-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-gM8Hv .framer-anggjf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 78px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 100px 20px 100px; position: relative; width: 100%; }\",\".framer-gM8Hv .framer-hsbpqc { flex: none; height: 172px; position: relative; width: 197px; }\",\".framer-gM8Hv .framer-1b9ezx3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 200px 48px 200px; position: relative; width: 100%; }\",\".framer-gM8Hv .framer-1ok1cbl { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 34px; height: 20px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gM8Hv .framer-lzplb3, .framer-gM8Hv .framer-1ekdk6i, .framer-gM8Hv .framer-nuyvey, .framer-gM8Hv .framer-jopo00, .framer-gM8Hv .framer-qmr6i3 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-gM8Hv .framer-vcp8qs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: 202px; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-gM8Hv .framer-1vjkxhp, .framer-gM8Hv .framer-1vzd9aj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 81%; z-index: 1; }\",\".framer-gM8Hv .framer-192d4v8, .framer-gM8Hv .framer-1grc9q3, .framer-gM8Hv .framer-ktqt9g, .framer-gM8Hv .framer-bc0qxn, .framer-gM8Hv .framer-ufu501 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-gM8Hv .framer-1fhx1le, .framer-gM8Hv .framer-gtzfl0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 52px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-gM8Hv .framer-174ikov { background-color: rgba(232, 218, 204, 0.97); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-gM8Hv .framer-1qkrkbr { -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; backdrop-filter: blur(20px); background-color: var(--token-39bcef1d-b7c3-4f42-b96c-853873d32f23, #b5836b); border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; padding: 15px; position: relative; text-decoration: none; width: 207px; }\",\".framer-gM8Hv .framer-cgv59r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gM8Hv .framer-1egaxp4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 84px; height: min-content; justify-content: center; overflow: hidden; padding: 83px 150px 54px 150px; position: relative; width: 100%; }\",\".framer-gM8Hv .framer-1uz6vqt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 100%; position: relative; width: 100%; }\",\".framer-gM8Hv .framer-eklhq8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; --framer-text-wrap-override: none; flex: none; height: auto; max-width: 100%; position: relative; width: 100%; }\",\".framer-gM8Hv .framer-buh8yu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 30px 61px 30px; position: relative; width: 100%; }\",\".framer-gM8Hv .framer-wemrnq-container { flex: none; height: 352px; position: relative; width: 100%; }\",\".framer-gM8Hv .framer-1jh0cc { aspect-ratio: 0.75048828125 / 1; height: var(--framer-aspect-ratio-supported, 1038px); overflow: visible; position: relative; width: 779px; }\",\".framer-gM8Hv .framer-129g9zs { aspect-ratio: 0.75048828125 / 1; height: var(--framer-aspect-ratio-supported, 1037px); overflow: visible; position: relative; width: 778px; }\",\".framer-gM8Hv .framer-6fpvog { aspect-ratio: 0.75048828125 / 1; height: var(--framer-aspect-ratio-supported, 1072px); overflow: visible; position: relative; width: 805px; }\",\".framer-gM8Hv .framer-1nwu299 { aspect-ratio: 0.75048828125 / 1; height: var(--framer-aspect-ratio-supported, 1049px); overflow: visible; position: relative; width: 787px; }\",\".framer-gM8Hv .framer-sd4sx { aspect-ratio: 0.75 / 1; height: var(--framer-aspect-ratio-supported, 1060px); overflow: visible; position: relative; width: 795px; }\",\".framer-gM8Hv .framer-11b9tek { aspect-ratio: 0.75048828125 / 1; height: var(--framer-aspect-ratio-supported, 1063px); overflow: visible; position: relative; width: 798px; }\",\".framer-gM8Hv .framer-omryfj { aspect-ratio: 0.75048828125 / 1; height: var(--framer-aspect-ratio-supported, 1073px); overflow: visible; position: relative; width: 805px; }\",\".framer-gM8Hv .framer-1i3tslu { aspect-ratio: 0.75048828125 / 1; height: var(--framer-aspect-ratio-supported, 1054px); overflow: visible; position: relative; width: 791px; }\",\".framer-gM8Hv .framer-16fuvue { aspect-ratio: 0.75 / 1; height: var(--framer-aspect-ratio-supported, 1064px); overflow: visible; position: relative; width: 798px; }\",\".framer-gM8Hv .framer-1u9mplu { aspect-ratio: 0.75048828125 / 1; height: var(--framer-aspect-ratio-supported, 1050px); overflow: visible; position: relative; width: 788px; }\",\".framer-gM8Hv .framer-kax9e0, .framer-gM8Hv .framer-1xaeeqx { aspect-ratio: 0.75048828125 / 1; height: var(--framer-aspect-ratio-supported, 1061px); overflow: visible; position: relative; width: 796px; }\",\".framer-gM8Hv .framer-1uwmcx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gM8Hv .framer-1j4mh61 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: 449px; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-gM8Hv .framer-rk3jfl { 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: 30px 86px 70px 86px; position: relative; width: 100%; }\",\".framer-gM8Hv .framer-f3cl9g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: center; overflow: hidden; padding: 11px 0px 11px 0px; position: relative; width: 81%; z-index: 1; }\",\".framer-gM8Hv .framer-6sjyey, .framer-gM8Hv .framer-9mx815 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; --framer-text-wrap-override: none; flex: none; height: auto; position: relative; width: auto; }\",\".framer-gM8Hv .framer-ymxuz4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: 169px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 81%; z-index: 10; }\",\".framer-gM8Hv .framer-502e50-container { flex: none; height: 65px; position: relative; width: 100%; z-index: 10; }\",\".framer-gM8Hv .framer-1hbwbd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 656px; }\",\".framer-gM8Hv .framer-ng12gq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 79px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 292px 20px 292px; position: relative; width: 1px; z-index: 1; }\",\".framer-gM8Hv .framer-40vzsk { background-color: rgba(164, 173, 149, 0.97); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-gM8Hv .framer-nzaj0g { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 134px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gM8Hv .framer-5jgdpu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gM8Hv .framer-17ygfrc { align-content: flex-start; align-items: flex-start; background-color: #e8e8e8; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 38px 50px 50px 50px; position: relative; width: 100%; }\",\".framer-gM8Hv .framer-1barrk3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-gM8Hv .framer-6d2wx9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-gM8Hv .framer-uivc8v { aspect-ratio: 0.7071571143427431 / 1; flex: none; height: 78px; opacity: 0.63; overflow: visible; position: relative; text-decoration: none; width: var(--framer-aspect-ratio-supported, 55px); }\",\".framer-gM8Hv .framer-1j3odgs { flex: none; height: 47px; opacity: 0.6; position: relative; text-decoration: none; width: 114px; }\",\".framer-gM8Hv .framer-mzaw4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 21px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gM8Hv .framer-x4pbjq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 21px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gM8Hv .framer-1afknpj { --framer-link-hover-text-color: rgba(153, 153, 153, 0.6); --framer-link-text-decoration: none; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-gM8Hv .framer-f513ho { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 430px; }\",\".framer-gM8Hv .framer-v13zcy-container { flex: none; height: auto; position: relative; width: 430px; }\",\".framer-gM8Hv .framer-3daco2 { flex: none; height: 33px; overflow: hidden; position: relative; text-decoration: none; width: 34px; }\",\".framer-gM8Hv .framer-16ax4xr-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gM8Hv.framer-72rtr7, .framer-gM8Hv .framer-1cgp4m2, .framer-gM8Hv .framer-anggjf, .framer-gM8Hv .framer-1b9ezx3, .framer-gM8Hv .framer-1ok1cbl, .framer-gM8Hv .framer-vcp8qs, .framer-gM8Hv .framer-1vjkxhp, .framer-gM8Hv .framer-1qkrkbr, .framer-gM8Hv .framer-1vzd9aj, .framer-gM8Hv .framer-1egaxp4, .framer-gM8Hv .framer-buh8yu, .framer-gM8Hv .framer-1uwmcx, .framer-gM8Hv .framer-1j4mh61, .framer-gM8Hv .framer-rk3jfl, .framer-gM8Hv .framer-f3cl9g, .framer-gM8Hv .framer-ymxuz4, .framer-gM8Hv .framer-1hbwbd, .framer-gM8Hv .framer-ng12gq, .framer-gM8Hv .framer-nzaj0g, .framer-gM8Hv .framer-5jgdpu, .framer-gM8Hv .framer-1barrk3, .framer-gM8Hv .framer-6d2wx9, .framer-gM8Hv .framer-mzaw4, .framer-gM8Hv .framer-x4pbjq, .framer-gM8Hv .framer-f513ho { gap: 0px; } .framer-gM8Hv.framer-72rtr7 > *, .framer-gM8Hv .framer-1cgp4m2 > *, .framer-gM8Hv .framer-rk3jfl > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gM8Hv.framer-72rtr7 > :first-child, .framer-gM8Hv .framer-1cgp4m2 > :first-child, .framer-gM8Hv .framer-anggjf > :first-child, .framer-gM8Hv .framer-vcp8qs > :first-child, .framer-gM8Hv .framer-1egaxp4 > :first-child, .framer-gM8Hv .framer-buh8yu > :first-child, .framer-gM8Hv .framer-1j4mh61 > :first-child, .framer-gM8Hv .framer-rk3jfl > :first-child, .framer-gM8Hv .framer-f3cl9g > :first-child, .framer-gM8Hv .framer-5jgdpu > :first-child, .framer-gM8Hv .framer-1barrk3 > :first-child, .framer-gM8Hv .framer-f513ho > :first-child { margin-top: 0px; } .framer-gM8Hv.framer-72rtr7 > :last-child, .framer-gM8Hv .framer-1cgp4m2 > :last-child, .framer-gM8Hv .framer-anggjf > :last-child, .framer-gM8Hv .framer-vcp8qs > :last-child, .framer-gM8Hv .framer-1egaxp4 > :last-child, .framer-gM8Hv .framer-buh8yu > :last-child, .framer-gM8Hv .framer-1j4mh61 > :last-child, .framer-gM8Hv .framer-rk3jfl > :last-child, .framer-gM8Hv .framer-f3cl9g > :last-child, .framer-gM8Hv .framer-5jgdpu > :last-child, .framer-gM8Hv .framer-1barrk3 > :last-child, .framer-gM8Hv .framer-f513ho > :last-child { margin-bottom: 0px; } .framer-gM8Hv .framer-anggjf > * { margin: 0px; margin-bottom: calc(78px / 2); margin-top: calc(78px / 2); } .framer-gM8Hv .framer-1b9ezx3 > *, .framer-gM8Hv .framer-1hbwbd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-gM8Hv .framer-1b9ezx3 > :first-child, .framer-gM8Hv .framer-1ok1cbl > :first-child, .framer-gM8Hv .framer-1vjkxhp > :first-child, .framer-gM8Hv .framer-1qkrkbr > :first-child, .framer-gM8Hv .framer-1vzd9aj > :first-child, .framer-gM8Hv .framer-1uwmcx > :first-child, .framer-gM8Hv .framer-ymxuz4 > :first-child, .framer-gM8Hv .framer-1hbwbd > :first-child, .framer-gM8Hv .framer-ng12gq > :first-child, .framer-gM8Hv .framer-nzaj0g > :first-child, .framer-gM8Hv .framer-6d2wx9 > :first-child, .framer-gM8Hv .framer-mzaw4 > :first-child, .framer-gM8Hv .framer-x4pbjq > :first-child { margin-left: 0px; } .framer-gM8Hv .framer-1b9ezx3 > :last-child, .framer-gM8Hv .framer-1ok1cbl > :last-child, .framer-gM8Hv .framer-1vjkxhp > :last-child, .framer-gM8Hv .framer-1qkrkbr > :last-child, .framer-gM8Hv .framer-1vzd9aj > :last-child, .framer-gM8Hv .framer-1uwmcx > :last-child, .framer-gM8Hv .framer-ymxuz4 > :last-child, .framer-gM8Hv .framer-1hbwbd > :last-child, .framer-gM8Hv .framer-ng12gq > :last-child, .framer-gM8Hv .framer-nzaj0g > :last-child, .framer-gM8Hv .framer-6d2wx9 > :last-child, .framer-gM8Hv .framer-mzaw4 > :last-child, .framer-gM8Hv .framer-x4pbjq > :last-child { margin-right: 0px; } .framer-gM8Hv .framer-1ok1cbl > * { margin: 0px; margin-left: calc(34px / 2); margin-right: calc(34px / 2); } .framer-gM8Hv .framer-vcp8qs > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-gM8Hv .framer-1vjkxhp > *, .framer-gM8Hv .framer-1vzd9aj > *, .framer-gM8Hv .framer-ymxuz4 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-gM8Hv .framer-1qkrkbr > * { margin: 0px; margin-left: calc(11px / 2); margin-right: calc(11px / 2); } .framer-gM8Hv .framer-1egaxp4 > * { margin: 0px; margin-bottom: calc(84px / 2); margin-top: calc(84px / 2); } .framer-gM8Hv .framer-buh8yu > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-gM8Hv .framer-1uwmcx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-gM8Hv .framer-1j4mh61 > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-gM8Hv .framer-f3cl9g > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-gM8Hv .framer-ng12gq > * { margin: 0px; margin-left: calc(79px / 2); margin-right: calc(79px / 2); } .framer-gM8Hv .framer-nzaj0g > * { margin: 0px; margin-left: calc(134px / 2); margin-right: calc(134px / 2); } .framer-gM8Hv .framer-5jgdpu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gM8Hv .framer-1barrk3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-gM8Hv .framer-6d2wx9 > * { margin: 0px; margin-left: calc(27px / 2); margin-right: calc(27px / 2); } .framer-gM8Hv .framer-mzaw4 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-gM8Hv .framer-x4pbjq > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-gM8Hv .framer-f513ho > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-gM8Hv.framer-72rtr7 { width: 810px; } .framer-gM8Hv .framer-vcp8qs { height: 205px; padding: 0px; } .framer-gM8Hv .framer-1vjkxhp, .framer-gM8Hv .framer-1vzd9aj { flex-direction: column; gap: 24px; } .framer-gM8Hv .framer-1egaxp4 { gap: 45px; padding: 83px 100px 54px 100px; } .framer-gM8Hv .framer-1j4mh61 { height: 471px; } .framer-gM8Hv .framer-f3cl9g { gap: 24px; padding: 31px 0px 31px 0px; } .framer-gM8Hv .framer-6sjyey { height: 140px; width: 516px; } .framer-gM8Hv .framer-ymxuz4 { flex-direction: column; gap: 24px; width: 100%; } .framer-gM8Hv .framer-502e50-container { height: 85px; } .framer-gM8Hv .framer-1barrk3 { width: 294px; } .framer-gM8Hv .framer-v13zcy-container { width: 366px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gM8Hv .framer-1vjkxhp, .framer-gM8Hv .framer-1vzd9aj, .framer-gM8Hv .framer-1egaxp4, .framer-gM8Hv .framer-f3cl9g, .framer-gM8Hv .framer-ymxuz4 { gap: 0px; } .framer-gM8Hv .framer-1vjkxhp > *, .framer-gM8Hv .framer-1vzd9aj > *, .framer-gM8Hv .framer-f3cl9g > *, .framer-gM8Hv .framer-ymxuz4 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-gM8Hv .framer-1vjkxhp > :first-child, .framer-gM8Hv .framer-1vzd9aj > :first-child, .framer-gM8Hv .framer-1egaxp4 > :first-child, .framer-gM8Hv .framer-f3cl9g > :first-child, .framer-gM8Hv .framer-ymxuz4 > :first-child { margin-top: 0px; } .framer-gM8Hv .framer-1vjkxhp > :last-child, .framer-gM8Hv .framer-1vzd9aj > :last-child, .framer-gM8Hv .framer-1egaxp4 > :last-child, .framer-gM8Hv .framer-f3cl9g > :last-child, .framer-gM8Hv .framer-ymxuz4 > :last-child { margin-bottom: 0px; } .framer-gM8Hv .framer-1egaxp4 > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } }}\",\"@media (max-width: 809px) { .framer-gM8Hv.framer-72rtr7 { width: 390px; } .framer-gM8Hv .framer-anggjf { gap: 74px; padding: 73px 40px 73px 40px; } .framer-gM8Hv .framer-hsbpqc { height: 138px; width: 158px; } .framer-gM8Hv .framer-1b9ezx3 { padding: 40px 21px 40px 21px; } .framer-gM8Hv .framer-1ok1cbl { gap: 27px; height: min-content; } .framer-gM8Hv .framer-vcp8qs { gap: 27px; height: 344px; padding: 49px; } .framer-gM8Hv .framer-1vjkxhp, .framer-gM8Hv .framer-1vzd9aj { flex-direction: column; gap: 34px; width: 88%; } .framer-gM8Hv .framer-1qkrkbr { gap: 19px; padding: 17px; width: 100%; } .framer-gM8Hv .framer-1egaxp4 { gap: 29px; padding: 58px 50px 58px 50px; } .framer-gM8Hv .framer-1uz6vqt { --framer-text-wrap: balance; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-gM8Hv .framer-eklhq8 { white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-gM8Hv .framer-buh8yu { gap: 38px; padding: 0px 40px 42px 40px; } .framer-gM8Hv .framer-1j4mh61 { height: 554px; } .framer-gM8Hv .framer-rk3jfl { padding: 52px 15px 53px 15px; } .framer-gM8Hv .framer-f3cl9g { gap: 8px; justify-content: flex-start; padding: 0px 0px 29px 0px; width: 90%; } .framer-gM8Hv .framer-6sjyey { height: 194px; width: 100%; } .framer-gM8Hv .framer-ymxuz4 { flex-direction: column; gap: 0px; height: 317px; width: 88%; } .framer-gM8Hv .framer-502e50-container { height: 298px; width: 92%; } .framer-gM8Hv .framer-1hbwbd { flex-direction: column; gap: 33px; width: 100%; } .framer-gM8Hv .framer-ng12gq { flex: none; flex-direction: column; gap: 72px; padding: 18px; width: 100%; } .framer-gM8Hv .framer-17ygfrc { align-content: center; align-items: center; flex-direction: column; gap: 27px; justify-content: center; padding: 29px; } .framer-gM8Hv .framer-1barrk3 { align-content: center; align-items: center; gap: 15px; order: 2; width: 100%; } .framer-gM8Hv .framer-6d2wx9 { gap: 29px; } .framer-gM8Hv .framer-1j3odgs { height: 35px; width: 86px; } .framer-gM8Hv .framer-f513ho { order: 1; width: 100%; } .framer-gM8Hv .framer-v13zcy-container { order: 0; width: 100%; } .framer-gM8Hv .framer-ufu501 { order: 0; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gM8Hv .framer-anggjf, .framer-gM8Hv .framer-1ok1cbl, .framer-gM8Hv .framer-vcp8qs, .framer-gM8Hv .framer-1vjkxhp, .framer-gM8Hv .framer-1qkrkbr, .framer-gM8Hv .framer-1vzd9aj, .framer-gM8Hv .framer-1egaxp4, .framer-gM8Hv .framer-buh8yu, .framer-gM8Hv .framer-f3cl9g, .framer-gM8Hv .framer-ymxuz4, .framer-gM8Hv .framer-1hbwbd, .framer-gM8Hv .framer-ng12gq, .framer-gM8Hv .framer-17ygfrc, .framer-gM8Hv .framer-1barrk3, .framer-gM8Hv .framer-6d2wx9 { gap: 0px; } .framer-gM8Hv .framer-anggjf > * { margin: 0px; margin-bottom: calc(74px / 2); margin-top: calc(74px / 2); } .framer-gM8Hv .framer-anggjf > :first-child, .framer-gM8Hv .framer-vcp8qs > :first-child, .framer-gM8Hv .framer-1vjkxhp > :first-child, .framer-gM8Hv .framer-1vzd9aj > :first-child, .framer-gM8Hv .framer-1egaxp4 > :first-child, .framer-gM8Hv .framer-buh8yu > :first-child, .framer-gM8Hv .framer-f3cl9g > :first-child, .framer-gM8Hv .framer-ymxuz4 > :first-child, .framer-gM8Hv .framer-1hbwbd > :first-child, .framer-gM8Hv .framer-ng12gq > :first-child, .framer-gM8Hv .framer-17ygfrc > :first-child, .framer-gM8Hv .framer-1barrk3 > :first-child { margin-top: 0px; } .framer-gM8Hv .framer-anggjf > :last-child, .framer-gM8Hv .framer-vcp8qs > :last-child, .framer-gM8Hv .framer-1vjkxhp > :last-child, .framer-gM8Hv .framer-1vzd9aj > :last-child, .framer-gM8Hv .framer-1egaxp4 > :last-child, .framer-gM8Hv .framer-buh8yu > :last-child, .framer-gM8Hv .framer-f3cl9g > :last-child, .framer-gM8Hv .framer-ymxuz4 > :last-child, .framer-gM8Hv .framer-1hbwbd > :last-child, .framer-gM8Hv .framer-ng12gq > :last-child, .framer-gM8Hv .framer-17ygfrc > :last-child, .framer-gM8Hv .framer-1barrk3 > :last-child { margin-bottom: 0px; } .framer-gM8Hv .framer-1ok1cbl > * { margin: 0px; margin-left: calc(27px / 2); margin-right: calc(27px / 2); } .framer-gM8Hv .framer-1ok1cbl > :first-child, .framer-gM8Hv .framer-1qkrkbr > :first-child, .framer-gM8Hv .framer-6d2wx9 > :first-child { margin-left: 0px; } .framer-gM8Hv .framer-1ok1cbl > :last-child, .framer-gM8Hv .framer-1qkrkbr > :last-child, .framer-gM8Hv .framer-6d2wx9 > :last-child { margin-right: 0px; } .framer-gM8Hv .framer-vcp8qs > *, .framer-gM8Hv .framer-17ygfrc > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-gM8Hv .framer-1vjkxhp > *, .framer-gM8Hv .framer-1vzd9aj > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-gM8Hv .framer-1qkrkbr > * { margin: 0px; margin-left: calc(19px / 2); margin-right: calc(19px / 2); } .framer-gM8Hv .framer-1egaxp4 > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-gM8Hv .framer-buh8yu > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-gM8Hv .framer-f3cl9g > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-gM8Hv .framer-ymxuz4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gM8Hv .framer-1hbwbd > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-gM8Hv .framer-ng12gq > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-gM8Hv .framer-1barrk3 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-gM8Hv .framer-6d2wx9 > * { margin: 0px; margin-left: calc(29px / 2); margin-right: calc(29px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2829\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"v4Uz11cw7\":{\"layout\":[\"fixed\",\"auto\"]},\"R5cjfhnTd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"WtigvMB1G\":{\"pattern\":\":WtigvMB1G\",\"name\":\"book\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-gM8Hv\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:2829,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNbYRI4CN2V.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...NavbarLogoDarkFonts,...TickerFonts,...EmbedFonts,...MailchimpFonts,...MaterialFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"WtigvMB1G\\\":{\\\"pattern\\\":\\\":WtigvMB1G\\\",\\\"name\\\":\\\"book\\\"}}\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"2829\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"v4Uz11cw7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R5cjfhnTd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "cubicBezier", "noopReturn", "getTForX", "t", "l", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "n", "calcGeneratorVelocity", "s", "r", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "a", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "noopReturn", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "createGeneratorEasing", "e", "t", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "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", "dispatchPointerEvent", "e", "t", "dispatchViewEvent", "se", "o", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "NavbarLogoDarkFonts", "getFonts", "O6Z98jrq7_default", "ImageWithFX", "withFX", "Image2", "RichTextWithFX", "RichText2", "TickerFonts", "Ticker", "EmbedFonts", "Embed", "MailchimpFonts", "Mailchimp_default", "MaterialFonts", "Icon", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "SVG", "x", "Link", "getLoadingLazyAtYPosition", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
