{
  "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/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/CU4gMuv9xgFztOevLZ4y/bd8IMtcLjpc9MuKf0O2c/YSt7RVcil.js", "ssg:https://framerusercontent.com/modules/zYeXFgpqYdgVhcWfYCfv/UYZ1QgqPMOpcLcTIE12G/hyZ5tkDAA.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 directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/3MtVL2XS2NizXaatfGBb/z2JliCVvEpmd4cDigQZe/KamDlrea8.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={qVdyiJIyj:{hover:true}};const cycleOrder=[\"qVdyiJIyj\",\"SxDltXr5d\"];const serializationHash=\"framer-rdpw9\";const variantClassNames={qVdyiJIyj:\"framer-v-1ymcsco\",SxDltXr5d:\"framer-v-12665sj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"qVdyiJIyj\",Mobil:\"SxDltXr5d\"};const getProps=({height,id,image,link,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,CfsTI9Rt1:(_ref=image!==null&&image!==void 0?image:props.CfsTI9Rt1)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/wKsoGkUGFkpoC87Qb8jYtVBdZQ.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/wKsoGkUGFkpoC87Qb8jYtVBdZQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wKsoGkUGFkpoC87Qb8jYtVBdZQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wKsoGkUGFkpoC87Qb8jYtVBdZQ.jpg 1914w\"},d91B_Qnjr:(_ref1=title!==null&&title!==void 0?title:props.d91B_Qnjr)!==null&&_ref1!==void 0?_ref1:\"Csavarkompresszorok\",JcOisEZl8:link!==null&&link!==void 0?link:props.JcOisEZl8,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"qVdyiJIyj\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,d91B_Qnjr,CfsTI9Rt1,JcOisEZl8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qVdyiJIyj\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:JcOisEZl8,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1ymcsco\",className,classNames)} framer-227b6r`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"qVdyiJIyj\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\",...style},...addPropertyOverrides({\"qVdyiJIyj-hover\":{\"data-framer-name\":undefined},SxDltXr5d:{\"data-framer-name\":\"Mobil\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-w1gx44\",layoutDependency:layoutDependency,layoutId:\"QkzKNiOdy\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%)\",borderBottomLeftRadius:25,borderBottomRightRadius:25,opacity:.75}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vwle5o\",layoutDependency:layoutDependency,layoutId:\"y7CrZ86vY\",style:{borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1340,pixelWidth:1914,sizes:\"598px\",...toResponsiveImage(CfsTI9Rt1),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1n78mwj\",layoutDependency:layoutDependency,layoutId:\"P5uGnfQrA\",style:{borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25,opacity:.75,scale:1},variants:{\"qVdyiJIyj-hover\":{scale:1.1}}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zim1zo\",layoutDependency:layoutDependency,layoutId:\"pKy37IpZi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1l0x9s7\",\"data-styles-preset\":\"KamDlrea8\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Csavarkompresszorok\"})}),className:\"framer-a6ip3j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lIaMs0hnp\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:d91B_Qnjr,variants:{SxDltXr5d:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({SxDltXr5d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLWJvbGQ=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Csavarkompresszorok\"})}),fonts:[\"FS;Cabinet Grotesk-bold\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6ye8dd-container\",layoutDependency:layoutDependency,layoutId:\"IPfiJ7Xog-container\",style:{rotate:0},variants:{\"qVdyiJIyj-hover\":{rotate:-45},SxDltXr5d:{rotate:-45}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-8200229f-d199-4b9b-95b0-e92275c5736e, rgb(37, 163, 82))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"IPfiJ7Xog\",layoutId:\"IPfiJ7Xog\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({\"qVdyiJIyj-hover\":{color:\"rgb(255, 255, 255)\"},SxDltXr5d:{color:\"rgb(255, 255, 255)\"}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rdpw9.framer-227b6r, .framer-rdpw9 .framer-227b6r { display: block; }\",\".framer-rdpw9.framer-1ymcsco { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: flex-end; padding: 0px; position: relative; text-decoration: none; width: 598px; }\",\".framer-rdpw9 .framer-w1gx44 { bottom: 0px; flex: none; height: 45%; left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\".framer-rdpw9 .framer-vwle5o { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-rdpw9 .framer-1n78mwj { flex: none; height: 400px; left: calc(50.00000000000002% - 598px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 400px / 2); width: 598px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-rdpw9 .framer-zim1zo { align-content: center; align-items: center; bottom: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 20px; overflow: visible; padding: 0px; position: absolute; width: min-content; z-index: 2; }\",\".framer-rdpw9 .framer-a6ip3j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rdpw9 .framer-6ye8dd-container { flex: none; height: 34px; position: relative; width: 34px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rdpw9.framer-1ymcsco, .framer-rdpw9 .framer-zim1zo { gap: 0px; } .framer-rdpw9.framer-1ymcsco > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-rdpw9.framer-1ymcsco > :first-child { margin-top: 0px; } .framer-rdpw9.framer-1ymcsco > :last-child { margin-bottom: 0px; } .framer-rdpw9 .framer-zim1zo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rdpw9 .framer-zim1zo > :first-child { margin-left: 0px; } .framer-rdpw9 .framer-zim1zo > :last-child { margin-right: 0px; } }\",\".framer-rdpw9.framer-v-12665sj.framer-1ymcsco { cursor: unset; }\",\".framer-rdpw9.framer-v-12665sj .framer-zim1zo { gap: 7px; }\",\".framer-rdpw9.framer-v-12665sj .framer-6ye8dd-container { height: 18px; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rdpw9.framer-v-12665sj .framer-zim1zo { gap: 0px; } .framer-rdpw9.framer-v-12665sj .framer-zim1zo > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-rdpw9.framer-v-12665sj .framer-zim1zo > :first-child { margin-left: 0px; } .framer-rdpw9.framer-v-12665sj .framer-zim1zo > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 598\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"SxDltXr5d\":{\"layout\":[\"fixed\",\"fixed\"]},\"T2tN_Hsph\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"d91B_Qnjr\":\"title\",\"CfsTI9Rt1\":\"image\",\"JcOisEZl8\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYSt7RVcil=withCSS(Component,css,\"framer-rdpw9\");export default FramerYSt7RVcil;FramerYSt7RVcil.displayName=\"KOMPRESSZOR KARTYA\";FramerYSt7RVcil.defaultProps={height:400,width:598};addPropertyControls(FramerYSt7RVcil,{variant:{options:[\"qVdyiJIyj\",\"SxDltXr5d\"],optionTitles:[\"Variant 1\",\"Mobil\"],title:\"Variant\",type:ControlType.Enum},d91B_Qnjr:{defaultValue:\"Csavarkompresszorok\",displayTextArea:false,title:\"Title\",type:ControlType.String},CfsTI9Rt1:{__defaultAssetReference:\"data:framer/asset-reference,wKsoGkUGFkpoC87Qb8jYtVBdZQ.jpg?originalFilename=Ke%C3%8C%C2%81pernyo%C3%8C%C2%8Bfoto%C3%8C%C2%81+2024-08-03+-+5.05.52.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},JcOisEZl8:{title:\"Link\",type:ControlType.Link}});addFonts(FramerYSt7RVcil,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Cabinet Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XMXWOHABYLQDJ42L65EFRYNVRY37HQCB/B2O4O6V3JMFM2WDCYQI3A47L5U4THDUL/WN5274VQ3AUBDFP74GB4EC4XYJ3EKVNE.woff2\",weight:\"700\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYSt7RVcil\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"400\",\"framerVariables\":\"{\\\"d91B_Qnjr\\\":\\\"title\\\",\\\"CfsTI9Rt1\\\":\\\"image\\\",\\\"JcOisEZl8\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SxDltXr5d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"T2tN_Hsph\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"598\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YSt7RVcil.map", "// Generated by Framer (629c622)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FrameshipShopify from\"https://framerusercontent.com/modules/1kPVCHEEg0BrtObiM14s/NtVC61Vu6FOKUMmhXWuH/Frameship.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import NavbarDark from\"#framer/local/canvasComponent/aWOC8HAjU/aWOC8HAjU.js\";import CTA from\"#framer/local/canvasComponent/I9RYgMfAI/I9RYgMfAI.js\";import Button from\"#framer/local/canvasComponent/KrKWaFPep/KrKWaFPep.js\";import CONTACT from\"#framer/local/canvasComponent/loBr4Ko3i/loBr4Ko3i.js\";import Tags from\"#framer/local/canvasComponent/mGP2zVbOW/mGP2zVbOW.js\";import FOOTER from\"#framer/local/canvasComponent/P_9zH3QIj/P_9zH3QIj.js\";import KOMPRESSZORKARTYA from\"#framer/local/canvasComponent/YSt7RVcil/YSt7RVcil.js\";import*as sharedStyle3 from\"#framer/local/css/au6UEjsp6/au6UEjsp6.js\";import*as sharedStyle2 from\"#framer/local/css/j_c67CFip/j_c67CFip.js\";import*as sharedStyle from\"#framer/local/css/l0hvKiUcP/l0hvKiUcP.js\";import*as sharedStyle1 from\"#framer/local/css/NMIUNZpg8/NMIUNZpg8.js\";import*as sharedStyle4 from\"#framer/local/css/uavqbFs_R/uavqbFs_R.js\";import metadataProvider from\"#framer/local/webPageMetadata/hyZ5tkDAA/hyZ5tkDAA.js\";const FrameshipShopifyFonts=getFonts(FrameshipShopify);const TagsFonts=getFonts(Tags);const ButtonFonts=getFonts(Button);const KOMPRESSZORKARTYAFonts=getFonts(KOMPRESSZORKARTYA);const CTAFonts=getFonts(CTA);const PhosphorFonts=getFonts(Phosphor);const TickerFonts=getFonts(Ticker);const CONTACTFonts=getFonts(CONTACT);const FOOTERFonts=getFonts(FOOTER);const NavbarDarkFonts=getFonts(NavbarDark);const NavbarDarkWithVariantAppearEffect=withVariantAppearEffect(NavbarDark);const ContainerWithFX=withFX(Container);const breakpoints={D8hPlNybP:\"(min-width: 810px) and (max-width: 1199px)\",xoyBa5t_4:\"(max-width: 809px)\",zbIa7taxw:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-a5OWN\";const variantClassNames={D8hPlNybP:\"framer-v-1a7rn45\",xoyBa5t_4:\"framer-v-tgo5t1\",zbIa7taxw:\"framer-v-1eiqcy\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition1};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition2={damping:40,delay:0,mass:1,stiffness:250,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-108};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-108};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"zbIa7taxw\",Phone:\"xoyBa5t_4\",Tablet:\"D8hPlNybP\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"zbIa7taxw\"};};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 metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"HbUpPeFZS\");const ref1=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"QlnVO3Qva\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"AxMK4CFxi\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"zbIa7taxw\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-38ef55ca-9496-4841-a208-1a174b03c284, rgb(237, 237, 237)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1eiqcy\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jc4bl2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AYl0XqUBg\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(FrameshipShopify,{frameshipData:\"9WPpjSzYlIJouWaMhHQA2xmZ50lpl9TquWKMj9JYmI3ocEKnj9zpj9lY6ZUp0EUnvbwVxWPYvHUnhDaMegTqv9lY6ZUp0EUnvbwVwWPYvxQA5HQAzqGZ2tQBvAzZySQB3RzAyMGMlDGMzOwA5ZJZvbwVvWPYv02ow5FrzyTpiu2p51zY0M2neEaLvbwVuWlr\",height:\"100%\",id:\"AYl0XqUBg\",layoutId:\"AYl0XqUBg\",note:\"IMPORTANT\",productionDomain:\"\",shopifyAccessToken:\"\",shopUrl:\"\",stagingDomain:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tlv70z\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-s0zvgn\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-m0a7m7\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dcphq6\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kvesp1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{y:(componentViewport?.y||0)+0+0+80+280+0+0+0+0+0+0+0+0},xoyBa5t_4:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+0+80+380+0+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vwo7sq-container\",nodeId:\"AcrIXQYQd\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(Tags,{height:\"100%\",id:\"AcrIXQYQd\",layoutId:\"AcrIXQYQd\",qIIoz7X0w:\"BTK KFT\",variant:\"GN0SaqXDt\",width:\"100%\",x3uCWFKBK:\"var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, rgb(7, 105, 64))\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dljn8o\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xoyBa5t_4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-19a2b17\",\"data-styles-preset\":\"l0hvKiUcP\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgba(255, 255, 255, 0.4) 0%, rgb(255, 255, 255) 37%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Megb\\xedzhat\\xf3 \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"S\u0171r\\xedtett Leveg\u0151 Technol\\xf3gia\"})]})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-19a2b17\",\"data-styles-preset\":\"l0hvKiUcP\",children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgba(255, 255, 255, 0.4) 0%, rgb(255, 255, 255) 50%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Megb\\xedzhat\\xf3 \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"S\u0171r\\xedtett Leveg\u0151 Technol\\xf3gia\"})]})})}),className:\"framer-134exqr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xoyBa5t_4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ak\\xe1r csavarkompresszorokra, ak\\xe1r dugatty\\xfas modellekre van sz\\xfcks\\xe9ge, n\\xe1lunk a legjobb megold\\xe1sokat tal\\xe1lja.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ak\\xe1r csavarkompresszorokra, ak\\xe1r dugatty\\xfas modellekre van sz\\xfcks\\xe9ge, n\\xe1lunk a legjobb megold\\xe1sokat tal\\xe1lja.\"})}),className:\"framer-mkr600\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dzbog3\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":QlnVO3Qva\",webPageId:\"hyZ5tkDAA\"},implicitPathVariables:undefined},{href:{hash:\":QlnVO3Qva\",webPageId:\"hyZ5tkDAA\"},implicitPathVariables:undefined},{href:{hash:\":QlnVO3Qva\",webPageId:\"hyZ5tkDAA\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{y:(componentViewport?.y||0)+0+0+80+280+0+0+0+0+0+282+0},xoyBa5t_4:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+0+0+282+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+80+380+0+0+0+0+0+282+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-373056-container\",nodeId:\"fL9ZTYBzg\",rendersWithMotion:true,scopeId:\"hyZ5tkDAA\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{CEOhZrvD2:resolvedLinks[1]},xoyBa5t_4:{CEOhZrvD2:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{CEOhZrvD2:resolvedLinks[0],height:\"100%\",id:\"fL9ZTYBzg\",layoutId:\"fL9ZTYBzg\",sowss36yn:\"Fedezze fel k\\xedn\\xe1latunkat\",variant:\"j83CQIgim\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Ky7c0fIOD\",webPageId:\"cRlmkgdnk\"},implicitPathVariables:undefined},{href:{hash:\":Ky7c0fIOD\",webPageId:\"cRlmkgdnk\"},implicitPathVariables:undefined},{href:{hash:\":Ky7c0fIOD\",webPageId:\"cRlmkgdnk\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{y:(componentViewport?.y||0)+0+0+80+280+0+0+0+0+0+282+0},xoyBa5t_4:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+0+0+282+0+73}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+80+380+0+0+0+0+0+282+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ojxod7-container\",nodeId:\"ZpWMH1TQk\",rendersWithMotion:true,scopeId:\"hyZ5tkDAA\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{CEOhZrvD2:resolvedLinks1[1]},xoyBa5t_4:{CEOhZrvD2:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Button,{CEOhZrvD2:resolvedLinks1[0],height:\"100%\",id:\"ZpWMH1TQk\",layoutId:\"ZpWMH1TQk\",sowss36yn:\"K\\xe9rjen aj\\xe1nlatot!\",variant:\"fYI1jSqZp\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ti9s8n\"})]})})}),/*#__PURE__*/_jsxs(Image,{\"aria-label\":\"background\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1665,intrinsicWidth:3254,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:1665,pixelWidth:3254,positionX:\"left\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/lLvCZgX4vEqSqbGovr29aUJl5c.png\",srcSet:\"https://framerusercontent.com/images/lLvCZgX4vEqSqbGovr29aUJl5c.png?scale-down-to=512 512w,https://framerusercontent.com/images/lLvCZgX4vEqSqbGovr29aUJl5c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lLvCZgX4vEqSqbGovr29aUJl5c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lLvCZgX4vEqSqbGovr29aUJl5c.png 3254w\"},className:\"framer-tc2zut\",\"data-framer-name\":\"Background\",children:[/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),pixelHeight:1e3,pixelWidth:2e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/K5oL1yM6aNHac5e8Ha17KDpr0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/K5oL1yM6aNHac5e8Ha17KDpr0.png?scale-down-to=512 512w,https://framerusercontent.com/images/K5oL1yM6aNHac5e8Ha17KDpr0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/K5oL1yM6aNHac5e8Ha17KDpr0.png 2000w\"},className:\"framer-caet8y\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xoyBa5t_4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+700-349.5),pixelHeight:1920,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/M6Pdxzzqlc6Dy31mPbVp9a02lE.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/M6Pdxzzqlc6Dy31mPbVp9a02lE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/M6Pdxzzqlc6Dy31mPbVp9a02lE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/M6Pdxzzqlc6Dy31mPbVp9a02lE.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),pixelHeight:1920,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7)`,src:\"https://framerusercontent.com/images/9AyRZuTJy5R3yuDGgPLEZhQPCI.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9AyRZuTJy5R3yuDGgPLEZhQPCI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9AyRZuTJy5R3yuDGgPLEZhQPCI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9AyRZuTJy5R3yuDGgPLEZhQPCI.jpg 1920w\"},className:\"framer-kayczv\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{\"aria-label\":\"shadow\",className:\"framer-1p8j70o\",\"data-framer-name\":\"Shadow\"})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1527mar\",\"data-framer-name\":\"Text Container & Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w5a4nt\",\"data-framer-name\":\"CTA Banner\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eo73cq\",\"data-framer-name\":\"Text Container & Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hygfov\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{y:(componentViewport?.y||0)+0+800+0+80+0+0+48+0},xoyBa5t_4:{y:(componentViewport?.y||0)+0+700+0+0+40+0+0+15+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+900+0+80+0+0+48+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mavd4o-container\",nodeId:\"u4LLLUTmV\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(Tags,{height:\"100%\",id:\"u4LLLUTmV\",layoutId:\"u4LLLUTmV\",qIIoz7X0w:\"BTK KFT\",variant:\"w2eG5KTJd\",width:\"100%\",x3uCWFKBK:\"var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, rgb(7, 105, 64))\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11n14ap\",\"data-framer-name\":\"Heading and Paragraph\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1w9wcq0\",\"data-styles-preset\":\"j_c67CFip\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, rgb(7, 105, 64))\"},children:\"KOMPRESSZOROK\"})}),className:\"framer-1ry6ph5\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ocuip\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wJml7ACRA\"},implicitPathVariables:undefined},{href:{webPageId:\"wJml7ACRA\"},implicitPathVariables:undefined},{href:{webPageId:\"wJml7ACRA\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{y:(componentViewport?.y||0)+0+800+0+80+0+0+48+110.6+0},xoyBa5t_4:{height:386.5,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px, 1px) - 30px)`,y:(componentViewport?.y||0)+0+700+0+0+40+0+0+15+110.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:`max((max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 80px, 1px) - 121px) / 2, 1px)`,y:(componentViewport?.y||0)+0+900+0+80+0+0+48+110.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t1ynir-container\",nodeId:\"gBxfJs1aP\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{JcOisEZl8:resolvedLinks2[1]},xoyBa5t_4:{JcOisEZl8:resolvedLinks2[2],variant:\"SxDltXr5d\"}},children:/*#__PURE__*/_jsx(KOMPRESSZORKARTYA,{CfsTI9Rt1:addImageAlt({pixelHeight:723,pixelWidth:983,src:\"https://framerusercontent.com/images/IkEbFoefJW2mDqhQMDTO5rd2eNs.jpg\",srcSet:\"https://framerusercontent.com/images/IkEbFoefJW2mDqhQMDTO5rd2eNs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IkEbFoefJW2mDqhQMDTO5rd2eNs.jpg 983w\"},\"Csavarkompresszor 3D illusztr\\xe1ci\\xf3\"),d91B_Qnjr:\"Csavarkompresszorok\",height:\"100%\",id:\"gBxfJs1aP\",JcOisEZl8:resolvedLinks2[0],layoutId:\"gBxfJs1aP\",style:{height:\"100%\",width:\"100%\"},variant:\"qVdyiJIyj\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Ln3Lyriuw\"},implicitPathVariables:undefined},{href:{webPageId:\"Ln3Lyriuw\"},implicitPathVariables:undefined},{href:{webPageId:\"Ln3Lyriuw\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{y:(componentViewport?.y||0)+0+800+0+80+0+0+48+110.6+0},xoyBa5t_4:{height:386.5,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px, 1px) - 30px)`,y:(componentViewport?.y||0)+0+700+0+0+40+0+0+15+110.6+0+411.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:`max((max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 80px, 1px) - 121px) / 2, 1px)`,y:(componentViewport?.y||0)+0+900+0+80+0+0+48+110.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n9orai-container\",nodeId:\"iHplX0H_B\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{JcOisEZl8:resolvedLinks3[1]},xoyBa5t_4:{JcOisEZl8:resolvedLinks3[2],variant:\"SxDltXr5d\"}},children:/*#__PURE__*/_jsx(KOMPRESSZORKARTYA,{CfsTI9Rt1:addImageAlt({pixelHeight:1540,pixelWidth:1906,src:\"https://framerusercontent.com/images/mgkyvqtn53bcbymCdhpQiLXysjw.jpg\",srcSet:\"https://framerusercontent.com/images/mgkyvqtn53bcbymCdhpQiLXysjw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mgkyvqtn53bcbymCdhpQiLXysjw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mgkyvqtn53bcbymCdhpQiLXysjw.jpg 1906w\"},\"Fiac Dugatty\\xfas Kompresszorok a gy\\xe1rt\\xf3soron\"),d91B_Qnjr:\"Dugatty\\xfas kompresszorok\",height:\"100%\",id:\"iHplX0H_B\",JcOisEZl8:resolvedLinks3[0],layoutId:\"iHplX0H_B\",style:{height:\"100%\",width:\"100%\"},variant:\"qVdyiJIyj\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1izpesm\",\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1emvj3h\",\"data-framer-name\":\"Heading and Paragraph\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{y:(componentViewport?.y||0)+0+800+0+80+0+646.6+48+0+0+0},xoyBa5t_4:{y:(componentViewport?.y||0)+0+700+0+0+40+0+978.6+15+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+900+0+80+0+646.6+48+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3zur3j-container\",nodeId:\"hT2IIALye\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(Tags,{height:\"100%\",id:\"hT2IIALye\",layoutId:\"hT2IIALye\",qIIoz7X0w:\"KOMPRESSZOROK\",variant:\"w2eG5KTJd\",width:\"100%\",x3uCWFKBK:\"var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, rgb(7, 105, 64))\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1w9wcq0\",\"data-styles-preset\":\"j_c67CFip\",style:{\"--framer-text-alignment\":\"left\"},children:\"Kompresszorok r\\xe9gen \\xe9s ma\"})}),className:\"framer-1xsmw1i\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:\"A kompresszorok hossz\\xfa \\xe9vtizedek \\xf3ta alkalmazott k\\xe9sz\\xfcl\\xe9kek hobbi-, ipari- \\xe9s a kett\u0151 k\\xf6z\\xf6tt elhelyezked\u0151 felhaszn\\xe1l\\xf3k k\\xf6r\\xe9ben egyar\\xe1nt. Feladatukat tekintve kifejezetten egyszer\u0171 eszk\\xf6z\\xf6knek tekinthet\u0151k, hiszen c\\xe9ljuk a leveg\u0151 s\u0171r\\xedt\\xe9se \\xe9s sz\\xe1ll\\xedt\\xe1sa. A kompresszorok \\xe9vsz\\xe1zados m\\xfaltra tekintenek vissza, az els\u0151 protot\\xedpusok m\\xe1r eg\\xe9szen kor\\xe1n megjelentek. A legl\\xe1tv\\xe1nyosabb term\\xe9kfejleszt\\xe9s ugyanakkor a 20. sz\\xe1zadt\\xf3l indult el. Ekkor jelentek meg az els\u0151 hordozhat\\xf3 kompresszorok \\xe9s a k\\xfcl\\xf6nf\\xe9le technol\\xf3giai \\xfaj\\xedt\\xe1soknak k\\xf6sz\\xf6nhet\u0151en eg\\xe9szen innovat\\xedvnak sz\\xe1m\\xedt\\xf3 berendez\\xe9sek jelentek meg a piacon.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:\"A kompresszorok gy\\xe1rt\\xe1s\\xe1nak f\u0151 \\xfatt\\xf6r\u0151je az olasz FIAC gy\\xe1r volt, akinek a term\\xe9kei c\\xe9g\\xfcnk k\\xedn\\xe1lat\\xe1ban is megtal\\xe1lhat\\xf3k. A \u201970-es \\xe9vekt\u0151l kezd\u0151d\u0151en jelent\u0151s kutat\\xe1si \\xe9s fejleszt\\xe9si munk\\xe1t v\\xe9geztek, m\\xedg nem eljutottak a piacon ma is fellelhet\u0151, korszer\u0171 kompresszorok megalkot\\xe1s\\xe1ig. Az \\xe9vtizedek sor\\xe1n sz\\xe1mos m\u0171k\\xf6d\\xe9si elv \\xe9s struktur\\xe1lis, technol\\xf3giai megold\\xe1s helyet kapott a gy\\xe1rt\\xe1sban. M\\xe1ra azonban b\\xe1tran kijelenthet\u0151, hogy a piaci ig\\xe9nyeket k\\xe9t t\\xedpus is k\\xe9pes lefedni. Ez a k\\xe9t t\\xedpus a dugatty\\xfas kompresszorok, illetve a csavarkompresszorok sk\\xe1l\\xe1ja. A felhaszn\\xe1l\\xe1si ter\\xfcletek \\xe9s a m\u0171k\\xf6d\\xe9si elv k\\xfcl\\xf6nb\\xf6zik, ugyanakkor a min\u0151s\\xe9g \\xe9s haszn\\xe1lhat\\xf3s\\xe1g mindk\\xe9t esetben kifog\\xe1stalan.\"})]}),className:\"framer-1vpmdwr\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a5l24t\",\"data-framer-name\":\"Text Container & Image\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-x3vuzy\",\"data-framer-name\":\"CTA Banner\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1icd5uf\",\"data-framer-name\":\"Text Container & Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5hjpv4\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vyjjwf\",\"data-framer-name\":\"Heading and Paragraph\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{y:(componentViewport?.y||0)+0+2207.2+0+80+0+48+0+0+0},xoyBa5t_4:{y:(componentViewport?.y||0)+0+2293.2+0+0+40+0+0+0+25+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+2307.2+0+80+0+48+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f6o4p0-container\",nodeId:\"AKy_j2bxv\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(Tags,{height:\"100%\",id:\"AKy_j2bxv\",layoutId:\"AKy_j2bxv\",qIIoz7X0w:\"R\\xf3lunk\",variant:\"w2eG5KTJd\",width:\"100%\",x3uCWFKBK:\"var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, rgb(7, 105, 64))\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1w9wcq0\",\"data-styles-preset\":\"j_c67CFip\",style:{\"--framer-text-alignment\":\"left\"},children:\"A BTK Kft. 1993 \\xf3ta \\xe1ll \\xfcgyfelei rendelkez\\xe9s\\xe9re\"})}),className:\"framer-ywkerk\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xoyBa5t_4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:\"T\\xf6bb mint h\\xe1rom \\xe9vtizede forgalmazunk kompresszorokat \\xe9s l\\xe9grendszereket. Piaci tapasztalatainkat felhaszn\\xe1lva k\\xedn\\xe1lunk magas min\u0151s\\xe9g\u0171 term\\xe9keket \\xe9s szolg\\xe1ltat\\xe1sokat. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:\"Term\\xe9kv\\xe1laszt\\xe9kunkban kisebb teljes\\xedtm\\xe9ny\u0171 dugatty\\xfas kompresszorok \\xe9s ipari csavarkompresszorok tal\\xe1lhat\\xf3k, amelyek lefedik a felhaszn\\xe1l\\xf3i ig\\xe9nyeket. Emellett alkatr\\xe9szek \\xe9s kieg\\xe9sz\\xedt\u0151k is el\\xe9rhet\u0151k. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:\"Szak\\xe9rt\u0151 koll\\xe9g\\xe1ink \\xe9s szervizcsapatunk folyamatos t\\xe1mogat\\xe1st \\xe9s karbantart\\xe1st biztos\\xedtanak, \\xedgy \\xfcgyfeleink teljes k\\xf6r\u0171 szolg\\xe1ltat\\xe1st kapnak.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:\"T\\xf6bb mint h\\xe1rom \\xe9vtizede forgalmazunk kompresszorokat \\xe9s l\\xe9grendszereket. Piaci tapasztalatainkat felhaszn\\xe1lva k\\xedn\\xe1lunk magas min\u0151s\\xe9g\u0171 term\\xe9keket \\xe9s szolg\\xe1ltat\\xe1sokat. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:\"Term\\xe9kv\\xe1laszt\\xe9kunkban kisebb teljes\\xedtm\\xe9ny\u0171 dugatty\\xfas kompresszorok \\xe9s ipari csavarkompresszorok tal\\xe1lhat\\xf3k, amelyek lefedik a felhaszn\\xe1l\\xf3i ig\\xe9nyeket. Emellett alkatr\\xe9szek \\xe9s kieg\\xe9sz\\xedt\u0151k is el\\xe9rhet\u0151k. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:\"Szak\\xe9rt\u0151 koll\\xe9g\\xe1ink \\xe9s szervizcsapatunk folyamatos t\\xe1mogat\\xe1st \\xe9s karbantart\\xe1st biztos\\xedtanak, \\xedgy \\xfcgyfeleink teljes k\\xf6r\u0171 szolg\\xe1ltat\\xe1st kapnak.\"})]}),className:\"framer-1dyvcf3\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"O5usilMUc\"},implicitPathVariables:undefined},{href:{webPageId:\"O5usilMUc\"},implicitPathVariables:undefined},{href:{webPageId:\"O5usilMUc\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{y:(componentViewport?.y||0)+0+2207.2+0+80+0+48+834.6},xoyBa5t_4:{y:(componentViewport?.y||0)+0+2293.2+0+0+40+0+0+0+25+554.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+2307.2+0+80+0+48+834.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4ad7o4-container\",nodeId:\"mHKVhPnH6\",rendersWithMotion:true,scopeId:\"hyZ5tkDAA\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{CEOhZrvD2:resolvedLinks4[1]},xoyBa5t_4:{CEOhZrvD2:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(Button,{CEOhZrvD2:resolvedLinks4[0],height:\"100%\",id:\"mHKVhPnH6\",layoutId:\"mHKVhPnH6\",sowss36yn:\"Olvasson tov\\xe1bb r\\xf3lunk\",variant:\"fYI1jSqZp\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hriozt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{background:{alt:\"BTK Kompresszor teherat\\xf3k \\xe1lnak a parkol\\xf3ban\",fit:\"fill\",intrinsicHeight:3577,intrinsicWidth:5365,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2207.2+0+80+0+0+0),pixelHeight:525,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:`max(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 80px, 1px) * 0.35 - 25px, 1px)`,src:\"https://framerusercontent.com/images/1Ebe0ggodJV4MzOYZHJH4EOuc.png\",srcSet:\"https://framerusercontent.com/images/1Ebe0ggodJV4MzOYZHJH4EOuc.png?scale-down-to=512 512w,https://framerusercontent.com/images/1Ebe0ggodJV4MzOYZHJH4EOuc.png 1000w\"}},xoyBa5t_4:{background:{alt:\"BTK Kompresszor teherat\\xf3k \\xe1lnak a parkol\\xf3ban\",fit:\"fill\",intrinsicHeight:3577,intrinsicWidth:5365,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2293.2+0+0+40+0+0+677.6+0+0),pixelHeight:525,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px)`,src:\"https://framerusercontent.com/images/1Ebe0ggodJV4MzOYZHJH4EOuc.png\",srcSet:\"https://framerusercontent.com/images/1Ebe0ggodJV4MzOYZHJH4EOuc.png?scale-down-to=512 512w,https://framerusercontent.com/images/1Ebe0ggodJV4MzOYZHJH4EOuc.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"BTK Kompresszor teherat\\xf3k \\xe1lnak a parkol\\xf3ban\",fit:\"fill\",intrinsicHeight:3577,intrinsicWidth:5365,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2307.2+0+80+0+0+0),pixelHeight:525,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:`max(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 80px, 1px) * 0.35 - 25px, 1px)`,src:\"https://framerusercontent.com/images/1Ebe0ggodJV4MzOYZHJH4EOuc.png\",srcSet:\"https://framerusercontent.com/images/1Ebe0ggodJV4MzOYZHJH4EOuc.png?scale-down-to=512 512w,https://framerusercontent.com/images/1Ebe0ggodJV4MzOYZHJH4EOuc.png 1000w\"},className:\"framer-dltwfh\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{background:{alt:\"Fiac dugatty\\xfas kompresszor k\\xf6zelr\u0151l\",fit:\"fill\",intrinsicHeight:3577,intrinsicWidth:5365,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2207.2+0+80+0+0+501.8),pixelHeight:1376,pixelWidth:2062,sizes:`max(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 80px, 1px) * 0.35 - 25px, 1px)`,src:\"https://framerusercontent.com/images/qfE9ZbH1MMiDIalxBIQIi6ow.jpg\",srcSet:\"https://framerusercontent.com/images/qfE9ZbH1MMiDIalxBIQIi6ow.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qfE9ZbH1MMiDIalxBIQIi6ow.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qfE9ZbH1MMiDIalxBIQIi6ow.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qfE9ZbH1MMiDIalxBIQIi6ow.jpg 2062w\"}},xoyBa5t_4:{background:{alt:\"Fiac dugatty\\xfas kompresszor k\\xf6zelr\u0151l\",fit:\"fill\",intrinsicHeight:3577,intrinsicWidth:5365,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2293.2+0+0+40+0+0+677.6+0+209),pixelHeight:1376,pixelWidth:2062,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px)`,src:\"https://framerusercontent.com/images/qfE9ZbH1MMiDIalxBIQIi6ow.jpg\",srcSet:\"https://framerusercontent.com/images/qfE9ZbH1MMiDIalxBIQIi6ow.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qfE9ZbH1MMiDIalxBIQIi6ow.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qfE9ZbH1MMiDIalxBIQIi6ow.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qfE9ZbH1MMiDIalxBIQIi6ow.jpg 2062w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Fiac dugatty\\xfas kompresszor k\\xf6zelr\u0151l\",fit:\"fill\",intrinsicHeight:3577,intrinsicWidth:5365,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2307.2+0+80+0+0+501.8),pixelHeight:1376,pixelWidth:2062,sizes:`max(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 80px, 1px) * 0.35 - 25px, 1px)`,src:\"https://framerusercontent.com/images/qfE9ZbH1MMiDIalxBIQIi6ow.jpg\",srcSet:\"https://framerusercontent.com/images/qfE9ZbH1MMiDIalxBIQIi6ow.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qfE9ZbH1MMiDIalxBIQIi6ow.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qfE9ZbH1MMiDIalxBIQIi6ow.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qfE9ZbH1MMiDIalxBIQIi6ow.jpg 2062w\"},className:\"framer-3x403i\",\"data-border\":true,\"data-framer-name\":\"Image\"})})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{y:(componentViewport?.y||0)+0+3345.8},xoyBa5t_4:{y:(componentViewport?.y||0)+0+3443.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:867,width:`min(${componentViewport?.width||\"100vw\"}, 1300px)`,y:(componentViewport?.y||0)+0+3445.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bqctc6-container\",nodeId:\"xQq1xtpip\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{variant:\"hrT0wFxRe\"},xoyBa5t_4:{variant:\"SKjTkgyd4\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"xQq1xtpip\",layoutId:\"xQq1xtpip\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"FnIuv_DC7\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jb5hdt\",\"data-framer-name\":\"Benefits and Services\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bnnyze\",\"data-framer-name\":\"Benefits Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sm2v6e\",\"data-framer-name\":\"Heading and Paragraph\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{y:(componentViewport?.y||0)+0+4212.8+80+0+40+0+0+0},xoyBa5t_4:{y:(componentViewport?.y||0)+0+4310.8+40+0+15+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+4312.8+80+0+40+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1id58a0-container\",nodeId:\"e81thP5hl\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(Tags,{height:\"100%\",id:\"e81thP5hl\",layoutId:\"e81thP5hl\",qIIoz7X0w:\"HOGYAN V\\xc1LASSZUNK?\",variant:\"w2eG5KTJd\",width:\"100%\",x3uCWFKBK:\"var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, rgb(7, 105, 64))\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14q00ly\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1w9wcq0\",\"data-styles-preset\":\"j_c67CFip\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, rgb(7, 105, 64))\"},children:\"Tal\\xe1ljuk meg a nek\\xfcnk megfelel\u0151 l\\xe9gkompresszort\"})}),className:\"framer-1uzfz0o\",\"data-framer-name\":\"I am a short heading\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",style:{\"--framer-text-alignment\":\"center\"},children:\"F\u0151 profilunk a magas min\u0151s\\xe9g\u0171 dugatty\\xfas kompresszorok \\xe9s csavarkompresszorok, valamint az ezekhez kapcsol\\xf3d\\xf3 berendez\\xe9sek \u2013 sz\\xe1r\\xedt\\xf3k, sz\u0171r\u0151k, l\\xe9gtart\\xe1lyok, szab\\xe1lyz\\xf3k, t\\xf6ml\u0151k, leveg\u0151s h\\xe1l\\xf3zati eszk\\xf6z\\xf6k \u2013 forgalmaz\\xe1sa.\"})}),className:\"framer-16h7w7v\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qm1ig0\",\"data-framer-name\":\"Text Container & Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ritbsk\",\"data-framer-name\":\"CTA Banner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hul8or\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1al4mbi\",\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-194tto0\",\"data-framer-name\":\"Heading and Paragraph\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-z1y8st-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MlS2aOi4e\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, rgb(7, 105, 64))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"User\",id:\"MlS2aOi4e\",layoutId:\"MlS2aOi4e\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-bv2gos\",\"data-styles-preset\":\"au6UEjsp6\",children:\"Hobbi \\xe9s kisipari felhaszn\\xe1l\\xf3k\"})}),className:\"framer-1o0fpqk\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:\"l\\xe9gkompresszorokra b\\xe1mikor sz\\xfcks\\xe9g lehet a h\\xe1z k\\xf6r\\xfcl \\xe9s k\\xfcl\\xf6nb\\xf6z\u0151 szakmunk\\xe1t v\\xe9gz\u0151 m\u0171helyekben is. Gondoljunk csak az kerekek, ak\\xe1r m\\xe1s, leveg\u0151vel t\\xf6lt\\xf6tt t\\xe1rgyak felf\\xfaj\\xe1s\\xe1ra, vagy ak\\xe1r k\\xfcl\\xf6nf\\xe9le tiszt\\xedt\\xe1si, fest\\xe9si munk\\xe1kra. Fontos teend\u0151k, \\xe1m ezekhez b\u0151ven megfelel egy kisebb teljes\\xedtm\\xe9ny\u0171 dugatty\\xfas kompresszor is. Ezek az eszk\\xf6z\\xf6k k\\xf6lts\\xe9ghat\\xe9kony megold\\xe1st k\\xedn\\xe1lnak mindenki sz\\xe1m\\xe1ra, aki egy egyszer\u0171, de j\\xf3l haszn\\xe1lhat\\xf3 l\\xe9gkompresszort keres.\"})}),className:\"framer-r4auaq\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ec00w1\",\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xs1ffu\",\"data-framer-name\":\"Heading and Paragraph\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19dud70-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MCatkibCp\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, rgb(7, 105, 64))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Factory\",id:\"MCatkibCp\",layoutId:\"MCatkibCp\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-bv2gos\",\"data-styles-preset\":\"au6UEjsp6\",children:\"K\\xf6zepes \\xe9s nagyipari felhaszn\\xe1l\\xf3k\"})}),className:\"framer-1xvyc4b\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:\"ez az alkalmaz\\xe1si ter\\xfclet m\\xe1r j\\xf3val nagyobb ig\\xe9nybev\\xe9tellel \\xe9s teljes\\xedtm\\xe9nyig\\xe9nnyel j\\xe1r. Az ipari l\\xe9gkompresszorokat jellemz\u0151en gy\\xe1rt\\xf3sori g\\xe9pek \\xfczemeltet\\xe9s\\xe9re, pneumatikus eszk\\xf6z\\xf6k m\u0171k\\xf6dtet\\xe9s\\xe9re haszn\\xe1lj\\xe1k. Itt m\\xe1r elengedhetetlen a nagy teljes\\xedtm\\xe9ny, illetve a folyamatos, sz\\xfcnetmentes m\u0171k\\xf6d\\xe9s. Az ipart jellemz\u0151en a csavarkompresszorok szolg\\xe1lj\\xe1k ki, \\xedgy \\xfczemek \\xe9s ipari c\\xe9gek sz\\xe1m\\xe1ra mi is ezeket aj\\xe1nljuk.\"})}),className:\"framer-3t8nmy\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cp33a4\",\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-190akp5\",\"data-framer-name\":\"Heading and Paragraph\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ch4bqa-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"syqidcBRY\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, rgb(7, 105, 64))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Gear\",id:\"syqidcBRY\",layoutId:\"syqidcBRY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-bv2gos\",\"data-styles-preset\":\"au6UEjsp6\",children:\"Speci\\xe1lis felhaszn\\xe1l\\xf3k\"})}),className:\"framer-451954\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:\"a l\\xe9gkompresszorok eg\\xe9szen speci\\xe1lis ter\\xfcleteken is alkalmazhat\\xf3k. Ilyen lehet a fog\\xe1szat, vagy \\xe9pp a kozmetika, ahol a s\u0171r\\xedtett leveg\u0151 kifejezetten finom munk\\xe1khoz sz\\xfcks\\xe9geltetik. Ezeken a ter\\xfcleteken fontos, hogy az el\u0151\\xe1ll\\xedtott leveg\u0151 kifog\\xe1stalan tisztas\\xe1g\\xfa legyen. A FIAC dugatty\\xfas l\\xe9gkompresszorainak egy speci\\xe1lis sz\\xe9ri\\xe1ja \\xe9pp ezekre a ter\\xfcletekre k\\xe9sz\\xfclt, \\xedgy \\xf6r\\xf6mmel fogadjuk az ilyen jelleg\u0171 megkeres\\xe9seket is.\"})}),className:\"framer-1jd4g3a\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Ky7c0fIOD\",webPageId:\"cRlmkgdnk\"},implicitPathVariables:undefined},{href:{hash:\":Ky7c0fIOD\",webPageId:\"cRlmkgdnk\"},implicitPathVariables:undefined},{href:{hash:\":Ky7c0fIOD\",webPageId:\"cRlmkgdnk\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{y:(componentViewport?.y||0)+0+4650.4+0+20+943.8},xoyBa5t_4:{y:(componentViewport?.y||0)+0+4658.4+0+0+20+793.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+4750.4+0+20+943.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3mfdxi-container\",nodeId:\"eKP4FOZVe\",rendersWithMotion:true,scopeId:\"hyZ5tkDAA\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{CEOhZrvD2:resolvedLinks5[1]},xoyBa5t_4:{CEOhZrvD2:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(Button,{CEOhZrvD2:resolvedLinks5[0],height:\"100%\",id:\"eKP4FOZVe\",layoutId:\"eKP4FOZVe\",sowss36yn:\"K\\xe9rjen aj\\xe1nlatot\",variant:\"GwNjmpcV7\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vlg22k\",\"data-framer-name\":\"Benefits and Services\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fiod3l\",\"data-border\":true,\"data-framer-name\":\"Benefits Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-44uqs\",\"data-framer-name\":\"Heading and Paragraph\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y4c6qf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1w9wcq0\",\"data-styles-preset\":\"j_c67CFip\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, rgb(7, 105, 64))\"},children:\"MI\\xc9RT V\\xc1LASSZON MINKET?\"})}),className:\"framer-tydn7u\",\"data-framer-name\":\"I am a short heading\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ri1rr3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6976ru\",\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u5mn18\",\"data-framer-name\":\"Heading and Paragraph\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n13wl4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Dl6P4RcJk\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, rgb(7, 105, 64))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Users\",id:\"Dl6P4RcJk\",layoutId:\"Dl6P4RcJk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-znhers\",\"data-styles-preset\":\"uavqbFs_R\",children:\"T\\xf6bb mint 30 \\xe9v szakmai tapasztalat\"})}),className:\"framer-igta8w\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:\"Stabil, megb\\xedzhat\\xf3 h\\xe1tt\\xe9r \\xe9s folyamatos fejl\u0151d\\xe9s az iparban.\"})}),className:\"framer-wlim2x\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dgj1dt\",\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xdpufi\",\"data-framer-name\":\"Heading and Paragraph\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18830e8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vVv37MbDc\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, rgb(7, 105, 64))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Toolbox\",id:\"vVv37MbDc\",layoutId:\"vVv37MbDc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-znhers\",\"data-styles-preset\":\"uavqbFs_R\",children:[\"Orsz\\xe1gos \",/*#__PURE__*/_jsx(\"br\",{}),\"szervizh\\xe1l\\xf3zat\"]})}),className:\"framer-1r29m97\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:\"Koll\\xe9g\\xe1ink munkanapokon bel\\xfcl, 24 \\xf3r\\xe1n bel\\xfcl kisz\\xe1llnak s\\xfcrg\u0151s esetekben is.\"})}),className:\"framer-8ylkvy\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-47l76f\",\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tsvj2t\",\"data-framer-name\":\"Heading and Paragraph\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hf4hak-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ElQzm07Lx\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, rgb(7, 105, 64))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Lightning\",id:\"ElQzm07Lx\",layoutId:\"ElQzm07Lx\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-znhers\",\"data-styles-preset\":\"uavqbFs_R\",children:\"Azonnali kiszolg\\xe1l\\xe1s rakt\\xe1rr\\xf3l\"})}),className:\"framer-18t7izp\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:\"Term\\xe9keink azonnal el\\xe9rhet\u0151k, v\\xe1rakoz\\xe1s n\\xe9lk\\xfcl.\"})}),className:\"framer-1lkriv0\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wm9doe\",\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-voyl33\",\"data-framer-name\":\"Heading and Paragraph\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8ebins-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LJymXLXqk\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, rgb(7, 105, 64))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Certificate\",id:\"LJymXLXqk\",layoutId:\"LJymXLXqk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-znhers\",\"data-styles-preset\":\"uavqbFs_R\",children:[\"Megb\\xedzhat\\xf3, \",/*#__PURE__*/_jsx(\"br\",{}),\"min\u0151s\\xe9g\"]})}),className:\"framer-134ct4q\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pe3ujz\",\"data-styles-preset\":\"NMIUNZpg8\",children:\"Kiz\\xe1r\\xf3lag Olaszorsz\\xe1gban gy\\xe1rtott, eredeti olasz term\\xe9keket forgalmazunk.\"})}),className:\"framer-i4s84\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-epduq\",\"data-framer-name\":\"Benefits and Services\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dwf19p\",\"data-framer-name\":\"Benefits Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-376o5l\",\"data-framer-name\":\"Heading and Paragraph\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{y:(componentViewport?.y||0)+0+6562.6+80+0+0+0+0+0},xoyBa5t_4:{y:(componentViewport?.y||0)+0+6729.4+40+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+6398.2+80+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11fdiza-container\",nodeId:\"UYjbiYNUh\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(Tags,{height:\"100%\",id:\"UYjbiYNUh\",layoutId:\"UYjbiYNUh\",qIIoz7X0w:\"PERTNEREINK\",variant:\"w2eG5KTJd\",width:\"100%\",x3uCWFKBK:\"var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, rgb(7, 105, 64))\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ph6w1y\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q0bh6i-container\",isModuleExternal:true,nodeId:\"a1rtkY7Tc\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xoyBa5t_4:{gap:40,speed:75}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:1,id:\"a1rtkY7Tc\",layoutId:\"a1rtkY7Tc\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"fiac logo\",fit:\"fill\",intrinsicHeight:426,intrinsicWidth:640.5,pixelHeight:852,pixelWidth:1281,sizes:\"173px\",src:\"https://framerusercontent.com/images/2dcu1kpVk852FHsjqJP5aa9Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2dcu1kpVk852FHsjqJP5aa9Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/2dcu1kpVk852FHsjqJP5aa9Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2dcu1kpVk852FHsjqJP5aa9Y.png 1281w\"},className:\"framer-18h7gc\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"KTC logo\",fit:\"fill\",intrinsicHeight:75,intrinsicWidth:150,pixelHeight:150,pixelWidth:300,src:\"https://framerusercontent.com/images/i4U4Orz6YWyF4iHpZAxEAF7yKh8.png\"},className:\"framer-1jihhq0\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"SPIRALFLEX logo black\",fit:\"fill\",intrinsicHeight:147.5,intrinsicWidth:818.5,pixelHeight:295,pixelWidth:1637,sizes:\"319px\",src:\"https://framerusercontent.com/images/Yn20YvHWVLaXdOcEw4hSxop2K34.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Yn20YvHWVLaXdOcEw4hSxop2K34.png?scale-down-to=512 512w,https://framerusercontent.com/images/Yn20YvHWVLaXdOcEw4hSxop2K34.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Yn20YvHWVLaXdOcEw4hSxop2K34.png 1637w\"},className:\"framer-1u41862\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"ANI logo\",fit:\"fill\",intrinsicHeight:223,intrinsicWidth:200,pixelHeight:446,pixelWidth:400,src:\"https://framerusercontent.com/images/r8TPtUReImTL5U5vDRKACjkfE.png\"},className:\"framer-1s5ty5r\",\"data-framer-name\":\"image\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ZHP1KFDxM\"},implicitPathVariables:undefined},{href:{webPageId:\"ZHP1KFDxM\"},implicitPathVariables:undefined},{href:{webPageId:\"ZHP1KFDxM\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{y:(componentViewport?.y||0)+0+6562.6+80+253},xoyBa5t_4:{y:(componentViewport?.y||0)+0+6729.4+40+253}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+6398.2+80+253,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dk9k3i-container\",nodeId:\"vCPOdfg2E\",rendersWithMotion:true,scopeId:\"hyZ5tkDAA\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{CEOhZrvD2:resolvedLinks6[1]},xoyBa5t_4:{CEOhZrvD2:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(Button,{CEOhZrvD2:resolvedLinks6[0],height:\"100%\",id:\"vCPOdfg2E\",layoutId:\"vCPOdfg2E\",sowss36yn:\"Partnereink\",variant:\"EvTmMmAMA\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{y:(componentViewport?.y||0)+0+7023.6},xoyBa5t_4:{y:(componentViewport?.y||0)+0+7110.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:888,width:`min(${componentViewport?.width||\"100vw\"}, 1300px)`,y:(componentViewport?.y||0)+0+6859.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7lx40b-container\",nodeId:\"LY5vYBJRO\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{variant:\"RHA4cXsVS\"},xoyBa5t_4:{variant:\"Ubdjw4A0a\"}},children:/*#__PURE__*/_jsx(CONTACT,{height:\"100%\",id:\"LY5vYBJRO\",layoutId:\"LY5vYBJRO\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"B5NqteYyL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{y:(componentViewport?.y||0)+0+7911.6},xoyBa5t_4:{y:(componentViewport?.y||0)+0+7998.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:751,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7747.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bcdu1h-container\",\"data-framer-name\":\"FOOTER\",name:\"FOOTER\",nodeId:\"kwyQZrJBm\",scopeId:\"hyZ5tkDAA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{variant:\"ZAzgbXmiM\"},xoyBa5t_4:{variant:\"NJWv9mIPh\"}},children:/*#__PURE__*/_jsx(FOOTER,{height:\"100%\",id:\"kwyQZrJBm\",layoutId:\"kwyQZrJBm\",name:\"FOOTER\",style:{width:\"100%\"},variant:\"VH132ItCf\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xoyBa5t_4:{__framer__scrollDirection:{direction:\"down\",target:animation2},style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation1},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ekpfvy-container\",\"data-framer-name\":\"NAVBAR\",layoutScroll:true,name:\"NAVBAR\",nodeId:\"Yhnbnk9zj\",rendersWithMotion:true,scopeId:\"hyZ5tkDAA\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D8hPlNybP:{variant:\"nfDt6UY8Q\"},xoyBa5t_4:{__framer__targets:[{ref:ref3,target:\"EPS6jsSEH\"}],variant:\"RI6uBg98a\"}},children:/*#__PURE__*/_jsx(NavbarDarkWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"fACOX5w6a\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"Yhnbnk9zj\",layoutId:\"Yhnbnk9zj\",name:\"NAVBAR\",style:{width:\"100%\"},variant:\"knIXdn_Se\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-a5OWN.framer-12y756t, .framer-a5OWN .framer-12y756t { display: block; }\",\".framer-a5OWN.framer-1eiqcy { align-content: center; align-items: center; background-color: var(--token-38ef55ca-9496-4841-a208-1a174b03c284, #ededed); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-a5OWN .framer-1jc4bl2-container { flex: none; height: auto; left: 0px; position: absolute; top: 0px; width: auto; }\",\".framer-a5OWN .framer-1tlv70z { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 90vh; justify-content: flex-end; overflow: hidden; padding: 80px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-a5OWN .framer-s0zvgn { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-a5OWN .framer-m0a7m7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-a5OWN .framer-dcphq6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-kvesp1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 539px; }\",\".framer-a5OWN .framer-vwo7sq-container, .framer-a5OWN .framer-1mavd4o-container, .framer-a5OWN .framer-3zur3j-container, .framer-a5OWN .framer-1f6o4p0-container, .framer-a5OWN .framer-1id58a0-container, .framer-a5OWN .framer-11fdiza-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-a5OWN .framer-1dljn8o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-134exqr { -webkit-user-select: none; flex: none; height: auto; opacity: 0.84; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-a5OWN .framer-mkr600 { -webkit-user-select: none; flex: none; height: auto; opacity: 0.74; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-a5OWN .framer-dzbog3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-a5OWN .framer-373056-container, .framer-a5OWN .framer-ojxod7-container, .framer-a5OWN .framer-4ad7o4-container, .framer-a5OWN .framer-3mfdxi-container, .framer-a5OWN .framer-dk9k3i-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-a5OWN .framer-1ti9s8n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; min-height: 48px; min-width: 221px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-a5OWN .framer-tc2zut { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-a5OWN .framer-caet8y { -webkit-filter: hue-rotate(67deg); filter: hue-rotate(67deg); flex: none; height: 832px; opacity: 0.5; overflow: visible; position: absolute; right: 0px; top: 0px; width: 100%; }\",\".framer-a5OWN .framer-kayczv { bottom: 0px; flex: none; mix-blend-mode: lighten; opacity: 0.75; overflow: visible; position: absolute; right: 0px; top: 0px; width: 70%; z-index: 2; }\",\".framer-a5OWN .framer-1p8j70o { background: linear-gradient(180deg, rgba(11, 14, 15, 0.82) 0%, rgba(24, 31, 33, 0) 100%); bottom: 0px; flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; width: 100%; z-index: 4; }\",\".framer-a5OWN .framer-1527mar, .framer-a5OWN .framer-a5l24t, .framer-a5OWN .framer-qm1ig0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-1w5a4nt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 1px; }\",\".framer-a5OWN .framer-eo73cq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-a5OWN .framer-hygfov { align-content: center; align-items: center; background-color: var(--token-1db6361e-6b44-4f58-a4c4-734b7ee03c96, #f6f6f6); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-11n14ap, .framer-a5OWN .framer-1emvj3h, .framer-a5OWN .framer-vyjjwf, .framer-a5OWN .framer-194tto0, .framer-a5OWN .framer-1xs1ffu, .framer-a5OWN .framer-190akp5, .framer-a5OWN .framer-u5mn18, .framer-a5OWN .framer-1xdpufi, .framer-a5OWN .framer-tsvj2t, .framer-a5OWN .framer-voyl33 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-1ry6ph5, .framer-a5OWN .framer-1xsmw1i, .framer-a5OWN .framer-1vpmdwr, .framer-a5OWN .framer-ywkerk, .framer-a5OWN .framer-1dyvcf3, .framer-a5OWN .framer-1uzfz0o, .framer-a5OWN .framer-1o0fpqk, .framer-a5OWN .framer-r4auaq, .framer-a5OWN .framer-1xvyc4b, .framer-a5OWN .framer-3t8nmy, .framer-a5OWN .framer-451954, .framer-a5OWN .framer-1jd4g3a, .framer-a5OWN .framer-tydn7u, .framer-a5OWN .framer-igta8w, .framer-a5OWN .framer-wlim2x, .framer-a5OWN .framer-1r29m97, .framer-a5OWN .framer-8ylkvy, .framer-a5OWN .framer-18t7izp, .framer-a5OWN .framer-1lkriv0, .framer-a5OWN .framer-134ct4q, .framer-a5OWN .framer-i4s84 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-a5OWN .framer-5ocuip { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: 400px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-t1ynir-container, .framer-a5OWN .framer-n9orai-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-a5OWN .framer-1izpesm { align-content: flex-start; align-items: flex-start; background-color: var(--token-1db6361e-6b44-4f58-a4c4-734b7ee03c96, #f6f6f6); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-x3vuzy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 1px; }\",\".framer-a5OWN .framer-1icd5uf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-a5OWN .framer-5hjpv4 { align-content: flex-start; align-items: flex-start; background-color: var(--token-1db6361e-6b44-4f58-a4c4-734b7ee03c96, #f6f6f6); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 65%; }\",\".framer-a5OWN .framer-hriozt { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-a5OWN .framer-dltwfh, .framer-a5OWN .framer-3x403i { --border-bottom-width: 5px; --border-color: #f6f6f6; --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-bqctc6-container, .framer-a5OWN .framer-7lx40b-container { flex: none; height: auto; max-width: 1300px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-jb5hdt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 80px 40px 20px 40px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-1bnnyze { align-content: center; align-items: center; background-color: #f6f6f6; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-a5OWN .framer-sm2v6e, .framer-a5OWN .framer-44uqs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-a5OWN .framer-14q00ly, .framer-a5OWN .framer-1y4c6qf, .framer-a5OWN .framer-1ph6w1y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-16h7w7v { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 700px; word-break: break-word; word-wrap: break-word; }\",\".framer-a5OWN .framer-1ritbsk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 20px 40px 80px 40px; position: relative; width: 1px; }\",\".framer-a5OWN .framer-hul8or { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-1al4mbi, .framer-a5OWN .framer-1ec00w1, .framer-a5OWN .framer-1cp33a4 { align-content: flex-start; align-items: flex-start; background-color: var(--token-1db6361e-6b44-4f58-a4c4-734b7ee03c96, #f6f6f6); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-z1y8st-container, .framer-a5OWN .framer-19dud70-container, .framer-a5OWN .framer-1ch4bqa-container, .framer-a5OWN .framer-n13wl4-container, .framer-a5OWN .framer-18830e8-container, .framer-a5OWN .framer-hf4hak-container, .framer-a5OWN .framer-8ebins-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 32px; }\",\".framer-a5OWN .framer-1vlg22k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-1fiod3l { --border-bottom-width: 1px; --border-color: var(--token-6433af50-2550-4ff1-b6a6-5aeb6479d78b, #076940); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #f6f6f6; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-a5OWN .framer-ri1rr3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-6976ru, .framer-a5OWN .framer-dgj1dt, .framer-a5OWN .framer-47l76f, .framer-a5OWN .framer-1wm9doe { align-content: flex-start; align-items: flex-start; background-color: var(--token-1db6361e-6b44-4f58-a4c4-734b7ee03c96, #f6f6f6); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 25px; position: relative; width: 1px; }\",\".framer-a5OWN .framer-epduq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-dwf19p { align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-a5OWN .framer-376o5l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-q0bh6i-container { flex: none; height: 100px; position: relative; width: 100%; }\",\".framer-a5OWN .framer-18h7gc { aspect-ratio: 1.5035211267605635 / 1; height: var(--framer-aspect-ratio-supported, 115px); overflow: visible; position: relative; width: 173px; }\",\".framer-a5OWN .framer-1jihhq0 { aspect-ratio: 2 / 1; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 129px; }\",\".framer-a5OWN .framer-1u41862 { aspect-ratio: 5.549152542372881 / 1; height: var(--framer-aspect-ratio-supported, 58px); overflow: visible; position: relative; width: 319px; }\",\".framer-a5OWN .framer-1s5ty5r { aspect-ratio: 0.8968609865470852 / 1; height: var(--framer-aspect-ratio-supported, 79px); overflow: visible; position: relative; width: 71px; }\",\".framer-a5OWN .framer-bcdu1h-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-a5OWN .framer-ekpfvy-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-a5OWN[data-border=\"true\"]::after, .framer-a5OWN [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-a5OWN.framer-1eiqcy { width: 810px; } .framer-a5OWN .framer-1tlv70z { height: 80vh; } .framer-a5OWN .framer-ri1rr3 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-a5OWN .framer-6976ru, .framer-a5OWN .framer-dgj1dt, .framer-a5OWN .framer-47l76f, .framer-a5OWN .framer-1wm9doe { align-self: start; flex: none; justify-self: start; width: 100%; }}\",\"@media (max-width: 809px) { .framer-a5OWN.framer-1eiqcy { width: 390px; } .framer-a5OWN .framer-1tlv70z { height: 700px; padding: 160px 20px 40px 20px; } .framer-a5OWN .framer-s0zvgn { flex: 1 0 0px; flex-direction: column; gap: 40px; height: 1px; } .framer-a5OWN .framer-m0a7m7 { flex: none; order: 0; width: 100%; } .framer-a5OWN .framer-dcphq6 { align-content: center; align-items: center; } .framer-a5OWN .framer-kvesp1 { align-content: center; align-items: center; width: 100%; } .framer-a5OWN .framer-dzbog3, .framer-a5OWN .framer-1ti9s8n, .framer-a5OWN .framer-1527mar, .framer-a5OWN .framer-a5l24t, .framer-a5OWN .framer-qm1ig0, .framer-a5OWN .framer-ri1rr3 { flex-direction: column; } .framer-a5OWN .framer-kayczv { bottom: 0px; height: 50%; left: 0px; top: unset; width: unset; } .framer-a5OWN .framer-1w5a4nt { flex: none; padding: 40px 20px 40px 20px; width: 100%; } .framer-a5OWN .framer-hygfov, .framer-a5OWN .framer-1izpesm, .framer-a5OWN .framer-1bnnyze, .framer-a5OWN .framer-1al4mbi, .framer-a5OWN .framer-1ec00w1, .framer-a5OWN .framer-1cp33a4 { border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; padding: 15px; } .framer-a5OWN .framer-5ocuip { flex-direction: column; height: 798px; } .framer-a5OWN .framer-t1ynir-container, .framer-a5OWN .framer-n9orai-container { height: 1px; width: 100%; } .framer-a5OWN .framer-x3vuzy { flex: none; flex-direction: column; padding: 40px 20px 40px 20px; width: 100%; } .framer-a5OWN .framer-1icd5uf { flex: none; flex-direction: column; width: 100%; } .framer-a5OWN .framer-5hjpv4 { padding: 25px; width: 100%; } .framer-a5OWN .framer-hriozt { align-self: unset; flex: none; height: 393px; width: 100%; } .framer-a5OWN .framer-jb5hdt { padding: 40px 20px 20px 20px; } .framer-a5OWN .framer-sm2v6e, .framer-a5OWN .framer-16h7w7v, .framer-a5OWN .framer-44uqs { width: 100%; } .framer-a5OWN .framer-1ritbsk { flex: none; padding: 20px 20px 30px 20px; width: 100%; } .framer-a5OWN .framer-1vlg22k { padding: 40px 20px 80px 20px; } .framer-a5OWN .framer-1fiod3l { padding: 15px; } .framer-a5OWN .framer-6976ru, .framer-a5OWN .framer-dgj1dt, .framer-a5OWN .framer-47l76f, .framer-a5OWN .framer-1wm9doe { flex: none; padding: 15px; width: 100%; } .framer-a5OWN .framer-epduq { padding: 40px 20px 40px 20px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7511.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"D8hPlNybP\":{\"layout\":[\"fixed\",\"auto\"]},\"xoyBa5t_4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"HbUpPeFZS\":{\"pattern\":\":HbUpPeFZS\",\"name\":\"hero\"},\"QlnVO3Qva\":{\"pattern\":\":QlnVO3Qva\",\"name\":\"kompresszorok\"},\"AxMK4CFxi\":{\"pattern\":\":AxMK4CFxi\",\"name\":\"2\"}}\n * @framerResponsiveScreen\n */const FramerhyZ5tkDAA=withCSS(Component,css,\"framer-a5OWN\");export default FramerhyZ5tkDAA;FramerhyZ5tkDAA.displayName=\"Home2\";FramerhyZ5tkDAA.defaultProps={height:7511.5,width:1200};addFonts(FramerhyZ5tkDAA,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...FrameshipShopifyFonts,...TagsFonts,...ButtonFonts,...KOMPRESSZORKARTYAFonts,...CTAFonts,...PhosphorFonts,...TickerFonts,...CONTACTFonts,...FOOTERFonts,...NavbarDarkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhyZ5tkDAA\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"7511.5\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"{\\\"HbUpPeFZS\\\":{\\\"pattern\\\":\\\":HbUpPeFZS\\\",\\\"name\\\":\\\"hero\\\"},\\\"QlnVO3Qva\\\":{\\\"pattern\\\":\\\":QlnVO3Qva\\\",\\\"name\\\":\\\"kompresszorok\\\"},\\\"AxMK4CFxi\\\":{\\\"pattern\\\":\\\":AxMK4CFxi\\\",\\\"name\\\":\\\"2\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D8hPlNybP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xoyBa5t_4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "c", "i", "h", "u", "d", "l", "g", "glide", "o", "f", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "link", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "d91B_Qnjr", "CfsTI9Rt1", "JcOisEZl8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "RichText", "ComponentViewportProvider", "css", "FramerYSt7RVcil", "withCSS", "YSt7RVcil_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FrameshipShopifyFonts", "getFonts", "Frameship", "TagsFonts", "mGP2zVbOW_default", "ButtonFonts", "KrKWaFPep_default", "KOMPRESSZORKARTYAFonts", "YSt7RVcil_default", "CTAFonts", "I9RYgMfAI_default", "PhosphorFonts", "Icon", "TickerFonts", "Ticker", "CONTACTFonts", "loBr4Ko3i_default", "FOOTERFonts", "P_9zH3QIj_default", "NavbarDarkFonts", "aWOC8HAjU_default", "NavbarDarkWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithFX", "withFX", "Container", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "addImageAlt", "image", "alt", "transition2", "animation1", "animation2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "elementId1", "ref2", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "Frameship", "PropertyOverrides2", "mGP2zVbOW_default", "x", "RichText", "ResolveLinks", "resolvedLinks", "KrKWaFPep_default", "resolvedLinks1", "Image2", "getLoadingLazyAtYPosition", "resolvedLinks2", "YSt7RVcil_default", "resolvedLinks3", "resolvedLinks4", "I9RYgMfAI_default", "Icon", "resolvedLinks5", "Ticker", "resolvedLinks6", "loBr4Ko3i_default", "P_9zH3QIj_default", "ContainerWithFX", "NavbarDarkWithVariantAppearEffect", "css", "FramerhyZ5tkDAA", "withCSS", "hyZ5tkDAA_default", "addFonts", "FrameshipShopifyFonts", "TagsFonts", "ButtonFonts", "KOMPRESSZORKARTYAFonts", "CTAFonts", "PhosphorFonts", "TickerFonts", "CONTACTFonts", "FOOTERFonts", "NavbarDarkFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
