{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/Px5pKFIOtNLwKg27s7Fs/HuWH4XsFb4tPB1yPlgmR/cO9flg5DV.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{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 MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\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 axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea: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;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);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)})},index+\"-original\");});}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:isLayerTooBig===true?\"auto\":\"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(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// 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||supportsWaapi){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||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (d19865c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"Qve4UAmle\",\"mxLKoxgQe\",\"wJzAQsn3J\",\"rTyBRLHYq\",\"s3yBV9lcB\",\"O0tPD4Oyq\",\"wj1MJLDuH\",\"ZuTrLBme4\"];const serializationHash=\"framer-hePlH\";const variantClassNames={mxLKoxgQe:\"framer-v-hdvukf\",O0tPD4Oyq:\"framer-v-hrh2hg\",Qve4UAmle:\"framer-v-qnj3u4\",rTyBRLHYq:\"framer-v-10x21o5\",s3yBV9lcB:\"framer-v-yfiv3u\",wj1MJLDuH:\"framer-v-rmaq55\",wJzAQsn3J:\"framer-v-y4z4s3\",ZuTrLBme4:\"framer-v-odgroh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Dektop Big - ALL\":\"Qve4UAmle\",\"Desktop Big - CH\":\"mxLKoxgQe\",\"Desktop Small - ALL\":\"wJzAQsn3J\",\"Desktop Small - CH\":\"rTyBRLHYq\",\"Phone - ALL\":\"wj1MJLDuH\",\"Phone - CH\":\"ZuTrLBme4\",\"Tablet - ALL\":\"s3yBV9lcB\",\"Tablet - CH\":\"O0tPD4Oyq\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Qve4UAmle\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Qve4UAmle\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"mxLKoxgQe\",\"rTyBRLHYq\",\"O0tPD4Oyq\",\"ZuTrLBme4\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"mxLKoxgQe\",\"rTyBRLHYq\",\"O0tPD4Oyq\",\"ZuTrLBme4\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-qnj3u4\",className,classNames),\"data-framer-name\":\"Dektop Big - ALL\",layoutDependency:layoutDependency,layoutId:\"Qve4UAmle\",ref:refBinding,style:{...style},...addPropertyOverrides({mxLKoxgQe:{\"data-framer-name\":\"Desktop Big - CH\"},O0tPD4Oyq:{\"data-framer-name\":\"Tablet - CH\"},rTyBRLHYq:{\"data-framer-name\":\"Desktop Small - CH\"},s3yBV9lcB:{\"data-framer-name\":\"Tablet - ALL\"},wj1MJLDuH:{\"data-framer-name\":\"Phone - ALL\"},wJzAQsn3J:{\"data-framer-name\":\"Desktop Small - ALL\"},ZuTrLBme4:{\"data-framer-name\":\"Phone - CH\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-npf4t-container\",\"data-framer-name\":\"Partnerlogos - ALL\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rxW4PKzAj-container\",name:\"Partnerlogos - ALL\",nodeId:\"rxW4PKzAj\",rendersWithMotion:true,scopeId:\"cO9flg5DV\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:.3,id:\"rxW4PKzAj\",layoutId:\"rxW4PKzAj\",name:\"Partnerlogos - ALL\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e881ig\",\"data-border\":true,\"data-framer-name\":\"eurogast haring\",layoutDependency:layoutDependency,layoutId:\"T6WVj1MUy\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:307,intrinsicWidth:590.5,pixelHeight:533,pixelWidth:1025,sizes:\"90px\",src:\"https://framerusercontent.com/images/8anDR8TGn6CgEaHFUagJ9E0K7UA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8anDR8TGn6CgEaHFUagJ9E0K7UA.png?scale-down-to=512 512w,https://framerusercontent.com/images/8anDR8TGn6CgEaHFUagJ9E0K7UA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8anDR8TGn6CgEaHFUagJ9E0K7UA.png 1025w\"},className:\"framer-d97z4j\",\"data-framer-name\":\"Eurogast haring logo\",layoutDependency:layoutDependency,layoutId:\"oSB8ejhEJ\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mhej9p\",\"data-border\":true,\"data-framer-name\":\"gyger\",layoutDependency:layoutDependency,layoutId:\"w37URdtvD\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qefwz1\",\"data-framer-name\":\"Gyger Flachdachbau AG-Logo\",fill:\"black\",intrinsicHeight:65,intrinsicWidth:158,layoutDependency:layoutDependency,layoutId:\"FjhsPeg5W\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 158.28 65.35\"><defs><style>.cls-1{fill:#292a26}</style></defs><g id=\"Ebene_2\" data-name=\"Ebene 2\"><g id=\"Ebene_1-2\" data-name=\"Ebene 1\"><path class=\"cls-1\" d=\"M24.48 50.28a33.7 33.7 0 0 1-8.67 1 28.8 28.8 0 0 1-6.48-.66C1.7 48.79 0 42.21 0 32.71c0-16.19 5.11-19.16 15.81-19.16a76.74 76.74 0 0 1 8.12.39c2.31.27 2.8.77 2.8 1.92v1.87c0 2-.33 2.63-2.08 2.63-1.32 0-5.16-.44-7.74-.44a18.66 18.66 0 0 0-6 .77c-3.24 1.43-3.35 5.76-3.35 12.08s.33 11 5.11 11.91a28.72 28.72 0 0 0 4.23.27 14.92 14.92 0 0 0 2.58-.33V34.41h-5.15C12.07 34.41 12 33 12 31.83v-.77c0-1.15.1-2.57 2.36-2.57h10.12c1.92 0 2.36 1.09 2.36 2.3v16.63c0 1.65-.66 2.36-2.36 2.86m63.12 0a33.77 33.77 0 0 1-8.68 1 28.66 28.66 0 0 1-6.47-.66c-7.63-1.87-9.34-8.45-9.34-17.95 0-16.19 5.11-19.16 15.81-19.16a77 77 0 0 1 8.13.39c2.3.27 2.8.77 2.8 1.92v1.87c0 2-.33 2.63-2.09 2.63-1.32 0-5.16-.44-7.74-.44a18.6 18.6 0 0 0-6 .77c-3.24 1.43-3.35 5.76-3.35 12.08s.33 11 5.1 11.91A28.82 28.82 0 0 0 80 45a14.69 14.69 0 0 0 2.58-.33V34.41h-5.14c-2.25 0-2.36-1.42-2.36-2.58v-.77c0-1.15.11-2.57 2.36-2.57H87.6c1.92 0 2.36 1.09 2.36 2.3v16.63c0 1.65-.66 2.36-2.36 2.86m32 .33h-17c-1.81 0-2.69-.5-2.69-2.42v-32c0-2.14 1.49-2.25 2.69-2.25h17c1.37 0 2.36.38 2.36 2.25v1.48c0 1.15-.11 2.58-2.36 2.58-4.62 0-9-.05-12.3-.17v8.57c3-.06 6.59-.16 11.09-.16 2.25 0 2.36 1.42 2.36 2.57v.77c0 1.16-.11 2.58-2.36 2.58-4.5 0-8.07-.11-11.09-.16v10.21c3.29-.11 7.68-.17 12.3-.17 2.25 0 2.36 1.43 2.36 2.58v1.49c0 1.86-1.1 2.25-2.36 2.25m27.28-29.98a13.81 13.81 0 0 0-4.23-.43c-1.75 0-3.18.05-4.72.11V31h6.21c2 0 3-.33 3.57-1.1s.66-1.53.66-3.57c0-2.25-.23-5.05-1.49-5.71m8.73 30h-3.29a3.58 3.58 0 0 1-3.32-1.5l-9.33-11.85h-1.71v10.92c0 1.65-.71 2.42-2.3 2.42h-2.36c-1.81 0-2.69-.5-2.69-2.42v-32c0-2.14 1.48-2.25 2.69-2.25h10.15c5.77 0 7.25.38 9.39 2.58 2 2 2.86 5.54 2.86 10.26 0 4.5-1.32 7.3-3.63 8.9a8.7 8.7 0 0 1-3.7 1.32l8.39 10.21c1.1 1.32 1.32 3.41-1.15 3.41\"/><path d=\"M155.86 0H63.92a3.46 3.46 0 0 0-3 1.78l-15.2 27.1-7.39-13.35a2.63 2.63 0 0 0-2.74-1.59h-3c-.88 0-2.14.38-2.14 1.75a3.27 3.27 0 0 0 .55 1.6l11 19.54v11.36c0 1.92.82 2.42 2.63 2.42H47c1.59 0 2.36-.77 2.36-2.42v-11.8l1.09-1.93c.09-.13.21-.25.29-.39L66 7h89.92c1.92 0 2.41-.81 2.41-2.51V2.21c0-1.5-.77-2.19-2.42-2.19\" style=\"fill:#e30613\"/><path class=\"cls-1\" d=\"M6.4 57.07c-1 0-2 0-3.06-.06v2.77h2.81c.42 0 .33.33.33.64s0 .44-.34.44h-2.8v3.94c0 .28-.06.41-.35.41h-.58c-.33 0-.43-.06-.43-.41v-8.56c0-.34.14-.36.43-.36h4c.46 0 .35.4.35.74s-.03.45-.36.45Zm3.43 8.06h-.55c-.36 0-.42 0-.42-.41v-8.47c0-.3.06-.37.36-.37h.61c.22 0 .3.18.3.37v8.47c0 .28-.02.41-.3.41Zm6.92 0c-.58 0-.47-.2-.47-.7a3.8 3.8 0 0 1-2.24.88c-1.25 0-1.72-.74-1.72-1.91a1.85 1.85 0 0 1 1-1.92 10.78 10.78 0 0 1 3-.33 4.54 4.54 0 0 0-.14-1.24.79.79 0 0 0-.77-.39 9 9 0 0 0-2.12.36 1 1 0 0 1-.17 0c-.26 0-.18-.61-.18-.78s0-.3.2-.36a11.72 11.72 0 0 1 2.21-.28c2 0 2.25 1 2.25 2.76v3.47c-.04.57-.38.44-.85.44Zm-.47-2.95h-.93c-.31 0-1.41 0-1.69.4a1.46 1.46 0 0 0-.12.69c0 .52.06 1.08.69 1.08a3.9 3.9 0 0 0 2.05-.88Zm7.41 3.07a11 11 0 0 1-1.14.06 4.65 4.65 0 0 1-1.74-.25c-1.17-.49-1.14-2.09-1.14-3.16a7.84 7.84 0 0 1 .17-1.9c.36-1.39 1.45-1.49 2.71-1.49a11.07 11.07 0 0 1 1.14.07c.23 0 .55 0 .55.28a2.69 2.69 0 0 1-.06.69c0 .12-.05.21-.19.21a4 4 0 0 1-.57-.06 9.35 9.35 0 0 0-1.28-.11 1 1 0 0 0-.95.36 6.35 6.35 0 0 0-.2 2v1.38c.07.75.37 1 1.11 1a11.59 11.59 0 0 0 1.3-.11 3.43 3.43 0 0 1 .55-.06.14.14 0 0 1 .14.06 2.8 2.8 0 0 1 .11.84c.04.2-.28.16-.51.19Zm7.6-.12h-.49c-.39 0-.48 0-.48-.41V61a3.76 3.76 0 0 0-.13-1.27.78.78 0 0 0-.62-.21 3.33 3.33 0 0 0-1.95.76v4.44c0 .27 0 .41-.31.41h-.48c-.39 0-.49 0-.49-.41v-8.47c0-.32.06-.37.36-.37h.61c.24 0 .31.16.31.37v2.85a4.3 4.3 0 0 1 2.1-.63 1.64 1.64 0 0 1 1.87 1.78v4.47c0 .28-.01.41-.3.41Zm7.12 0c-.41 0-.47 0-.47-.45a4 4 0 0 1-2 .64c-1.8 0-2.24-1.7-2.24-3.2 0-1.85.51-3.61 2.69-3.61a8.73 8.73 0 0 1 1.53.16v-2.42c0-.32.06-.37.36-.37h.61c.22 0 .31.18.31.37v8.47c.02.54-.32.41-.79.41Zm-.47-5.32a6.06 6.06 0 0 0-1.58-.25 1.11 1.11 0 0 0-.67.15c-.69.39-.69 1.91-.69 2.56a3 3 0 0 0 .3 1.57 1.17 1.17 0 0 0 .93.46 2.85 2.85 0 0 0 1.7-.78Zm7.82 5.32c-.58 0-.47-.2-.47-.7a3.8 3.8 0 0 1-2.24.88c-1.25 0-1.72-.74-1.72-1.91a1.85 1.85 0 0 1 1-1.92 10.78 10.78 0 0 1 2.95-.33 4.54 4.54 0 0 0-.14-1.24.79.79 0 0 0-.77-.39 9 9 0 0 0-2.12.36 1 1 0 0 1-.17 0c-.26 0-.18-.61-.18-.78s0-.3.2-.36a11.62 11.62 0 0 1 2.21-.28c2 0 2.25 1 2.25 2.76v3.47c.01.57-.33.44-.8.44Zm-.47-2.95h-.93c-.31 0-1.41 0-1.69.4a1.46 1.46 0 0 0-.12.69c0 .52.05 1.08.69 1.08a3.9 3.9 0 0 0 2-.88Zm7.41 3.07a11 11 0 0 1-1.14.06 4.65 4.65 0 0 1-1.74-.25c-1.17-.49-1.14-2.09-1.14-3.16a7.84 7.84 0 0 1 .17-1.9c.36-1.39 1.45-1.49 2.71-1.49a11.07 11.07 0 0 1 1.14.07c.23 0 .55 0 .55.28a2.69 2.69 0 0 1-.06.69c0 .12 0 .21-.19.21a4 4 0 0 1-.57-.06 9.35 9.35 0 0 0-1.28-.11 1 1 0 0 0-.95.36 6.35 6.35 0 0 0-.2 2v1.38c.07.75.37 1 1.11 1a11.59 11.59 0 0 0 1.3-.11 3.43 3.43 0 0 1 .55-.06.14.14 0 0 1 .14.06 2.8 2.8 0 0 1 .11.84c.04.2-.28.16-.51.19Zm7.59-.12h-.48c-.39 0-.48 0-.48-.41V61a3.76 3.76 0 0 0-.13-1.27.79.79 0 0 0-.62-.21 3.33 3.33 0 0 0-1.95.76v4.44c0 .27 0 .41-.31.41h-.48c-.39 0-.49 0-.49-.41v-8.47c0-.32.06-.37.36-.37h.61c.24 0 .31.16.31.37v2.85a4.3 4.3 0 0 1 2.1-.63 1.64 1.64 0 0 1 1.87 1.78v4.47c0 .28-.01.41-.31.41Zm13.97.18a9 9 0 0 1-1.15-1 2.86 2.86 0 0 1-2.55 1c-1.74 0-3.13-.31-3.13-2.38a2.63 2.63 0 0 1 1.79-2.81A3.64 3.64 0 0 1 68 57.66c0-1.47 1-1.95 2.31-1.95 1.54 0 2.54.24 2.54 2 0 1.42-.9 2-2 2.73a19.55 19.55 0 0 0 2 2.16 6.88 6.88 0 0 0 .29-1.42c0-.17 0-.35.06-.5s.07-.2.25-.2H74c.21 0 .18.2.18.35a6.56 6.56 0 0 1-.54 2.58c.14.13 1.22 1.1 1.22 1.17a2 2 0 0 1-.6.73Zm-4.36-4.38c-.94.6-1.23.73-1.23 1.93 0 1.42.69 1.44 1.89 1.44a1.82 1.82 0 0 0 1.8-.74 29.2 29.2 0 0 1-2.46-2.63Zm.44-4.21c-.8 0-1.08.25-1.08 1.07a2.68 2.68 0 0 0 .94 1.8c.86-.45 1.51-.81 1.51-1.89s-.55-.98-1.37-.98Zm12.75 8.41h-.58c-.35 0-.43 0-.43-.41v-8.48c0-.29.1-.36.37-.36h.64c.28 0 .35.09.35.36v8.48c0 .28-.06.41-.35.41Zm7.91 0h-.48c-.39 0-.49 0-.49-.41V61a3.34 3.34 0 0 0-.14-1.27.78.78 0 0 0-.62-.21 3.07 3.07 0 0 0-1.94.93v4.27c0 .25 0 .41-.3.41h-.49c-.38 0-.48 0-.48-.41v-5.66c0-.32 0-.37.36-.37h.61c.34 0 .3.36.3.59a3.21 3.21 0 0 1 2.11-.81 1.64 1.64 0 0 1 1.87 1.78v4.47c.02.28-.01.41-.31.41Zm7.14 0c-.42 0-.47 0-.47-.45a4.07 4.07 0 0 1-2 .64c-1.8 0-2.25-1.7-2.25-3.2 0-1.85.51-3.61 2.69-3.61a8.84 8.84 0 0 1 1.54.16v-2.42c0-.32 0-.37.36-.37h.61c.22 0 .3.18.3.37v8.47c.02.54-.31.41-.78.41Zm-.47-5.32a6.19 6.19 0 0 0-1.58-.25 1.12 1.12 0 0 0-.68.15c-.65.39-.68 1.91-.68 2.56a3.11 3.11 0 0 0 .3 1.57 1.19 1.19 0 0 0 .93.46 2.85 2.85 0 0 0 1.71-.78Zm8.4 5.32h-.61c-.35 0-.31-.36-.31-.6a3.22 3.22 0 0 1-2.09.82 1.64 1.64 0 0 1-1.88-1.79v-4.47c0-.54.32-.4.8-.4s.47 0 .47.4v3.72a3.63 3.63 0 0 0 .14 1.28.78.78 0 0 0 .62.21 3.07 3.07 0 0 0 1.94-.93v-4.28c0-.54.32-.4.81-.4s.47 0 .47.4v5.66c0 .32-.06.38-.36.38Zm4.87.13a11.37 11.37 0 0 1-1.94-.09c-.24 0-.18-.24-.18-.43v-.5c0-.17 0-.18.14-.18s.49.07.71.08a11.48 11.48 0 0 0 1.44.09c.66 0 .94 0 .94-.77a1.09 1.09 0 0 0-.11-.62 6.17 6.17 0 0 0-1.51-.55c-1.11-.33-1.77-.53-1.77-1.83 0-2 1.26-1.93 2.88-1.93h1c.32 0 .45.1.45.54 0 .25.07.6-.26.6a5.53 5.53 0 0 1-.7-.07 10.46 10.46 0 0 0-1.11-.06c-.76 0-1 0-1 .78a1.5 1.5 0 0 0 0 .36c.08.32 1 .54 1.29.62l.89.29c1 .32 1.17.7 1.17 1.69.01 1.8-.7 1.98-2.33 1.98Zm7.66-5.56h-1.43v3.52c0 .41-.07 1 .52 1 .4 0 .8-.21 1.14-.21.13 0 .13.06.13.18v.53c0 .34 0 .4-.36.43a11.31 11.31 0 0 1-1.17.06c-1.48 0-1.54-.69-1.54-2V59.7c-.76 0-.71 0-.71-.69 0-.41.45-.32.71-.32v-1.3c0-.31.06-.38.36-.38h.61c.22 0 .31.18.31.38v1.3h1.43c.43 0 .39.15.39.51s.01.5-.39.5Zm5.86.08a3.17 3.17 0 0 0-2.11.6v4.34c0 .25 0 .41-.3.41h-.53c-.38 0-.48 0-.48-.41v-5.66c0-.3 0-.37.36-.37h.65c.36 0 .3.41.3.66a3.65 3.65 0 0 1 2-.75c.49 0 .36.41.36.75s.01.43-.25.43Zm3.13-2.15h-.54c-.38 0-.48 0-.48-.4v-.5c0-.3.06-.37.36-.37h.66c.22 0 .3.18.3.37v.5c0 .25-.03.4-.3.4Zm0 7.5h-.54c-.38 0-.48 0-.48-.41v-5.66c0-.3.06-.37.36-.37h.66c.22 0 .3.18.3.37v5.66c0 .28-.03.41-.3.41Zm7.41-2.8h-3.55c0 1.26 0 2 1.47 2a7.85 7.85 0 0 0 1.45-.16 3.14 3.14 0 0 1 .71-.16c.15 0 .15.61.15.75s0 .33-.29.4a9.26 9.26 0 0 1-2 .2 3 3 0 0 1-2.14-.68 4.31 4.31 0 0 1-.6-2.69c0-2.1.2-3.46 2.68-3.46 2.26 0 2.48 1.3 2.48 3.21-.05.26.02.59-.36.59Zm-2.15-2.8c-1.23 0-1.4.39-1.4 1.55v.28h2.65v-.62c-.01-.99-.31-1.21-1.27-1.21Zm7.15 5.79a12 12 0 0 1-2.16-.19c-.26-.06-.45-.09-.45-.39v-8.49c0-.32 0-.37.36-.37h.61c.23 0 .3.16.3.37v2.42a11.49 11.49 0 0 1 1.94-.19c2 0 2.23 1.73 2.23 3.38.04 2.14-.42 3.46-2.83 3.46Zm1.39-5c-.15-.62-.46-.75-1.07-.75a7.23 7.23 0 0 0-1.66.24v4.36a7.78 7.78 0 0 0 1.37.17 1.22 1.22 0 0 0 1.33-.77 6.42 6.42 0 0 0 .18-1.7 6.74 6.74 0 0 0-.11-1.59Zm7.89 4.81c-.59 0-.48-.2-.48-.7a3.8 3.8 0 0 1-2.24.88c-1.24 0-1.72-.74-1.72-1.91a1.84 1.84 0 0 1 1-1.92 10.7 10.7 0 0 1 2.94-.33 4.54 4.54 0 0 0-.13-1.24.81.81 0 0 0-.78-.39 9 9 0 0 0-2.12.36h-.16c-.27 0-.18-.61-.18-.78s0-.3.19-.36a11.73 11.73 0 0 1 2.22-.28c2 0 2.24 1 2.24 2.76v3.47c.02.57-.31.44-.78.44Zm-.48-2.95h-.92c-.3 0-1.42 0-1.69.4a1.47 1.47 0 0 0-.13.69c0 .52.06 1.08.7 1.08a3.9 3.9 0 0 0 2-.88Zm8.41 2.95h-.61c-.35 0-.31-.36-.31-.6a3.22 3.22 0 0 1-2.09.82 1.64 1.64 0 0 1-1.88-1.79v-4.47c0-.54.32-.4.8-.4s.47 0 .47.4v3.72a3.63 3.63 0 0 0 .14 1.28.78.78 0 0 0 .62.21 3.07 3.07 0 0 0 1.94-.93v-4.28c0-.54.32-.4.81-.4s.47 0 .47.4v5.66c0 .32-.06.38-.36.38Z\"/></g></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m4o531\",\"data-border\":true,\"data-framer-name\":\"grafholz ag\",layoutDependency:layoutDependency,layoutId:\"qAOtH1F2G\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1r9zruo\",\"data-framer-name\":\"Grafholz Logo EPS\",fill:\"black\",intrinsicHeight:14246,intrinsicWidth:41413,layoutDependency:layoutDependency,layoutId:\"eYg3M3kp1\",svg:'<svg viewBox=\"0 0 41413 14246\" xmlns=\"http://www.w3.org/2000/svg\" xml:space=\"preserve\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:2\"><path style=\"fill:none;fill-rule:nonzero\" d=\"M0 .42h9938.27V3419H0z\" transform=\"scale(4.16667)\"/><path d=\"m3429.16 1594.58-124.2-.65.41-339.61h123.92l-.13 340.26Zm-1016.79-425.73-35.81 86.29 144.65.44c-.13.82 36.7-86.16 36.7-86.16l-145.54-.57Zm-379.28 347.2L1916.8 1782.8c19.87-2.91 35.58-11.55 53.98-19.85 25.78-11.62 50.11-25.74 73.09-42.15 26.87-19.2 49.74-42.76 64.34-72.25 19.99-40.32 58.01-133.72 58.01-133.72l-133.13 1.22Zm246.88-261.13s39.77-88.76 56.37-127.29c4.52-10.46 7.22-21.26 7.71-32.73 1.69-38.96-12.53-69.47-46.45-90.23-10.82-6.614-21.93-12.061-34.33-14.666-4.13-.881-.8-.628-5.32-1.222l-113.2 265.178 135.22.96Zm-6-534.779c1.78-3.071 74.57-158.617 74.57-158.617l-.08-85.742 32.89-.232 46.4-110.014-68.9-175.819c-1.2 1.894-230.94 538.595-230.52 540.765 42.85-2.901 85.83-5.798 128.8-8.747 5.55-.372 11.06-1.033 16.84-1.594Zm342.23-244.149 49.45-113.482-69.31-172.174s-231.9 530.008-230.78 536.571c43.77 8.331 87.21 16.598 131.01 24.931 2.1-3.509 86.9-190.466 86.9-190.466l.06-85.605 32.67.225ZM1873.19 807.12c54.43-28.124 110.29-42.315 164.43-59.609l83.73-194.812.67-76.682 32.94-.275 44.41-108.087-61.73-177.938-264.45 617.403Zm818.6 54.783 130.29-300.531-.16-85.481 32.92-.149s33.67-78.274 47.54-109.788l-67.24-175.552-253.91 595.889c8.02 4.963 17.01 10.454 25.92 16.098 9.52 6.018 19.18 11.841 28.36 18.36 8.67 6.167 17.02 12.809 25.08 19.759 8.4 7.205 22.54 13.315 31.2 21.395Zm1004.26 732.607.3-339.17-87.88-.79c.22.66-178.57-411.725-178.57-411.725v330.315l173.79 420.93 92.36.44Zm-1883.45 188.3 345.17-791.86c-5.46 1.091-17.63 3.698-23.55 5.29-26.12 7.14-50.36 18.45-74.12 31.44-29.64 16.23-54.77 37.41-76.3 63.07-17.35 20.69-32.86 42.74-43.73 67.64 0 0-216.18 505.57-217.73 519.34-4.01 35.39 8.74 76.24 53.43 93.47 12.14 4.69 27.22 9.07 36.83 11.61Zm1616-1488.327 2.25 303.288s215.95 530.349 304.05 741.219c33.29 79.71 109.11 254.95 109.11 254.95l75.21-.62-.44-338.37-79.96-.4s-83.98-202.81-129.08-310.789c-45.37-108.626-90.41-217.387-135.63-326.069-44.97-108.058-100.52-215.151-145.51-323.209Zm-120.71-104.766L2395.44 2305.94l-91.78-.46 48.53-141.23-.56-77.28 40.02-.04 666.3-1525.449.14-85.59 32.96-.149s32.67-73.952 48.65-110.689l-69.4-174.684-334.79 771.319c13.47 33.489 17.59 67.812 15.28 103.452-2.33 36.08-14.95 82.85-30.41 102.21h-74.21s-35.37 85.96-35.48 87.79c-.04.57 60.98 0 60.98 0l-344.83 789.36s-59.53 1.51-58.76 1.1l-116.07 260.59-79.63.69 57.66-142.58-11.23-77.67 46.87-.97 17.82-38.79-151.1-1.84c-7.86 17.94-114.66 260.83-114.66 260.83l-88.27-.61 60.91-141.94-8.11-76.02 41.39-2.1s40.49-91.52 40.49-95.44c-53.57 23.53-101.19 40.3-157.58 50.84-4.57 10.21-112.36 266.76-112.36 266.76l-93.08-1.38 46.38-141.26.04-76.95h36.31l14.94-42.47c-21.75-1.29-43.49-2.89-65.27-3.79-22.58-.94-44.37-6.36-67.16-12.19-2.98 6.27-123.87 276.41-123.87 276.41h-71.16l58.41-140.69-3.48-77.27 37.99-.38 33.56-82.44c-1.72-1.34-100.49-85.07-103.06-86.64-2.88 6.06-171.2 387.8-171.2 387.8l-78.4-.13 62.2-142.86-11.14-75.35h35.07l114.1-261.03c-4.13-17.04-11.25-46.64-13.48-63.96-9.78-76.24.06-149.93 30.34-220.73 49.07-114.6 98.05-229.24 147.19-343.81 11.61-27.05 22.71-54.37 35.75-80.71 44.84-90.55 136.18-194.842 215.39-256.249 39.6-93.44 132.18-299.497 132.18-299.497l.16-86.224 32.96-.156 48.83-112.099-67.5-173.578L988.236 2305.88l-74.787-.44L973.484 2166l-16.441-78.51 48.517-1.73 650.97-1524.457.18-85.521 32.96-.232 50.68-112.009-68.83-172.893L756.752 2305.72l-81.931.25 50.299-141.75 1.128-76.46h36.754L1416.4 561.524l-.19-86.003 33.15-.127 51.16-113.413s-61.19-168.474-63.24-171.612L524.74 2306.26l-82.81-.05-.58 334.71h85.612l140.202-314.24-1.064 314.24 102.839.38 134.343-317.54c.299 5.11-2.161 316.76-2.161 316.76H1005.1l137.82-326.21-1.14 326.21h85.71l137.93-320.04s.61 321.12.25 320.04l79.19.4 150.67-317.53-2.54 317.53 94.92 1.11 134.51-315.29v313.84l105.28.75 136.76-321.57c.53 1.82-.08 321.16-.08 321.16l86.05.44 148.94-325.23.46 324.79 95.44-1.12 135.88-318.64-1.29 318.86 76.1.9 195.06-448.2-.97 172.38 127.97-.43-.05-279.79-81.96.37 459.25-1078.91-.91-278.556-687.62 1578.126-80.69.06 60.94-142.29 1.29-76.14 34.85-1.29 650.17-1524.599.03-85.848h22.41s2.16-285.155 2.16-286.086Zm670.99 654.925c33.86 82.218 67.57 164.528 101.42 246.768 21.21 51.55 69.62 163.14 69.62 163.14l-85.88-.39s-50.8-120.33-74.9-178.14c-61.92-148.598-203.19-474.46-203.19-474.46l-263.19-310.239 129.27 310.723S3865.57 1116.31 3968 1361.97c30.37 72.83 99.14 231.35 99.14 231.35h84.61l-.11-211.88 180.12 211.91 102.07-.31-.53-338.09h-98.16s-104.09-123.5-156.63-185.73c-62.62-74.202-201.02-227.961-199.63-224.578Z\" style=\"fill:#3a2315\" transform=\"scale(4.16667)\"/><path d=\"M3632.75 2214.37v-107.13h276.7v253.3c-26.89 26.03-65.85 48.95-116.88 68.75-51.04 19.8-102.72 29.71-155.05 29.71-66.51 0-124.47-13.95-173.91-41.86-49.45-27.9-86.6-67.8-111.47-119.71-24.87-51.9-37.3-108.35-37.3-169.37 0-66.21 13.88-125.06 41.64-176.53 27.76-51.46 68.38-90.93 121.87-118.41 40.77-21.1 91.51-31.66 152.23-31.66 78.93 0 140.59 16.56 184.98 49.66 44.37 33.12 72.92 78.87 85.65 137.28l-127.51 23.85c-8.96-31.22-25.8-55.87-50.52-73.95-24.72-18.06-55.59-27.1-92.6-27.1-56.1 0-100.69 17.78-133.8 53.35-33.11 35.56-49.66 88.33-49.66 158.31 0 75.47 16.77 132.07 50.31 169.8 33.54 37.74 77.49 56.61 131.85 56.61 26.89 0 53.85-5.28 80.89-15.84 27.03-10.55 50.23-23.34 69.6-38.38v-80.68h-147.02Zm510.9 233.79h-121.87v-460.63h113.2v65.5c19.36-30.94 36.79-51.33 52.26-61.16 15.46-9.83 33.03-14.75 52.69-14.75 27.76 0 54.5 7.67 80.24 22.99l-37.73 106.27c-20.54-13.3-39.62-19.96-57.25-19.96-17.07 0-31.52 4.71-43.37 14.1-11.86 9.4-21.19 26.39-27.98 50.96-6.79 24.58-10.19 76.06-10.19 154.41v142.27Zm483.15-221.21c-15.62 5.21-40.34 11.43-74.17 18.65-33.83 7.23-55.94 14.32-66.35 21.26-15.91 11.27-23.86 25.59-23.86 42.94 0 17.06 6.36 31.81 19.09 44.24 12.72 12.43 28.91 18.65 48.57 18.65 21.97 0 42.94-7.23 62.89-21.69 14.74-10.99 24.43-24.43 29.06-40.34 3.17-10.41 4.77-30.21 4.77-59.42v-24.29Zm-163.08-98.89-110.59-19.95c12.43-44.53 33.83-77.49 64.19-98.89 30.36-21.4 75.46-32.1 135.31-32.1 54.36 0 94.83 6.44 121.44 19.3 26.6 12.87 45.32 29.21 56.16 49.02 10.85 19.81 16.27 56.16 16.27 109.08l-1.3 142.26c0 40.49 1.95 70.34 5.85 89.57 3.91 19.23 11.2 39.83 21.9 61.81h-120.57c-3.18-8.1-7.08-20.1-11.71-36-2.02-7.23-3.46-12-4.33-14.32-20.82 20.25-43.09 35.43-66.79 45.54-23.71 10.12-49.01 15.19-75.9 15.19-47.42 0-84.79-12.87-112.11-38.61-27.33-25.73-40.99-58.26-40.99-97.59 0-26.02 6.22-49.22 18.65-69.61s29.85-36 52.26-46.84c22.41-10.85 54.72-20.31 96.94-28.41 56.95-10.7 96.42-20.67 118.4-29.93v-12.14c0-23.43-5.79-40.13-17.35-50.1-11.57-9.98-33.4-14.96-65.49-14.96-21.69 0-38.6 4.26-50.74 12.79-12.15 8.53-21.98 23.5-29.5 44.89Zm349.57-140.53h67.66v-34.7c0-38.74 4.12-67.66 12.36-86.74 8.24-19.09 23.42-34.63 45.54-46.63 22.11-11.99 50.09-18 83.92-18 34.69 0 68.66 5.21 101.92 15.62l-16.48 85.01c-19.38-4.62-38.03-6.94-55.95-6.94-17.64 0-30.29 4.12-37.95 12.36-7.66 8.24-11.49 24.07-11.49 47.49v32.53h91.07v95.86h-91.07v364.77h-121.87v-364.77h-67.66v-95.86Zm900.8 209.06-87.61-235.95-85.87 235.95h173.48Zm236.37 251.57H5810.8l-55.51-144.44h-254.15l-52.48 144.44h-136.18l247.64-635.85h135.75l254.59 635.85Zm363.87-233.79v-107.13h276.71v253.3c-26.89 26.03-65.86 48.95-116.89 68.75-51.03 19.8-102.72 29.71-155.05 29.71-66.5 0-124.47-13.95-173.91-41.86-49.44-27.9-86.6-67.8-111.46-119.71-24.87-51.9-37.3-108.35-37.3-169.37 0-66.21 13.88-125.06 41.64-176.53 27.75-51.46 68.37-90.93 121.87-118.41 40.76-21.1 91.51-31.66 152.22-31.66 78.94 0 140.59 16.56 184.98 49.66 44.38 33.12 72.93 78.87 85.66 137.28l-127.51 23.85c-8.97-31.22-25.81-55.87-50.53-73.95-24.72-18.06-55.59-27.1-92.6-27.1-56.09 0-100.69 17.78-133.79 53.35-33.11 35.56-49.66 88.33-49.66 158.31 0 75.47 16.76 132.07 50.31 169.8 33.54 37.74 77.48 56.61 131.84 56.61 26.89 0 53.85-5.28 80.89-15.84 27.03-10.55 50.24-23.34 69.61-38.38v-80.68h-147.03Z\" style=\"fill:#3a2315;fill-rule:nonzero\" transform=\"scale(4.16667)\"/><path d=\"M441.97 3115.8v-387.42h51.266v341.7h190.795v45.72H441.97Zm297.29 0v-280.66h47.567v280.66H739.26Zm0-332.72v-54.7h47.567v54.7H739.26Zm150.628 187.37c0 36.83 7.309 63.69 21.934 80.61 14.62 16.91 32.941 25.37 54.965 25.37 21.843 0 40.163-8.42 54.963-25.24 14.8-16.83 22.2-43.21 22.2-79.15 0-34.36-7.62-60.26-22.86-77.7-15.24-17.44-33.604-26.16-55.096-26.16-21.14 0-39.11 8.59-53.909 25.76-14.798 17.18-22.197 42.69-22.197 76.51Zm-39.375 168.61 46.246 6.87c1.936 14.27 7.308 24.67 16.119 31.19 11.801 8.8 27.921 13.21 48.36 13.21 22.02 0 39.022-4.41 51.002-13.21 11.98-8.82 20.08-21.15 24.31-37 2.47-9.69 3.61-30.04 3.44-61.05-20.79 24.49-46.691 36.73-77.695 36.73-38.582 0-68.444-13.91-89.584-41.75S841 3012.83 841 2973.89c0-26.78 4.844-51.49 14.534-74.13 9.688-22.64 23.738-40.13 42.149-52.46 18.408-12.33 40.036-18.5 64.876-18.5 33.118 0 60.421 13.39 81.921 40.17v-33.83h43.87v242.61c0 43.69-4.46 74.66-13.35 92.89-8.9 18.24-22.99 32.64-42.28 43.21-19.29 10.57-43.033 15.86-71.218 15.86-33.474 0-60.515-7.54-81.127-22.6-20.612-15.06-30.568-37.75-29.862-68.05Zm309.707-23.26v-280.66h42.81v39.91c20.62-30.83 50.39-46.25 89.32-46.25 16.92 0 32.46 3.04 46.64 9.12 14.18 6.08 24.8 14.05 31.85 23.91 7.04 9.87 11.98 21.59 14.8 35.15 1.76 8.81 2.64 24.23 2.64 46.25v172.57h-47.57v-170.72c0-19.38-1.85-33.87-5.55-43.47-3.7-9.6-10.26-17.27-19.68-22.99-9.43-5.73-20.48-8.59-33.17-8.59-20.26 0-37.75 6.43-52.45 19.29-14.72 12.86-22.07 37.26-22.07 73.2v153.28h-47.57Zm332.18-140.33c0 35.94 7.83 62.86 23.52 80.74 15.67 17.88 35.41 26.82 59.19 26.82 23.6 0 43.25-8.98 58.93-26.95s23.52-45.37 23.52-82.19c0-34.71-7.89-61.01-23.65-78.89-15.77-17.88-35.37-26.82-58.8-26.82-23.78 0-43.52 8.9-59.19 26.69-15.69 17.8-23.52 44.66-23.52 80.6Zm-48.89 0c0-51.97 14.44-90.47 43.34-115.48 24.13-20.79 53.55-31.19 88.26-31.19 38.58 0 70.11 12.64 94.6 37.92 24.49 25.29 36.74 60.22 36.74 104.79 0 36.12-5.42 64.53-16.26 85.23-10.83 20.7-26.6 36.78-47.3 48.23-20.7 11.45-43.3 17.18-67.78 17.18-39.29 0-71.05-12.6-95.27-37.8-24.22-25.19-36.33-61.48-36.33-108.88Zm422.55 97.78 6.87 42.02c-13.39 2.82-25.37 4.23-35.94 4.23-17.27 0-30.65-2.73-40.17-8.19-9.51-5.46-16.21-12.64-20.08-21.54-3.88-8.89-5.82-27.61-5.82-56.16v-161.47h-34.88v-37h34.88v-69.5l47.31-28.54v98.04h47.83v37h-47.83v164.12c0 13.57.83 22.29 2.51 26.16 1.67 3.88 4.4 6.96 8.19 9.25 3.79 2.29 9.2 3.44 16.25 3.44 5.29 0 12.24-.62 20.88-1.86Zm45.98 42.55v-280.66h42.81v42.55c10.92-19.91 21.01-33.03 30.26-39.38 9.24-6.34 19.42-9.51 30.52-9.51 16.03 0 32.32 5.11 48.89 15.33l-16.39 44.13c-11.63-6.87-23.25-10.3-34.88-10.3-10.4 0-19.73 3.12-28.01 9.38-8.28 6.25-14.19 14.93-17.71 26.03-5.28 16.91-7.93 35.41-7.93 55.5v146.93h-47.56Zm216.69-167.28h156.7c-2.11-23.61-8.1-41.32-17.96-53.12-15.16-18.32-34.8-27.49-58.93-27.49-21.85 0-40.22 7.32-55.1 21.94-14.89 14.62-23.12 34.18-24.71 58.67Zm156.18 76.9 49.15 6.08c-7.76 28.72-22.11 51-43.08 66.86-20.96 15.86-47.74 23.79-80.33 23.79-41.05 0-73.6-12.64-97.64-37.93-24.05-25.28-36.07-60.74-36.07-106.37 0-47.21 12.15-83.86 36.46-109.94 24.31-26.07 55.85-39.11 94.61-39.11 37.52 0 68.18 12.78 91.96 38.32 23.78 25.55 35.67 61.49 35.67 107.82 0 2.83-.09 7.05-.26 12.69h-209.29c1.76 30.83 10.48 54.44 26.16 70.83 15.68 16.38 35.23 24.57 58.66 24.57 17.44 0 32.33-4.58 44.66-13.74 12.33-9.16 22.11-23.78 29.34-43.87Zm108.87 90.38v-280.66h42.81v39.91c20.61-30.83 50.38-46.25 89.32-46.25 16.91 0 32.46 3.04 46.64 9.12 14.18 6.08 24.8 14.05 31.84 23.91 7.05 9.87 11.98 21.59 14.8 35.15 1.76 8.81 2.65 24.23 2.65 46.25v172.57h-47.57v-170.72c0-19.38-1.85-33.87-5.55-43.47-3.7-9.6-10.27-17.27-19.69-22.99-9.42-5.73-20.48-8.59-33.16-8.59-20.26 0-37.75 6.43-52.46 19.29s-22.06 37.26-22.06 73.2v153.28h-47.57Zm332.7-140.06c0 35.94 7.57 62.81 22.73 80.6 15.15 17.8 33.03 26.69 53.64 26.69 20.79 0 38.45-8.5 52.99-25.5 14.53-17 21.8-42.94 21.8-77.83 0-38.4-7.4-66.6-22.2-84.57-14.8-17.97-33.03-26.95-54.7-26.95-21.14 0-38.81 8.63-52.99 25.9-14.18 17.27-21.27 44.49-21.27 81.66Zm150.36 140.06v-35.41c-17.79 27.84-43.95 41.76-78.48 41.76-22.38 0-42.94-6.17-61.7-18.5-18.77-12.33-33.3-29.56-43.61-51.67-10.3-22.11-15.46-47.52-15.46-76.24 0-28.02 4.67-53.43 14.01-76.25 9.33-22.81 23.34-40.3 42.02-52.46 18.67-12.15 39.54-18.23 62.63-18.23 16.91 0 31.97 3.57 45.18 10.7 13.22 7.14 23.96 16.43 32.24 27.89v-139.01h47.31v387.42h-44.14Zm273.25 0v-387.42h51.26v192.12l192.38-192.12h69.5l-162.52 156.98 169.66 230.44h-67.65l-137.94-196.09-63.43 61.84v134.25h-51.26Zm355.95-387.42h47.57v387.42h-47.57zm121.56 387.42v-280.66h47.57v280.66h-47.57Zm0-332.72v-54.7h47.57v54.7h-47.57Zm119.97 332.72v-280.66h42.55v39.38c8.81-13.74 20.52-24.8 35.15-33.17 14.62-8.36 31.27-12.55 49.94-12.55 20.79 0 37.83 4.32 51.13 12.95 13.3 8.63 22.69 20.7 28.15 36.21 22.2-32.77 51.09-49.16 86.68-49.16 27.83 0 49.23 7.71 64.21 23.12 14.97 15.42 22.46 39.16 22.46 71.23v192.65h-47.3V2939c0-19.03-1.54-32.72-4.62-41.09-3.09-8.37-8.68-15.11-16.79-20.22-8.1-5.11-17.61-7.66-28.53-7.66-19.74 0-36.12 6.56-49.16 19.69-13.04 13.12-19.55 34.13-19.55 63.02v163.06h-47.57v-182.35c0-21.14-3.88-36.99-11.63-47.57-7.75-10.57-20.43-15.85-38.05-15.85-13.39 0-25.76 3.52-37.13 10.57-11.36 7.05-19.6 17.35-24.71 30.92-5.11 13.57-7.66 33.12-7.66 58.67v145.61h-47.57Zm630-140.86c-17.27 7.05-43.17 13.04-77.7 17.97-19.55 2.83-33.38 6-41.49 9.52-8.1 3.53-14.36 8.68-18.76 15.46-4.4 6.78-6.6 14.32-6.6 22.59 0 12.69 4.79 23.26 14.4 31.72 9.6 8.45 23.65 12.68 42.15 12.68 18.32 0 34.62-4 48.89-12.02 14.27-8.02 24.74-18.98 31.44-32.9 5.11-10.75 7.67-26.6 7.67-47.57v-17.45Zm3.96 106.24c-17.62 14.98-34.58 25.55-50.87 31.72-16.3 6.16-33.78 9.25-52.45 9.25-30.84 0-54.53-7.54-71.09-22.6-16.56-15.06-24.84-34.31-24.84-57.74 0-13.75 3.12-26.3 9.38-37.66 6.25-11.37 14.44-20.48 24.58-27.36 10.12-6.87 21.53-12.06 34.22-15.59 9.33-2.46 23.43-4.84 42.28-7.13 38.4-4.58 66.68-10.05 84.83-16.39.17-6.51.26-10.66.26-12.42 0-19.38-4.49-33.03-13.48-40.96-12.15-10.75-30.21-16.12-54.17-16.12-22.38 0-38.89 3.92-49.55 11.76-10.66 7.84-18.54 21.71-23.65 41.62l-46.51-6.34c4.23-19.91 11.19-35.98 20.88-48.23 9.68-12.25 23.69-21.67 42.01-28.28 18.32-6.61 39.55-9.91 63.69-9.91 23.96 0 43.43 2.82 58.4 8.46 14.97 5.64 25.99 12.73 33.03 21.27 7.05 8.55 11.98 19.34 14.8 32.37 1.59 8.11 2.38 22.73 2.38 43.87v63.43c0 44.23 1.01 72.19 3.04 83.91 2.02 11.72 6.03 22.95 12.02 33.69h-49.68c-4.93-9.86-8.1-21.4-9.51-34.62Zm117.86 34.62v-387.42h47.57v139.01c22.19-25.73 50.2-38.59 84.03-38.59 20.78 0 38.84 4.1 54.17 12.29 15.33 8.19 26.3 19.51 32.9 33.96 6.61 14.45 9.91 35.41 9.91 62.9v177.85h-47.56v-177.85c0-23.79-5.16-41.1-15.46-51.93-10.31-10.84-24.89-16.26-43.74-16.26-14.09 0-27.35 3.66-39.77 10.97-12.42 7.31-21.27 17.22-26.56 29.73-5.28 12.51-7.92 29.78-7.92 51.8v153.54h-47.57Zm332.17-140.33c0 35.94 7.84 62.86 23.52 80.74 15.68 17.88 35.41 26.82 59.19 26.82 23.61 0 43.25-8.98 58.93-26.95s23.52-45.37 23.52-82.19c0-34.71-7.88-61.01-23.65-78.89-15.77-17.88-35.37-26.82-58.8-26.82-23.78 0-43.51 8.9-59.19 26.69-15.68 17.8-23.52 44.66-23.52 80.6Zm-48.89 0c0-51.97 14.45-90.47 43.34-115.48 24.14-20.79 53.55-31.19 88.26-31.19 38.58 0 70.12 12.64 94.61 37.92 24.48 25.29 36.73 60.22 36.73 104.79 0 36.12-5.42 64.53-16.25 85.23-10.84 20.7-26.61 36.78-47.3 48.23-20.71 11.45-43.3 17.18-67.79 17.18-39.28 0-71.04-12.6-95.26-37.8-24.23-25.19-36.34-61.48-36.34-108.88Zm317.64-247.09h47.57v387.42h-47.57zm96.19 387.42v-38.58l178.64-205.08c-20.26 1.06-38.14 1.59-53.64 1.59h-114.43v-38.59h229.38v31.45l-151.95 178.12-29.33 32.51c21.31-1.59 41.31-2.38 59.98-2.38h129.75v40.96h-248.4Zm295.71 0v-387.42h47.56v139.01c22.2-25.73 50.21-38.59 84.04-38.59 20.78 0 38.84 4.1 54.17 12.29 15.33 8.19 26.29 19.51 32.9 33.96 6.61 14.45 9.91 35.41 9.91 62.9v177.85h-47.57v-177.85c0-23.79-5.15-41.1-15.46-51.93-10.3-10.84-24.88-16.26-43.73-16.26-14.1 0-27.35 3.66-39.77 10.97-12.42 7.31-21.27 17.22-26.56 29.73-5.28 12.51-7.93 29.78-7.93 51.8v153.54h-47.56Zm480.15-140.86c-17.26 7.05-43.16 13.04-77.69 17.97-19.55 2.83-33.39 6-41.49 9.52-8.1 3.53-14.36 8.68-18.76 15.46-4.41 6.78-6.61 14.32-6.61 22.59 0 12.69 4.8 23.26 14.41 31.72 9.6 8.45 23.65 12.68 42.14 12.68 18.33 0 34.62-4 48.89-12.02 14.27-8.02 24.75-18.98 31.45-32.9 5.11-10.75 7.66-26.6 7.66-47.57v-17.45Zm3.97 106.24c-17.62 14.98-34.58 25.55-50.87 31.72-16.3 6.16-33.79 9.25-52.46 9.25-30.83 0-54.53-7.54-71.08-22.6-16.57-15.06-24.84-34.31-24.84-57.74 0-13.75 3.12-26.3 9.38-37.66 6.25-11.37 14.44-20.48 24.57-27.36 10.13-6.87 21.54-12.06 34.22-15.59 9.34-2.46 23.43-4.84 42.29-7.13 38.4-4.58 66.67-10.05 84.82-16.39.18-6.51.27-10.66.27-12.42 0-19.38-4.5-33.03-13.48-40.96-12.16-10.75-30.22-16.12-54.17-16.12-22.38 0-38.89 3.92-49.55 11.76-10.66 7.84-18.55 21.71-23.65 41.62l-46.51-6.34c4.23-19.91 11.18-35.98 20.87-48.23 9.69-12.25 23.7-21.67 42.02-28.28 18.32-6.61 39.55-9.91 63.69-9.91 23.95 0 43.42 2.82 58.4 8.46 14.97 5.64 25.98 12.73 33.03 21.27 7.05 8.55 11.98 19.34 14.8 32.37 1.58 8.11 2.38 22.73 2.38 43.87v63.43c0 44.23 1.01 72.19 3.04 83.91 2.02 11.72 6.03 22.95 12.02 33.69h-49.68c-4.93-9.86-8.11-21.4-9.51-34.62Zm301.78 34.62v-41.22c-21.85 31.71-51.53 47.57-89.06 47.57-16.56 0-32.02-3.18-46.37-9.52-14.36-6.34-25.02-14.31-31.98-23.92-6.96-9.6-11.85-21.36-14.66-35.28-1.95-9.33-2.91-24.13-2.91-44.39v-173.9h47.57v155.66c0 24.84.96 41.58 2.9 50.21 3 12.51 9.34 22.33 19.03 29.47 9.69 7.13 21.67 10.7 35.94 10.7 14.27 0 27.65-3.65 40.16-10.96 12.51-7.31 21.36-17.27 26.56-29.87 5.2-12.59 7.8-30.87 7.8-54.84v-150.37h47.57v280.66h-42.55Zm98.04-83.77 47.04-7.4c2.64 18.85 9.99 33.3 22.06 43.34 12.07 10.04 28.94 15.06 50.61 15.06 21.84 0 38.05-4.44 48.62-13.34 10.57-8.9 15.86-19.34 15.86-31.32 0-10.74-4.67-19.2-14.01-25.37-6.52-4.23-22.73-9.6-48.62-16.12-34.88-8.81-59.06-16.43-72.54-22.86-13.48-6.43-23.7-15.33-30.65-26.69-6.97-11.37-10.44-23.92-10.44-37.66 0-12.51 2.86-24.09 8.59-34.75 5.72-10.66 13.51-19.51 23.38-26.56 7.4-5.46 17.48-10.09 30.26-13.88 12.77-3.78 26.47-5.68 41.09-5.68 22.02 0 41.36 3.17 58.01 9.51 16.64 6.35 28.93 14.94 36.86 25.77 7.93 10.84 13.39 25.33 16.38 43.47l-46.5 6.35c-2.12-14.45-8.24-25.72-18.37-33.83-10.13-8.1-24.45-12.16-42.94-12.16-21.85 0-37.44 3.62-46.78 10.84-9.34 7.22-14 15.68-14 25.37 0 6.17 1.93 11.72 5.81 16.65 3.87 5.11 9.95 9.34 18.23 12.68 4.76 1.77 18.77 5.82 42.02 12.16 33.65 8.99 57.12 16.34 70.43 22.07 13.3 5.72 23.73 14.05 31.31 24.97 7.57 10.93 11.36 24.49 11.36 40.7 0 15.86-4.62 30.79-13.87 44.79-9.25 14.01-22.59 24.85-40.03 32.51-17.45 7.66-37.18 11.5-59.2 11.5-36.47 0-64.26-7.58-83.37-22.73-19.12-15.15-31.32-37.61-36.6-67.39Zm393.95-238.17h44.38c9.44 0 16.82-.97 22.14-2.92 5.32-1.96 9.37-5.08 12.13-9.37 2.77-4.29 4.15-8.96 4.15-14 0-7.38-2.68-13.44-8.03-18.2-5.36-4.75-13.82-7.13-25.39-7.13h-49.38v51.62Zm-20.65 87.17V2725h69.18c13.91 0 24.48 1.4 31.72 4.2 7.24 2.8 13.02 7.75 17.35 14.85 4.33 7.1 6.49 14.94 6.49 23.52 0 11.07-3.58 20.4-10.75 28-7.17 7.59-18.24 12.41-33.21 14.47 5.47 2.63 9.62 5.22 12.46 7.77 6.03 5.53 11.74 12.45 17.13 20.76l27.14 42.46h-25.97l-20.64-32.46c-6.04-9.37-11-16.53-14.9-21.5-3.91-4.97-7.4-8.44-10.49-10.43-3.08-1.99-6.22-3.37-9.42-4.15-2.34-.5-6.17-.75-11.49-.75h-23.95v69.29h-20.65Z\" style=\"fill:#30a248;fill-rule:nonzero\" transform=\"scale(4.16667)\"/><path d=\"M6811.05 2678.08c-69.55 0-126.13 56.58-126.13 126.13 0 69.56 56.58 126.14 126.13 126.14 69.54 0 126.12-56.58 126.12-126.14 0-69.55-56.58-126.13-126.12-126.13Zm0 272.49c-80.69 0-146.34-65.66-146.34-146.36 0-80.69 65.65-146.35 146.34-146.35 80.68 0 146.33 65.66 146.33 146.35 0 80.7-65.65 146.36-146.33 146.36Z\" style=\"fill:#30a248;fill-rule:nonzero\" transform=\"scale(4.16667)\"/><path d=\"M7282.97 1782.8v1344.06\" style=\"fill:none;fill-rule:nonzero\" transform=\"scale(4.16667)\"/><path d=\"M7282.97 1782.8v1344.06\" style=\"fill:none;stroke:#30a248;stroke-width:.25px\" transform=\"scale(4.16667)\"/><path d=\"M7979.12 2395.11h-116.88v-440.52c-42.71 39.94-93.04 69.47-151 88.61v-106.08c30.51-9.98 63.64-28.9 99.42-56.78 35.77-27.87 60.31-60.37 73.62-97.54h94.84v612.31Z\" style=\"fill:#32a048;fill-rule:nonzero\" transform=\"scale(4.16667)\"/><path d=\"M9298.92 1879.72c-14.14 0-26.76 4.51-37.85 13.52-11.1 9.01-19.69 25.17-25.79 48.46-8.05 30.23-12.06 81.12-12.06 152.67 0 71.54 3.6 120.7 10.81 147.46 7.21 26.76 16.29 44.58 27.25 53.45 10.95 8.88 23.5 13.31 37.64 13.31s26.76-4.5 37.85-13.52c11.09-9.01 19.69-25.16 25.79-48.46 8.04-29.95 12.06-80.7 12.06-152.24 0-71.55-3.6-120.7-10.81-147.47-7.21-26.76-16.29-44.65-27.24-53.66-10.96-9.01-23.51-13.52-37.65-13.52Zm0-96.92c59.07 0 105.24 21.08 138.51 63.23 39.65 49.91 59.49 132.69 59.49 248.34 0 115.36-19.97 198.28-59.9 248.74-33.01 41.6-79.03 62.4-138.1 62.4-59.34 0-107.17-22.81-143.5-68.43-36.33-45.61-54.49-126.93-54.49-243.96 0-114.82 19.96-197.45 59.9-247.92 32.99-41.6 79.03-62.4 138.09-62.4Z\" style=\"fill:#392417;fill-rule:nonzero\" transform=\"scale(4.16667)\"/><path d=\"M8351.39 2601.06c-14.14 0-26.77 4.51-37.85 13.52-11.1 9.02-19.69 25.17-25.79 48.46-8.05 30.23-12.06 81.12-12.06 152.67 0 71.54 3.6 120.7 10.81 147.46 7.21 26.76 16.29 44.58 27.25 53.45 10.95 8.88 23.5 13.31 37.64 13.31s26.76-4.5 37.85-13.52c11.09-9.01 19.69-25.16 25.79-48.46 8.04-29.95 12.06-80.7 12.06-152.24 0-71.55-3.6-120.7-10.81-147.47-7.22-26.76-16.3-44.64-27.25-53.66-10.95-9.01-23.5-13.52-37.64-13.52Zm0-96.92c59.06 0 105.24 21.08 138.51 63.23 39.65 49.92 59.48 132.69 59.48 248.34 0 115.36-19.97 198.28-59.89 248.74-33.01 41.6-79.04 62.41-138.1 62.41-59.35 0-107.18-22.82-143.5-68.43-36.33-45.62-54.49-126.94-54.49-243.97 0-114.81 19.96-197.45 59.89-247.92 33-41.6 79.04-62.4 138.1-62.4Z\" style=\"fill:#32a048;fill-rule:nonzero\" transform=\"scale(4.16667)\"/><path d=\"M8420.86 1998.69c0-37.71-8.67-66.97-26-87.77-17.34-20.8-37.38-31.2-60.11-31.2-21.63 0-39.59 8.53-53.86 25.58-14.29 17.06-21.42 45-21.42 83.82 0 39.38 7.76 68.29 23.29 86.73 15.53 18.45 34.94 27.67 58.23 27.67 22.46 0 41.39-8.88 56.78-26.63 15.39-17.74 23.09-43.81 23.09-78.2Zm-264.55 255.41 113.14-12.48c2.77 23.02 9.98 40.07 21.63 51.16 11.64 11.1 27.03 16.64 46.17 16.64 24.12 0 44.64-11.08 61.56-33.27 16.91-22.19 27.72-68.22 32.44-138.11-29.4 34.11-66.14 51.17-110.22 51.17-47.98 0-89.37-18.51-124.17-55.54-34.8-37.02-52.2-85.2-52.2-144.55 0-61.83 18.37-111.69 55.12-149.54 36.74-37.85 83.53-56.78 140.38-56.78 61.83 0 112.58 23.92 152.24 71.76 39.65 47.83 59.48 126.52 59.48 236.06 0 111.48-20.66 191.91-61.98 241.26-41.32 49.37-95.11 74.05-161.39 74.05-47.69 0-86.24-12.69-115.63-38.06-29.4-25.38-48.25-63.29-56.57-113.77Zm866.01 32.44v108.57h-409.71c4.43-41.04 17.74-79.93 39.93-116.68 22.18-36.74 65.99-85.48 131.44-146.21 52.69-49.09 84.99-82.36 96.92-99.84 16.07-24.13 24.12-47.97 24.12-71.55 0-26.06-7-46.09-21-60.1-14.01-14-33.35-21.01-58.03-21.01-24.4 0-43.82 7.35-58.23 22.05-14.42 14.7-22.74 39.1-24.96 73.21l-116.47-11.65c6.94-64.33 28.71-110.5 65.31-138.52 36.6-28 82.36-42.01 137.27-42.01 60.16 0 107.44 16.22 141.83 48.67 34.38 32.44 51.58 72.79 51.58 121.05 0 27.45-4.92 53.59-14.77 78.41-9.84 24.82-25.44 50.82-46.79 77.99-14.14 18.03-39.66 43.96-76.54 77.79-36.88 33.84-60.25 56.3-70.08 67.39-9.85 11.09-17.82 21.91-23.92 32.44h232.1Zm-947.53 721.34v108.57h-409.71c4.43-41.04 17.74-79.93 39.93-116.67 22.18-36.75 65.99-85.49 131.44-146.22 52.68-49.09 84.98-82.36 96.91-99.84 16.08-24.12 24.13-47.97 24.13-71.54 0-26.07-7.01-46.1-21.01-60.11-14-14-33.34-21.01-58.02-21.01-24.41 0-43.82 7.36-58.24 22.05-14.42 14.7-22.74 39.1-24.95 73.21l-116.47-11.65c6.93-64.33 28.7-110.5 65.3-138.51 36.61-28.01 82.36-42.02 137.27-42.02 60.17 0 107.45 16.22 141.84 48.67 34.38 32.45 51.58 72.79 51.58 121.05 0 27.45-4.93 53.59-14.77 78.41-9.85 24.82-25.44 50.82-46.8 78-14.14 18.02-39.65 43.95-76.53 77.78-36.88 33.84-60.25 56.3-70.09 67.39-9.84 11.09-17.82 21.91-23.92 32.44h232.11Zm947.53 0v108.57h-409.71c4.43-41.04 17.74-79.93 39.93-116.67 22.18-36.75 65.99-85.49 131.44-146.22 52.69-49.09 84.99-82.36 96.92-99.84 16.07-24.12 24.12-47.97 24.12-71.54 0-26.07-7-46.1-21-60.11-14.01-14-33.35-21.01-58.03-21.01-24.4 0-43.82 7.36-58.23 22.05-14.42 14.7-22.74 39.1-24.96 73.21l-116.47-11.65c6.94-64.33 28.71-110.5 65.31-138.51 36.6-28.01 82.36-42.02 137.27-42.02 60.16 0 107.44 16.22 141.83 48.67 34.38 32.45 51.58 72.79 51.58 121.05 0 27.45-4.92 53.59-14.77 78.41-9.84 24.82-25.44 50.82-46.79 78-14.14 18.02-39.66 43.95-76.54 77.78-36.88 33.84-60.25 56.3-70.08 67.39-9.85 11.09-17.82 21.91-23.92 32.44h232.1Z\" style=\"fill:#392417;fill-rule:nonzero\" transform=\"scale(4.16667)\"/><path d=\"M9298.92 2601.06c-14.14 0-26.76 4.51-37.85 13.52-11.1 9.02-19.69 25.17-25.79 48.46-8.05 30.23-12.06 81.12-12.06 152.67 0 71.54 3.6 120.7 10.81 147.46 7.21 26.76 16.29 44.58 27.25 53.45 10.95 8.88 23.5 13.31 37.64 13.31s26.76-4.5 37.85-13.52c11.09-9.01 19.69-25.16 25.79-48.46 8.04-29.95 12.06-80.7 12.06-152.24 0-71.55-3.6-120.7-10.81-147.47-7.21-26.76-16.29-44.64-27.24-53.66-10.96-9.01-23.51-13.52-37.65-13.52Zm0-96.92c59.07 0 105.24 21.08 138.51 63.23 39.65 49.92 59.49 132.69 59.49 248.34 0 115.36-19.97 198.28-59.9 248.74-33.01 41.6-79.03 62.41-138.1 62.41-59.34 0-107.17-22.82-143.5-68.43-36.33-45.62-54.49-126.94-54.49-243.97 0-114.81 19.96-197.45 59.9-247.92 32.99-41.6 79.03-62.4 138.09-62.4Z\" style=\"fill:#32a048;fill-rule:nonzero\" transform=\"scale(4.16667)\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1shq378\",\"data-border\":true,\"data-framer-name\":\"trauffer\",layoutDependency:layoutDependency,layoutId:\"GDvES1pXV\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:485.5,intrinsicWidth:579,pixelHeight:971,pixelWidth:1158,sizes:\"63px\",src:\"https://framerusercontent.com/images/cR4JUqEbO1dMrlgirJfH5Dfdw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/cR4JUqEbO1dMrlgirJfH5Dfdw.png?scale-down-to=512 512w,https://framerusercontent.com/images/cR4JUqEbO1dMrlgirJfH5Dfdw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cR4JUqEbO1dMrlgirJfH5Dfdw.png 1158w\"},className:\"framer-1qqptjq\",\"data-framer-name\":\"Trauffer Bautenschutz\",layoutDependency:layoutDependency,layoutId:\"AnR6jmoQZ\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k3deaj\",\"data-border\":true,\"data-framer-name\":\"faul yachtwerft\",layoutDependency:layoutDependency,layoutId:\"IT8U0tFca\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-j30ika\",\"data-framer-name\":\"Yachtwerft Faul AG Logo Blau\",fill:\"black\",intrinsicHeight:417,intrinsicWidth:1650,layoutDependency:layoutDependency,layoutId:\"WBNtmWHaM\",svg:'<svg viewBox=\"0 0 1650 417\" xmlns=\"http://www.w3.org/2000/svg\" xml:space=\"preserve\" style=\"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2\"><path d=\"M376.529 56.56c-2.353-.031-4.714-.067-8.789 0-.301.091-.489.096-.72 0-16.823.062-24.042 1.322-36 1.92-.671-.068-1.017-.385-1.44-.96a3.048 3.048 0 0 1-.72-.96c-1.282-1.246-2.601-2.786-3.36-4.32-.327-.373-1.13-1.869 1.92-1.92 12.034.051 17.288.091 22.56 0 2.44-.068 4.051.661 5.04 2.639.496.747.655 1.33 1.44 1.921 10.366.06 15.874.073 26.64 0 1.521.016 1.244 1.403.719 1.68h-7.29ZM352.62 82c-3.336.946-2.404.607-6.24-1.44-2.604-.75-3.69-.384-5.04-.96-.671-.323-1.527-.695-2.401-1.2a55.424 55.424 0 0 1-1.679-1.199c7.956-1.288 15.754-1.967 23.76-2.401a17.154 17.154 0 0 1-2.88 3.6c-1.273 1.225-3.097 2.531-5.52 3.6Zm-39.12 2.4c-2.178-2.197-3.751-3.812-5.52-6 .022-.106-.014-.152 0-.24 5.354-3.258 6.922-1.094 9.839.24.738.205 1.428.431 2.161.48 1.709.381 3.088.022 4.32-.48 1.594-.775 2.955-1.817 4.32-2.16 3.486-.489 5.644.911 7.441 2.16.453.225.867.499 1.199.721 6.093 4.08 6.262 1.197 10.08 4.08-3.734 1.185-3.818 1.1-8.159.718-4.012-.514-7.846-2.69-12-1.439-3.513 1.24-8.743 2.33-13.681 1.92Zm69.36-26.16c-8.747 7.334-15.526 12.419-18.96 14.64 5.553-7.56 7.675-10.446 10.8-14.64 3.82-.123 5.261.215 8.16 0Zm-81.6 6.719c10.484-2.436 14.043-2.945 33.6-5.04 13.937-1.328 29.017-1.827 37.919-1.679.035.26-10.784 15.045-10.799 15.121-9.645.431-19.461 1.457-27.12 2.639-.745-.596-2.948-2.037-5.76-1.679-3.373.828-5.001 2.552-7.2 2.88-1.275.406-3.014-.319-4.8-1.441-1.036-.696-2.052-1.373-3.84-1.439-1.781-.053-4.653.743-6.24 2.159-2.988-3.873-4.768-8.279-5.76-11.521Zm21.12-13.918c1.054.947 2.968 3.693 4.32 5.519.691 1.223 1.23 2.065 1.2 2.16-3.36.328-10.309 1.091-16.081 1.92 1.356-1.209 2.436-2.508 3.841-4.08 1.609-1.482 3.586-3.26 6.72-5.519ZM306.3 24.16c8.419-12.898 22.921-21.39 39.36-21.36 10.484-.03 20.124 3.373 27.84 9.12.295.67-.911 1.078-1.2 1.44-1.032.787-1.724 1.387-2.4 2.4h-.24c-1.067-.535-2.033-1.684-3.12-1.92-3.052-1.473-7.108-1.025-9.601 1.2-1.169 1.11-2.277-.619-3.599-.72-3-1.007-6.651-.702-9.6.48-.721.242-1.26.801-1.921 1.2-2.839 1.805-4.854 4.794-5.279 8.16-.079 1.102-.009 2.298.239 3.6.707 1.823 2.213 3.673 4.081 4.32.308.319.684.075.959.48.773-.171 1.525.358 2.402.24.343.026.973-.116 1.439 0 .337.832.794 1.519 1.2 2.16 1.829 2.078 4.25 3.606 6.72 4.08 1.011.284 2.18.305 3.12.48 2.12-.023 3.809-.958 5.521-1.68.525-.682 1.227-1.017 1.679-1.44.473-.34.494-1.133 1.2-.96 3.92 3.701 9.94 4.779 14.88 3.84.53.126.947-.301 1.44-.24 2.995-.57 6.419-2.177 8.88-3.6 1.331 4.072 2.215 8.721 2.4 13.2h-93.84v-.72c.065-4.45.875-8.833 2.16-12.96 1.365-3.864 3.132-7.505 5.28-10.8Zm86.881 10.8c-1.154-3.842-2.832-7.481-4.801-10.8-8.871-14.368-24.656-23.916-42.72-24-17.97.084-33.756 9.632-42.479 24-2.116 3.319-3.792 6.958-5.041 10.8-1.505 4.786-2.329 9.887-2.4 15.12.071 2.264.214 4.435.481 6.48a49.305 49.305 0 0 0 8.399 21.84c2.734 4.041 6.14 7.696 10.08 10.801A49.185 49.185 0 0 0 345.66 100c11.794.036 22.593-4.023 31.2-10.799A55.851 55.851 0 0 0 386.939 78.4c4.28-6.387 7.205-13.774 8.161-21.84.36-2.042.503-4.214.48-6.48a47.061 47.061 0 0 0-2.399-15.12ZM5.339 47.44C3.115 52.1.396 58.021.299 58h266.64l3.84-8.64c-10.304 6.891-28.185 8.163-42-1.92-13.81 10.083-33.301 8.727-45.359-.24-13.534 9.221-31.913 9.449-44.4.24-11.42 9.066-31.673 9.659-44.641-.72-13.812 10.718-32.878 9.278-44.639.24-13.576 10.394-31.372 9.546-44.401.48Z\" style=\"fill:#0060a9;fill-rule:nonzero\" transform=\"scale(4.16667)\"/><path d=\"M109.02 15.76h12l-10.56 23.28c4.931 3.269 12.864 1.797 15.84 0 3.948-8.677 11.106-23.231 11.04-23.28h12c-.101.049-10.666 22.654-13.68 29.28-7.892 4.021-10.575 5.146-19.92 5.04-6.753.106-14.543-2.837-18.961-6.96 4.072-9.207 12.299-27.311 12.241-27.36Zm44.4 0c4.811.049 12.121.049 12.24 0L155.1 38.8c8.769 3.893 24.531.843 32.16-7.44-2.544 5.91-2.31 5.771-5.52 12.24-7.108 4.262-12.217 6.586-21.6 6.48-6.185.106-14.914-2.895-18.96-6.72 4.108-9.176 6.566-13.075 12.24-27.6ZM38.939 25.12c-2.915-.036-4.737-.036-8.64 0-1.339-.036-2.779.964-3.599 2.4-.48 1.269-1.568 3.316-2.16 4.56.014.021 1.709-1.054 2.64-.96 2.543-.094 24.931-.138 24.96-.24-2.4 5.253-4.198 9.271-4.08 9.36-5.203-.089-22.678-.08-25.201 0-1.695-.08-2.373.504-2.879 1.44-2.121 3.894-1.952 3.555-3.36 6.72-2.66-1.046-5.709-2.317-9.361-5.28 2.72-5.766 7.485-16.05 10.56-22.56 1.245-2.473 3.565-4.997 10.321-5.04 4.77.043 19.988.043 31.199 0-1.266 2.638-2.772 6.059-4.319 9.6H38.939Zm165.559 5.472h14.436l1.952-4.121c.198-.348.223-.684.093-.909-.198-.342-.748-.394-1.057-.394-4.7-.01-6.127-.01-11.224 0-1.415.288-1.931.501-2.503 1.718a97.193 97.193 0 0 0-1.697 3.706Zm14.922 1.537h-16.08a.77.77 0 0 1-.713-1.055 92.262 92.262 0 0 1 2.185-4.856c.884-1.886 2.022-2.243 3.657-2.572a.836.836 0 0 1 .149-.015c5.162-.011 6.603-.011 11.284 0 1.513 0 2.158.728 2.408 1.162.406.702.381 1.618-.064 2.391l-2.132 4.505a.767.767 0 0 1-.694.44Z\" style=\"fill:#0060a9;fill-rule:nonzero\" transform=\"scale(4.16667)\"/><path d=\"M199.26 38.992h16.801a.77.77 0 0 1 .701 1.084l-3.781 8.399c1.895-.312 6.116-1.346 11.883-4.719.223-.613.656-1.597 1.378-3.24.922-2.094 2.153-4.883 3.385-7.673l4.93-11.154c.776-1.631.922-2.834.441-3.595-.56-.888-2.103-1.357-4.464-1.357l-.432.005-23.162.027c-6.533.08-8.712 2.644-9.879 4.869-1.32 2.846-2.939 6.365-4.558 9.884a2861.492 2861.492 0 0 1-5.256 11.386c2.682 2.179 4.922 3.09 7.092 3.972.231.094.46.187.687.281.272-.635.723-1.612 1.438-3.163.616-1.334 1.344-2.912 2.097-4.558a.77.77 0 0 1 .699-.448Zm12.612 11.154c-.824 0-.893-.658-.898-.732a.767.767 0 0 1 .065-.369l3.833-8.516h-15.119c-.68 1.484-1.333 2.899-1.893 4.113-.847 1.836-1.582 3.429-1.699 3.724a.768.768 0 0 1-1.046.5c-.444-.192-.895-.375-1.355-.562-2.29-.931-4.886-1.987-7.958-4.598a.768.768 0 0 1-.198-.911c1.471-3.15 3.487-7.532 5.502-11.915 1.62-3.521 3.24-7.042 4.577-9.923 1.276-2.433 3.81-5.634 11.247-5.726l23.153-.026c.142-.003.298-.005.451-.005 2.998 0 4.883.678 5.764 2.073.781 1.237.665 2.939-.345 5.058-3.275 7.405-9.518 21.533-9.807 22.241a.768.768 0 0 1-.335.41c-7.147 4.215-12.594 5.164-13.939 5.164ZM85.5 31.12l1.68-3.6c.422-.928.252-2.368-1.68-2.4h-12c-1.487.349-2.338.625-3.121 2.16-.518 1.171-1.085 2.48-1.679 3.84h16.8Zm-20.88 9.12c-2.107 4.38-3.796 7.877-3.841 7.92-2.583-1.145-5.465-2.247-9.119-5.28 2.722-5.695 7.234-16.065 10.32-22.56 1.234-2.487 3.503-4.825 10.319-4.8 4.709-.025 20.994-.046 24.48 0 4.89-.046 7.432.649 5.041 5.76-4.252 9.19-10.489 23.023-10.561 23.04-8.065 4.814-14.251 5.322-14.159 5.28l4.319-9.36H64.62Zm167.007 2.213c1.599 1.412 8.26 6.619 19.541 6.619h.328c10.155 0 17.047-4.151 20.252-6.626l.097-.074 5.909-13.352c-.831.01-2.109.01-4.1.01-6.045 0-15.116-.021-15.116-.021-2.523.07-3.33 1.181-5.564 6.599a359.97 359.97 0 0 1 3.963-.016c2.92 0 6.604.016 10.006.039a.77.77 0 0 1 .423 1.407l-.092.073c-2.078 1.678-7.677 5.578-14.763 5.578l-.22-.001-.61.004c-6.299 0-8.706-1.287-9.136-1.553a.773.773 0 0 1-.273-1.048l5.25-11.451a.763.763 0 0 1 .048-.089c.577-.92.981-1.718 1.108-2.19a.744.744 0 0 1 .08-.191c.983-1.672 3.738-2.996 5.452-3.019 2.091-.027 22.707-.005 26.162 0l2.879-6.142H250.86c-6.339.081-8.433 2.389-9.643 4.636-1.066 2.321-2.306 4.996-3.571 7.725-2.143 4.621-4.355 9.393-6.019 13.083Zm19.541 8.156c-13.627 0-20.946-7.359-21.019-7.433a.77.77 0 0 1-.15-.851c1.689-3.762 4.01-8.764 6.253-13.602 1.265-2.727 2.504-5.4 3.59-7.764 1.361-2.529 3.82-5.395 11.009-5.487h33.609c.263 0 .508.134.648.356.142.222.16.5.048.738l-3.599 7.68a.77.77 0 0 1-.697.442h-.001c.001.001-24.35-.03-26.629 0-1.211.017-3.376 1.068-4.1 2.186-.234.767-.787 1.74-1.232 2.452l-4.946 10.788c1.006.399 3.312 1.041 7.729 1.041l.609-.004.221.002c5.187 0 9.542-2.266 12.116-3.999-2.697-.015-5.424-.025-7.69-.025-2.647 0-4.407.014-5.089.039a.79.79 0 0 1-.659-.327.77.77 0 0 1-.082-.73c2.38-5.857 3.466-8.53 7.412-8.639.043-.012 9.093.021 15.135.021 4.11 0 5.036-.01 5.203-.016a.77.77 0 0 1 .786 1.074l-6.48 14.64a.767.767 0 0 1-.338.366c-.034.025-.08.061-.137.106-3.361 2.594-10.581 6.946-21.192 6.946h-.328ZM1.515 68.35h1.853c2.533.005 3.248.695 3.263 2.972.02 3.016-.674 3.716-3.666 3.716h-1.45V68.35Zm1.707 16.29a23.8 23.8 0 0 0 1.335-.04c2.401-.156 3.635-1.34 3.746-3.394l.025-1.606c.025-2.579-.569-3.57-2.079-3.897l-.358-.077.463-.201c1.214-.523 1.823-1.495 1.853-3.318.01-.625-.03-1.283-.116-1.948-.231-1.753-1.354-2.846-3.293-2.961a22.85 22.85 0 0 0-1.334-.04L0 67.152V84.64h3.222Zm-1.707-8.404h1.682c2.83 0 3.6.685 3.55 3.077l-.03 1.395c-.051 2.054-.756 2.648-3.52 2.678l-1.682.015v-7.165Zm26.738 4.28c.071 3.017 1.431 4.325 4.487 4.275 2.865-.055 4.159-1.249 4.456-3.912.076-.72.101-1.088.096-1.375l-.035-7.643c-.02-3.44-1.264-4.81-4.165-4.89-3.343-.096-4.849 1.4-4.849 4.89v7.643c0 .337.006.675.01 1.012Zm1.632-8.655c0-.278.015-.549.04-.826.192-1.954 1.063-2.87 2.785-2.861.277 0 .543.04.811.111 1.349.353 1.933 1.148 2.074 2.921.015.216.025.437.025.655l.03 7.643c0 .187-.004.368-.02.554-.176 2.477-.916 3.343-2.693 3.419-1.829.075-2.941-.942-3.017-2.709l-.035-1.264v-7.643Zm27.454 8.655c.071 3.017 1.431 4.325 4.487 4.275 2.865-.055 4.159-1.249 4.456-3.912.076-.72.101-1.088.096-1.375l-.035-7.643c-.02-3.44-1.264-4.81-4.165-4.89-3.343-.096-4.849 1.4-4.849 4.89v7.643c0 .337.006.675.01 1.012Zm1.632-8.655c0-.278.015-.549.04-.826.192-1.954 1.063-2.87 2.785-2.861.277 0 .543.04.81.111 1.35.353 1.934 1.148 2.075 2.921.015.216.025.437.025.655l.03 7.643c0 .187-.005.368-.02.554-.176 2.477-.916 3.343-2.694 3.419-1.828.075-2.94-.942-3.016-2.709l-.035-1.264v-7.643Zm26.447-3.511v-1.254h8.918v1.31h-3.504v16.215h-1.718V68.35h-3.696Zm27.841 11.209h1.646l-.005.871c0 .292.005.585.025.871.091 1.305 1.083 2.146 2.659 2.136 1.611-.011 2.447-.922 2.442-3.012-.005-1.6-.297-2.23-1.505-3.167l-3.193-2.477c-1.505-1.168-1.853-1.838-1.817-3.726.05-3.077 1.248-4.221 4.466-4.109 2.286.075 3.484 1.279 3.484 3.711v.885H119.8l.02-.563c.005-.116.005-.227.005-.342-.025-1.758-.745-2.423-2.241-2.432-1.702-.016-2.477.735-2.498 2.669-.015 1.394.313 2.084 1.375 2.879l3.052 2.297.675.529c.981.78 1.289 1.424 1.419 3.192.02.236.026.473.031.71.015 2.92-1.3 4.255-4.175 4.306-1.143.019-1.782-.112-2.316-.378-1.35-.67-1.898-1.592-1.878-3.122l-.01-1.728Zm27.098-12.463h1.662l2.679 16.437c.181-1.461.373-2.881.589-4.346l.982-5.927.977-6.148h2.437l1.974 11.834c.146.865.297 1.968.594 4.455l2.634-16.305h1.505l-3.046 17.579h-2.291l-1.108-6.858-.947-5.595c-.151-.89-.302-2.004-.569-4.501a108.966 108.966 0 0 1-.579 4.663l-.912 5.504-1.132 6.752h-2.271l-3.178-17.544Zm35.234 17.544V67.167h6.909v1.259h-5.247v6.441h5.096v1.313h-5.096v7.111h5.393v1.349h-7.055Zm28.636-.019v-8.496h2.159c2.327.005 2.845.584 2.87 2.976l.025 1.924c.021 1.566.086 2.442.263 3.615h1.918l-.166-.453c-.171-.479-.257-.941-.277-1.611l-.111-3.682c-.06-2.044-.625-2.9-1.954-3.308l-.463-.145.407-.121c1.471-.439 2.131-1.471 2.081-3.918-.056-2.905-1.214-4.199-3.359-4.276l-.459-.009-4.526-.005v17.509h1.592Zm-.077-16.29h2.251l.856.019c.172.011.343.041.509.086 1.164.313 1.627 1.083 1.601 3.273-.019 2.03-.66 2.81-2.367 3.087a4.388 4.388 0 0 1-.614.061l-.363.01h-1.873v-6.536Zm27.571 16.29V67.112h6.853v1.33h-5.207v6.484h4.91v1.345h-4.91v8.35h-1.646Zm25.143-16.271v-1.254h8.917v1.31h-3.504v16.215h-1.716V68.35h-3.697Z\" style=\"fill:#0060a9;fill-rule:nonzero\" transform=\"scale(4.16667)\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14c3z3e\",\"data-border\":true,\"data-framer-name\":\"marlin ch\",layoutDependency:layoutDependency,layoutId:\"Nr1xjZih4\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:142,intrinsicWidth:400.5,pixelHeight:284,pixelWidth:801,sizes:\"116px\",src:\"https://framerusercontent.com/images/l45pe8g4lM2To57UcPrhJWS2VYc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/l45pe8g4lM2To57UcPrhJWS2VYc.png?scale-down-to=512 512w,https://framerusercontent.com/images/l45pe8g4lM2To57UcPrhJWS2VYc.png 801w\"},className:\"framer-h3a8hl\",\"data-framer-name\":\"Marlin Logo_CMYK\",layoutDependency:layoutDependency,layoutId:\"zdVj1FrJD\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-x5vj58\",\"data-border\":true,\"data-framer-name\":\"erlacher\",layoutDependency:layoutDependency,layoutId:\"wUzlW_Jvt\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:655.5,intrinsicWidth:2036,pixelHeight:1311,pixelWidth:4072,sizes:\"97px\",src:\"https://framerusercontent.com/images/zHCg0AHAV3hgr1xd09R8OJK7tJ4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/zHCg0AHAV3hgr1xd09R8OJK7tJ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/zHCg0AHAV3hgr1xd09R8OJK7tJ4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zHCg0AHAV3hgr1xd09R8OJK7tJ4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zHCg0AHAV3hgr1xd09R8OJK7tJ4.png 4072w\"},className:\"framer-unalne\",\"data-framer-name\":\"Erlacher-polster-farbig-RGB\",layoutDependency:layoutDependency,layoutId:\"KNvzjf0VE\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q6r0r6\",\"data-border\":true,\"data-framer-name\":\"sport2000\",layoutDependency:layoutDependency,layoutId:\"w_1sl_yri\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Sport2000 Logo\",fit:\"fit\",pixelHeight:256,pixelWidth:256,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DMhrca9vynlCzr6nmvC2Wu1EkE.png\"},className:\"framer-ezjwd1\",layoutDependency:layoutDependency,layoutId:\"GodATbdnZ\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c52q5o\",\"data-border\":true,\"data-framer-name\":\"sparkassa\",layoutDependency:layoutDependency,layoutId:\"pZ1_yPFyM\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Steierm\\xe4rkische Sparkasse Logo\",fit:\"fit\",pixelHeight:256,pixelWidth:256,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qLwZgfILPQu2NRjIFcKHySGULY.png\"},className:\"framer-5vrjbo\",layoutDependency:layoutDependency,layoutId:\"u0v_Jiu_1\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13358xk\",\"data-border\":true,\"data-framer-name\":\"intersport\",layoutDependency:layoutDependency,layoutId:\"qZ8ChFHfj\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Inter Sport Logo\",fit:\"fit\",pixelHeight:256,pixelWidth:256,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/bxLQKpueIXnsepHPYuaG1wmc7eQ.png\"},className:\"framer-x73440\",layoutDependency:layoutDependency,layoutId:\"XGhgIKnh8\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dm1yuq\",\"data-border\":true,\"data-framer-name\":\"straumann hipp\",layoutDependency:layoutDependency,layoutId:\"ZWlELEINm\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:38.5,intrinsicWidth:198.5,pixelHeight:77,pixelWidth:397,src:\"https://framerusercontent.com/images/wWMCX1yDg3Dlo2i9dlPlhj0sm5Q.png\"},className:\"framer-h2bg5o\",\"data-framer-name\":\"RZ STH_LOGO_ohneClaim_farbig\",layoutDependency:layoutDependency,layoutId:\"hsYIeJabk\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aa21w6\",\"data-border\":true,\"data-framer-name\":\"obermair\",layoutDependency:layoutDependency,layoutId:\"g7GDzpk47\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:362,intrinsicWidth:1753.5,pixelHeight:724,pixelWidth:3507,sizes:\"158px\",src:\"https://framerusercontent.com/images/9FhnjE2ShjFkhm89YnaRkFeGlUQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/9FhnjE2ShjFkhm89YnaRkFeGlUQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/9FhnjE2ShjFkhm89YnaRkFeGlUQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9FhnjE2ShjFkhm89YnaRkFeGlUQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9FhnjE2ShjFkhm89YnaRkFeGlUQ.png 3507w\"},className:\"framer-17xa69p\",\"data-framer-name\":\"Obermair logo\",layoutDependency:layoutDependency,layoutId:\"QbEEsBl7R\"})})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7o4kgc-container\",\"data-framer-name\":\"Partnerlogos - CH\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"x7pnusODo-container\",name:\"Partnerlogos - CH\",nodeId:\"x7pnusODo\",rendersWithMotion:true,scopeId:\"cO9flg5DV\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:.3,id:\"x7pnusODo\",layoutId:\"x7pnusODo\",name:\"Partnerlogos - CH\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-oq29mg\",\"data-border\":true,\"data-framer-name\":\"tanner odermatt ch\",layoutDependency:layoutDependency,layoutId:\"pRv88ds8t\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1efzp6r\",\"data-framer-name\":\"Tanner logo\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:267,layoutDependency:layoutDependency,layoutId:\"CfzeTgH8T\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"266.615\" height=\"39.539\"><path d=\"M66.943 5.132v12.407h-2.717V5.132h-4.424V2.604h11.56v2.528Zm14.398 12.407-.969-2.865h-5.94l-.969 2.865h-2.739l5.245-14.935h2.971l5.245 14.935ZM77.402 5.932l-2.128 6.3h4.255ZM95.78 17.539 89.312 7.28v10.259h-2.675V2.604h2.886l6.388 10.111V2.604h2.675v14.935Zm16.153 0L105.466 7.28v10.259h-2.675V2.604h2.886l6.382 10.111V2.604h2.675v14.935Zm7.006 0V2.604h10.639v2.465h-7.921v3.476h6.973v2.444h-6.973v4.087h7.921v2.465Zm22.469 0-2.486-5.646h-3.307v5.646h-2.739V2.604h6.3c3.56 0 5.182 2.233 5.182 4.635a4.308 4.308 0 0 1-2.738 4.192l2.738 6.109Zm-2.233-12.555h-3.577V9.45h3.623c1.537 0 2.422-.8 2.422-2.212a2.287 2.287 0 0 0-2.469-2.254Zm23.669 11.144a6.322 6.322 0 0 1-8.594 0c-1.622-1.622-1.9-3.6-1.9-6.046s.274-4.445 1.9-6.067a6.321 6.321 0 0 1 8.594 0c1.622 1.622 1.9 3.623 1.9 6.067s-.277 4.423-1.9 6.046Zm-1.937-10.343a3.305 3.305 0 0 0-4.718 0c-1.033 1.074-1.075 2.928-1.075 4.3s.042 3.2 1.075 4.276a3.305 3.305 0 0 0 4.718 0c1.032-1.074 1.075-2.907 1.075-4.276s-.043-3.226-1.075-4.3Zm17.18 10.153a5.718 5.718 0 0 1-4.192 1.6h-5.814V2.604h5.814a5.718 5.718 0 0 1 4.192 1.6c1.538 1.58 1.749 3.792 1.749 5.856s-.213 4.298-1.749 5.878ZM176.002 5.89a2.954 2.954 0 0 0-2.107-.843h-3.1v10.048h3.1a2.955 2.955 0 0 0 2.107-.843c1.053-1.053 1.074-2.823 1.074-4.192s-.021-3.117-1.074-4.169Zm7.196 11.649V2.604h10.639v2.465h-7.921v3.476h6.969v2.444h-6.973v4.087h7.921v2.465Zm22.471 0-2.485-5.646h-3.315v5.646h-2.739V2.604h6.3c3.56 0 5.182 2.233 5.182 4.635a4.309 4.309 0 0 1-2.738 4.192l2.738 6.109Zm-2.233-12.555h-3.581V9.45h3.623c1.538 0 2.423-.8 2.423-2.212a2.287 2.287 0 0 0-2.467-2.254Zm20.655 12.555V6.881l-3.876 10.448h-2L214.36 6.754v10.785h-2.634V2.604h3.665l3.918 10.638 3.939-10.638h3.476v14.935Zm15.707 0-.969-2.865h-5.941l-.968 2.865h-2.739l5.245-14.935h2.971l5.245 14.935Zm-3.939-11.607-2.128 6.3h4.255Zm13.281-.8v12.407h-2.717V5.132H242V2.604h11.565v2.528Zm13.056 0v12.407h-2.718V5.132h-4.423V2.604h11.565v2.528ZM70.279 38.608l-1.4-3.625H62.23l-1.356 3.625h-1.046l5.214-13.743h.989l5.272 13.743Zm-4.751-12.35L62.6 34.031h5.913Zm15.422 6.244 2.792 6.106h-1.1l-2.7-5.854h-4.788v5.854H74.15V24.865h5.021c3 0 4.633 1.57 4.633 3.954a3.72 3.72 0 0 1-2.854 3.683Zm-1.783-6.687h-4.013v6.009h4.013c2.268 0 3.586-1.046 3.586-3s-1.313-3.009-3.581-3.009Zm12.562 13.047a5.217 5.217 0 0 1-3.625-1.492c-1.473-1.492-1.609-3.683-1.609-5.641s.136-4.129 1.609-5.622a5.219 5.219 0 0 1 3.625-1.492 4.748 4.748 0 0 1 4.884 4.458h-1.047a3.666 3.666 0 0 0-3.838-3.47 3.838 3.838 0 0 0-2.889 1.182c-1.241 1.279-1.3 3.3-1.3 4.943s.077 3.683 1.318 4.962a3.875 3.875 0 0 0 2.869 1.182 3.666 3.666 0 0 0 3.838-3.47h1.046a4.748 4.748 0 0 1-4.881 4.46Zm17.092-.254v-6.75h-7.676v6.746h-1.008V24.865h1.008v6.009h7.676v-6.009h1.009v13.743Zm5.793 0V24.865h1.027v13.743Zm9.38-12.774v12.774h-1.008V25.834h-4.362v-.969h9.749v.969Zm7.361 12.774V24.865h8.8v.969h-7.773v5.04h6.842v.969h-6.842v5.8h7.773v.969Zm21.686 0-4.555-7.85-3.566 4.032v3.819h-1.028V24.865h1.028v8.471l7.56-8.471h1.24l-4.555 5.137 5.02 8.606Zm7.712-12.774v12.774h-1.01V25.834h-4.361v-.969h9.749v.969Zm7.362 12.774V24.865h8.8v.969h-7.773v5.04h6.841v.969h-6.843v5.8h7.773v.969Zm21.512 0-7.971-12.173v12.173h-1V24.865h1.144l7.986 12.154V24.865h.988v13.743ZM12.132 14.555h5.807v15.74h3.662v-15.74h5.807v-3.509H12.132Z\"/><path d=\"M19.769 0a19.769 19.769 0 1 0 19.769 19.769A19.792 19.792 0 0 0 19.769 0Zm0 36.071a16.3 16.3 0 1 1 16.3-16.3 16.32 16.32 0 0 1-16.3 16.3Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kxz10a\",\"data-border\":true,\"data-framer-name\":\"ott aquatec ch\",layoutDependency:layoutDependency,layoutId:\"HsfYN9SSE\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"OTT Aquatec Logo\",fit:\"fill\",intrinsicHeight:319.5,intrinsicWidth:529,pixelHeight:639,pixelWidth:1058,sizes:\"77px\",src:\"https://framerusercontent.com/images/LjJnETce1CEBsFZZaPLiRRHXQA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LjJnETce1CEBsFZZaPLiRRHXQA.png?scale-down-to=512 512w,https://framerusercontent.com/images/LjJnETce1CEBsFZZaPLiRRHXQA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LjJnETce1CEBsFZZaPLiRRHXQA.png 1058w\"},className:\"framer-1e6m5ja\",\"data-framer-name\":\"Firmenlogo\",layoutDependency:layoutDependency,layoutId:\"raFpX2dBH\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dm1yuq\",\"data-border\":true,\"data-framer-name\":\"straumann hipp\",layoutDependency:layoutDependency,layoutId:\"ZWlELEINm\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:38.5,intrinsicWidth:198.5,pixelHeight:77,pixelWidth:397,src:\"https://framerusercontent.com/images/wWMCX1yDg3Dlo2i9dlPlhj0sm5Q.png\"},className:\"framer-h2bg5o\",\"data-framer-name\":\"RZ STH_LOGO_ohneClaim_farbig\",layoutDependency:layoutDependency,layoutId:\"hsYIeJabk\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xacnik\",\"data-border\":true,\"data-framer-name\":\"interhockey ch\",layoutDependency:layoutDependency,layoutId:\"bLczuocLg\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:1194,pixelWidth:1838,positionX:\"center\",positionY:\"center\",sizes:\"85px\",src:\"https://framerusercontent.com/images/6Uo5aY7yxpYZLD2UlWJ6KhNibA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6Uo5aY7yxpYZLD2UlWJ6KhNibA.png?scale-down-to=512 512w,https://framerusercontent.com/images/6Uo5aY7yxpYZLD2UlWJ6KhNibA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6Uo5aY7yxpYZLD2UlWJ6KhNibA.png 1838w\"},className:\"framer-1ivwwf7\",\"data-framer-name\":\"R.jpg\",layoutDependency:layoutDependency,layoutId:\"D6ni_ngNQ\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qtp2tw\",\"data-border\":true,\"data-framer-name\":\"robert meister ch\",layoutDependency:layoutDependency,layoutId:\"s38HWkDT5\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:340,intrinsicWidth:1423,pixelHeight:680,pixelWidth:2846,sizes:\"159px\",src:\"https://framerusercontent.com/images/5Gmf5STleOfCAiTBzdgcjLkRXY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/5Gmf5STleOfCAiTBzdgcjLkRXY.png?scale-down-to=512 512w,https://framerusercontent.com/images/5Gmf5STleOfCAiTBzdgcjLkRXY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5Gmf5STleOfCAiTBzdgcjLkRXY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5Gmf5STleOfCAiTBzdgcjLkRXY.png 2846w\"},className:\"framer-4d1us3\",\"data-framer-name\":\"Robert Meister Logo\",layoutDependency:layoutDependency,layoutId:\"wNhj94xPY\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yme7n5\",\"data-border\":true,\"data-framer-name\":\"siegrist ch\",layoutDependency:layoutDependency,layoutId:\"sYaUgxtg6\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36,intrinsicWidth:66,pixelHeight:72,pixelWidth:132,src:\"https://framerusercontent.com/images/auh4rlJShBIDDxBSdkoIYXNcLJg.png\"},className:\"framer-jaamqu\",\"data-framer-name\":\"Siegrist Logomark\",layoutDependency:layoutDependency,layoutId:\"jokiovNAg\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14c3z3e\",\"data-border\":true,\"data-framer-name\":\"marlin ch\",layoutDependency:layoutDependency,layoutId:\"Nr1xjZih4\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:142,intrinsicWidth:400.5,pixelHeight:284,pixelWidth:801,sizes:\"116px\",src:\"https://framerusercontent.com/images/l45pe8g4lM2To57UcPrhJWS2VYc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/l45pe8g4lM2To57UcPrhJWS2VYc.png?scale-down-to=512 512w,https://framerusercontent.com/images/l45pe8g4lM2To57UcPrhJWS2VYc.png 801w\"},className:\"framer-h3a8hl\",\"data-framer-name\":\"Marlin Logo_CMYK\",layoutDependency:layoutDependency,layoutId:\"zdVj1FrJD\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xjs7dw\",\"data-border\":true,\"data-framer-name\":\"matter garten ch\",layoutDependency:layoutDependency,layoutId:\"mLmwPGPnl\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:193.5,intrinsicWidth:620,pixelHeight:387,pixelWidth:1240,sizes:\"142px\",src:\"https://framerusercontent.com/images/jgKZNZ6bBXZ1zmxLY5vVcfDUp2Q.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/jgKZNZ6bBXZ1zmxLY5vVcfDUp2Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jgKZNZ6bBXZ1zmxLY5vVcfDUp2Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jgKZNZ6bBXZ1zmxLY5vVcfDUp2Q.jpg 1240w\"},className:\"framer-53sn34\",\"data-framer-name\":\"Matter Logo_PantU\",layoutDependency:layoutDependency,layoutId:\"aO9twfiDq\"})})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hePlH.framer-1iibkke, .framer-hePlH .framer-1iibkke { display: block; }\",\".framer-hePlH.framer-qnj3u4 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 95px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-hePlH .framer-npf4t-container, .framer-hePlH .framer-7o4kgc-container { flex: none; height: 95px; position: relative; width: 1440px; }\",\".framer-hePlH .framer-1e881ig, .framer-hePlH .framer-1mhej9p, .framer-hePlH .framer-1m4o531, .framer-hePlH .framer-1shq378, .framer-hePlH .framer-k3deaj, .framer-hePlH .framer-14c3z3e, .framer-hePlH .framer-x5vj58, .framer-hePlH .framer-1q6r0r6, .framer-hePlH .framer-c52q5o, .framer-hePlH .framer-13358xk, .framer-hePlH .framer-1dm1yuq, .framer-hePlH .framer-aa21w6, .framer-hePlH .framer-oq29mg, .framer-hePlH .framer-1kxz10a, .framer-hePlH .framer-xacnik, .framer-hePlH .framer-qtp2tw, .framer-hePlH .framer-yme7n5, .framer-hePlH .framer-1xjs7dw { align-content: center; align-items: center; aspect-ratio: 2.3375 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 86px); justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hePlH .framer-d97z4j { aspect-ratio: 1.9234527687296417 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); overflow: visible; position: relative; width: 90px; }\",\".framer-hePlH .framer-1qefwz1 { aspect-ratio: 2.4307692307692306 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 85px; }\",\".framer-hePlH .framer-1r9zruo { aspect-ratio: 2.9069914361926155 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 128px; }\",\".framer-hePlH .framer-1qqptjq { aspect-ratio: 1.192584963954686 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 53px); overflow: visible; position: relative; width: 63px; }\",\".framer-hePlH .framer-j30ika { aspect-ratio: 3.9568345323741005 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 114px; }\",\".framer-hePlH .framer-h3a8hl { aspect-ratio: 2.8204225352112675 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); overflow: visible; position: relative; width: 116px; }\",\".framer-hePlH .framer-unalne { aspect-ratio: 3.1060259344012207 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); overflow: visible; position: relative; width: 97px; }\",\".framer-hePlH .framer-ezjwd1 { flex: none; height: 55px; overflow: visible; position: relative; width: 145px; }\",\".framer-hePlH .framer-5vrjbo { flex: none; height: 100px; overflow: visible; position: relative; width: 265px; }\",\".framer-hePlH .framer-x73440 { flex: none; height: 127px; overflow: visible; position: relative; width: 336px; }\",\".framer-hePlH .framer-h2bg5o { aspect-ratio: 5.1558441558441555 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 124px; }\",\".framer-hePlH .framer-17xa69p { aspect-ratio: 4.843922651933702 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 158px; }\",\".framer-hePlH .framer-1efzp6r { aspect-ratio: 6.675 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 167px; }\",\".framer-hePlH .framer-1e6m5ja { aspect-ratio: 1.6557120500782472 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 77px; }\",\".framer-hePlH .framer-1ivwwf7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 85px); overflow: visible; position: relative; width: 85px; }\",\".framer-hePlH .framer-4d1us3 { aspect-ratio: 4.185294117647059 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); overflow: visible; position: relative; width: 159px; }\",\".framer-hePlH .framer-jaamqu { aspect-ratio: 1.8333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); overflow: visible; position: relative; width: 66px; }\",\".framer-hePlH .framer-53sn34 { aspect-ratio: 3.204134366925065 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); overflow: visible; position: relative; width: 142px; }\",\".framer-hePlH.framer-v-y4z4s3.framer-qnj3u4, .framer-hePlH.framer-v-y4z4s3 .framer-npf4t-container, .framer-hePlH.framer-v-10x21o5.framer-qnj3u4 { width: 1200px; }\",\".framer-hePlH.framer-v-yfiv3u.framer-qnj3u4, .framer-hePlH.framer-v-yfiv3u .framer-npf4t-container, .framer-hePlH.framer-v-hrh2hg.framer-qnj3u4 { width: 810px; }\",\".framer-hePlH.framer-v-rmaq55.framer-qnj3u4, .framer-hePlH.framer-v-rmaq55 .framer-npf4t-container, .framer-hePlH.framer-v-odgroh.framer-qnj3u4 { width: 390px; }\",'.framer-hePlH[data-border=\"true\"]::after, .framer-hePlH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 95\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"mxLKoxgQe\":{\"layout\":[\"fixed\",\"fixed\"]},\"wJzAQsn3J\":{\"layout\":[\"fixed\",\"fixed\"]},\"rTyBRLHYq\":{\"layout\":[\"fixed\",\"fixed\"]},\"s3yBV9lcB\":{\"layout\":[\"fixed\",\"fixed\"]},\"O0tPD4Oyq\":{\"layout\":[\"fixed\",\"fixed\"]},\"wj1MJLDuH\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZuTrLBme4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramercO9flg5DV=withCSS(Component,css,\"framer-hePlH\");export default FramercO9flg5DV;FramercO9flg5DV.displayName=\"Partnerlogos\";FramercO9flg5DV.defaultProps={height:95,width:1440};addPropertyControls(FramercO9flg5DV,{variant:{options:[\"Qve4UAmle\",\"mxLKoxgQe\",\"wJzAQsn3J\",\"rTyBRLHYq\",\"s3yBV9lcB\",\"O0tPD4Oyq\",\"wj1MJLDuH\",\"ZuTrLBme4\"],optionTitles:[\"Dektop Big - ALL\",\"Desktop Big - CH\",\"Desktop Small - ALL\",\"Desktop Small - CH\",\"Tablet - ALL\",\"Tablet - CH\",\"Phone - ALL\",\"Phone - CH\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramercO9flg5DV,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercO9flg5DV\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"95\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mxLKoxgQe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wJzAQsn3J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rTyBRLHYq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"s3yBV9lcB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O0tPD4Oyq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wj1MJLDuH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZuTrLBme4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cO9flg5DV.map"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "r", "n", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "hasReachedTarget", "spring", "c", "i", "h", "e", "d", "f", "g", "glide", "o", "u", "isOutOfBounds", "nearestBoundary", "l", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "C", "$", "R", "resolveElements", "createGeneratorEasing", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "e", "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", "dispatchViewEvent", "se", "o", "i", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "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", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "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", "keyframes", "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", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "SVG", "css", "FramercO9flg5DV", "withCSS", "cO9flg5DV_default", "addPropertyControls", "ControlType", "addFonts"]
}
