{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/tBzcdAukmcurzRTOYhYB/YaauqYf4KmyhGDQPU4yI/kIM3ouRIY.js", "ssg:https://framerusercontent.com/modules/AdDXxifxCbHOuxUcYNN6/Xp8T748kZi9Dn9WuDcZN/BHbWtTJEm.js", "ssg:https://framerusercontent.com/modules/ygxtxqAKBDvjdiDE5HU2/Q2DGVpJxR300q7U0h7Gx/bcfW7Xahe.js", "ssg:https://framerusercontent.com/modules/gXAZXCRpOc7ZtbXIbACb/T7ZIpXXGZopnQC6ETh2j/CT70IM8PT.js", "ssg:https://framerusercontent.com/modules/vxxP3QHs3o97RFZ4m7vj/QzmVIyr12rD4XIjCb4J6/P8grC1VH8.js", "ssg:https://framerusercontent.com/modules/hG0gGbAjFzmDDlXuwofy/xoIZlV6eMk0OPZ1SvLGc/TbtoKi6JS.js", "ssg:https://framerusercontent.com/modules/Us0RynHF4WKTs2nS9gUD/fdCKyPLPErW6iwQELnsi/bwAgxVAwG.js", "ssg:https://framerusercontent.com/modules/oDbUFfmTTjjlRJfxiniB/xYHAp4tRx32TbbSBza1D/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;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[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (ff86393)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ug6cIZyWEo3p2QSDVlBe/7ZJzGg87779B6eh01Sv3/eELbJ25a7.js\";const serializationHash=\"framer-FDEKi\";const variantClassNames={wciwT8vjq:\"framer-v-1xgamdq\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};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.create(React.Fragment);const getProps=({height,id,tagName,width,...props})=>{var _ref;return{...props,M8Ph3bgqC:(_ref=tagName!==null&&tagName!==void 0?tagName:props.M8Ph3bgqC)!==null&&_ref!==void 0?_ref:\"MIRA 5S\"};};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,M8Ph3bgqC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"wciwT8vjq\",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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1xgamdq\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"wciwT8vjq\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-b2932d0e-4085-4c46-a8f8-66a88bdcdb4d, rgba(35, 91, 188, 0.05))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-gyrbde\",\"data-styles-preset\":\"eELbJ25a7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188)))\"},children:\"MIRA 5S\"})}),className:\"framer-u59s3l\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"D7MTXPT4G\",style:{\"--extracted-1w1cjl5\":\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:M8Ph3bgqC,verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FDEKi.framer-1mvq2vn, .framer-FDEKi .framer-1mvq2vn { display: block; }\",\".framer-FDEKi.framer-1xgamdq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 2px 8px 3px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-FDEKi .framer-u59s3l { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FDEKi.framer-1xgamdq { gap: 0px; } .framer-FDEKi.framer-1xgamdq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-FDEKi.framer-1xgamdq > :first-child { margin-top: 0px; } .framer-FDEKi.framer-1xgamdq > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 70\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"M8Ph3bgqC\":\"tagName\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkIM3ouRIY=withCSS(Component,css,\"framer-FDEKi\");export default FramerkIM3ouRIY;FramerkIM3ouRIY.displayName=\"Laser/ tag button\";FramerkIM3ouRIY.defaultProps={height:27,width:70};addPropertyControls(FramerkIM3ouRIY,{M8Ph3bgqC:{defaultValue:\"MIRA 5S\",displayTextArea:false,title:\"Tag name\",type:ControlType.String}});addFonts(FramerkIM3ouRIY,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkIM3ouRIY\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"27\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"M8Ph3bgqC\\\":\\\"tagName\\\"}\",\"framerIntrinsicWidth\":\"70\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kIM3ouRIY.map", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/7FlFTfZmKYVmz08Lrrpf/J6bAjFf9XDPvCe6l8Q1z/dYWELVq2U.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/x1J8Qtf9b5NnwJOLFbLG/rosaEs5CA4SvkIJq3dmO/N2uVrHkx5.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/mo3ruyGtT7LYgbEbCrnm/lpSASVLfP6Fgq8lYhoaG/tpPIAAVeY.js\";import LasersCardValue from\"https://framerusercontent.com/modules/sn9j8GoHpWBYeE42sd9f/msSDlTJnI62VVpx6vLma/AZl9sH3C0.js\";import ButtonNavigation from\"https://framerusercontent.com/modules/7f2IufqNJzx9Wq0zdJFU/iUCFrAeYRfE3DVq9wyXh/Jtah503q3.js\";import LaserTagButton from\"https://framerusercontent.com/modules/tBzcdAukmcurzRTOYhYB/YaauqYf4KmyhGDQPU4yI/kIM3ouRIY.js\";const LaserTagButtonFonts=getFonts(LaserTagButton);const LasersCardValueFonts=getFonts(LasersCardValue);const ButtonNavigationFonts=getFonts(ButtonNavigation);const serializationHash=\"framer-cqsCs\";const variantClassNames={Ths0hEJiS:\"framer-v-1ix6rnc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({_01,_02,_03,_04,_05,_06,buttonName,cardHeading,cardImage,description,height,id,opacity01,opacity02,priceAmount,tagName01,tagName02,tagName03,width,...props})=>{return{...props,AQXhM0_Sz:_02??props.AQXhM0_Sz??\"Active\",AZweSjfFv:_04??props.AZweSjfFv??\"Active\",bEpxta8sW:description??props.bEpxta8sW??\"Description \",Cbqqkywya:cardImage??props.Cbqqkywya,ggV34xEjg:opacity02??props.ggV34xEjg??1,j7p72Mo6S:_05??props.j7p72Mo6S??\"Active\",LO4pBYf5R:opacity01??props.LO4pBYf5R??1,LuhTB6CHu:buttonName??props.LuhTB6CHu??\"Button\",MuvYKca5m:cardHeading??props.MuvYKca5m??\"MIRA\\xa0S\",qFRgyrH6v:priceAmount??props.qFRgyrH6v??\"Price\",s1iFsoPY8:tagName03??props.s1iFsoPY8??\"16S\",sJaN_PW70:_06??props.sJaN_PW70??\"Active\",TpDV1G3CF:_03??props.TpDV1G3CF??\"Active\",uLWD1XIx7:tagName01??props.uLWD1XIx7??\"MIRA 5S\",WmZ7pOpky:_01??props.WmZ7pOpky??\"Active\",Y_DUqESfC:tagName02??props.Y_DUqESfC??\"9S\"};};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,MuvYKca5m,Cbqqkywya,qFRgyrH6v,bEpxta8sW,uLWD1XIx7,Y_DUqESfC,s1iFsoPY8,WmZ7pOpky,AQXhM0_Sz,TpDV1G3CF,AZweSjfFv,j7p72Mo6S,sJaN_PW70,LuhTB6CHu,LO4pBYf5R,ggV34xEjg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Ths0hEJiS\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const visible=isSet(Y_DUqESfC);const visible1=isSet(s1iFsoPY8);const router=useRouter();const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1ix6rnc\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Ths0hEJiS\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b2932d0e-4085-4c46-a8f8-66a88bdcdb4d, rgba(35, 91, 188, 0.05))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"3px 4px 27px 5px rgba(35, 91, 188, 0.2)\",...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n7r5vy\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"rvAADOO03\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bx6wzq\",\"data-framer-name\":\"Heading an image\",layoutDependency:layoutDependency,layoutId:\"CZzQGdtqd\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-p73cad\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"T7Uzbk4A_\",style:{backgroundColor:\"rgba(35, 91, 188, 0.1)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-c95s2v\",\"data-styles-preset\":\"N2uVrHkx5\",children:\"MIRA\\xa0S\"})}),className:\"framer-1o16hp3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MHwo0W0ep\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:MuvYKca5m,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||990)-16-995)/1*0)+0+0+0+68),sizes:\"272px\",...toResponsiveImage(Cbqqkywya),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-mrsgua\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"wimtsSWGE\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qiv5b6\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"fIHk8jjeB\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-193l1kb\",\"data-framer-name\":\"Price Container\",layoutDependency:layoutDependency,layoutId:\"apxCo3UF8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e0qtap\",\"data-framer-name\":\"Description  Price\",layoutDependency:layoutDependency,layoutId:\"h3beKe7xd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ws9g8q\",layoutDependency:layoutDependency,layoutId:\"TjdaUxT0C\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8qbqx5\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"RYzlDEHbm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-farz4g\",\"data-styles-preset\":\"dYWELVq2U\",children:\"Priser fra\"})}),className:\"framer-10uwrti\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xtwjYx8_4\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qg4exh\",\"data-styles-preset\":\"tpPIAAVeY\",children:\"Price\"})}),className:\"framer-1eyn751\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"d9tZ4HY8H\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:qFRgyrH6v,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-160i2k4\",layoutDependency:layoutDependency,layoutId:\"IOgkyxk_z\",style:{backgroundColor:\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-farz4g\",\"data-styles-preset\":\"dYWELVq2U\",children:\"ex. moms\"})}),className:\"framer-1yqh1tj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tj6IbOFPi\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-farz4g\",\"data-styles-preset\":\"dYWELVq2U\"})}),className:\"framer-115ea4l\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"biPf9O_Ep\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18mde98\",\"data-framer-name\":\"Description \",layoutDependency:layoutDependency,layoutId:\"t16rFUyGw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-farz4g\",\"data-styles-preset\":\"dYWELVq2U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4e46bcc-1885-478c-b67d-c38328fddf6b, rgb(7, 1, 17)))\"},children:\"Description \"})}),className:\"framer-12uvob7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rs2sURZxt\",style:{\"--extracted-r6o4lv\":\"var(--token-a4e46bcc-1885-478c-b67d-c38328fddf6b, rgb(7, 1, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:bEpxta8sW,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bg2qao\",\"data-framer-name\":\"Tag Wrapper\",layoutDependency:layoutDependency,layoutId:\"XF5kxOpJl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||990)-16-995)/1*0)+0+265+0+0+0+0+0+231+0+64+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cihj5f-container\",layoutDependency:layoutDependency,layoutId:\"R8u7UbToN-container\",children:/*#__PURE__*/_jsx(LaserTagButton,{height:\"100%\",id:\"R8u7UbToN\",layoutId:\"R8u7UbToN\",M8Ph3bgqC:uLWD1XIx7,width:\"100%\"})})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||990)-16-995)/1*0)+0+265+0+0+0+0+0+231+0+64+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18lqqrf-container\",layoutDependency:layoutDependency,layoutId:\"yq5iwPGhk-container\",children:/*#__PURE__*/_jsx(LaserTagButton,{height:\"100%\",id:\"yq5iwPGhk\",layoutId:\"yq5iwPGhk\",M8Ph3bgqC:Y_DUqESfC,width:\"100%\"})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||990)-16-995)/1*0)+0+265+0+0+0+0+0+231+0+64+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i8x9a8-container\",layoutDependency:layoutDependency,layoutId:\"U5dAxgIBb-container\",children:/*#__PURE__*/_jsx(LaserTagButton,{height:\"100%\",id:\"U5dAxgIBb\",layoutId:\"U5dAxgIBb\",M8Ph3bgqC:s1iFsoPY8,width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jp6wdv\",\"data-framer-name\":\"All value wrapper\",layoutDependency:layoutDependency,layoutId:\"wmuGFJlMV\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||990)-16-995)/1*0)+0+265+0+0+0+346+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14tvjzp-container\",layoutDependency:layoutDependency,layoutId:\"jtgUYxaHO-container\",children:/*#__PURE__*/_jsx(LasersCardValue,{amCkwpSP_:1,height:\"100%\",id:\"jtgUYxaHO\",layoutId:\"jtgUYxaHO\",style:{width:\"100%\"},variant:\"zAynPNpGl\",w0UKeqjLa:WmZ7pOpky,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||990)-16-995)/1*0)+0+265+0+0+0+346+0+54,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cnlh3p-container\",layoutDependency:layoutDependency,layoutId:\"CyXd66UY0-container\",children:/*#__PURE__*/_jsx(LasersCardValue,{amCkwpSP_:1,height:\"100%\",id:\"CyXd66UY0\",layoutId:\"CyXd66UY0\",style:{width:\"100%\"},variant:\"wKK9V2wc5\",w0UKeqjLa:AQXhM0_Sz,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||990)-16-995)/1*0)+0+265+0+0+0+346+0+108,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ufxl4y-container\",layoutDependency:layoutDependency,layoutId:\"XYGJZGeHZ-container\",children:/*#__PURE__*/_jsx(LasersCardValue,{amCkwpSP_:1,height:\"100%\",id:\"XYGJZGeHZ\",layoutId:\"XYGJZGeHZ\",style:{width:\"100%\"},variant:\"zAynPNpGl\",w0UKeqjLa:TpDV1G3CF,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||990)-16-995)/1*0)+0+265+0+0+0+346+0+162,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4m9n1d-container\",layoutDependency:layoutDependency,layoutId:\"sbq2AAww_-container\",children:/*#__PURE__*/_jsx(LasersCardValue,{amCkwpSP_:1,height:\"100%\",id:\"sbq2AAww_\",layoutId:\"sbq2AAww_\",style:{width:\"100%\"},variant:\"wKK9V2wc5\",w0UKeqjLa:AZweSjfFv,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||990)-16-995)/1*0)+0+265+0+0+0+346+0+216,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jw2n68-container\",layoutDependency:layoutDependency,layoutId:\"G5Nwsl09z-container\",children:/*#__PURE__*/_jsx(LasersCardValue,{amCkwpSP_:LO4pBYf5R,height:\"100%\",id:\"G5Nwsl09z\",layoutId:\"G5Nwsl09z\",style:{width:\"100%\"},variant:\"zAynPNpGl\",w0UKeqjLa:j7p72Mo6S,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||990)-16-995)/1*0)+0+265+0+0+0+346+0+270,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ud1nt5-container\",layoutDependency:layoutDependency,layoutId:\"FHFFEimCD-container\",children:/*#__PURE__*/_jsx(LasersCardValue,{amCkwpSP_:ggV34xEjg,height:\"100%\",id:\"FHFFEimCD\",layoutId:\"FHFFEimCD\",style:{width:\"100%\"},variant:\"wKK9V2wc5\",w0UKeqjLa:sJaN_PW70,width:\"100%\"})})})]})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m7m6pu\",layoutDependency:layoutDependency,layoutId:\"dxoHSl298\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ce8LqYsZc\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+0+(0+935+((componentViewport?.height||990)-16-995)/1*1)+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ga54o9-container\",layoutDependency:layoutDependency,layoutId:\"yLurRpXC9-container\",children:/*#__PURE__*/_jsx(ButtonNavigation,{GPOFx2M9S:LuhTB6CHu,height:\"100%\",id:\"yLurRpXC9\",layoutId:\"yLurRpXC9\",style:{width:\"100%\"},SVINTT45q:\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\",variant:\"k902paJv0\",width:\"100%\",xaW7KxkRA:resolvedLinks[0],ZKQZnUQ77:{borderColor:'var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188)) /* {\"name\":\"PRIMARY 100%\"} */',borderStyle:\"solid\",borderWidth:1}})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cqsCs.framer-2i3t10, .framer-cqsCs .framer-2i3t10 { display: block; }\",\".framer-cqsCs.framer-1ix6rnc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 16px 0px; position: relative; width: 308px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cqsCs .framer-n7r5vy, .framer-cqsCs .framer-e0qtap { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cqsCs .framer-bx6wzq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cqsCs .framer-p73cad { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cqsCs .framer-1o16hp3 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-cqsCs .framer-mrsgua { flex: none; height: 173px; overflow: hidden; position: relative; width: 272px; }\",\".framer-cqsCs .framer-qiv5b6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cqsCs .framer-193l1kb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cqsCs .framer-1ws9g8q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cqsCs .framer-8qbqx5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cqsCs .framer-10uwrti, .framer-cqsCs .framer-1eyn751, .framer-cqsCs .framer-1yqh1tj, .framer-cqsCs .framer-115ea4l { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-cqsCs .framer-160i2k4 { flex: none; height: 3px; overflow: visible; position: relative; width: 178px; }\",\".framer-cqsCs .framer-18mde98 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-cqsCs .framer-12uvob7 { flex: none; height: 52px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-cqsCs .framer-bg2qao { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cqsCs .framer-1cihj5f-container, .framer-cqsCs .framer-18lqqrf-container, .framer-cqsCs .framer-1i8x9a8-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-cqsCs .framer-1jp6wdv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cqsCs .framer-14tvjzp-container, .framer-cqsCs .framer-1cnlh3p-container, .framer-cqsCs .framer-ufxl4y-container, .framer-cqsCs .framer-4m9n1d-container, .framer-cqsCs .framer-jw2n68-container, .framer-cqsCs .framer-ud1nt5-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-cqsCs .framer-m7m6pu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-cqsCs .framer-1ga54o9-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cqsCs .framer-n7r5vy, .framer-cqsCs .framer-bx6wzq, .framer-cqsCs .framer-p73cad, .framer-cqsCs .framer-193l1kb, .framer-cqsCs .framer-e0qtap, .framer-cqsCs .framer-1ws9g8q, .framer-cqsCs .framer-8qbqx5, .framer-cqsCs .framer-18mde98, .framer-cqsCs .framer-bg2qao, .framer-cqsCs .framer-1jp6wdv, .framer-cqsCs .framer-m7m6pu { gap: 0px; } .framer-cqsCs .framer-n7r5vy > *, .framer-cqsCs .framer-193l1kb > *, .framer-cqsCs .framer-e0qtap > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-cqsCs .framer-n7r5vy > :first-child, .framer-cqsCs .framer-bx6wzq > :first-child, .framer-cqsCs .framer-193l1kb > :first-child, .framer-cqsCs .framer-e0qtap > :first-child, .framer-cqsCs .framer-1ws9g8q > :first-child, .framer-cqsCs .framer-8qbqx5 > :first-child, .framer-cqsCs .framer-18mde98 > :first-child, .framer-cqsCs .framer-1jp6wdv > :first-child { margin-top: 0px; } .framer-cqsCs .framer-n7r5vy > :last-child, .framer-cqsCs .framer-bx6wzq > :last-child, .framer-cqsCs .framer-193l1kb > :last-child, .framer-cqsCs .framer-e0qtap > :last-child, .framer-cqsCs .framer-1ws9g8q > :last-child, .framer-cqsCs .framer-8qbqx5 > :last-child, .framer-cqsCs .framer-18mde98 > :last-child, .framer-cqsCs .framer-1jp6wdv > :last-child { margin-bottom: 0px; } .framer-cqsCs .framer-bx6wzq > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-cqsCs .framer-p73cad > *, .framer-cqsCs .framer-bg2qao > *, .framer-cqsCs .framer-m7m6pu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-cqsCs .framer-p73cad > :first-child, .framer-cqsCs .framer-bg2qao > :first-child, .framer-cqsCs .framer-m7m6pu > :first-child { margin-left: 0px; } .framer-cqsCs .framer-p73cad > :last-child, .framer-cqsCs .framer-bg2qao > :last-child, .framer-cqsCs .framer-m7m6pu > :last-child { margin-right: 0px; } .framer-cqsCs .framer-1ws9g8q > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cqsCs .framer-8qbqx5 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-cqsCs .framer-18mde98 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-cqsCs .framer-1jp6wdv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-cqsCs[data-border=\"true\"]::after, .framer-cqsCs [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 990\n * @framerIntrinsicWidth 308\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"MuvYKca5m\":\"cardHeading\",\"Cbqqkywya\":\"cardImage\",\"qFRgyrH6v\":\"priceAmount\",\"bEpxta8sW\":\"description\",\"uLWD1XIx7\":\"tagName01\",\"Y_DUqESfC\":\"tagName02\",\"s1iFsoPY8\":\"tagName03\",\"WmZ7pOpky\":\"_01\",\"AQXhM0_Sz\":\"_02\",\"TpDV1G3CF\":\"_03\",\"AZweSjfFv\":\"_04\",\"j7p72Mo6S\":\"_05\",\"sJaN_PW70\":\"_06\",\"LuhTB6CHu\":\"buttonName\",\"LO4pBYf5R\":\"opacity01\",\"ggV34xEjg\":\"opacity02\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBHbWtTJEm=withCSS(Component,css,\"framer-cqsCs\");export default FramerBHbWtTJEm;FramerBHbWtTJEm.displayName=\"Lasers/ card\";FramerBHbWtTJEm.defaultProps={height:990,width:308};addPropertyControls(FramerBHbWtTJEm,{MuvYKca5m:{defaultValue:\"MIRA\\xa0S\",displayTextArea:false,title:\"Card Heading\",type:ControlType.String},Cbqqkywya:{title:\"Card Image\",type:ControlType.ResponsiveImage},qFRgyrH6v:{defaultValue:\"Price\",displayTextArea:false,title:\"Price Amount\",type:ControlType.String},bEpxta8sW:{defaultValue:\"Description \",displayTextArea:false,title:\"Description \",type:ControlType.String},uLWD1XIx7:{defaultValue:\"MIRA 5S\",displayTextArea:false,title:\"Tag Name 01\",type:ControlType.String},Y_DUqESfC:{defaultValue:\"9S\",displayTextArea:false,title:\"Tag Name 02\",type:ControlType.String},s1iFsoPY8:{defaultValue:\"16S\",displayTextArea:false,title:\"Tag Name 03\",type:ControlType.String},WmZ7pOpky:{defaultValue:\"Active\",displayTextArea:false,title:\"01\",type:ControlType.String},AQXhM0_Sz:{defaultValue:\"Active\",displayTextArea:false,title:\"02\",type:ControlType.String},TpDV1G3CF:{defaultValue:\"Active\",displayTextArea:false,title:\"03\",type:ControlType.String},AZweSjfFv:{defaultValue:\"Active\",displayTextArea:false,title:\"04\",type:ControlType.String},j7p72Mo6S:{defaultValue:\"Active\",displayTextArea:false,title:\"05\",type:ControlType.String},sJaN_PW70:{defaultValue:\"Active\",displayTextArea:false,title:\"06\",type:ControlType.String},LuhTB6CHu:{defaultValue:\"Button\",displayTextArea:false,title:\"Button Name\",type:ControlType.String},LO4pBYf5R:{defaultValue:1,max:1,min:0,step:.01,title:\"Opacity 01\",type:ControlType.Number},ggV34xEjg:{defaultValue:1,max:1,min:0,step:.01,title:\"Opacity 02\",type:ControlType.Number}});addFonts(FramerBHbWtTJEm,[{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\"}]},...LaserTagButtonFonts,...LasersCardValueFonts,...ButtonNavigationFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBHbWtTJEm\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"308\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"990\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"MuvYKca5m\\\":\\\"cardHeading\\\",\\\"Cbqqkywya\\\":\\\"cardImage\\\",\\\"qFRgyrH6v\\\":\\\"priceAmount\\\",\\\"bEpxta8sW\\\":\\\"description\\\",\\\"uLWD1XIx7\\\":\\\"tagName01\\\",\\\"Y_DUqESfC\\\":\\\"tagName02\\\",\\\"s1iFsoPY8\\\":\\\"tagName03\\\",\\\"WmZ7pOpky\\\":\\\"_01\\\",\\\"AQXhM0_Sz\\\":\\\"_02\\\",\\\"TpDV1G3CF\\\":\\\"_03\\\",\\\"AZweSjfFv\\\":\\\"_04\\\",\\\"j7p72Mo6S\\\":\\\"_05\\\",\\\"sJaN_PW70\\\":\\\"_06\\\",\\\"LuhTB6CHu\\\":\\\"buttonName\\\",\\\"LO4pBYf5R\\\":\\\"opacity01\\\",\\\"ggV34xEjg\\\":\\\"opacity02\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BHbWtTJEm.map", "// Generated by Framer (0847096)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-medium\",\"FS;Poppins-bold\",\"FS;Poppins-bold italic\",\"FS;Poppins-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K4RHKGAGLQZBXEZQT2O2AGSLKJF2E4YC/JRUTXNFPWLFGIEVSSEYOW7EP7TYM3V6A/UCDYLFFGLZRGCFY5GYDYM5LDB52BAR5M.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/JQL34MORONR7D7BXOVTX3KBGJGEJQ5BJ/CKUZVY5SFANCFAT7FS3MP6ZL4BMEWCJE/NOLRWF3JBJ434MILPG5RB6R2B4HGRSZB.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/4HH4RITHYMRL7VREMN2WV2L6LQZKPRWE/ZWMGJ4LKTJ4NT5NKCHS5WLI6CRRRO2SE/OFRM3ATAEVJKZWGG6S4JN4P6SBPN2BLD.woff2\",weight:\"500\"}]}];export const css=['.framer-m9THs .framer-styles-preset-1msjgko:not(.rich-text-wrapper), .framer-m9THs .framer-styles-preset-1msjgko.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a4e46bcc-1885-478c-b67d-c38328fddf6b, #070111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-m9THs\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4d22d44)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ygxtxqAKBDvjdiDE5HU2/Q2DGVpJxR300q7U0h7Gx/bcfW7Xahe.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/gRZWIFNpFmt3uUnnzjYS/ERcbl7cnASSY32Ph0exU/bxa1OPKdV.js\";const serializationHash=\"framer-blB4e\";const variantClassNames={qctX67vCo:\"framer-v-g52gyd\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};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.create(React.Fragment);const getProps=({comment,height,id,name1,title,visible,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,DdTPgiBs3:(_ref=title!==null&&title!==void 0?title:props.DdTPgiBs3)!==null&&_ref!==void 0?_ref:\"Title\",KrEN3P1nv:(_ref1=comment!==null&&comment!==void 0?comment:props.KrEN3P1nv)!==null&&_ref1!==void 0?_ref1:\"Comment\",w6QEYMrny:(_ref2=visible!==null&&visible!==void 0?visible:props.w6QEYMrny)!==null&&_ref2!==void 0?_ref2:true,ZhBoi9VCs:(_ref3=name1!==null&&name1!==void 0?name1:props.ZhBoi9VCs)!==null&&_ref3!==void 0?_ref3:\"Name\"};};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,KrEN3P1nv,ZhBoi9VCs,DdTPgiBs3,w6QEYMrny,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"qctX67vCo\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-g52gyd\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"qctX67vCo\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, rgb(255, 255, 255))\",boxShadow:\"0px 0px 29.5px -19px rgb(36, 92, 189)\",...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nwrkve\",\"data-framer-name\":\"Container wrapper\",layoutDependency:layoutDependency,layoutId:\"wjZsYWV3z\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jvrro2\",\"data-framer-name\":\"Star An logo\",layoutDependency:layoutDependency,layoutId:\"CcFTj2U7V\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d3tool\",\"data-styles-preset\":\"bxa1OPKdV\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f14d6b27-171d-4d85-a006-d39db28d5945, rgba(7, 1, 17, 0.65)))\"},children:\"Comment\"})}),className:\"framer-1ha6yse\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XS6jnpvoK\",style:{\"--extracted-r6o4lv\":\"var(--token-f14d6b27-171d-4d85-a006-d39db28d5945, rgba(7, 1, 17, 0.65))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:KrEN3P1nv,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rxq7lu\",\"data-framer-name\":\"Commenter wrapper\",layoutDependency:layoutDependency,layoutId:\"lVPLmgnlX\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1juqe8c\",\"data-framer-name\":\"Name an title\",layoutDependency:layoutDependency,layoutId:\"spzT3Emi9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1msjgko\",\"data-styles-preset\":\"bcfW7Xahe\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ab5b3b15-3187-494e-971f-520495633970, rgb(0, 0, 0)))\"},children:\"Name\"})}),className:\"framer-z61ww9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fh40CABh8\",style:{\"--extracted-r6o4lv\":\"var(--token-ab5b3b15-3187-494e-971f-520495633970, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ZhBoi9VCs,verticalAlignment:\"top\",withExternalLayout:true}),w6QEYMrny&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d3tool\",\"data-styles-preset\":\"bxa1OPKdV\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188)))\"},children:\"Title\"})}),className:\"framer-m4ftmk\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wX0i2tflf\",style:{\"--extracted-r6o4lv\":\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DdTPgiBs3,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-blB4e.framer-rq8gt6, .framer-blB4e .framer-rq8gt6 { display: block; }\",\".framer-blB4e.framer-g52gyd { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 431px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 434px; }\",\".framer-blB4e .framer-1nwrkve { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-blB4e .framer-1jvrro2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-blB4e .framer-1ha6yse, .framer-blB4e .framer-z61ww9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-blB4e .framer-1rxq7lu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-blB4e .framer-1juqe8c { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-blB4e .framer-m4ftmk { flex: none; height: auto; max-width: 302px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-blB4e.framer-g52gyd, .framer-blB4e .framer-1nwrkve, .framer-blB4e .framer-1jvrro2, .framer-blB4e .framer-1rxq7lu, .framer-blB4e .framer-1juqe8c { gap: 0px; } .framer-blB4e.framer-g52gyd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-blB4e.framer-g52gyd > :first-child, .framer-blB4e .framer-1nwrkve > :first-child, .framer-blB4e .framer-1jvrro2 > :first-child, .framer-blB4e .framer-1juqe8c > :first-child { margin-top: 0px; } .framer-blB4e.framer-g52gyd > :last-child, .framer-blB4e .framer-1nwrkve > :last-child, .framer-blB4e .framer-1jvrro2 > :last-child, .framer-blB4e .framer-1juqe8c > :last-child { margin-bottom: 0px; } .framer-blB4e .framer-1nwrkve > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-blB4e .framer-1jvrro2 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-blB4e .framer-1rxq7lu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-blB4e .framer-1rxq7lu > :first-child { margin-left: 0px; } .framer-blB4e .framer-1rxq7lu > :last-child { margin-right: 0px; } .framer-blB4e .framer-1juqe8c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 431\n * @framerIntrinsicWidth 434\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"KrEN3P1nv\":\"comment\",\"ZhBoi9VCs\":\"name1\",\"DdTPgiBs3\":\"title\",\"w6QEYMrny\":\"visible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCT70IM8PT=withCSS(Component,css,\"framer-blB4e\");export default FramerCT70IM8PT;FramerCT70IM8PT.displayName=\"Testimonial/Card\";FramerCT70IM8PT.defaultProps={height:431,width:434};addPropertyControls(FramerCT70IM8PT,{KrEN3P1nv:{defaultValue:\"Comment\",displayTextArea:true,title:\"Comment\",type:ControlType.String},ZhBoi9VCs:{defaultValue:\"Name\",displayTextArea:false,title:\"Name\",type:ControlType.String},DdTPgiBs3:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},w6QEYMrny:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean}});addFonts(FramerCT70IM8PT,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCT70IM8PT\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"431\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"KrEN3P1nv\\\":\\\"comment\\\",\\\"ZhBoi9VCs\\\":\\\"name1\\\",\\\"DdTPgiBs3\\\":\\\"title\\\",\\\"w6QEYMrny\\\":\\\"visible\\\"}\",\"framerIntrinsicWidth\":\"434\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CT70IM8PT.map", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/jPEncqLLm6IJWViyqFO2/nWBYZDq73YCkRYgVkzbx/b7fGoAKds.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/gRZWIFNpFmt3uUnnzjYS/ERcbl7cnASSY32Ph0exU/bxa1OPKdV.js\";const serializationHash=\"framer-s9Yw6\";const variantClassNames={I1NOrM431:\"framer-v-1qptwv9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const 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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({description,heading,height,icon,id,width,...props})=>{return{...props,Ac3QVduyp:heading??props.Ac3QVduyp??\"Heading\",FLJ4kdeFC:description??props.FLJ4kdeFC??\"Card Description \",xnSrc0bp2:icon??props.xnSrc0bp2};};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,xnSrc0bp2,Ac3QVduyp,FLJ4kdeFC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"I1NOrM431\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1qptwv9\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"I1NOrM431\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(234, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(15px)\",backgroundColor:\"rgba(255, 255, 255, 0.05)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(15px)\",...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0),sizes:\"36px\",...toResponsiveImage(xnSrc0bp2),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1x1im5e\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"HDD1JKbJb\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8zac2h\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"wmri7npps\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1ltbyue\",\"data-styles-preset\":\"b7fGoAKds\",children:\"Heading\"})}),className:\"framer-d85opv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mP1Rjxjau\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Ac3QVduyp,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d3tool\",\"data-styles-preset\":\"bxa1OPKdV\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-57a4af5b-3315-460f-ae99-c664e535139f, rgb(240, 240, 240)))\"},children:\"Card Description \"})}),className:\"framer-1uap1h1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ghOf_9BKb\",style:{\"--extracted-r6o4lv\":\"var(--token-57a4af5b-3315-460f-ae99-c664e535139f, rgb(240, 240, 240))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:FLJ4kdeFC,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-s9Yw6.framer-3kyno4, .framer-s9Yw6 .framer-3kyno4 { display: block; }\",\".framer-s9Yw6.framer-1qptwv9 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 302px; will-change: var(--framer-will-change-override, transform); }\",\".framer-s9Yw6 .framer-1x1im5e { flex: none; height: 36px; overflow: visible; position: relative; width: 36px; }\",\".framer-s9Yw6 .framer-8zac2h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s9Yw6 .framer-d85opv, .framer-s9Yw6 .framer-1uap1h1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-s9Yw6.framer-1qptwv9, .framer-s9Yw6 .framer-8zac2h { gap: 0px; } .framer-s9Yw6.framer-1qptwv9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-s9Yw6.framer-1qptwv9 > :first-child, .framer-s9Yw6 .framer-8zac2h > :first-child { margin-top: 0px; } .framer-s9Yw6.framer-1qptwv9 > :last-child, .framer-s9Yw6 .framer-8zac2h > :last-child { margin-bottom: 0px; } .framer-s9Yw6 .framer-8zac2h > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-s9Yw6[data-border=\"true\"]::after, .framer-s9Yw6 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 179\n * @framerIntrinsicWidth 302\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"xnSrc0bp2\":\"icon\",\"Ac3QVduyp\":\"heading\",\"FLJ4kdeFC\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerP8grC1VH8=withCSS(Component,css,\"framer-s9Yw6\");export default FramerP8grC1VH8;FramerP8grC1VH8.displayName=\"Introducing/ card\";FramerP8grC1VH8.defaultProps={height:179,width:302};addPropertyControls(FramerP8grC1VH8,{xnSrc0bp2:{title:\"Icon\",type:ControlType.ResponsiveImage},Ac3QVduyp:{defaultValue:\"Heading\",displayTextArea:false,title:\"Heading\",type:ControlType.String},FLJ4kdeFC:{defaultValue:\"Card Description \",displayTextArea:true,title:\"Description \",type:ControlType.String}});addFonts(FramerP8grC1VH8,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerP8grC1VH8\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"xnSrc0bp2\\\":\\\"icon\\\",\\\"Ac3QVduyp\\\":\\\"heading\\\",\\\"FLJ4kdeFC\\\":\\\"description\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"179\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"302\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./P8grC1VH8.map", "// Generated by Framer (cbb0119)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/vholEWX2e8uB2l3UCqhI/R1ovnYawY63pIkb0PXtd/cKYmTr9OA.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/h66YO5EeUIlVIGkbhbzP/wNxfNxDCR2b8TkxknGsJ/mHkOXjWHn.js\";const serializationHash=\"framer-H02V8\";const variantClassNames={n_nOlMGlr:\"framer-v-1x7e9v1\"};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={bounce:.2,delay:0,duration:.4,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.create(React.Fragment);const getProps=({cardDescrib,cardHeading,height,icon,id,width,...props})=>{var _ref,_ref1;return{...props,Cht_ZBydN:(_ref=cardDescrib!==null&&cardDescrib!==void 0?cardDescrib:props.Cht_ZBydN)!==null&&_ref!==void 0?_ref:\"Card Description \",s17QzORGr:(_ref1=cardHeading!==null&&cardHeading!==void 0?cardHeading:props.s17QzORGr)!==null&&_ref1!==void 0?_ref1:\"Card Heading\",sEbKYk393:icon!==null&&icon!==void 0?icon:props.sEbKYk393};};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,sEbKYk393,s17QzORGr,Cht_ZBydN,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"n_nOlMGlr\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1x7e9v1\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"n_nOlMGlr\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, rgb(255, 255, 255))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 10px 30px 0px rgba(0, 0, 0, 0.03)\",...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mvcef2\",\"data-framer-name\":\"All Content wrapper\",layoutDependency:layoutDependency,layoutId:\"lDYtiodJ3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+0+0+0),sizes:\"64px\",...toResponsiveImage(sEbKYk393),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1tfjxz0\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"ypGLYJUgA\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1duxjn9\",\"data-styles-preset\":\"mHkOXjWHn\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a4e46bcc-1885-478c-b67d-c38328fddf6b, rgb(7, 1, 17)))\"},children:\"Card Heading\"})}),className:\"framer-1pagxmq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ggEKJjDLN\",style:{\"--extracted-a0htzi\":\"var(--token-a4e46bcc-1885-478c-b67d-c38328fddf6b, rgb(7, 1, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:s17QzORGr,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f9e0qn\",\"data-framer-name\":\"line\",layoutDependency:layoutDependency,layoutId:\"D_faS9MlJ\",style:{backgroundColor:\"rgba(218, 218, 218, 0.5)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ahz4h0\",\"data-styles-preset\":\"cKYmTr9OA\",children:\"Card Description \"})}),className:\"framer-5pfkqk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AJgvmtxwK\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Cht_ZBydN,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-H02V8.framer-1jhhap5, .framer-H02V8 .framer-1jhhap5 { display: block; }\",\".framer-H02V8.framer-1x7e9v1 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 293px; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 444px; will-change: var(--framer-will-change-override, transform); }\",\".framer-H02V8 .framer-mvcef2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-H02V8 .framer-1tfjxz0 { flex: none; height: 64px; overflow: hidden; position: relative; width: 64px; }\",\".framer-H02V8 .framer-1pagxmq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-H02V8 .framer-1f9e0qn { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-H02V8 .framer-5pfkqk { flex: none; height: auto; max-width: 396px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-H02V8.framer-1x7e9v1, .framer-H02V8 .framer-mvcef2 { gap: 0px; } .framer-H02V8.framer-1x7e9v1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-H02V8.framer-1x7e9v1 > :first-child, .framer-H02V8 .framer-mvcef2 > :first-child { margin-top: 0px; } .framer-H02V8.framer-1x7e9v1 > :last-child, .framer-H02V8 .framer-mvcef2 > :last-child { margin-bottom: 0px; } .framer-H02V8 .framer-mvcef2 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 293\n * @framerIntrinsicWidth 444\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"sEbKYk393\":\"icon\",\"s17QzORGr\":\"cardHeading\",\"Cht_ZBydN\":\"cardDescrib\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTbtoKi6JS=withCSS(Component,css,\"framer-H02V8\");export default FramerTbtoKi6JS;FramerTbtoKi6JS.displayName=\"Benefits/ card\";FramerTbtoKi6JS.defaultProps={height:293,width:444};addPropertyControls(FramerTbtoKi6JS,{sEbKYk393:{title:\"Icon\",type:ControlType.ResponsiveImage},s17QzORGr:{defaultValue:\"Card Heading\",displayTextArea:false,title:\"Card Heading\",type:ControlType.String},Cht_ZBydN:{defaultValue:\"Card Description \",displayTextArea:true,title:\"Card Describ\",type:ControlType.String}});addFonts(FramerTbtoKi6JS,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTbtoKi6JS\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"sEbKYk393\\\":\\\"icon\\\",\\\"s17QzORGr\\\":\\\"cardHeading\\\",\\\"Cht_ZBydN\\\":\\\"cardDescrib\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"444\",\"framerIntrinsicHeight\":\"293\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-bold\",\"FS;Poppins-black\",\"FS;Poppins-black italic\",\"FS;Poppins-bold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/22GWRXQXMICIWABQXFWKIWZIILKO5JDJ/2BBKMSVLV5CSDOZ7HEEECOTKPOVVJOC3/RNFY4UJD36462ZMGEIC5I7KNE73BPOAU.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2PWH5ACYHQEXIHGDLY5OWYMAC3F65AK5/OD6JOLYDRZZOKZGAPOMF7QEWPC5DTZS6/F5IVXJVPQ2DIFNG5HQZ7NI5VG7P7VDLV.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/JQL34MORONR7D7BXOVTX3KBGJGEJQ5BJ/CKUZVY5SFANCFAT7FS3MP6ZL4BMEWCJE/NOLRWF3JBJ434MILPG5RB6R2B4HGRSZB.woff2\",weight:\"700\"}]}];export const css=['.framer-zDcE3 .framer-styles-preset-1hrb1ne:not(.rich-text-wrapper), .framer-zDcE3 .framer-styles-preset-1hrb1ne.rich-text-wrapper h1 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1919px) and (min-width: 1200px) { .framer-zDcE3 .framer-styles-preset-1hrb1ne:not(.rich-text-wrapper), .framer-zDcE3 .framer-styles-preset-1hrb1ne.rich-text-wrapper h1 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-zDcE3 .framer-styles-preset-1hrb1ne:not(.rich-text-wrapper), .framer-zDcE3 .framer-styles-preset-1hrb1ne.rich-text-wrapper h1 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-zDcE3 .framer-styles-preset-1hrb1ne:not(.rich-text-wrapper), .framer-zDcE3 .framer-styles-preset-1hrb1ne.rich-text-wrapper h1 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-zDcE3\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (677c5d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import LasersCard from\"#framer/local/canvasComponent/BHbWtTJEm/BHbWtTJEm.js\";import TestimonialCard from\"#framer/local/canvasComponent/CT70IM8PT/CT70IM8PT.js\";import Cta from\"#framer/local/canvasComponent/DloSc0ls3/DloSc0ls3.js\";import ButtonNavigation from\"#framer/local/canvasComponent/Jtah503q3/Jtah503q3.js\";import Navigation from\"#framer/local/canvasComponent/NUCgH2cl7/NUCgH2cl7.js\";import IntroducingCard from\"#framer/local/canvasComponent/P8grC1VH8/P8grC1VH8.js\";import Foooter from\"#framer/local/canvasComponent/qqbEVYOSE/qqbEVYOSE.js\";import BenefitsCard from\"#framer/local/canvasComponent/TbtoKi6JS/TbtoKi6JS.js\";import Contact from\"#framer/local/canvasComponent/TlLdzDn10/TlLdzDn10.js\";import*as sharedStyle1 from\"#framer/local/css/bwAgxVAwG/bwAgxVAwG.js\";import*as sharedStyle2 from\"#framer/local/css/eV6sVEep_/eV6sVEep_.js\";import*as sharedStyle3 from\"#framer/local/css/FtGS0tkBH/FtGS0tkBH.js\";import*as sharedStyle4 from\"#framer/local/css/tpPIAAVeY/tpPIAAVeY.js\";import*as sharedStyle from\"#framer/local/css/UVwSo4TxX/UVwSo4TxX.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const ButtonNavigationFonts=getFonts(ButtonNavigation);const SlideshowFonts=getFonts(Slideshow);const LasersCardFonts=getFonts(LasersCard);const IntroducingCardFonts=getFonts(IntroducingCard);const BenefitsCardFonts=getFonts(BenefitsCard);const TestimonialCardFonts=getFonts(TestimonialCard);const ContactFonts=getFonts(Contact);const CtaFonts=getFonts(Cta);const FoooterFonts=getFonts(Foooter);const breakpoints={KF67LzMFG:\"(max-width: 809px)\",Q8qQrPXi8:\"(min-width: 810px) and (max-width: 1199px)\",rTd9Yi3Gv:\"(min-width: 1920px)\",WQLkyLRf1:\"(min-width: 1200px) and (max-width: 1919px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-sKcnn\";const variantClassNames={KF67LzMFG:\"framer-v-1toldor\",Q8qQrPXi8:\"framer-v-1uhde2a\",rTd9Yi3Gv:\"framer-v-40x7p3\",WQLkyLRf1:\"framer-v-72rtr7\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Large  Desktop \":\"rTd9Yi3Gv\",Desktop:\"WQLkyLRf1\",Phone:\"KF67LzMFG\",Tablet:\"Q8qQrPXi8\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"KF67LzMFG\")return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"KF67LzMFG\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"rTd9Yi3Gv\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11brfkb\",\"data-framer-name\":\"Nav\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4it5n0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, rgb(255, 255, 255))\"},children:[\"Velkommen til det nye\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\"},children:\" betamachines.dk \"}),\"\u2013 vores hjemmeside er blevet opdateret!\"]})}),className:\"framer-ol65aa\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+34,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{layoutScroll:true}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-yxkn1r-container\",nodeId:\"cOhIUY2qD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{variant:\"jhqmL22vN\"},Q8qQrPXi8:{variant:\"jhqmL22vN\"},rTd9Yi3Gv:{variant:\"HCejFIKET\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"cOhIUY2qD\",layoutId:\"cOhIUY2qD\",style:{width:\"100%\"},variant:\"M8IjxizxS\",width:\"100%\"})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rTd9Yi3Gv:{background:{alt:\"\",positionX:\"center\",positionY:\"center\"}}},children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-19dyqwc hidden-1toldor\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lec4fz\",\"data-framer-name\":\"Shadow\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bvh59x-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tbSSZMJ3j\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8qQrPXi8:{progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\",dotsGap:10,dotsInset:7,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:15,showProgressDots:true}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/UsoXAmGxHt81B2gMUPXMY2Ov5Y.svg\",rightArrow:\"https://framerusercontent.com/images/6AJVURHYQ0yfVCfh5G5LVBTQ.svg\",showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:.8,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"tbSSZMJ3j\",intervalControl:1.5,itemAmount:1,layoutId:\"tbSSZMJ3j\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\",dotsGap:8,dotsInset:7,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:15,showProgressDots:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-yfd6o6\",\"data-framer-name\":\"Bg 02\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-n9msyb\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-su5bvl\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xll2up\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lsuggq\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, rgb(255, 255, 255))\"},children:\"Klar til den n\\xe6ste \"}),\"CO2-laserrevolution?\"]})}),className:\"framer-80q1lm\",fonts:[\"FS;Poppins-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h4w3u8\",\"data-styles-preset\":\"UVwSo4TxX\",style:{\"--framer-text-alignment\":\"left\"},children:\"Vi introducerer REDLINE-serien, et sandt ingeni\\xf8rvidunder, der perfektionerer laseren, som vi kender den!\"})}),className:\"framer-1penouw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xng4em\",\"data-framer-name\":\"Button wrapper\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ce8LqYsZc\"},implicitPathVariables:undefined},{href:{webPageId:\"ce8LqYsZc\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14rx5ms-container\",inComponentSlot:true,nodeId:\"eNFSZckPn\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonNavigation,{GPOFx2M9S:\"Kontakt os\",height:\"100%\",id:\"eNFSZckPn\",KbWskjqwA:resolvedLinks[1],layoutId:\"eNFSZckPn\",SVINTT45q:\"rgb(0, 0, 0)\",variant:\"N457kH5Tu\",width:\"100%\",xaW7KxkRA:resolvedLinks[0],ZKQZnUQ77:{borderColor:\"rgba(255, 255, 255, 0.2)\",borderStyle:\"solid\",borderWidth:1}})})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:600,sizes:\"601.1765px\",src:\"https://framerusercontent.com/images/NaI1dSHNCSTLwxy65y3wIRbMWZ0.png\",srcSet:\"https://framerusercontent.com/images/NaI1dSHNCSTLwxy65y3wIRbMWZ0.png?scale-down-to=512 512w,https://framerusercontent.com/images/NaI1dSHNCSTLwxy65y3wIRbMWZ0.png 600w\"},className:\"framer-peokvy\"})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-318l8r\",\"data-framer-name\":\"Bg 1\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-b0ivgb\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-slds0g\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nwo7wi\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nded0x\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, rgb(255, 255, 255))\"},children:\"Vi holder din laser k\\xf8rende\"})}),className:\"framer-1audn4d\",fonts:[\"FS;Poppins-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h4w3u8\",\"data-styles-preset\":\"UVwSo4TxX\",style:{\"--framer-text-alignment\":\"left\"},children:\"Hj\\xe6lpen er kun et opkald v\\xe6k. Fri telefonsupport p\\xe5 alle maskiner.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h4w3u8\",\"data-styles-preset\":\"UVwSo4TxX\",style:{\"--framer-text-alignment\":\"left\"},children:\"Vores teknikere d\\xe6kker hele landet, hvis du for brug for service. Du kan ogs\\xe5 v\\xe6lge en serviceaftale med faste bes\\xf8g.\"})]}),className:\"framer-1q51ljo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3icnsb\",\"data-framer-name\":\"Button wrapper\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ce8LqYsZc\"},implicitPathVariables:undefined},{href:{webPageId:\"ce8LqYsZc\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rvc58f-container\",inComponentSlot:true,nodeId:\"YRSIB9hrm\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonNavigation,{GPOFx2M9S:\"Kontakt os\",height:\"100%\",id:\"YRSIB9hrm\",KbWskjqwA:resolvedLinks1[1],layoutId:\"YRSIB9hrm\",SVINTT45q:\"rgb(0, 0, 0)\",variant:\"N457kH5Tu\",width:\"100%\",xaW7KxkRA:resolvedLinks1[0],ZKQZnUQ77:{borderColor:\"rgba(255, 255, 255, 0.2)\",borderStyle:\"solid\",borderWidth:1}})})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:600,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"601.1765px\",src:\"https://framerusercontent.com/images/AAQGHL054XvXbv6rOZzgzDZpQ.png\",srcSet:\"https://framerusercontent.com/images/AAQGHL054XvXbv6rOZzgzDZpQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/AAQGHL054XvXbv6rOZzgzDZpQ.png 600w\"},className:\"framer-yjr737\"})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b0fejt\",\"data-framer-name\":\"Bg 03\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-boe6s2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vs7an2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-esqqlm\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1an1jvi\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1hrb1ne\",\"data-styles-preset\":\"bwAgxVAwG\",children:[\"Klar til den n\\xe6ste\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\"},children:\" CO2-laserrevolution?\"})]})}),className:\"framer-19ei7vr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h4w3u8\",\"data-styles-preset\":\"UVwSo4TxX\",style:{\"--framer-text-alignment\":\"left\"},children:\"Vi introducerer REDLINE-serien, et sandt ingeni\\xf8rvidunder, der perfektionerer laseren, som vi kender den!\"})}),className:\"framer-ezypym\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wl9rey\",\"data-framer-name\":\"Button wrapper\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ce8LqYsZc\"},implicitPathVariables:undefined},{href:{webPageId:\"ce8LqYsZc\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w2s5c-container\",inComponentSlot:true,nodeId:\"I9JmuYu3h\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonNavigation,{GPOFx2M9S:\"Kontakt os\",height:\"100%\",id:\"I9JmuYu3h\",KbWskjqwA:resolvedLinks2[1],layoutId:\"I9JmuYu3h\",SVINTT45q:\"rgb(0, 0, 0)\",variant:\"N457kH5Tu\",width:\"100%\",xaW7KxkRA:resolvedLinks2[0],ZKQZnUQ77:{borderColor:\"rgba(255, 255, 255, 0.2)\",borderStyle:\"solid\",borderWidth:1}})})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:600,sizes:\"601.1765px\",src:\"https://framerusercontent.com/images/grxMnJCi8EXGKL1WxFaHfbXRKc.png\",srcSet:\"https://framerusercontent.com/images/grxMnJCi8EXGKL1WxFaHfbXRKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/grxMnJCi8EXGKL1WxFaHfbXRKc.png 600w\"},className:\"framer-ypmh36\"})]})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-aygnnu hidden-72rtr7 hidden-40x7p3 hidden-1uhde2a\",\"data-framer-name\":\"Hero Mobile\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xo4euy\",\"data-framer-name\":\"Shadow\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u5dx4g-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ag7ZXdNs8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:100,arrowPadding:8,arrowPaddingBottom:-120,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/UsoXAmGxHt81B2gMUPXMY2Ov5Y.svg\",rightArrow:\"https://framerusercontent.com/images/6AJVURHYQ0yfVCfh5G5LVBTQ.svg\",showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"ag7ZXdNs8\",intervalControl:1.5,itemAmount:1,layoutId:\"ag7ZXdNs8\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\",dotsGap:8,dotsInset:7,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:15,showProgressDots:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rel4lt\",\"data-framer-name\":\"Bg 1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p2n6rx\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bij3xe\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5i0dz9\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, rgb(255, 255, 255))\"},children:\"Klar til den n\\xe6ste \"}),\"CO2-laserrevolution?\"]})}),className:\"framer-19zv0p4\",fonts:[\"FS;Poppins-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ed02ee9e-67ec-4681-a107-f75e749e69e0, rgb(218, 218, 218))\"},children:\"Vi introducerer REDLINE-serien, et sandt ingeni\\xf8rvidunder, der perfektionerer laseren, som vi kender den!\"})}),className:\"framer-ffi3rp\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ldly8u\",\"data-framer-name\":\"Button wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-171ddf0-container\",inComponentSlot:true,nodeId:\"WY_mZMPIo\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonNavigation,{GPOFx2M9S:\"Kontakt os\",height:\"100%\",id:\"WY_mZMPIo\",layoutId:\"WY_mZMPIo\",SVINTT45q:\"rgb(0, 0, 0)\",variant:\"N457kH5Tu\",width:\"100%\",ZKQZnUQ77:{borderColor:\"rgba(255, 255, 255, 0.2)\",borderStyle:\"solid\",borderWidth:1}})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"246px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12oaerb-container\",inComponentSlot:true,nodeId:\"SxnBRx3Xd\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonNavigation,{GPOFx2M9S:\"F\\xe5 flere oplysninger\",height:\"100%\",id:\"SxnBRx3Xd\",layoutId:\"SxnBRx3Xd\",style:{width:\"100%\"},SVINTT45q:\"var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, rgb(255, 255, 255))\",variant:\"k902paJv0\",width:\"100%\",ZKQZnUQ77:{borderColor:\"rgba(255, 255, 255, 0.2)\",borderStyle:\"solid\",borderWidth:1}})})})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1295,pixelWidth:1285,positionX:\"center\",positionY:\"center\",sizes:\"342px\",src:\"https://framerusercontent.com/images/FYh00aPvTFOlNR2MsCyEFMG18.png\",srcSet:\"https://framerusercontent.com/images/FYh00aPvTFOlNR2MsCyEFMG18.png?scale-down-to=1024 1016w,https://framerusercontent.com/images/FYh00aPvTFOlNR2MsCyEFMG18.png 1285w\"},className:\"framer-zq18p0\"})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6o2phs\",\"data-framer-name\":\"Bg 1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-htf5np\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ypyba0\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tadnfb\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, rgb(255, 255, 255))\"},children:\"Klar til den n\\xe6ste \"}),\"CO2-laserrevolution?\"]})}),className:\"framer-4qyby6\",fonts:[\"FS;Poppins-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ed02ee9e-67ec-4681-a107-f75e749e69e0, rgb(218, 218, 218))\"},children:\"Vi introducerer REDLINE-serien, et sandt ingeni\\xf8rvidunder, der perfektionerer laseren, som vi kender den!\"})}),className:\"framer-1rcxmnd\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17ps8f4\",\"data-framer-name\":\"Button wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y2le0h-container\",inComponentSlot:true,nodeId:\"hueXEJ546\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonNavigation,{GPOFx2M9S:\"Kontakt os\",height:\"100%\",id:\"hueXEJ546\",layoutId:\"hueXEJ546\",SVINTT45q:\"rgb(0, 0, 0)\",variant:\"N457kH5Tu\",width:\"100%\",ZKQZnUQ77:{borderColor:\"rgba(255, 255, 255, 0.2)\",borderStyle:\"solid\",borderWidth:1}})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"246px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-190yrp-container\",inComponentSlot:true,nodeId:\"Kmb8dS81G\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonNavigation,{GPOFx2M9S:\"F\\xe5 flere oplysninger\",height:\"100%\",id:\"Kmb8dS81G\",layoutId:\"Kmb8dS81G\",style:{width:\"100%\"},SVINTT45q:\"var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, rgb(255, 255, 255))\",variant:\"k902paJv0\",width:\"100%\",ZKQZnUQ77:{borderColor:\"rgba(255, 255, 255, 0.2)\",borderStyle:\"solid\",borderWidth:1}})})})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:600,sizes:\"342px\",src:\"https://framerusercontent.com/images/NaI1dSHNCSTLwxy65y3wIRbMWZ0.png\",srcSet:\"https://framerusercontent.com/images/NaI1dSHNCSTLwxy65y3wIRbMWZ0.png?scale-down-to=512 512w,https://framerusercontent.com/images/NaI1dSHNCSTLwxy65y3wIRbMWZ0.png 600w\"},className:\"framer-14be7kz\"})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rg7s7w\",\"data-framer-name\":\"Bg 1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lahc0y\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kk8vh7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u4rgk9\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, rgb(255, 255, 255))\"},children:\"Klar til den n\\xe6ste \"}),\"CO2-laserrevolution?\"]})}),className:\"framer-1oblsiy\",fonts:[\"FS;Poppins-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ed02ee9e-67ec-4681-a107-f75e749e69e0, rgb(218, 218, 218))\"},children:\"Vi introducerer REDLINE-serien, et sandt ingeni\\xf8rvidunder, der perfektionerer laseren, som vi kender den!\"})}),className:\"framer-1t0rqc1\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ih7chr\",\"data-framer-name\":\"Button wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cy23eo-container\",inComponentSlot:true,nodeId:\"Jdse5m7_F\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonNavigation,{GPOFx2M9S:\"Kontakt os\",height:\"100%\",id:\"Jdse5m7_F\",layoutId:\"Jdse5m7_F\",SVINTT45q:\"rgb(0, 0, 0)\",variant:\"N457kH5Tu\",width:\"100%\",ZKQZnUQ77:{borderColor:\"rgba(255, 255, 255, 0.2)\",borderStyle:\"solid\",borderWidth:1}})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"246px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-y9uy9-container\",inComponentSlot:true,nodeId:\"pHnTS_AUk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonNavigation,{GPOFx2M9S:\"F\\xe5 flere oplysninger\",height:\"100%\",id:\"pHnTS_AUk\",layoutId:\"pHnTS_AUk\",style:{width:\"100%\"},SVINTT45q:\"var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, rgb(255, 255, 255))\",variant:\"k902paJv0\",width:\"100%\",ZKQZnUQ77:{borderColor:\"rgba(255, 255, 255, 0.2)\",borderStyle:\"solid\",borderWidth:1}})})})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:600,sizes:\"342px\",src:\"https://framerusercontent.com/images/NaI1dSHNCSTLwxy65y3wIRbMWZ0.png\",srcSet:\"https://framerusercontent.com/images/NaI1dSHNCSTLwxy65y3wIRbMWZ0.png?scale-down-to=512 512w,https://framerusercontent.com/images/NaI1dSHNCSTLwxy65y3wIRbMWZ0.png 600w\"},className:\"framer-1flccqq\"})]})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w0hxdb\",\"data-framer-name\":\"Ticker\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tp12u\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-ab5b3b15-3187-494e-971f-520495633970, rgb(0, 0, 0))\"},children:[\"Vores \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\"},children:\"kunder\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-ab5b3b15-3187-494e-971f-520495633970, rgb(0, 0, 0))\"},children:[\"Vores \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\"},children:\"kunder\"})]})}),className:\"framer-7mar0w\",fonts:[\"FS;Poppins-medium\",\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w897ix\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v4fm37\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/oq2ztmVJ8un7hKtGtR7C9Bakh0.png\"}},Q8qQrPXi8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/oq2ztmVJ8un7hKtGtR7C9Bakh0.png\"}},rTd9Yi3Gv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+910+60+126.2+0),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/oq2ztmVJ8un7hKtGtR7C9Bakh0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+60+126.2+0),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/oq2ztmVJ8un7hKtGtR7C9Bakh0.png\"},className:\"framer-e1k9oa\",\"data-framer-name\":\"03\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:206,intrinsicWidth:300,pixelHeight:2846,pixelWidth:1951,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KcocLWchDHobGaUmFkemMByfyYs.png\"}},Q8qQrPXi8:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:206,intrinsicWidth:300,pixelHeight:2846,pixelWidth:1951,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KcocLWchDHobGaUmFkemMByfyYs.png\"}},rTd9Yi3Gv:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:206,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+910+60+126.2+10.5),pixelHeight:2846,pixelWidth:1951,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KcocLWchDHobGaUmFkemMByfyYs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:206,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+60+126.2+10.5),pixelHeight:2846,pixelWidth:1951,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KcocLWchDHobGaUmFkemMByfyYs.png\"},className:\"framer-g13mom\",\"data-framer-name\":\"02\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:68,intrinsicWidth:300,pixelHeight:68,pixelWidth:300,src:\"https://framerusercontent.com/images/ynm2QrdzfEc82Hbl60BPKyVjgic.png\"}},Q8qQrPXi8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:68,intrinsicWidth:300,pixelHeight:68,pixelWidth:300,src:\"https://framerusercontent.com/images/ynm2QrdzfEc82Hbl60BPKyVjgic.png\"}},rTd9Yi3Gv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:68,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+910+60+126.2+14.5),pixelHeight:68,pixelWidth:300,src:\"https://framerusercontent.com/images/ynm2QrdzfEc82Hbl60BPKyVjgic.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:68,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+60+126.2+14.5),pixelHeight:68,pixelWidth:300,src:\"https://framerusercontent.com/images/ynm2QrdzfEc82Hbl60BPKyVjgic.png\"},className:\"framer-h0h9vv\",\"data-framer-name\":\"04\"})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-yjnokc\",\"data-framer-name\":\"Det kongelige akademi\",fill:\"black\",intrinsicHeight:66,intrinsicWidth:66,svg:'<svg width=\"66\" height=\"66\" xmlns=\"http://www.w3.org/2000/svg\"><g fill-rule=\"evenodd\"><path d=\"M40.821 52.932c-.366.046-.883.143-1.403.2-1.214.128-1.612 2.663-3.467 2.798a2.555 2.555 0 0 1-.622-.012l-.029.139s.784.894 2.254.805c2.146-.137 2.724-2.86 3.93-3.376.313.035.731.18 1.1.443l.282-.39c-.733-.47-1.468-.688-2.045-.607M27.43 59.403c-.427 0-.504-.368-1.24-.368h-.679c-.406 0-.523-.136-.523-.33 0-.27.62-.484 1.299-.484.793 0 1.608.233 1.608.736 0 .31-.233.446-.466.446m2.77-2.405c-.949.717-1.53.872-2.072.892-1.143-.156-1.414-.175-1.783-.175-1.2 0-2.015.523-2.015.988 0 .426.446.698.91.698h.95c.562 0 .717.406 1.279.406.581 0 2.402-.832 3.468-1.84a1.808 1.808 0 0 1-.736-.969m8.994 1.763c-.775.116-1.026.582-1.647.582-.387 0-.62-.175-.62-.426 0-.291.31-.407.717-.466.485-.058.969-.27 1.492-.27.407 0 .562.116.562.27 0 .155-.136.252-.504.31m.077-1.046c-.813 0-1.297.31-2.13.31a3.806 3.806 0 0 1-1.957-.678c-.291.31-.64.678-1.124.988.736.64 1.84 1.472 3.332 1.472 1.027 0 1.318-.6 2.054-.658.852-.058 1.065-.446 1.065-.717 0-.368-.484-.717-1.24-.717m-5.836-1.199c-.077-.736-.426-1.278-1.472-1.278-.776 0-1.24.523-1.24 1.336 0 .524.464 1.046 1.085 1.124.697.097.659.369 1.336.369.427 0 .775-.214.911-.505-.387-.232-.562-.542-.62-1.046\"/><path d=\"M34.094 53.727c-.64 0-.562-.233-1.008-.233-.387 0-.62.562-1.007.697-.233.078-1.298.117-1.298.737 0 .097.058.232.117.31l.348-.233a.147.147 0 0 1-.039-.096c0-.136.194-.252.814-.252 1.453 0 1.88.736 1.938 1.356.038.445.173.833.464.949l.465-.31c0-.174-.096-.29-.096-.542 0-.31.135-.562.135-1.066 0-.427-.116-1.317-.833-1.317m-8.934 2.774c-.802.564-1.86 1.146-2.773 1.133l-.654-.009c-1.744-.023-1.474-2.479-2.624-2.494l-2.84-.031-.005.416.877.006c1.467.02 1.057 2.433 3.536 2.545.673.029 1.228.037 1.843.025.873-.008 1.95-.51 2.971-1.19l-.332-.4Zm4.347-.571c-1.855-.135-2.252-2.67-3.467-2.798-.52-.057-1.037-.154-1.403-.2-.577-.081-1.312.137-2.045.608l.282.39c.37-.264.788-.409 1.1-.444 1.207.515 1.784 3.238 3.93 3.376 1.47.089 2.255-.805 2.255-.805l-.03-.139a2.52 2.52 0 0 1-.622.013m16.323-.8c-1.15.015-.88 2.47-2.625 2.495l-.654.008c-.912.013-1.971-.568-2.772-1.133l-.331.401c1.02.68 2.097 1.182 2.97 1.19.615.012 1.17.004 1.844-.025 2.478-.112 2.068-2.526 3.536-2.545l.877-.006-.006-.417-2.84.032Zm7.735-30.829a3.09 3.09 0 0 1 .467-.775c-.452-.394-1.318-.874-2.271-1.14-.484 1.564-.003 3.863 1.806 5.26-.227-.578-.274-.954-.25-1.496-.696-.926-.986-1.655-.95-2.647.352.114.884.432 1.198.798\"/><path d=\"M58.608 38.753a.301.301 0 1 1 .031.602.301.301 0 0 1-.031-.602m-1.879 1.562a.3.3 0 1 1 .032.6.3.3 0 1 1-.032-.6m-5.894 3.454a.301.301 0 1 1-.032-.602.301.301 0 0 1 .032.602m-3.379-8.79a.3.3 0 1 1 0-.6.3.3 0 0 1 0 .6m6.175-.707a.301.301 0 1 1-.417-.435.301.301 0 0 1 .417.435m3.066 1.108c.32-.103.642-.257.972-.493 2.106-1.504 2.525-3.316 2.44-4.765-.08-1.378-.581-2.612-.581-2.612s-.225.228-.658.563c-1.482 1.158-2.224 2.345-2.156 3.51.058.997.353 1.552.717 2.079l.092-.054s-.181-.655-.22-1.321c-.077-1.33.747-2.332 1.727-3.103.06.21.159.68.164 1.181-.024 1.556-.886 3.77-2.455 4.544-.039-1.27-1.282-1.663-1.282-2.935 0-.877.403-2.043.287-3.078-.343-.37-.783-1.1-.856-2.198-.09-1.39.79-2.893 2.043-3.956.118.31.302.862.34 1.448.092 1.39-.506 2.36-1.393 3.766l.081.117c1.635-.842 2.402-2.216 2.278-4.094-.08-1.22-.635-2.212-1.213-3.178-.663 1.096-1.476 1.763-2.19 2.814a4.541 4.541 0 0 0-.814 2.92c.084 1.268.438 1.809 1.13 2.645.132.587-.038 1.283-.164 1.92-.19-.237-.503-.449-.95-.553 0 0-.391.098-1.076.098-1.1 0-2.004-.367-3.031-1.32 0 0 .978-.245 1.735-.245.783 0 1.81.465 2.152.88l.122-.096s-.685-1.541-2.445-1.541c-1.173 0-1.979.269-3.25.684 0 0 .415.342 1.246 1.1.88.807 1.784 1.296 3.3 1.296.464 0 .88-.098 1.222-.245.325.065.688.341.885.778a2.59 2.59 0 0 0 .029.55 1.634 1.634 0 0 0-.327-.032c-.421 0-.977.181-1.216.755a.84.84 0 0 0-.672 1.42.841.841 0 1 0 1.023-1.315.205.205 0 0 1 .01-.03c.073-.268.415-.44.781-.44.226 0 .392.058.535.138.335.861 1.054 1.301 1.054 2.014 0 .391-.17.758-.513 1.247-.562.831-.709 1.222-1.124 1.784-.391.538-.88.734-1.296 1.418-.22.374-.281.668-.433 1.079a2.766 2.766 0 0 1-.74-1.91c0-.098.024-.196.024-.318.465-.709.685-1.393.685-2.053 0-1.711-1.54-3.105-3.79-3.52-.048.39-.073.758-.073 1.124 0 .178.008.352.023.522a1.19 1.19 0 0 0-.145-.009c-.253 0-.44.023-.583.045a.843.843 0 1 0 .074.347c.067-.013.165-.025.29-.025a1.3 1.3 0 0 1 .417.056c.198 1.156.813 2.1 2.075 2.78l.074-.098c-1.051-1.173-1.37-2.469-1.37-3.226 0-.098 0-.22.025-.294 1.32.367 2.127 1.491 2.127 2.738 0 .537-.147 1.075-.44 1.613-.021 1.086.228 1.922.987 2.969a3.216 3.216 0 0 0-.351 1.064c-.025.147-.025.294-.025.44 0 .366.072.84.078 1.27-.116-.176-.31-.41-.522-.522v-.02a.841.841 0 1 0-.074.393c.113.093.213.22.283.37.162.338.11.601.06.853-.176.329-.478.63-.672 1.08-.215.502-.204.977-.497 1.564a5.471 5.471 0 0 1-1.073 1.482l-.045-.008c.061-.154.126-.297.17-.458.375-1.42.018-3.03-1.342-3.72a5.289 5.289 0 0 0-.216.626c-.294 1.11-.302 2.095.247 2.695l.066-.058c-.116-.613-.14-.998-.002-1.518.068-.26.123-.372.178-.484.597.613.65 1.841.444 2.621-.168.634-.283.882-.426 1.046-.183.148-.36.294-.458.379-.47.407-1.014 1.039-1.308 1.38l-.073-.023c.22-.563.513-1.443.513-2.25 0-.904-.44-2.004-1.418-2.615-.586.855-.953 1.491-.953 2.469 0 .61.171 1.344.66 2.249l.122-.025s-.195-.88-.195-1.614c0-1.221.537-1.93.537-1.93s.514.61.587 1.418c.074.708-.097 2.492-.782 3.324-.122.146-.244.244-.39.366-.979.782-2.837 1.785-4.034 2.006l-.464 1.246c2.29-.835 3.314-1.32 4.424-2.03.474-.302.61-.39 1.075-.683.734-.465 1.442-.808 2.396-1.028.317.074.635.099.953.099.685 0 1.32-.172 2.005-.636 1.1-.733 1.49-2.493 1.49-2.493s-.17-.025-.464-.025c-.489 0-1.247.074-2.029.416-.88.39-1.295 1.1-1.295 1.1l.098.049s.61-.416 1.295-.636a5.55 5.55 0 0 1 1.369-.244s-.489 1.149-1.393 1.564a2.545 2.545 0 0 1-1.15.27c-.292 0-.586-.05-.928-.123-.538.098-1.076.367-1.54.538l-.05-.073c.197-.221.465-.538 1.003-1.076.71-.709 1.516-1.223 2.274-2.03a4.67 4.67 0 0 0 .493-.635c.27.089.868.253 1.581.246 1.468-.013 2.927-.784 3.232-2.278a5.286 5.286 0 0 0-.661-.042c-1.149.01-2.1.263-2.533.951l.073.048c.56-.274.925-.399 1.463-.405.27-.001.392.022.514.045-.433.738-1.603 1.115-2.41 1.122-.558.005-.836-.027-1.028-.095.042-.085.077-.162.107-.227.244-.538.279-1.193.538-1.688.072-.138.165-.285.261-.444.146.025.293.045.44.057 3.412.272 5.22-1.496 6.042-3.81-.458-.085-.965-.194-1.527-.22-1.637-.073-3.349.721-3.837 2.294l.096.032c.268-.278.728-.752 1.465-1.094 1.317-.608 2.402-.327 2.402-.327s-.342 1.013-1.911 1.861c-1.333.719-2.894.69-2.894.69s.27-.738.27-1.165c0-.464-.074-.88-.074-1.295 0-.954.318-1.271.562-1.931.108-.3.157-.476.213-.647.158.062.372.109.667.109.636 0 .905-.342 1.467-.342.166 0 .302.027.413.067a.843.843 0 1 0 .32-.268c-.194-.13-.447-.19-.758-.19-.562 0-.855.244-1.417.244a.862.862 0 0 1-.477-.143l.061-.126c.15-.3.548-.655.873-.96.234.192.58.349 1.083.349.684 0 1.173-.489 1.735-.489a1.3 1.3 0 0 1 .428.067.841.841 0 1 0 .218-.233 1.45 1.45 0 0 0-.695-.176c-.538 0-1.075.342-1.686.342-.275 0-.52-.128-.699-.259.225-.29.374-.555.54-.845.315.068.872.155 1.512.1 1.484-.13 2.902-1.025 3.092-2.561a5.223 5.223 0 0 0-.672.008c-1.162.101-2.106.433-2.49 1.163l.078.043c.545-.322.905-.477 1.45-.525.272-.023.398-.009.523.005-.38.78-1.536 1.255-2.351 1.326-.426.036-.692.039-.883.015.106-.163.256-.392.315-.475.361-.5.536-.89.608-1.23M13.624 27.94l.08.08c-.532.719-1.223 2.02-1.356 3.137.026-.265-.107-1.276-.133-1.515.266-.638.903-1.488 1.409-1.701M10.3 32.54l.745.345c0-.93 0-3.987-.133-5.343l.133-.027c.532 1.914.665 3.616.824 5.742l.558.372c.16-2.18.771-5.29 3.882-7.39-1.33.186-3.456 1.383-4.307 2.738-.08-.691-1.196-5.742-3.323-7.682 1.41 2.472 1.675 5.742 1.675 8.48 0 1.037-.027 1.967-.054 2.765m-1.249 1.409c1.09.531 2.1 1.196 2.792 1.967l.053-.054c-.133-.425-.292-.85-1.33-1.674l.053-.08c1.064.265 2.207 1.329 2.1 3.11.266.32.692.744.958 1.09l.053.026c.16-2.95-1.382-4.36-3.35-5.183-1.7-.665-3.641-1.276-4.705-3.829-.132 2.393 1.569 3.775 3.376 4.627\"/><path d=\"M14.66 31.13c-.32 0-.611.08-.903.293-.639.479-.559 1.86-.772 2.578.32.346.559.718.772 1.117.345-.904-.027-2.631.531-3.03a.872.872 0 0 1 .505-.16c1.09 0 2.579 1.675 3.749 1.675-.718-.824-.931-1.436-1.436-2.1-.558-.745-1.33-1.144-2.047-1.144-.345 0-.69.107-.984.32l.027.106c.186-.053.372-.08.532-.08a2.19 2.19 0 0 1 1.834.957l-.053.08c-.479-.266-1.116-.612-1.755-.612m-6.167.639c-.053-.825-.213-1.621-.452-2.525l.107-.028c.478.798.797 1.914.983 2.792l.426.185c-.213-2.1-1.356-4.704-3.27-5.954 1.355 1.915 1.568 4.36 1.754 5.317l.452.213Zm7.762 17.465.08-.054c1.037 1.94 2.26 3.855 5.37 5.583l-.054.08a12.586 12.586 0 0 1-3.641-2.153c-1.25-1.755-1.728-3.11-1.755-3.456Zm2.313 5.237c-.558-.48-1.436-1.09-2.871-1.862l.053-.08c.266-.026.957 0 1.861.639 2.153 1.515 3.748 2.418 7.177 3.19l-.345-.878c-2.393-.877-4.546-2.471-5.822-6.752-.026.186-.026.346-.026.532 0 .877.265 1.914 1.01 3.164l-.08.053c-1.542-1.383-3.59-4.466-3.935-7.338h-.026c-.186.665-.24 1.303-.24 1.942 0 1.647.214 2.684.985 3.986l-.054.053c-1.94-1.86-2.631-4.837-2.631-7.07 0-1.41.212-1.941.212-3.217 0-2.472-2.897-4.12-5.316-6.752.505 1.808 1.142 3.297 2.897 4.679l.053-.053a80.973 80.973 0 0 1-1.17-2.02l.054-.053c1.887 1.673 2.286 2.471 2.18 4.093-.133 1.835-.027 3.11.611 5.29l-.133.107c-.61-.878-.984-2.048-1.329-3.988-.399-2.286-.85-2.925-1.675-3.934.027.186.48 1.036.718 3.056.24 2.127.797 3.934 2.738 7.232l-.133.105c-1.701-2.18-3.11-4.625-3.482-8.772a4.768 4.768 0 0 0-.293 1.648c0 .559-.026 1.17.16 1.728l-.08.027c-.505-.877-1.595-1.596-2.924-1.542l.023.017c1.368 1.069 2.982 4.104 3.725 5.14l.213-.16-1.914-3.242.053-.054c1.196.958 2.366 3.137 3.43 4.758a6.145 6.145 0 0 0-1.809-.292c-.425 0-.717.054-1.036.186 1.222.425 3.163 1.914 4.679 3.35l.185-.16s-.983-1.223-2.738-2.499l.054-.08c.266 0 1.249.293 2.419 1.276.85.719 1.568 1.41 2.34 2.1l-.054.08a4.615 4.615 0 0 0-.877-.08c-.452 0-.93.054-1.356.187l.027.026c1.037.266 2.923 1.383 4.28 2.446l.212-.212Z\"/><path d=\"m9.012 41.11.166-.087c-.224-2.02-.738-3.593-2.014-6.038l.08-.053c.983.93 1.435 1.674 1.914 2.844l.053-.053c-.133-1.037-.505-2.18-1.25-3.03-.876-.984-1.302-.825-2.685-2.42.585 1.967.772 2.632 1.755 4.599.665 1.383 1.582 2.644 1.981 4.239m-.582.345c-.233-.862-.656-1.816-1.166-2.684-.434-.183-1.12-.321-1.92-.365 1.266.944 2.025 1.759 2.831 3.08l.255-.03Zm19.261-5.289c1.795 4.342 4.467 8.266 10.144 9.601 0 0 .25-.333.501-.71-4.509-1.293-6.762-4.842-8.473-8.89-.419-.21-1.67-.376-2.172 0M43.68 22.309v-.083c-1.378.5-2.506 1.335-3.424 2.629.376.209.918.334 1.253.334.542-1.127 1.294-2.129 2.17-2.88m.71 22.416a4.393 4.393 0 0 0-1.169-2.504 24.777 24.777 0 0 1-.542 1.419c.124.417.25.835.333 1.377.376 0 .96-.083 1.378-.292m-4.467-2.965c.167-.375.209-.959.209-.959-1.67-.125-2.797.584-2.797 1.712 0 .793.543 1.252 1.127 1.252a1.161 1.161 0 0 1-.25-.751c0-.626.46-1.211 1.711-1.253\"/><path d=\"M45.891 22.852c.335 1.795-.918 3.089-3.464 3.089-2.17 0-4.968-1.503-4.968-1.503-.458 2.087-4.048 10.936-4.508 11.896.292.334.334.376.626.585.334-.501.793-.877 1.336-1.169 0 0 .25-.584.376-.96-.418.126-.752.334-1.085.542l3.339-8.515c1.503.584 2.671.919 4.049.919 3.548 0 5.093-1.713 5.093-3.34 0-.71-.418-1.378-.794-1.544m-19.869 2.42c.209.292.668 1.17.96 1.796.334-.084.835-.25.835-.25l3.34 8.514c-1.003-.667-2.297-1-3.508-1-3.088 0-5.175 2.252-5.175 5.592 0 1.503.5 3.09 1.586 4.926 0 0 .96 0 1.962-.292-.919-1.67-1.503-3.34-1.503-5.01 0-2.713 1.42-4.34 3.673-4.34 1.545 0 2.755.584 3.59 1.71.293-.208.334-.25.627-.584-.502-.96-4.008-9.81-4.467-11.896 0 0-.794.375-1.92.834m16.822 14.652c0-3.34-1.085-4.967-3.924-5.51-.167.46-.25.919-.25.919 1.335.292 2.17 1.336 2.17 3.924 0 4.758-3.547 9.183-7.43 11.228 0 0 .877.418 1.545.418 5.385-2.505 7.89-7.93 7.89-10.979m7.513.46c0-2.464-1.837-3.84-3.757-3.84-1.67 0-2.254.96-2.254 1.794 0 1.086.835 1.545 1.544 1.587a1.937 1.937 0 0 1-.542-1.294c0-.501.334-1.086 1.252-1.086.919 0 2.17.919 2.17 3.005 0 2.38-1.836 5.01-6.595 5.01h-.417c-.084.292-.334.709-.334.709h.96c3.84 0 7.973-2.253 7.973-5.885M34.496 46.98s-1.169-.711-1.92-1.42c-.752.709-1.92 1.42-1.92 1.42s1.21 1.168 1.92 1.46c.71-.292 1.92-1.46 1.92-1.46\"/><path d=\"M30.071 51.57c-.376.043-.668.043-1.002.043-4.049 0-6.762-2.922-6.762-5.761 0-.877.125-1.628.375-2.212-.292-.501-.625-1.337-.625-1.337-.71.752-1.17 1.838-1.17 3.173 0 4.132 3.632 6.805 7.89 6.805.793 0 1.878-.126 2.588-.21-.46-.125-1.294-.5-1.294-.5\"/><path d=\"M42.928 46.854c-.542 2.463-3.131 4.759-6.68 4.759-2.17 0-4.549-1.003-6.595-2.63-.876-.71-1.753-1.545-2.463-2.464-.793.21-1.92.292-1.92.292 2.297 2.923 6.011 5.47 11.313 5.47 3.799 0 7.096-2.172 7.764-5.552-.585.082-1.42.125-1.42.125M33.41 22.1c-2.045 1.002-3.255 2.42-3.255 4.091 0 1.67 1.21 2.755 2.629 2.755 1.378 0 2.505-1.127 2.505-2.588 0-.96-.292-1.795-.877-2.505a3.021 3.021 0 0 0-1.044.418c.752.584 1.21 1.252 1.21 2.129 0 1.127-.792 1.962-1.794 1.962-1.043 0-1.795-.835-1.795-1.962 0-1.628 1.503-2.63 3.59-3.381 3.757-1.378 6.804-1.169 11.897-1.169 4.717 0 7.096-3.59 7.264-5.26-3.632 4.132-8.433 3.172-15.028 4.049-2.254.25-4.467 1.043-5.302 1.461M20.846 38.338c0-.835-.585-1.795-2.254-1.795-1.92 0-3.758 1.377-3.758 3.84 0 2.756 2.506 4.843 5.47 5.594 0-.293.04-.751.04-.751-2.796-.794-3.923-2.839-3.923-4.676 0-2.086 1.252-3.005 2.17-3.005.919 0 1.253.585 1.253 1.086 0 .5-.25 1.001-.543 1.294.71-.042 1.545-.501 1.545-1.587m-2.171-13.942c0 1.628 1.545 3.34 5.093 3.34h.25s-.376-1.211-.71-1.795h-.375c-2.546 0-3.8-1.295-3.465-3.09-.375.167-.793.835-.793 1.545m4.133 21.164s0 .542.042.71c3.965 0 6.887-.96 9.057-2.463-.459-.335-.96-1.002-.96-1.002-1.878 1.67-4.424 2.755-7.93 2.755h-.21Zm5.176-3.047c0-1.128-1.127-1.837-2.797-1.712 0 0 .041.584.209.96 1.252.041 1.711.626 1.711 1.253 0 .292-.084.542-.25.75.584 0 1.127-.458 1.127-1.251M38.461 27.86c-.71 1.711-1.46 3.883-2.17 5.844-.877 2.38-1.879 4.801-3.257 6.763.251.417.752.96 1.17 1.294 2.128-2.296 3.589-5.802 4.633-9.309.5-.5 1.085-.793 1.878-.793 1.086 0 1.544.71 1.586 2.129h.377c.417-1.711 1.043-3.256 2.003-5.051 0 0-.292-.167-.585-.167-1.252 2.046-2.88 1.67-4.967 3.006.376-1.085.71-2.255 1.044-3.298-.543-.042-1.17-.209-1.712-.417\"/><path d=\"M22.891 33.788c.042-1.419.501-2.129 1.586-2.129.793 0 1.378.292 1.879.793.125.417.25.877.375 1.294.877-.208 2.171-.042 2.171-.042-1.879-5.05-3.34-10.018-7.43-11.479v.084c2.296 2.045 3.423 5.426 4.591 9.267-2.087-1.335-3.714-.96-4.967-3.006-.292 0-.584.167-.584.167.96 1.796 1.586 3.34 2.003 5.05h.376Z\"/><path d=\"M19.134 21.85c5.093 0 8.057-.126 11.772 1.252 0 0 .751-.793 1.294-1.002-.835-.417-3.048-1.21-5.302-1.462-6.595-.875-11.396.085-15.027-4.048.167 1.67 2.546 5.26 7.263 5.26m15.09-13.649a.34.34 0 1 0 .68 0 .34.34 0 0 0-.68 0m2.123.385a.434.434 0 0 0 .453-.453.443.443 0 0 0-.453-.454.46.46 0 0 0-.453.454c0 .258.194.453.453.453m-.945.119a.341.341 0 1 0 0-.682.341.341 0 0 0 0 .682m-4.371-.163a.34.34 0 1 0 0-.68.34.34 0 0 0 0 .68m-.838.163a.341.341 0 1 0 0-.682.341.341 0 0 0 0 .682m-.935-.119a.443.443 0 0 0 .453-.453.46.46 0 0 0-.453-.454.443.443 0 0 0-.453.454c0 .266.186.453.453.453m10.522 3.606a.34.34 0 1 0 0 .68.34.34 0 0 0 0-.68m1.612-1.381a.458.458 0 0 0-.453-.453.442.442 0 0 0-.453.453c0 .258.194.453.453.453a.458.458 0 0 0 .453-.453m-1.027 1.258a.341.341 0 1 0-.001-.683.341.341 0 0 0 0 .683m-1.067 7.777v-1.068l-.008-.001c-.836-.182-3.268-.524-6.487-.524-3.219 0-5.65.342-6.487.524l-.008.001v1.068l.012-.002c.836-.168 3.266-.484 6.483-.484 3.217 0 5.648.316 6.483.484l.012.002Zm-14.631-9.489a.46.46 0 0 0-.453.454.46.46 0 0 0 .453.453.443.443 0 0 0 .453-.453.443.443 0 0 0-.453-.454m2.587 1.56-.04.026.174.423.042-.032c.004-.003.364-.267 1.042-.53.625-.241 1.657-.53 3.022-.53h.057l-.148-.443h-.03c-2.42 0-3.765.831-4.12 1.086m10.923.417.042.032.174-.423-.04-.027c-.354-.254-1.699-1.086-4.119-1.086h-.03l-.147.445h.056c2.613 0 4.05 1.048 4.064 1.059m2.688 2.122.026.047.321-.321-.013-.026c-.033-.065-.464-.746-.979-1.122l-.023-.017-.328.284c.61.452.992 1.148.996 1.155m-15.476-1.423c-.516.377-.947 1.058-.979 1.123l-.014.026.322.322.026-.048c.004-.007.386-.703.995-1.155l-.327-.284-.023.016Zm18.155-2.756a.443.443 0 0 0 .454-.452.46.46 0 0 0-.454-.454.46.46 0 0 0-.453.454c0 .258.195.452.453.452m-1.087-.442a.443.443 0 0 0 .453-.454.46.46 0 0 0-.453-.453.46.46 0 0 0-.454.453c0 .259.195.454.454.454m1.732 3.925a.459.459 0 0 0 .453-.453.46.46 0 0 0-.453-.454.46.46 0 0 0-.454.454.46.46 0 0 0 .454.453M22.1 10.277a.443.443 0 0 0 .454-.452.46.46 0 0 0-.454-.454.46.46 0 0 0-.453.454c0 .258.195.452.453.452m-.78 1.057a.524.524 0 0 0 .514-.534.508.508 0 0 0-.513-.513.525.525 0 0 0-.534.513c0 .29.244.534.534.534m-.238 1.342c.283 0 .514-.24.514-.534a.508.508 0 0 0-.514-.513.525.525 0 0 0-.534.513c0 .29.245.534.534.534m2.105-2.841a.443.443 0 0 0 .453-.454.46.46 0 0 0-.453-.453.458.458 0 0 0-.453.453c0 .259.194.454.453.454m-1.732 3.018a.46.46 0 0 0-.453.454.46.46 0 0 0 .453.453.46.46 0 0 0 .454-.453.46.46 0 0 0-.454-.454m.694 1.557a.342.342 0 1 0-.001-.684.342.342 0 0 0 0 .683\"/><path d=\"M27.284 13.943a.42.42 0 0 1 .413.413c0 .223-.19.412-.413.412a.403.403 0 0 1-.412-.412c0-.236.177-.413.412-.413m5.518-.725a.594.594 0 1 1 0 1.189.594.594 0 0 1 0-1.189m5.518.725c.236 0 .413.177.413.413a.403.403 0 0 1-.413.412.418.418 0 0 1-.412-.412c0-.224.19-.413.412-.413m-13.18-4.24c0 .767.48 1.431.905 2.018.287.397.558.772.64 1.123-.096.031-.17.096-.195.172a.155.155 0 0 0 .026.15l.141.181c.035.044.05.085.045.12a.078.078 0 0 1-.038.057c-.052.035-.1-.025-.12-.054l-.08-.1a.179.179 0 0 0-.132-.075.18.18 0 0 0-.137.053l-.341.382a.176.176 0 0 0-.058.147.198.198 0 0 0 .104.143l.143.08c.143.073.149.097.13.138-.03.045-.11.042-.31-.013-.077-.022-.145-.012-.19.029-.044.037-.061.097-.05.165l.04.4c0 .06.025.112.07.142.036.026.104.048.214.007.054-.02.221-.085.265-.064.005.002.01.006.017.025.011.035-.03.067-.15.147-.044.033-.068.072-.07.114-.005.054.025.112.086.173l.201.222c.056.056.119.08.186.073a.347.347 0 0 0 .2-.113 2.9 2.9 0 0 0 .143-.154c.044-.048.09-.098.139-.148.015-.016.04-.032.063-.027.03.007.062.049.088.117.094.254.09.467-.015.616-.113.163-.341.249-.66.249-.286 0-.488-.128-.555-.246-.034-.06-.035-.12-.003-.172l.002-.005c.077-.134.151-.262-.051-.398l-.202-.14c-.145-.104-.267-.095-.365.027-.126.169-.192.177-.282.132-.09-.05-.082-.166-.072-.325.003-.055.007-.112.007-.172 0-.128-.03-.212-.095-.257-.103-.071-.276-.024-.45.04-.168-.192-.386-.387-.617-.595-.644-.58-1.376-1.238-1.376-2.108 0-.63.358-.99.658-1.18.335-.212.691-.28.762-.28h.049l-.232-.487-.023.003a2.35 2.35 0 0 0-1.11.506c-.305.252-.668.7-.668 1.398 0 1.056.74 1.725 1.393 2.316l.046.043c.203.183.475.437.656.631h-.292a.846.846 0 0 0-.752.42l-.023.044h.05c.68 0 1.532.29 2.223.755.743.501 1.17 1.11 1.17 1.671v.038l.036-.008c.836-.167 3.264-.482 6.479-.482 3.216 0 5.644.315 6.48.482l.036.008v-.038c0-.561.426-1.17 1.17-1.67.69-.467 1.543-.756 2.223-.756h.05l-.023-.044a.849.849 0 0 0-.752-.42h-.293c.182-.195.454-.448.656-.631l.047-.043c.653-.59 1.393-1.26 1.393-2.316 0-.699-.363-1.146-.668-1.398a2.353 2.353 0 0 0-1.11-.506l-.023-.003-.232.487h.049c.07 0 .426.068.76.28.301.19.659.55.659 1.18 0 .87-.731 1.528-1.377 2.109-.23.207-.448.402-.616.594-.173-.064-.346-.111-.449-.04-.064.045-.096.13-.096.257 0 .06.004.117.008.172.01.153.017.274-.07.325-.092.046-.158.037-.285-.133-.097-.121-.22-.13-.365-.026l-.2.14c-.203.136-.13.264-.053.398l.003.006c.031.052.03.11-.004.17-.067.12-.27.247-.554.247-.319 0-.547-.086-.66-.249-.105-.15-.11-.362-.016-.616.026-.068.057-.11.089-.117.023-.005.047.011.062.027.05.05.095.1.14.15.045.05.091.101.142.152a.34.34 0 0 0 .2.113.223.223 0 0 0 .187-.073l.2-.22c.062-.063.09-.121.087-.175-.003-.042-.026-.082-.071-.115-.12-.08-.16-.111-.15-.146.007-.019.013-.023.017-.025.04-.02.17.028.266.064.11.04.177.02.214-.007a.166.166 0 0 0 .07-.14l.039-.4c.012-.07-.006-.13-.048-.167-.046-.04-.113-.05-.192-.03-.197.055-.278.058-.306.017-.022-.043-.017-.068.128-.14l.142-.082a.198.198 0 0 0 .104-.142.173.173 0 0 0-.057-.146l-.343-.384a.177.177 0 0 0-.136-.052.177.177 0 0 0-.131.075l-.082.102c-.02.028-.067.087-.12.052a.081.081 0 0 1-.038-.057c-.005-.035.01-.076.046-.12l.14-.18a.154.154 0 0 0 .026-.151c-.025-.076-.098-.14-.194-.172.082-.351.353-.726.64-1.123.424-.587.904-1.25.904-2.018 0-.637-.388-1.32-1.48-1.32-.543 0-1.132.173-1.702.34-.55.159-1.117.326-1.621.326-.624 0-1.028-.088-2.278-.922l-.028-.018-.089.15.017.016c.192.192 1.104 1.225.217 2.742l-.01.017.07.105.027-.023c.6-.527.977-1.278.514-2.169.499.429 1.048.586 1.643.586.632 0 1.212-.184 1.797-.346.478-.133.93-.259 1.282-.259.724 0 1.077.287 1.077.876 0 .55-.392 1.131-.771 1.694-.291.432-.567.84-.67 1.23-.103-.019-.202.002-.259.054a.16.16 0 0 0-.052.148l.04.283c.008.035.004.063-.011.08-.012.016-.034.025-.059.025-.024 0-.068 0-.091-.136l-.02-.101a.17.17 0 0 0-.244-.123l-.505.222a.205.205 0 0 0-.108.123.125.125 0 0 0 .019.106l.162.183a.221.221 0 0 1 .053.074c.01.026.005.046-.013.064-.02.02-.06.018-.183-.065l-.101-.06a.212.212 0 0 0-.168-.027.195.195 0 0 0-.117.1l-.162.344c-.022.053-.023.098-.005.137.02.045.068.08.144.104l.122.042c.077.023.183.058.202.094.003.005.004.012 0 .027-.012.034-.024.038-.142.055l-.036.005c-.064.01-.106.033-.13.068-.024.036-.03.082-.016.152l.1.4a.212.212 0 0 0 .096.15.22.22 0 0 0 .185.016c.09-.027.203-.068.306-.105.059-.022.114-.043.16-.058.058-.023.105-.027.125-.012.02.016.019.052.015.08-.083.62-.382.92-.917.92-.561 0-.786-.514-.848-.699a.484.484 0 0 0 .255-.419.48.48 0 0 0-.474-.472.48.48 0 0 0-.473.472c0 .18.092.345.233.419-.131.333-.412.72-1.008.72a1.17 1.17 0 0 1-.798-.34c-.216-.209-.34-.47-.34-.717 0-.16.047-.278.125-.313.054-.024.12-.005.185.053l.405.383c.133.111.251.11.365-.001l.283-.305a.213.213 0 0 0 .054-.172.201.201 0 0 0-.103-.135c-.046-.028-.094-.06-.1-.086-.002-.006-.002-.015.01-.032.022-.035.146.022.303.093l.04.019a.2.2 0 0 0 .184.001.243.243 0 0 0 .122-.186l.08-.625a.262.262 0 0 0-.063-.222.197.197 0 0 0-.172-.054c-.06.007-.12.02-.174.032-.08.017-.169.037-.177.01-.007-.025.003-.057.144-.104a.226.226 0 0 0 .132-.127.218.218 0 0 0-.015-.177l-.181-.362a.262.262 0 0 0-.365-.114l-.583.322c-.126.063-.164.067-.206.026-.026-.027-.042-.069.044-.182l.361-.503a.24.24 0 0 0 .052-.188.262.262 0 0 0-.119-.178l-.282-.202c-.128-.085-.25-.07-.344.046l-.046.061c-.052.071-.075.1-.1.091-.013-.005-.015-.01-.017-.014-.008-.019.013-.068.037-.126.025-.06.056-.134.08-.226a.211.211 0 0 0-.03-.19.248.248 0 0 0-.202-.09h-.644a.247.247 0 0 0-.201.09.213.213 0 0 0-.03.19c.023.092.054.166.08.226.024.058.045.107.037.126-.002.004-.005.009-.017.014-.024.008-.049-.021-.103-.094l-.044-.058c-.093-.115-.215-.131-.344-.045l-.281.2a.26.26 0 0 0-.12.179.238.238 0 0 0 .052.187l.363.504c.084.113.069.155.042.182-.041.041-.08.037-.205-.025l-.585-.323a.262.262 0 0 0-.363.114l-.181.362a.215.215 0 0 0-.015.177.226.226 0 0 0 .133.128c.14.046.15.078.14.104-.005.026-.099.005-.174-.011a1.732 1.732 0 0 0-.173-.032.197.197 0 0 0-.173.054.259.259 0 0 0-.063.222l.08.625a.243.243 0 0 0 .121.186c.057.03.123.03.184-.001l.04-.02c.157-.07.28-.127.305-.092.01.017.01.026.009.032-.006.026-.054.058-.1.086a.201.201 0 0 0-.103.135c-.01.056.009.116.056.174l.282.303c.112.112.231.112.365 0l.402-.382c.066-.058.132-.077.186-.053.079.035.126.152.126.313 0 .247-.124.508-.34.717a1.17 1.17 0 0 1-.798.34c-.596 0-.877-.387-1.008-.72a.471.471 0 0 0 .233-.419.48.48 0 0 0-.473-.472.48.48 0 0 0-.474.472c0 .2.129.354.255.42-.062.184-.288.698-.848.698-.535 0-.834-.3-.917-.92-.004-.028-.005-.064.015-.08.02-.015.067-.011.127.013.044.014.1.035.16.057.1.037.214.078.303.104a.219.219 0 0 0 .185-.014.209.209 0 0 0 .096-.149l.1-.404c.014-.069.009-.114-.016-.15-.023-.035-.066-.057-.13-.068l-.036-.005c-.117-.017-.13-.02-.14-.055-.006-.015-.004-.022-.001-.027.019-.036.125-.071.202-.095l.122-.04c.076-.026.123-.06.144-.105.018-.039.016-.084-.006-.14l-.16-.342a.196.196 0 0 0-.119-.099.212.212 0 0 0-.167.026l-.102.062c-.123.082-.162.085-.182.064-.033-.033-.02-.08.04-.14l.164-.184a.121.121 0 0 0 .016-.103.203.203 0 0 0-.109-.123l-.502-.221a.17.17 0 0 0-.246.122l-.02.101c-.022.136-.067.136-.09.136a.077.077 0 0 1-.06-.024c-.014-.018-.018-.046-.011-.082l.04-.282a.161.161 0 0 0-.051-.148c-.058-.052-.156-.073-.259-.054-.103-.39-.379-.798-.67-1.23-.38-.563-.772-1.144-.772-1.694 0-.59.353-.876 1.078-.876.35 0 .803.126 1.282.259.584.162 1.247.346 1.88.346.595 0 1.042-.204 1.402-.411-.17.744.073 1.467.672 1.994l.026.023.07-.105-.01-.017c-.886-1.517.026-2.55.217-2.742l.018-.017-.09-.149-.027.018c-1.251.834-1.655.922-2.279.922-.504 0-1.072-.167-1.621-.327-.57-.166-1.158-.339-1.701-.339-1.093 0-1.481.683-1.481 1.32\"/><path d=\"M26.163 12.533a.34.34 0 1 0-.681 0 .34.34 0 0 0 .681 0m-.925-1.147a.34.34 0 1 0 0 .681.34.34 0 0 0 0-.68m-1.963 3.26a.34.34 0 1 0-.681 0 .34.34 0 0 0 .68 0m20.204-.92a.341.341 0 1 0 0 .682.341.341 0 0 0 0-.682m-.785.58a.34.34 0 1 0 0 .68.34.34 0 0 0 0-.68m1.32-2.165c0 .29.245.534.534.534.284 0 .514-.24.514-.534a.509.509 0 0 0-.514-.513.525.525 0 0 0-.534.513m-.205-1.342c0 .29.245.535.534.535a.524.524 0 0 0 .514-.534.508.508 0 0 0-.514-.514.525.525 0 0 0-.534.514M39.73 8.153c.283 0 .514-.24.514-.534a.508.508 0 0 0-.514-.514.525.525 0 0 0-.534.514c0 .29.245.534.534.534m-13.836 0c.283 0 .514-.24.514-.534a.508.508 0 0 0-.514-.514.525.525 0 0 0-.534.514c0 .29.245.534.534.534m14.964.715c.283 0 .514-.24.514-.534a.508.508 0 0 0-.514-.514.525.525 0 0 0-.534.514c0 .289.245.534.534.534m-16.092 0c.284 0 .514-.24.514-.534a.508.508 0 0 0-.514-.514.525.525 0 0 0-.533.514.54.54 0 0 0 .533.534m12.628-.615a.434.434 0 0 0 .453-.453.443.443 0 0 0-.453-.453.46.46 0 0 0-.453.453c0 .259.195.453.453.453m-9.184 0a.434.434 0 0 0 .454-.453.443.443 0 0 0-.454-.453.46.46 0 0 0-.453.453c0 .259.195.453.453.453m-1.077-.151a.433.433 0 0 0 .453-.452.443.443 0 0 0-.453-.454.46.46 0 0 0-.453.454c0 .257.195.452.453.452m11.339 0a.433.433 0 0 0 .453-.452.443.443 0 0 0-.453-.454.46.46 0 0 0-.454.454c0 .257.195.452.454.452m-14.108 2.055c.283 0 .513-.24.513-.535a.508.508 0 0 0-.513-.513.525.525 0 0 0-.534.513c0 .29.244.535.534.535m16.363-.535c0 .29.245.535.534.535.283 0 .514-.24.514-.535a.508.508 0 0 0-.514-.513.525.525 0 0 0-.534.513m-7.401-.006a.508.508 0 0 0-.513-.514.525.525 0 0 0-.534.514c0 .289.244.534.534.534.283 0 .513-.24.513-.534m-.183-1.125a.341.341 0 1 0-.682 0 .341.341 0 0 0 .682 0m-.682 2.269a.34.34 0 1 0 .681 0 .34.34 0 0 0-.68 0m-.993-4.679h.419V5.71h.326c.06.168.19.303.356.37v.327a1.319 1.319 0 0 0-1.101 1.302 5.577 5.577 0 0 1 2.667 0c0-.666-.48-1.194-1.101-1.302V6.08a.628.628 0 0 0 .356-.37h.326v.371h.42V5.71h.386v-.42h-.387v-.387h-.419v.388h-.326c-.003-.011-.008-.021-.012-.032a.626.626 0 0 0-.375-.35v-.365h.421v-.385h-.421v-.473H32.6v.473h-.422v.385h.422v.365a.626.626 0 0 0-.388.382h-.325v-.388h-.42v.388h-.387v.419h.388v.371Z\"/><path d=\"M63.275 38.908a30.906 30.906 0 0 1-4.616 11.133 31.265 31.265 0 0 1-8.35 8.436 30.87 30.87 0 0 1-11.084 4.732 31.348 31.348 0 0 1-12.523.066 30.864 30.864 0 0 1-11.132-4.617 31.295 31.295 0 0 1-4.619-3.768 31.384 31.384 0 0 1-3.818-4.58 30.928 30.928 0 0 1-5.397-17.343 31.32 31.32 0 0 1 .6-6.265A30.864 30.864 0 0 1 6.95 15.57a31.352 31.352 0 0 1 3.77-4.618 31.074 31.074 0 0 1 9.84-6.71 30.87 30.87 0 0 1 5.823-1.84 31.306 31.306 0 0 1 12.523-.066 30.94 30.94 0 0 1 5.841 1.78 31.053 31.053 0 0 1 5.292 2.837 31.232 31.232 0 0 1 8.436 8.348 30.877 30.877 0 0 1 4.733 11.084 31.3 31.3 0 0 1 .066 12.524m1.53-6.27a31.896 31.896 0 0 0-5.56-17.863 32.235 32.235 0 0 0-8.688-8.597A31.832 31.832 0 0 0 39.09 1.422a32.32 32.32 0 0 0-12.897.067 31.852 31.852 0 0 0-11.417 4.875 32.222 32.222 0 0 0-4.715 3.931 32.043 32.043 0 0 0-6.804 10.207 31.837 31.837 0 0 0-1.833 6.018 32.278 32.278 0 0 0 .067 12.897 31.832 31.832 0 0 0 4.875 11.417 32.233 32.233 0 0 0 3.932 4.716 32.02 32.02 0 0 0 10.207 6.804 31.814 31.814 0 0 0 6.017 1.833 32.19 32.19 0 0 0 6.282.617h.17a32.237 32.237 0 0 0 6.444-.685 31.746 31.746 0 0 0 5.998-1.896 31.962 31.962 0 0 0 5.42-2.979 32.235 32.235 0 0 0 8.597-8.688 31.847 31.847 0 0 0 4.755-11.468 32.2 32.2 0 0 0 .618-6.451\"/></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:206,intrinsicWidth:300,pixelHeight:206,pixelWidth:300,src:\"https://framerusercontent.com/images/pidxTXTAgbfGJdQCbWnnyW7hpJw.png\"}},Q8qQrPXi8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:206,intrinsicWidth:300,pixelHeight:206,pixelWidth:300,src:\"https://framerusercontent.com/images/pidxTXTAgbfGJdQCbWnnyW7hpJw.png\"}},rTd9Yi3Gv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:206,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+910+60+126.2+14.5),pixelHeight:206,pixelWidth:300,src:\"https://framerusercontent.com/images/pidxTXTAgbfGJdQCbWnnyW7hpJw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:206,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+60+126.2+14.5),pixelHeight:206,pixelWidth:300,src:\"https://framerusercontent.com/images/pidxTXTAgbfGJdQCbWnnyW7hpJw.png\"},className:\"framer-ah9zx2\",\"data-framer-name\":\"02\"})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"EtqbuPws5\"},implicitPathVariables:undefined},{href:{webPageId:\"EtqbuPws5\"},implicitPathVariables:undefined},{href:{webPageId:\"EtqbuPws5\"},implicitPathVariables:undefined},{href:{webPageId:\"EtqbuPws5\"},implicitPathVariables:undefined},{href:{webPageId:\"EtqbuPws5\"},implicitPathVariables:undefined},{href:{webPageId:\"EtqbuPws5\"},implicitPathVariables:undefined},{href:{webPageId:\"EtqbuPws5\"},implicitPathVariables:undefined},{href:{webPageId:\"EtqbuPws5\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{y:undefined},Q8qQrPXi8:{y:undefined},rTd9Yi3Gv:{y:(componentViewport?.y||0)+0+910+60+243.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+1e3+60+243.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-urkzpz-container\",nodeId:\"pksX9SgcY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{KbWskjqwA:resolvedLinks3[7],xaW7KxkRA:resolvedLinks3[6]},Q8qQrPXi8:{KbWskjqwA:resolvedLinks3[5],xaW7KxkRA:resolvedLinks3[4]},rTd9Yi3Gv:{KbWskjqwA:resolvedLinks3[3],xaW7KxkRA:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(ButtonNavigation,{GPOFx2M9S:\"Se alle vores kunder\",height:\"100%\",id:\"pksX9SgcY\",KbWskjqwA:resolvedLinks3[1],layoutId:\"pksX9SgcY\",SVINTT45q:\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\",variant:\"k902paJv0\",width:\"100%\",xaW7KxkRA:resolvedLinks3[0],ZKQZnUQ77:{borderColor:'var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188)) /* {\"name\":\"PRIMARY 100%\"} */',borderStyle:\"solid\",borderWidth:1}})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y2bz6l\",\"data-framer-name\":\"Spaces 120\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-15licq5 hidden-72rtr7 hidden-40x7p3 hidden-1uhde2a\",\"data-framer-name\":\"Spaces 120\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19dopgr\",\"data-framer-name\":\"Our Lasers!\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c3qpsc\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cqlg07\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rTd9Yi3Gv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-ab5b3b15-3187-494e-971f-520495633970, rgb(0, 0, 0))\"},children:\"Nos \"}),\"Lasers\"]})}),fonts:[\"FS;Poppins-semibold\",\"FS;Poppins-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-ab5b3b15-3187-494e-971f-520495633970, rgb(0, 0, 0))\"},children:[\"Vores \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\"},children:\"lasere\"})]})}),className:\"framer-1t1szfb\",fonts:[\"FS;Poppins-medium\",\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10ytvvp\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bsmuyd\",\"data-framer-name\":\"All Card Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:undefined},Q8qQrPXi8:{height:undefined,width:undefined,y:undefined},rTd9Yi3Gv:{width:undefined,y:(componentViewport?.y||0)+0+1333.2+0+0+0+179.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:990,width:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1280px) - 48px) / 4, 1px)`,y:(componentViewport?.y||0)+0+1483.2+0+0+0+179.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dpei3z-container\",nodeId:\"LdWj1HDAY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{style:{width:\"100%\"}},Q8qQrPXi8:{style:{height:\"100%\"}},rTd9Yi3Gv:{bEpxta8sW:\"Entry Level, Desktop CO2 Laser\",j7p72Mo6S:\"G\\xf8r en fantastisk backup eller 2. laser dedikeret til tumblergravering.\",sJaN_PW70:\"Can be used to launch and scale a home-based business.\",style:{height:\"100%\"},WmZ7pOpky:\"Fantastisk til hobbyfolk, h\\xe5ndv\\xe6rkere eller nybegyndere, der \\xf8nsker at teste vandet.\"}},children:/*#__PURE__*/_jsx(LasersCard,{AQXhM0_Sz:\"Ren og kompakt til hjemmebrug eller sm\\xe5 rum.\",AZweSjfFv:\"Graverer mellemstore cylindriske emner med tilf\\xf8jelse af et roterende tilbeh\\xf8r.\",bEpxta8sW:\"Begyndermodel til hobby\",Cbqqkywya:addImageAlt({src:\"https://framerusercontent.com/images/SD7HUGp2rG2Yhx5CHaeIP40IY.png\"},\"\"),ggV34xEjg:1,height:\"100%\",id:\"LdWj1HDAY\",j7p72Mo6S:\"Fantastisk som backup eller din 2. laser dedikeret til indgravering.\",layoutId:\"LdWj1HDAY\",LO4pBYf5R:1,LuhTB6CHu:\"Kontakt os\",MuvYKca5m:\"MIRA\\xa0S\",qFRgyrH6v:\"44.800\",s1iFsoPY8:\"\",sJaN_PW70:\"Kan bruges til at starte en hobbyvirksomhed.\",style:{height:\"100%\",width:\"100%\"},TpDV1G3CF:\"Graverer 2-3 gange hurtigere end en hobbylaser.\",uLWD1XIx7:\"MIRA 5S\",width:\"100%\",WmZ7pOpky:\"Fantastisk til hobbyfolk, h\\xe5ndv\\xe6rkere eller nybegyndere, der \\xf8nsker en stor laser for sm\\xe5 penge.\",Y_DUqESfC:\"\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:undefined},Q8qQrPXi8:{width:undefined,y:undefined},rTd9Yi3Gv:{width:undefined,y:(componentViewport?.y||0)+0+1333.2+0+0+0+179.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:990,width:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1280px) - 48px) / 4, 1px)`,y:(componentViewport?.y||0)+0+1483.2+0+0+0+179.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m2w9hm-container\",nodeId:\"MlWMIEcGG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rTd9Yi3Gv:{bEpxta8sW:\"Mid Level, Benchtop CO2 Laser\",sJaN_PW70:\"Kan skalere ud over en side tr\\xe6ngsel og til en fuldtids lille virksomhed\",TpDV1G3CF:\"Graver 2-3 gange hurtigere og sk\\xe6rer tykkere materialer end de fleste lasere til industriel kvalitet.\",WmZ7pOpky:\"Vigtigt for at starte et sidel\\xf8b eller skalere en fuldtidsvirksomhed.\"}},children:/*#__PURE__*/_jsx(LasersCard,{AQXhM0_Sz:\"Passer fint i et ekstra sovev\\xe6relse eller h\\xe5ndv\\xe6rksrum.\",AZweSjfFv:\"Kan bruges til at skabe meget st\\xf8rre projekter end en hobbylaser.\",bEpxta8sW:\"Proffesionel model til den lille produktion\",Cbqqkywya:addImageAlt({src:\"https://framerusercontent.com/images/SD7HUGp2rG2Yhx5CHaeIP40IY.png\"},\"\"),ggV34xEjg:1,height:\"100%\",id:\"MlWMIEcGG\",j7p72Mo6S:\"Graverer mellemstore cylindriske emner med tilf\\xf8jelse af et roterende tilbeh\\xf8r.\",layoutId:\"MlWMIEcGG\",LO4pBYf5R:1,LuhTB6CHu:\"Kontakt os\",MuvYKca5m:\"MIRA PRO\\xa0S\",qFRgyrH6v:\"66.200\",s1iFsoPY8:\"\",sJaN_PW70:\"F\\xe5es i forskellige st\\xf8rrelser\",style:{width:\"100%\"},TpDV1G3CF:\"Gravere 2-3 gange hurtigere og sk\\xe6rer tykkere materialer end de fleste lasere i samme st\\xf8rrelse.\",uLWD1XIx7:\"MIRA 7S\",width:\"100%\",WmZ7pOpky:\"Til dig som vil starte en hobbyvirksomhed eller skalere til fuldtidsvirksomhed.\",Y_DUqESfC:\"9S\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:undefined},Q8qQrPXi8:{height:undefined,width:undefined,y:undefined},rTd9Yi3Gv:{width:undefined,y:(componentViewport?.y||0)+0+1333.2+0+0+0+179.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:990,width:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1280px) - 48px) / 4, 1px)`,y:(componentViewport?.y||0)+0+1483.2+0+0+0+179.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kjvqf5-container\",nodeId:\"ydcvlfDsF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{style:{width:\"100%\"}},Q8qQrPXi8:{style:{height:\"100%\"}},rTd9Yi3Gv:{AQXhM0_Sz:\"Maksimerer gulvpladsen og skilles ad for at passe gennem en standardd\\xf8r\\xe5bning.\",AZweSjfFv:\"Et glimrende valg til batchgravering eller sk\\xe6ring af store arkbeholdninger.\",bEpxta8sW:\"Advanced Level, Free-Standing CO2 Laser\",j7p72Mo6S:\"Graverer store cylindriske emner med tilf\\xf8jelse af et roterende tilbeh\\xf8r.\",style:{height:\"100%\"}}},children:/*#__PURE__*/_jsx(LasersCard,{AQXhM0_Sz:\"Maksimerer gulvpladsen og kan skilles ad for at passe gennem en standardd\\xf8r\\xe5bning.\",AZweSjfFv:\"Et glimrende valg til batchgravering eller sk\\xe6ring af store plader.\",bEpxta8sW:\"Proffesionel model til den st\\xf8rre produktion\",Cbqqkywya:addImageAlt({src:\"https://framerusercontent.com/images/QCUaNf5JF5RToJa5NA2Hdcim8CI.png\"},\"\"),ggV34xEjg:0,height:\"100%\",id:\"ydcvlfDsF\",j7p72Mo6S:\"Kan gravere st\\xf8rre cylindriske emner ved tilk\\xf8b af roterende akse.\",layoutId:\"ydcvlfDsF\",LO4pBYf5R:1,LuhTB6CHu:\"Kontakt os\",MuvYKca5m:\"NOVA\\xa0S\",qFRgyrH6v:\"97.200\",s1iFsoPY8:\"16S\",sJaN_PW70:\"2\",style:{height:\"100%\",width:\"100%\"},TpDV1G3CF:\"Leverer h\\xf8jere pr\\xe6cision og kortere cyklustider end nogen sammenlignelig laser.\",uLWD1XIx7:\"NOVA 10S\",width:\"100%\",WmZ7pOpky:\"Perfekt til at hoppe med hovedet f\\xf8rst eller tage din virksomhed til n\\xe6ste niveau.\",Y_DUqESfC:\"14S\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:undefined},Q8qQrPXi8:{height:undefined,width:undefined,y:undefined},rTd9Yi3Gv:{width:undefined,y:(componentViewport?.y||0)+0+1333.2+0+0+0+179.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:990,width:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1280px) - 48px) / 4, 1px)`,y:(componentViewport?.y||0)+0+1483.2+0+0+0+179.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ki23zk-container\",nodeId:\"THY1FvV5m\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{style:{width:\"100%\"}},Q8qQrPXi8:{style:{height:\"100%\"}},rTd9Yi3Gv:{bEpxta8sW:\"Expert Level, Free-Standing, Hybrid CO2 Laser\",style:{height:\"100%\"}}},children:/*#__PURE__*/_jsx(LasersCard,{AQXhM0_Sz:\"Alt NOVA har at tilbyde + en anden RF laserkilde.\",AZweSjfFv:\"Kommer med en hel dags orientering p\\xe5 stedet (minus rejseudgifter).\",bEpxta8sW:\"Proffesionel model Hybrid CO2+RF laser\",Cbqqkywya:addImageAlt({src:\"https://framerusercontent.com/images/mphWVIZz34NqFIdhmqwRIukmFVE.png\"},\"\"),ggV34xEjg:0,height:\"100%\",id:\"THY1FvV5m\",j7p72Mo6S:\"2\",layoutId:\"THY1FvV5m\",LO4pBYf5R:0,LuhTB6CHu:\"Kontakt os\",MuvYKca5m:\"SUPER NOVA\\xa0S\",qFRgyrH6v:\"116.000\",s1iFsoPY8:\"16S\",sJaN_PW70:\"1\",style:{height:\"100%\",width:\"100%\"},TpDV1G3CF:\"Kan opn\\xe5 endnu hurtigere graveringshastigheder og h\\xf8jere opl\\xf8sning.\",uLWD1XIx7:\"SUPERNOVA 10S\",width:\"100%\",WmZ7pOpky:\"En dr\\xf8m, der g\\xe5r i opfyldelse for enhver laserekspert eller entusiast.\",Y_DUqESfC:\"14S\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-25tjhn\",\"data-framer-name\":\"Spaces 120\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{background:{alt:\"\",fit:\"fill\",pixelHeight:940,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/fSrtgE0oejGlTcxz8ps5rgq8A.png\",srcSet:\"https://framerusercontent.com/images/fSrtgE0oejGlTcxz8ps5rgq8A.png?scale-down-to=512 512w,https://framerusercontent.com/images/fSrtgE0oejGlTcxz8ps5rgq8A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fSrtgE0oejGlTcxz8ps5rgq8A.png 1920w\"}},Q8qQrPXi8:{background:{alt:\"\",fit:\"fill\",pixelHeight:940,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/fSrtgE0oejGlTcxz8ps5rgq8A.png\",srcSet:\"https://framerusercontent.com/images/fSrtgE0oejGlTcxz8ps5rgq8A.png?scale-down-to=512 512w,https://framerusercontent.com/images/fSrtgE0oejGlTcxz8ps5rgq8A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fSrtgE0oejGlTcxz8ps5rgq8A.png 1920w\"}},rTd9Yi3Gv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2622.4),pixelHeight:940,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/fSrtgE0oejGlTcxz8ps5rgq8A.png\",srcSet:\"https://framerusercontent.com/images/fSrtgE0oejGlTcxz8ps5rgq8A.png?scale-down-to=512 512w,https://framerusercontent.com/images/fSrtgE0oejGlTcxz8ps5rgq8A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fSrtgE0oejGlTcxz8ps5rgq8A.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2772.4),pixelHeight:940,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/fSrtgE0oejGlTcxz8ps5rgq8A.png\",srcSet:\"https://framerusercontent.com/images/fSrtgE0oejGlTcxz8ps5rgq8A.png?scale-down-to=512 512w,https://framerusercontent.com/images/fSrtgE0oejGlTcxz8ps5rgq8A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fSrtgE0oejGlTcxz8ps5rgq8A.png 1920w\"},className:\"framer-1nvbfku\",\"data-framer-name\":\"Introducing\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fug3nx\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-153j9u3\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, rgb(255, 255, 255))\"},children:\"Vi introducerer den mest effektive og p\\xe5lidelige laser: Redline-serien\"})})},Q8qQrPXi8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, rgb(255, 255, 255))\"},children:\"Vi introducerer den mest effektive og p\\xe5lidelige laser: Redline-serien\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, rgb(255, 255, 255))\"},children:\"Vi introducerer den mest effektive og p\\xe5lidelige laser: Redline-serien\"})}),className:\"framer-1edz7i7\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-195qq93\",\"data-framer-name\":\"All Card Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hnbinz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:undefined},Q8qQrPXi8:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1280px) - 48px) / 3, 1px)`,y:undefined},rTd9Yi3Gv:{height:399,width:undefined,y:(componentViewport?.y||0)+0+2622.4+189+0+0+131.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:179,width:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1280px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2772.4+189+0+0+131.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rb683p-container\",nodeId:\"rxTjzJs7h\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{style:{width:\"100%\"}},rTd9Yi3Gv:{Ac3QVduyp:\"Easy Maintenance\",style:{height:\"100%\"}}},children:/*#__PURE__*/_jsx(IntroducingCard,{Ac3QVduyp:\"Let vedligeholdelse\",FLJ4kdeFC:\"Aeon Redline-serien er designet til at maksimere fortjenesten med dens prim\\xe6re fokus p\\xe5 at \\xf8ge effektiviteten, alsidighed og brugervenlighed, samtidig med at nedetid og generel vedligeholdelse reduceres.\",height:\"100%\",id:\"rxTjzJs7h\",layoutId:\"rxTjzJs7h\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xnSrc0bp2:addImageAlt({src:\"https://framerusercontent.com/images/TjZ7Wnc3WQJSEEa4foYVykGFQW4.svg\"},\"\")})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:undefined},Q8qQrPXi8:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1280px) - 48px) / 3, 1px)`,y:undefined},rTd9Yi3Gv:{height:399,width:undefined,y:(componentViewport?.y||0)+0+2622.4+189+0+0+131.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:179,width:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1280px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2772.4+189+0+0+131.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-183316c-container\",nodeId:\"fegWl3BDd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{style:{width:\"100%\"}},rTd9Yi3Gv:{style:{height:\"100%\"}}},children:/*#__PURE__*/_jsx(IntroducingCard,{Ac3QVduyp:\"ULTRA RIGID DESIGN\",FLJ4kdeFC:\"De fleste lasere anvender en unibody-struktur, hvor komponenterne er boltet til en tynd ydre skal. Men hvis du har behov for hurtighed, er det yderst vigtigt at g\\xf8re rammen s\\xe5 stiv som muligt for at forhindre maskinen i at b\\xf8je. Rammen i Redline-serien er s\\xe5 robust, at du endda kan fjerne hele sidepanelet for st\\xf8rre tilg\\xe6ngelighed ved fejlfinding.\",height:\"100%\",id:\"fegWl3BDd\",layoutId:\"fegWl3BDd\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xnSrc0bp2:addImageAlt({src:\"https://framerusercontent.com/images/bDm33FDd0ISmh7Ht3C4Z65DZyQ.svg\"},\"\")})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:undefined},Q8qQrPXi8:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1280px) - 48px) / 3, 1px)`,y:undefined},rTd9Yi3Gv:{height:399,width:undefined,y:(componentViewport?.y||0)+0+2622.4+189+0+0+131.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:179,width:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1280px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2772.4+189+0+0+131.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17cfvhk-container\",nodeId:\"YWUsAD0Ri\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rTd9Yi3Gv:{style:{height:\"100%\"}}},children:/*#__PURE__*/_jsx(IntroducingCard,{Ac3QVduyp:\"St\\xf8rre display\",FLJ4kdeFC:'Den seneste revision af NOVA-tastaturet er nu p\\xe5 vej til MIRA Redline-serien, som bringer almindeligt anvendte funktioner helt til overfladen, for reducerede ops\\xe6tningstider og generel brugervenlighed. Du kan endda overv\\xe5ge vandtemperatur, str\\xf8mstyrke (mA), lufttryk (psi) og temperaturen p\\xe5 din optik direkte fra det livlige 5\" LCD-display for den ultimative brugeroplevelse.',height:\"100%\",id:\"YWUsAD0Ri\",layoutId:\"YWUsAD0Ri\",style:{width:\"100%\"},width:\"100%\",xnSrc0bp2:addImageAlt({src:\"https://framerusercontent.com/images/AB0nsIdVkux6vhZcsomTytEvcHg.svg\"},\"\")})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:undefined},Q8qQrPXi8:{width:`min(${componentViewport?.width||\"100vw\"} - 64px, 1280px)`,y:undefined},rTd9Yi3Gv:{height:399,width:undefined,y:(componentViewport?.y||0)+0+2622.4+189+0+0+131.2+0+423}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:179,width:`min(${componentViewport?.width||\"100vw\"} - 128px, 1280px)`,y:(componentViewport?.y||0)+0+2772.4+189+0+0+131.2+0+203,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s35208-container\",nodeId:\"dcx6LldAw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rTd9Yi3Gv:{style:{height:\"100%\"}}},children:/*#__PURE__*/_jsx(IntroducingCard,{Ac3QVduyp:\"Sensor overv\\xe5gningssystem\",FLJ4kdeFC:\"Al optik er nu udstyret med termiske sensorer til at registrere og rapportere temperaturafl\\xe6sninger til tastaturet og dermed eliminere sandsynligheden for uventede fejl. Denne proaktive tilgang sparer dig ikke kun for dyre fejl og nedetid, den reducerer ogs\\xe5 behovet for hyppig uberettiget reng\\xf8ring. For at toppe det, registrerer controlleren nu disse afl\\xe6sninger sammen med omgivende temperatur, laserr\\xf8rets k\\xf8retid og maskinparametre, for at tjene som en diagnostisk log i tilf\\xe6lde af, at fejlfinding er n\\xf8dvendig.\",height:\"100%\",id:\"dcx6LldAw\",layoutId:\"dcx6LldAw\",style:{width:\"100%\"},width:\"100%\",xnSrc0bp2:addImageAlt({src:\"https://framerusercontent.com/images/FmHlK8bITh8neFerwocADH7AyIs.svg\"},\"\")})})})})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qfbvnc\",\"data-framer-name\":\"\\xa0Benefits\\xa0Plan\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o0zt0t\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-po479g\",\"data-framer-name\":\"Heading an button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gk1qts\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zkf43v\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-rc28ki\",\"data-styles-preset\":\"eV6sVEep_\",style:{\"--framer-text-alignment\":\"center\"},children:\"Vi holder din laser k\\xf8rende\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-rc28ki\",\"data-styles-preset\":\"eV6sVEep_\",children:\"Vi holder din laser k\\xf8rende\"})}),className:\"framer-w53ndl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1or0gm5 hidden-40x7p3\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3mfoph\",\"data-styles-preset\":\"FtGS0tkBH\",children:\"Hos Betamachines er vi stolte af at v\\xe6re dine f\\xf8rstehj\\xe6lpere og loyale partnere. Den st\\xf8tte, du f\\xe5r, r\\xe6kker langt ud over din laser. Her er 3 yderligere fordele, du f\\xe5r, n\\xe5r du k\\xf8ber en laser hos os.\"})}),className:\"framer-1icfsri\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ce8LqYsZc\"},implicitPathVariables:undefined},{href:{webPageId:\"ce8LqYsZc\"},implicitPathVariables:undefined},{href:{webPageId:\"ce8LqYsZc\"},implicitPathVariables:undefined},{href:{webPageId:\"ce8LqYsZc\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{y:undefined},Q8qQrPXi8:{y:undefined},rTd9Yi3Gv:{y:(componentViewport?.y||0)+0+3953.6000000000004+120+0+0+0+0+261}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+3663.6000000000004+120+0+0+0+0+274,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yzuk90-container\",nodeId:\"LAor2npAw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{xaW7KxkRA:resolvedLinks4[3]},Q8qQrPXi8:{xaW7KxkRA:resolvedLinks4[2]},rTd9Yi3Gv:{xaW7KxkRA:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(ButtonNavigation,{GPOFx2M9S:\"Kontakt os\",height:\"100%\",id:\"LAor2npAw\",layoutId:\"LAor2npAw\",SVINTT45q:\"rgb(0, 0, 0)\",variant:\"SaZQiEuLG\",width:\"100%\",xaW7KxkRA:resolvedLinks4[0],ZKQZnUQ77:{borderColor:\"rgba(255, 255, 255, 0.2)\",borderStyle:\"solid\",borderWidth:1}})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wq9szd\",\"data-framer-name\":\"Card Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{height:293,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1380px)`,y:undefined},Q8qQrPXi8:{height:350,width:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1380px) - 48px) / 3, 1px)`,y:undefined},rTd9Yi3Gv:{width:undefined,y:(componentViewport?.y||0)+0+3953.6000000000004+120+0+0+353+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:421,width:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1380px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+3663.6000000000004+120+0+0+366+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lgvz9q-container\",nodeId:\"mAMUkJLOS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{style:{width:\"100%\"}},rTd9Yi3Gv:{style:{height:\"100%\"}}},children:/*#__PURE__*/_jsx(BenefitsCard,{Cht_ZBydN:\"Vi holder din maskine k\\xf8rende, s\\xe5 du kan holde din forrerning k\\xf8rende.\\nF\\xe5 en serviceaftale skr\\xe6ddetsyet til dine behov.\\nKontakt os for at h\\xf8re mere.\",height:\"100%\",id:\"mAMUkJLOS\",layoutId:\"mAMUkJLOS\",s17QzORGr:\"Service Aftale\",sEbKYk393:addImageAlt({src:\"https://framerusercontent.com/images/yjJyE3f047Xusf2V3GYgtOh1I.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{height:293,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1380px)`,y:undefined},Q8qQrPXi8:{height:350,width:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1380px) - 48px) / 3, 1px)`,y:undefined},rTd9Yi3Gv:{width:undefined,y:(componentViewport?.y||0)+0+3953.6000000000004+120+0+0+353+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:421,width:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1380px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+3663.6000000000004+120+0+0+366+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rbe281-container\",nodeId:\"DDeeaK_c7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{style:{width:\"100%\"}},rTd9Yi3Gv:{style:{height:\"100%\"}}},children:/*#__PURE__*/_jsx(BenefitsCard,{Cht_ZBydN:\"I hele din lasers levetid hj\\xe6lper vi dig med at reducere nedetiden med gratis telefonsupport for hurtigt at diagnosticere og l\\xf8se simple fejl eksternt.\",height:\"100%\",id:\"DDeeaK_c7\",layoutId:\"DDeeaK_c7\",s17QzORGr:\"Ubegr\\xe6nset teknisk support\",sEbKYk393:addImageAlt({src:\"https://framerusercontent.com/images/joPbqcrc2cwelzqcduuWHluwoZI.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{height:293,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1380px)`,y:undefined},Q8qQrPXi8:{height:350,width:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1380px) - 48px) / 3, 1px)`,y:undefined},rTd9Yi3Gv:{width:undefined,y:(componentViewport?.y||0)+0+3953.6000000000004+120+0+0+353+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:421,width:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1380px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+3663.6000000000004+120+0+0+366+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yy6nov-container\",nodeId:\"Ut1b7GMKv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{style:{width:\"100%\"}},rTd9Yi3Gv:{style:{height:\"100%\"}}},children:/*#__PURE__*/_jsx(BenefitsCard,{Cht_ZBydN:\"Sov bedre om natten ved at vide, at du har en kvalificeret tekniker lige ved d\\xf8ren til mere komplekse situationer, hvor din laser har brug for teknisk assistance.\",height:\"100%\",id:\"Ut1b7GMKv\",layoutId:\"Ut1b7GMKv\",s17QzORGr:\"Akut service\",sEbKYk393:addImageAlt({src:\"https://framerusercontent.com/images/eoyemoIMBCzp0umU30YiHcZfXfk.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kl2c05\",\"data-framer-name\":\"Testimonials \",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1avz3xh\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9590bc\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1qg4exh\",\"data-styles-preset\":\"tpPIAAVeY\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a4e46bcc-1885-478c-b67d-c38328fddf6b, rgb(7, 1, 17))\"},children:[\"Vores kundeservice er uden \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, rgb(35, 91, 188))\"},children:\"sidestykke\"}),\".\"]})}),className:\"framer-1i210nk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1drvir\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d9shml\",\"data-framer-name\":\"Testimonial card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{height:476,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:undefined},Q8qQrPXi8:{height:448,width:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1200px) - 64px) / 3, 1px)`,y:undefined},rTd9Yi3Gv:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4967.6+120+0+0+113+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:431,width:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4690.6+120+0+0+113+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oeivca-container\",nodeId:\"IcpU8r3yF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{DdTPgiBs3:\"Leder af modelv\\xe6rkstedet p\\xe5 Det Kongelige Akademi\",height:\"100%\",id:\"IcpU8r3yF\",KrEN3P1nv:\"Folkene hos Betamachines er ikke bange for at rode med de maskiner, de s\\xe6lger. De t\\xf8r nogle ting\\u2028som almindelige virksomheder ikke g\\xf8r, det er befriende. De er det gode hack i industrien!\",layoutId:\"IcpU8r3yF\",style:{height:\"100%\",width:\"100%\"},w6QEYMrny:true,width:\"100%\",ZhBoi9VCs:\"Mads Bartholin Johnsen\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:undefined},Q8qQrPXi8:{width:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1200px) - 64px) / 3, 1px)`,y:undefined},rTd9Yi3Gv:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4967.6+120+0+0+113+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:431,width:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4690.6+120+0+0+113+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-175jq4g-container\",nodeId:\"Eh4C0IEQ4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8qQrPXi8:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(TestimonialCard,{DdTPgiBs3:\"Underviser p\\xe5 Billedskolen i Helsing\\xf8r\",height:\"100%\",id:\"Eh4C0IEQ4\",KrEN3P1nv:\"Det beriger mulighederne som ud\\xf8vende kunstner og underviser at have adgang til makerspacets\\u2028redskaber.\",layoutId:\"Eh4C0IEQ4\",style:{height:\"100%\",width:\"100%\"},w6QEYMrny:true,width:\"100%\",ZhBoi9VCs:\"Jakob T\\xe6kker\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:undefined},Q8qQrPXi8:{width:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1200px) - 64px) / 3, 1px)`,y:undefined},rTd9Yi3Gv:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4967.6+120+0+0+113+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:431,width:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4690.6+120+0+0+113+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n5g6b-container\",nodeId:\"u9d5jTuSd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{DdTPgiBs3:\"Underviser p\\xe5 Billedskolen i Helsing\\xf8r\",height:\"100%\",id:\"u9d5jTuSd\",KrEN3P1nv:\"Havde i g\\xe5r bes\\xf8g fra betamacines og nu k\\xf8re maskinen som en dr\\xf8m og teknikeren gav gode fif til forskellige indstillinger og reng\\xf8ringscyklus.\\nDet er en forn\\xf8jelse at have bes\\xf8g fra en som ved hvad han taler om og kan f\\xf8re det ud i praksis.\\nStor ros til Betamachines, de har reddet min jules\\xe6son.\",layoutId:\"u9d5jTuSd\",style:{width:\"100%\"},w6QEYMrny:false,width:\"100%\",ZhBoi9VCs:\"Torben Kristensen\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9h5ii5\",\"data-framer-name\":\"Who we are\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nmkcut\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j2bd80\",\"data-framer-name\":\"Description \",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u7imul\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-rc28ki\",\"data-styles-preset\":\"eV6sVEep_\",style:{\"--framer-text-color\":\"var(--token-a8d4f015-2474-407f-ad25-0f276a004789, rgb(36, 36, 36))\"},children:\"Hvem er vi?\"})}),className:\"framer-wi6ytd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pokm4q\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4a6bbc7a-1317-4e5f-8845-296f544955c8, rgb(73, 71, 71))\"},children:\"Betamachines og vores gode venner hos AEON Laser er stolte af at v\\xe6re dine tekniske f\\xf8rstehj\\xe6lpere og loyale partnere. Den st\\xf8tte du modtager r\\xe6kker langt ud over selve k\\xf8bet din laser. Vi hj\\xe6lper dig hele vejen.\"})}),className:\"framer-s70q57\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{y:undefined},Q8qQrPXi8:{y:undefined},rTd9Yi3Gv:{y:(componentViewport?.y||0)+0+5751.6+120+0+181+0+164}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+5474.6+120+0+164.5+0+164,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ei5rws-container\",nodeId:\"emGYmjGz3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonNavigation,{GPOFx2M9S:\"Kontakt os\",height:\"100%\",id:\"emGYmjGz3\",layoutId:\"emGYmjGz3\",SVINTT45q:\"rgb(0, 0, 0)\",variant:\"SaZQiEuLG\",width:\"100%\",ZKQZnUQ77:{borderColor:\"rgba(255, 255, 255, 0.2)\",borderStyle:\"solid\",borderWidth:1}})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{background:{alt:\"\",fit:\"fill\",pixelHeight:587,pixelWidth:658,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1380px)`,src:\"https://framerusercontent.com/images/yZU39YoKGiBmyHL43x7gJwYwA.png\",srcSet:\"https://framerusercontent.com/images/yZU39YoKGiBmyHL43x7gJwYwA.png?scale-down-to=512 512w,https://framerusercontent.com/images/yZU39YoKGiBmyHL43x7gJwYwA.png 658w\"}},Q8qQrPXi8:{background:{alt:\"\",fit:\"fill\",pixelHeight:587,pixelWidth:658,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1380px) - 64px) / 2, 1px)`,src:\"https://framerusercontent.com/images/yZU39YoKGiBmyHL43x7gJwYwA.png\",srcSet:\"https://framerusercontent.com/images/yZU39YoKGiBmyHL43x7gJwYwA.png?scale-down-to=512 512w,https://framerusercontent.com/images/yZU39YoKGiBmyHL43x7gJwYwA.png 658w\"}},rTd9Yi3Gv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5751.6+120+0+0),pixelHeight:587,pixelWidth:658,sizes:\"658px\",src:\"https://framerusercontent.com/images/yZU39YoKGiBmyHL43x7gJwYwA.png\",srcSet:\"https://framerusercontent.com/images/yZU39YoKGiBmyHL43x7gJwYwA.png?scale-down-to=512 512w,https://framerusercontent.com/images/yZU39YoKGiBmyHL43x7gJwYwA.png 658w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5474.6+120+0+0),pixelHeight:587,pixelWidth:658,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1380px) - 64px) / 2, 1px)`,src:\"https://framerusercontent.com/images/yZU39YoKGiBmyHL43x7gJwYwA.png\",srcSet:\"https://framerusercontent.com/images/yZU39YoKGiBmyHL43x7gJwYwA.png?scale-down-to=512 512w,https://framerusercontent.com/images/yZU39YoKGiBmyHL43x7gJwYwA.png 658w\"},className:\"framer-1vtrd6d\",\"data-framer-name\":\"Left image\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{y:undefined},Q8qQrPXi8:{y:undefined},rTd9Yi3Gv:{y:(componentViewport?.y||0)+0+6577.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1252,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6267.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pzk96r-container\",nodeId:\"JT5JQFoVF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{variant:\"kTS6BCHsV\"},Q8qQrPXi8:{variant:\"Ewovp3_nj\"},rTd9Yi3Gv:{variant:\"w4mnyQl4V\"}},children:/*#__PURE__*/_jsx(Contact,{height:\"100%\",id:\"JT5JQFoVF\",layoutId:\"JT5JQFoVF\",style:{width:\"100%\"},variant:\"qGQdXi516\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{y:undefined},Q8qQrPXi8:{y:undefined},rTd9Yi3Gv:{y:(componentViewport?.y||0)+0+7829.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:447,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7519.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lgosx-container\",nodeId:\"Qx9K1mGc1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{variant:\"zLw9shIj2\"},Q8qQrPXi8:{variant:\"gNIRtqcJb\"},rTd9Yi3Gv:{variant:\"WLd9u4Kq6\"}},children:/*#__PURE__*/_jsx(Cta,{height:\"100%\",id:\"Qx9K1mGc1\",layoutId:\"Qx9K1mGc1\",style:{width:\"100%\"},variant:\"zTngFmMBd\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{y:undefined},Q8qQrPXi8:{y:undefined},rTd9Yi3Gv:{y:(componentViewport?.y||0)+0+8276.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7966.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1onub8-container\",nodeId:\"Thnm6Gm0Y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KF67LzMFG:{variant:\"Kq3eYbZfp\"},Q8qQrPXi8:{variant:\"U0aFrEvIi\"},rTd9Yi3Gv:{variant:\"eWKkhI1ng\"}},children:/*#__PURE__*/_jsx(Foooter,{height:\"100%\",id:\"Thnm6Gm0Y\",layoutId:\"Thnm6Gm0Y\",style:{width:\"100%\"},variant:\"XzGrthQXf\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sKcnn.framer-lux5qc, .framer-sKcnn .framer-lux5qc { display: block; }\",\".framer-sKcnn.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-53c7600c-a178-48ae-be82-bbcb904e8111, #ffffff); 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-sKcnn .framer-11brfkb { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 10; }\",\".framer-sKcnn .framer-4it5n0 { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-ol65aa, .framer-sKcnn .framer-7mar0w, .framer-sKcnn .framer-1t1szfb, .framer-sKcnn .framer-w53ndl, .framer-sKcnn .framer-wi6ytd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sKcnn .framer-yxkn1r-container { flex: none; height: auto; position: relative; width: 100%; z-index: 4; }\",\".framer-sKcnn .framer-19dyqwc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; overflow: hidden; padding: 180px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-lec4fz, .framer-sKcnn .framer-1xo4euy { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%); bottom: 0px; flex: none; height: 887px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 2; }\",\".framer-sKcnn .framer-1bvh59x-container, .framer-sKcnn .framer-u5dx4g-container { bottom: 0px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; width: 100%; z-index: 2; }\",\".framer-sKcnn .framer-yfd6o6 { background-color: #1d1d1d; height: 850px; overflow: hidden; position: relative; width: 1620px; z-index: 10; }\",\".framer-sKcnn .framer-n9msyb { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 100px 75px 75px 75px; position: absolute; top: calc(49.94871794871797% - 100% / 2); width: 100%; }\",\".framer-sKcnn .framer-su5bvl, .framer-sKcnn .framer-slds0g, .framer-sKcnn .framer-1vs7an2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sKcnn .framer-1xll2up { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1050px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 10; }\",\".framer-sKcnn .framer-lsuggq, .framer-sKcnn .framer-1nded0x, .framer-sKcnn .framer-1an1jvi, .framer-sKcnn .framer-5i0dz9, .framer-sKcnn .framer-tadnfb, .framer-sKcnn .framer-1u4rgk9, .framer-sKcnn .framer-po479g, .framer-sKcnn .framer-gk1qts { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-80q1lm, .framer-sKcnn .framer-1penouw, .framer-sKcnn .framer-1audn4d, .framer-sKcnn .framer-1q51ljo, .framer-sKcnn .framer-19ei7vr, .framer-sKcnn .framer-ezypym, .framer-sKcnn .framer-19zv0p4, .framer-sKcnn .framer-ffi3rp, .framer-sKcnn .framer-4qyby6, .framer-sKcnn .framer-1rcxmnd, .framer-sKcnn .framer-1oblsiy, .framer-sKcnn .framer-1t0rqc1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sKcnn .framer-1xng4em { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-14rx5ms-container, .framer-sKcnn .framer-rvc58f-container, .framer-sKcnn .framer-1w2s5c-container, .framer-sKcnn .framer-171ddf0-container, .framer-sKcnn .framer-1y2le0h-container, .framer-sKcnn .framer-cy23eo-container, .framer-sKcnn .framer-urkzpz-container, .framer-sKcnn .framer-yzuk90-container, .framer-sKcnn .framer-1ei5rws-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-sKcnn .framer-peokvy { aspect-ratio: 1.3899521531100478 / 1; flex: 0.7 0 0px; height: var(--framer-aspect-ratio-supported, 432px); overflow: hidden; position: relative; width: 1px; }\",\".framer-sKcnn .framer-318l8r { background-color: #260404; height: 850px; overflow: hidden; position: relative; width: 1620px; z-index: 10; }\",\".framer-sKcnn .framer-b0ivgb, .framer-sKcnn .framer-boe6s2 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 120px 75px 75px 75px; position: absolute; top: calc(49.94871794871797% - 100% / 2); width: 100%; }\",\".framer-sKcnn .framer-nwo7wi, .framer-sKcnn .framer-esqqlm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1050px; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 10; }\",\".framer-sKcnn .framer-3icnsb, .framer-sKcnn .framer-1wl9rey { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-yjr737 { flex: 0.7 0 0px; height: 533px; overflow: hidden; position: relative; width: 1px; }\",\".framer-sKcnn .framer-1b0fejt { background-color: var(--token-d206f632-66cc-4401-9521-b7b51b3fcafd, #011638); height: 850px; overflow: hidden; position: relative; width: 1620px; z-index: 10; }\",\".framer-sKcnn .framer-ypmh36 { aspect-ratio: 1.0293103448275862 / 1; flex: 0.7 0 0px; height: var(--framer-aspect-ratio-supported, 194px); overflow: hidden; position: relative; width: 1px; }\",\".framer-sKcnn .framer-aygnnu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 799px; justify-content: flex-start; overflow: hidden; padding: 180px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-rel4lt { align-content: center; align-items: center; background-color: #011638; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 817px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 390px; }\",\".framer-sKcnn .framer-p2n6rx, .framer-sKcnn .framer-htf5np, .framer-sKcnn .framer-1lahc0y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 85px 24px 32px 24px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-bij3xe, .framer-sKcnn .framer-ypyba0, .framer-sKcnn .framer-kk8vh7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1050px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-sKcnn .framer-ldly8u, .framer-sKcnn .framer-17ps8f4, .framer-sKcnn .framer-ih7chr { 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-sKcnn .framer-12oaerb-container, .framer-sKcnn .framer-190yrp-container, .framer-sKcnn .framer-y9uy9-container { flex: none; height: auto; position: relative; width: 246px; }\",\".framer-sKcnn .framer-zq18p0 { flex: none; height: 341px; overflow: hidden; position: relative; width: 100%; }\",\".framer-sKcnn .framer-6o2phs { align-content: center; align-items: center; background-color: #260404; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 817px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 390px; }\",\".framer-sKcnn .framer-14be7kz { aspect-ratio: 2.109170305676856 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 162px); overflow: hidden; position: relative; width: 100%; }\",\".framer-sKcnn .framer-rg7s7w { align-content: center; align-items: center; background-color: #1d1d1d; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 817px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 390px; }\",\".framer-sKcnn .framer-1flccqq { flex: none; height: 172px; overflow: hidden; position: relative; width: 100%; }\",\".framer-sKcnn .framer-1w0hxdb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-1tp12u, .framer-sKcnn .framer-cqlg07 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-sKcnn .framer-w897ix, .framer-sKcnn .framer-10ytvvp { background-color: #2266ff; flex: none; height: 3px; overflow: hidden; position: relative; width: 100px; z-index: 1; }\",\".framer-sKcnn .framer-1v4fm37 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-e1k9oa { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 85px); overflow: visible; position: relative; width: 85px; }\",\".framer-sKcnn .framer-g13mom { flex: none; height: 64px; overflow: visible; position: relative; width: 47px; }\",\".framer-sKcnn .framer-h0h9vv { aspect-ratio: 4.411764705882353 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: visible; position: relative; width: 248px; }\",\".framer-sKcnn .framer-yjnokc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 66px); position: relative; width: 66px; }\",\".framer-sKcnn .framer-ah9zx2 { aspect-ratio: 1.4563106796116505 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: visible; position: relative; width: 82px; }\",\".framer-sKcnn .framer-1y2bz6l, .framer-sKcnn .framer-15licq5 { flex: none; height: 60px; overflow: hidden; position: relative; width: 100%; }\",\".framer-sKcnn .framer-19dopgr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-1c3qpsc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 85px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-1bsmuyd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-1dpei3z-container, .framer-sKcnn .framer-1kjvqf5-container, .framer-sKcnn .framer-ki23zk-container, .framer-sKcnn .framer-1rb683p-container, .framer-sKcnn .framer-183316c-container, .framer-sKcnn .framer-lgvz9q-container, .framer-sKcnn .framer-1yy6nov-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-sKcnn .framer-m2w9hm-container, .framer-sKcnn .framer-17cfvhk-container, .framer-sKcnn .framer-n5g6b-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-sKcnn .framer-25tjhn { flex: none; height: 120px; overflow: hidden; position: relative; width: 100%; }\",\".framer-sKcnn .framer-1nvbfku { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 189px 64px 189px 64px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-1fug3nx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-153j9u3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-1edz7i7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 952px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-sKcnn .framer-195qq93 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-1hnbinz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-s35208-container, .framer-sKcnn .framer-pzk96r-container, .framer-sKcnn .framer-lgosx-container, .framer-sKcnn .framer-1onub8-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-sKcnn .framer-qfbvnc, .framer-sKcnn .framer-9h5ii5 { align-content: center; align-items: center; background-color: var(--token-08f01993-7628-4f5a-a06d-7510409b1c34, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 64px 120px 64px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-1o0zt0t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1380px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-zkf43v, .framer-sKcnn .framer-9590bc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-1or0gm5, .framer-sKcnn .framer-pokm4q { background-color: var(--token-74345f2b-7a91-4b8a-84f7-52b9bcb4ba03, #307d7d); flex: none; height: 3px; overflow: hidden; position: relative; width: 100px; }\",\".framer-sKcnn .framer-1icfsri { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 850px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sKcnn .framer-1wq9szd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-rbe281-container { flex: 1 0 0px; height: 421px; position: relative; width: 1px; }\",\".framer-sKcnn .framer-1kl2c05 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 64px 120px 64px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-1avz3xh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-1i210nk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 811px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sKcnn .framer-1drvir { background-color: var(--token-e6c855b4-be9d-42c3-9952-b278c17e423c, #235bbc); flex: none; height: 3px; overflow: hidden; position: relative; width: 100px; }\",\".framer-sKcnn .framer-d9shml { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 431px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-oeivca-container, .framer-sKcnn .framer-175jq4g-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-sKcnn .framer-1nmkcut { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1380px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-1j2bd80 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sKcnn .framer-u7imul { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sKcnn .framer-s70q57 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 658px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sKcnn .framer-1vtrd6d { aspect-ratio: 0.9168173598553345 / 1; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 549px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sKcnn.framer-72rtr7, .framer-sKcnn .framer-11brfkb, .framer-sKcnn .framer-4it5n0, .framer-sKcnn .framer-19dyqwc, .framer-sKcnn .framer-n9msyb, .framer-sKcnn .framer-su5bvl, .framer-sKcnn .framer-1xll2up, .framer-sKcnn .framer-lsuggq, .framer-sKcnn .framer-1xng4em, .framer-sKcnn .framer-b0ivgb, .framer-sKcnn .framer-slds0g, .framer-sKcnn .framer-nwo7wi, .framer-sKcnn .framer-1nded0x, .framer-sKcnn .framer-3icnsb, .framer-sKcnn .framer-boe6s2, .framer-sKcnn .framer-1vs7an2, .framer-sKcnn .framer-esqqlm, .framer-sKcnn .framer-1an1jvi, .framer-sKcnn .framer-1wl9rey, .framer-sKcnn .framer-aygnnu, .framer-sKcnn .framer-rel4lt, .framer-sKcnn .framer-p2n6rx, .framer-sKcnn .framer-bij3xe, .framer-sKcnn .framer-5i0dz9, .framer-sKcnn .framer-ldly8u, .framer-sKcnn .framer-6o2phs, .framer-sKcnn .framer-htf5np, .framer-sKcnn .framer-ypyba0, .framer-sKcnn .framer-tadnfb, .framer-sKcnn .framer-17ps8f4, .framer-sKcnn .framer-rg7s7w, .framer-sKcnn .framer-1lahc0y, .framer-sKcnn .framer-kk8vh7, .framer-sKcnn .framer-1u4rgk9, .framer-sKcnn .framer-ih7chr, .framer-sKcnn .framer-1w0hxdb, .framer-sKcnn .framer-1tp12u, .framer-sKcnn .framer-1v4fm37, .framer-sKcnn .framer-19dopgr, .framer-sKcnn .framer-1c3qpsc, .framer-sKcnn .framer-cqlg07, .framer-sKcnn .framer-1bsmuyd, .framer-sKcnn .framer-1nvbfku, .framer-sKcnn .framer-1fug3nx, .framer-sKcnn .framer-153j9u3, .framer-sKcnn .framer-195qq93, .framer-sKcnn .framer-1hnbinz, .framer-sKcnn .framer-qfbvnc, .framer-sKcnn .framer-1o0zt0t, .framer-sKcnn .framer-po479g, .framer-sKcnn .framer-gk1qts, .framer-sKcnn .framer-zkf43v, .framer-sKcnn .framer-1wq9szd, .framer-sKcnn .framer-1kl2c05, .framer-sKcnn .framer-1avz3xh, .framer-sKcnn .framer-9590bc, .framer-sKcnn .framer-d9shml, .framer-sKcnn .framer-9h5ii5, .framer-sKcnn .framer-1nmkcut, .framer-sKcnn .framer-1j2bd80, .framer-sKcnn .framer-u7imul { gap: 0px; } .framer-sKcnn.framer-72rtr7 > *, .framer-sKcnn .framer-11brfkb > *, .framer-sKcnn .framer-19dyqwc > *, .framer-sKcnn .framer-aygnnu > *, .framer-sKcnn .framer-19dopgr > *, .framer-sKcnn .framer-1nvbfku > *, .framer-sKcnn .framer-qfbvnc > *, .framer-sKcnn .framer-1kl2c05 > *, .framer-sKcnn .framer-9h5ii5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sKcnn.framer-72rtr7 > :first-child, .framer-sKcnn .framer-11brfkb > :first-child, .framer-sKcnn .framer-19dyqwc > :first-child, .framer-sKcnn .framer-1xll2up > :first-child, .framer-sKcnn .framer-lsuggq > :first-child, .framer-sKcnn .framer-nwo7wi > :first-child, .framer-sKcnn .framer-1nded0x > :first-child, .framer-sKcnn .framer-esqqlm > :first-child, .framer-sKcnn .framer-1an1jvi > :first-child, .framer-sKcnn .framer-aygnnu > :first-child, .framer-sKcnn .framer-p2n6rx > :first-child, .framer-sKcnn .framer-bij3xe > :first-child, .framer-sKcnn .framer-5i0dz9 > :first-child, .framer-sKcnn .framer-ldly8u > :first-child, .framer-sKcnn .framer-htf5np > :first-child, .framer-sKcnn .framer-ypyba0 > :first-child, .framer-sKcnn .framer-tadnfb > :first-child, .framer-sKcnn .framer-17ps8f4 > :first-child, .framer-sKcnn .framer-1lahc0y > :first-child, .framer-sKcnn .framer-kk8vh7 > :first-child, .framer-sKcnn .framer-1u4rgk9 > :first-child, .framer-sKcnn .framer-ih7chr > :first-child, .framer-sKcnn .framer-1w0hxdb > :first-child, .framer-sKcnn .framer-1tp12u > :first-child, .framer-sKcnn .framer-19dopgr > :first-child, .framer-sKcnn .framer-1c3qpsc > :first-child, .framer-sKcnn .framer-cqlg07 > :first-child, .framer-sKcnn .framer-1nvbfku > :first-child, .framer-sKcnn .framer-1fug3nx > :first-child, .framer-sKcnn .framer-195qq93 > :first-child, .framer-sKcnn .framer-qfbvnc > :first-child, .framer-sKcnn .framer-1o0zt0t > :first-child, .framer-sKcnn .framer-po479g > :first-child, .framer-sKcnn .framer-gk1qts > :first-child, .framer-sKcnn .framer-zkf43v > :first-child, .framer-sKcnn .framer-1kl2c05 > :first-child, .framer-sKcnn .framer-1avz3xh > :first-child, .framer-sKcnn .framer-9590bc > :first-child, .framer-sKcnn .framer-9h5ii5 > :first-child, .framer-sKcnn .framer-1j2bd80 > :first-child, .framer-sKcnn .framer-u7imul > :first-child { margin-top: 0px; } .framer-sKcnn.framer-72rtr7 > :last-child, .framer-sKcnn .framer-11brfkb > :last-child, .framer-sKcnn .framer-19dyqwc > :last-child, .framer-sKcnn .framer-1xll2up > :last-child, .framer-sKcnn .framer-lsuggq > :last-child, .framer-sKcnn .framer-nwo7wi > :last-child, .framer-sKcnn .framer-1nded0x > :last-child, .framer-sKcnn .framer-esqqlm > :last-child, .framer-sKcnn .framer-1an1jvi > :last-child, .framer-sKcnn .framer-aygnnu > :last-child, .framer-sKcnn .framer-p2n6rx > :last-child, .framer-sKcnn .framer-bij3xe > :last-child, .framer-sKcnn .framer-5i0dz9 > :last-child, .framer-sKcnn .framer-ldly8u > :last-child, .framer-sKcnn .framer-htf5np > :last-child, .framer-sKcnn .framer-ypyba0 > :last-child, .framer-sKcnn .framer-tadnfb > :last-child, .framer-sKcnn .framer-17ps8f4 > :last-child, .framer-sKcnn .framer-1lahc0y > :last-child, .framer-sKcnn .framer-kk8vh7 > :last-child, .framer-sKcnn .framer-1u4rgk9 > :last-child, .framer-sKcnn .framer-ih7chr > :last-child, .framer-sKcnn .framer-1w0hxdb > :last-child, .framer-sKcnn .framer-1tp12u > :last-child, .framer-sKcnn .framer-19dopgr > :last-child, .framer-sKcnn .framer-1c3qpsc > :last-child, .framer-sKcnn .framer-cqlg07 > :last-child, .framer-sKcnn .framer-1nvbfku > :last-child, .framer-sKcnn .framer-1fug3nx > :last-child, .framer-sKcnn .framer-195qq93 > :last-child, .framer-sKcnn .framer-qfbvnc > :last-child, .framer-sKcnn .framer-1o0zt0t > :last-child, .framer-sKcnn .framer-po479g > :last-child, .framer-sKcnn .framer-gk1qts > :last-child, .framer-sKcnn .framer-zkf43v > :last-child, .framer-sKcnn .framer-1kl2c05 > :last-child, .framer-sKcnn .framer-1avz3xh > :last-child, .framer-sKcnn .framer-9590bc > :last-child, .framer-sKcnn .framer-9h5ii5 > :last-child, .framer-sKcnn .framer-1j2bd80 > :last-child, .framer-sKcnn .framer-u7imul > :last-child { margin-bottom: 0px; } .framer-sKcnn .framer-4it5n0 > *, .framer-sKcnn .framer-n9msyb > *, .framer-sKcnn .framer-su5bvl > *, .framer-sKcnn .framer-1xng4em > *, .framer-sKcnn .framer-b0ivgb > *, .framer-sKcnn .framer-slds0g > *, .framer-sKcnn .framer-3icnsb > *, .framer-sKcnn .framer-boe6s2 > *, .framer-sKcnn .framer-1vs7an2 > *, .framer-sKcnn .framer-1wl9rey > *, .framer-sKcnn .framer-rel4lt > *, .framer-sKcnn .framer-6o2phs > *, .framer-sKcnn .framer-rg7s7w > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sKcnn .framer-4it5n0 > :first-child, .framer-sKcnn .framer-n9msyb > :first-child, .framer-sKcnn .framer-su5bvl > :first-child, .framer-sKcnn .framer-1xng4em > :first-child, .framer-sKcnn .framer-b0ivgb > :first-child, .framer-sKcnn .framer-slds0g > :first-child, .framer-sKcnn .framer-3icnsb > :first-child, .framer-sKcnn .framer-boe6s2 > :first-child, .framer-sKcnn .framer-1vs7an2 > :first-child, .framer-sKcnn .framer-1wl9rey > :first-child, .framer-sKcnn .framer-rel4lt > :first-child, .framer-sKcnn .framer-6o2phs > :first-child, .framer-sKcnn .framer-rg7s7w > :first-child, .framer-sKcnn .framer-1v4fm37 > :first-child, .framer-sKcnn .framer-1bsmuyd > :first-child, .framer-sKcnn .framer-153j9u3 > :first-child, .framer-sKcnn .framer-1hnbinz > :first-child, .framer-sKcnn .framer-1wq9szd > :first-child, .framer-sKcnn .framer-d9shml > :first-child, .framer-sKcnn .framer-1nmkcut > :first-child { margin-left: 0px; } .framer-sKcnn .framer-4it5n0 > :last-child, .framer-sKcnn .framer-n9msyb > :last-child, .framer-sKcnn .framer-su5bvl > :last-child, .framer-sKcnn .framer-1xng4em > :last-child, .framer-sKcnn .framer-b0ivgb > :last-child, .framer-sKcnn .framer-slds0g > :last-child, .framer-sKcnn .framer-3icnsb > :last-child, .framer-sKcnn .framer-boe6s2 > :last-child, .framer-sKcnn .framer-1vs7an2 > :last-child, .framer-sKcnn .framer-1wl9rey > :last-child, .framer-sKcnn .framer-rel4lt > :last-child, .framer-sKcnn .framer-6o2phs > :last-child, .framer-sKcnn .framer-rg7s7w > :last-child, .framer-sKcnn .framer-1v4fm37 > :last-child, .framer-sKcnn .framer-1bsmuyd > :last-child, .framer-sKcnn .framer-153j9u3 > :last-child, .framer-sKcnn .framer-1hnbinz > :last-child, .framer-sKcnn .framer-1wq9szd > :last-child, .framer-sKcnn .framer-d9shml > :last-child, .framer-sKcnn .framer-1nmkcut > :last-child { margin-right: 0px; } .framer-sKcnn .framer-1xll2up > *, .framer-sKcnn .framer-lsuggq > *, .framer-sKcnn .framer-nwo7wi > *, .framer-sKcnn .framer-1nded0x > *, .framer-sKcnn .framer-esqqlm > *, .framer-sKcnn .framer-1an1jvi > *, .framer-sKcnn .framer-p2n6rx > *, .framer-sKcnn .framer-bij3xe > *, .framer-sKcnn .framer-5i0dz9 > *, .framer-sKcnn .framer-htf5np > *, .framer-sKcnn .framer-ypyba0 > *, .framer-sKcnn .framer-tadnfb > *, .framer-sKcnn .framer-1lahc0y > *, .framer-sKcnn .framer-kk8vh7 > *, .framer-sKcnn .framer-1u4rgk9 > *, .framer-sKcnn .framer-1tp12u > *, .framer-sKcnn .framer-cqlg07 > *, .framer-sKcnn .framer-195qq93 > *, .framer-sKcnn .framer-po479g > *, .framer-sKcnn .framer-gk1qts > *, .framer-sKcnn .framer-1j2bd80 > *, .framer-sKcnn .framer-u7imul > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-sKcnn .framer-ldly8u > *, .framer-sKcnn .framer-17ps8f4 > *, .framer-sKcnn .framer-ih7chr > *, .framer-sKcnn .framer-zkf43v > *, .framer-sKcnn .framer-9590bc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sKcnn .framer-1w0hxdb > *, .framer-sKcnn .framer-1o0zt0t > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-sKcnn .framer-1v4fm37 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-sKcnn .framer-1c3qpsc > * { margin: 0px; margin-bottom: calc(85px / 2); margin-top: calc(85px / 2); } .framer-sKcnn .framer-1bsmuyd > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-sKcnn .framer-1fug3nx > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-sKcnn .framer-153j9u3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-sKcnn .framer-1hnbinz > *, .framer-sKcnn .framer-1wq9szd > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-sKcnn .framer-1avz3xh > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-sKcnn .framer-d9shml > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-sKcnn .framer-1nmkcut > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 1920px) { .framer-sKcnn.framer-72rtr7 { width: 1920px; } .framer-sKcnn .framer-11brfkb { order: 15; } .framer-sKcnn .framer-19dyqwc { height: 850px; order: 0; padding: 250px 0px 0px 0px; } .framer-sKcnn .framer-1w0hxdb { order: 5; } .framer-sKcnn .framer-1y2bz6l { order: 3; } .framer-sKcnn .framer-19dopgr { order: 6; padding: 0px; } .framer-sKcnn .framer-1dpei3z-container, .framer-sKcnn .framer-m2w9hm-container, .framer-sKcnn .framer-1kjvqf5-container, .framer-sKcnn .framer-ki23zk-container, .framer-sKcnn .framer-lgvz9q-container, .framer-sKcnn .framer-rbe281-container, .framer-sKcnn .framer-1yy6nov-container { flex: none; width: auto; } .framer-sKcnn .framer-25tjhn { order: 7; } .framer-sKcnn .framer-1nvbfku { order: 8; padding: 189px 0px 189px 0px; } .framer-sKcnn .framer-195qq93 { overflow: visible; } .framer-sKcnn .framer-1rb683p-container, .framer-sKcnn .framer-183316c-container { align-self: unset; flex: none; height: 399px; width: auto; } .framer-sKcnn .framer-17cfvhk-container { flex: none; height: 399px; width: auto; } .framer-sKcnn .framer-s35208-container { height: 399px; width: auto; } .framer-sKcnn .framer-qfbvnc { order: 9; padding: 120px 0px 120px 0px; } .framer-sKcnn .framer-zkf43v { flex-direction: row; justify-content: center; } .framer-sKcnn .framer-1kl2c05 { order: 10; padding: 120px 0px 120px 0px; } .framer-sKcnn .framer-9h5ii5 { order: 11; padding: 120px 0px 120px 0px; } .framer-sKcnn .framer-1vtrd6d { aspect-ratio: 1.1228668941979523 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 586px); width: 658px; } .framer-sKcnn .framer-pzk96r-container { order: 12; } .framer-sKcnn .framer-lgosx-container { order: 13; } .framer-sKcnn .framer-1onub8-container { order: 14; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sKcnn .framer-zkf43v { gap: 0px; } .framer-sKcnn .framer-zkf43v > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sKcnn .framer-zkf43v > :first-child { margin-left: 0px; } .framer-sKcnn .framer-zkf43v > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-sKcnn.framer-72rtr7 { width: 810px; } .framer-sKcnn .framer-11brfkb { order: 15; } .framer-sKcnn .framer-19dyqwc { height: 737px; order: 0; padding: 160px 0px 0px 0px; } .framer-sKcnn .framer-1w0hxdb { order: 4; } .framer-sKcnn .framer-1y2bz6l { height: 40px; order: 3; } .framer-sKcnn .framer-19dopgr { order: 6; padding: 0px 20px 0px 20px; } .framer-sKcnn .framer-1c3qpsc { gap: 70px; } .framer-sKcnn .framer-1bsmuyd { flex-wrap: wrap; gap: 33px; } .framer-sKcnn .framer-1dpei3z-container, .framer-sKcnn .framer-m2w9hm-container, .framer-sKcnn .framer-1kjvqf5-container, .framer-sKcnn .framer-ki23zk-container { flex: none; width: auto; } .framer-sKcnn .framer-25tjhn { height: 80px; order: 7; } .framer-sKcnn .framer-1nvbfku { order: 8; padding: 120px 32px 120px 32px; } .framer-sKcnn .framer-1fug3nx { gap: 40px; } .framer-sKcnn .framer-195qq93 { flex-wrap: wrap; } .framer-sKcnn .framer-qfbvnc { order: 9; padding: 80px 20px 80px 20px; } .framer-sKcnn .framer-lgvz9q-container, .framer-sKcnn .framer-1yy6nov-container { align-self: unset; height: 350px; } .framer-sKcnn .framer-rbe281-container { height: 350px; } .framer-sKcnn .framer-1kl2c05 { order: 10; padding: 80px 20px 120px 20px; } .framer-sKcnn .framer-1avz3xh { height: 651px; } .framer-sKcnn .framer-d9shml { height: 498px; } .framer-sKcnn .framer-oeivca-container { height: 448px; } .framer-sKcnn .framer-175jq4g-container { height: auto; } .framer-sKcnn .framer-9h5ii5 { order: 11; padding: 80px 20px 80px 20px; } .framer-sKcnn .framer-1vtrd6d { height: var(--framer-aspect-ratio-supported, 385px); } .framer-sKcnn .framer-pzk96r-container { order: 12; } .framer-sKcnn .framer-lgosx-container { order: 13; } .framer-sKcnn .framer-1onub8-container { order: 14; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sKcnn .framer-1c3qpsc, .framer-sKcnn .framer-1bsmuyd, .framer-sKcnn .framer-1fug3nx { gap: 0px; } .framer-sKcnn .framer-1c3qpsc > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-sKcnn .framer-1c3qpsc > :first-child, .framer-sKcnn .framer-1fug3nx > :first-child { margin-top: 0px; } .framer-sKcnn .framer-1c3qpsc > :last-child, .framer-sKcnn .framer-1fug3nx > :last-child { margin-bottom: 0px; } .framer-sKcnn .framer-1bsmuyd > * { margin: 0px; margin-left: calc(33px / 2); margin-right: calc(33px / 2); } .framer-sKcnn .framer-1bsmuyd > :first-child { margin-left: 0px; } .framer-sKcnn .framer-1bsmuyd > :last-child { margin-right: 0px; } .framer-sKcnn .framer-1fug3nx > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\",\"@media (max-width: 809px) { .framer-sKcnn.framer-72rtr7 { width: 390px; } .framer-sKcnn .framer-11brfkb { order: 15; } .framer-sKcnn .framer-yxkn1r-container { left: 50%; top: 0px; transform: translateX(-50%); z-index: 7; } .framer-sKcnn .framer-aygnnu { height: 892px; order: 2; overflow: visible; padding: 120px 0px 0px 0px; } .framer-sKcnn .framer-u5dx4g-container { bottom: unset; top: calc(50.00000000000002% - 100% / 2); } .framer-sKcnn .framer-1w0hxdb { gap: 0px; order: 5; } .framer-sKcnn .framer-1v4fm37 { flex-wrap: wrap; gap: 24px; padding: 20px 20px 0px 20px; } .framer-sKcnn .framer-g13mom { aspect-ratio: 0.734375 / 1; height: var(--framer-aspect-ratio-supported, 48px); width: 35px; } .framer-sKcnn .framer-h0h9vv { height: var(--framer-aspect-ratio-supported, 36px); width: 159px; } .framer-sKcnn .framer-1y2bz6l { order: 0; } .framer-sKcnn .framer-15licq5 { order: 4; } .framer-sKcnn .framer-19dopgr { order: 6; padding: 0px 20px 0px 20px; } .framer-sKcnn .framer-1c3qpsc { gap: 60px; } .framer-sKcnn .framer-1bsmuyd, .framer-sKcnn .framer-1hnbinz, .framer-sKcnn .framer-1wq9szd, .framer-sKcnn .framer-d9shml, .framer-sKcnn .framer-1nmkcut { flex-direction: column; } .framer-sKcnn .framer-1dpei3z-container, .framer-sKcnn .framer-1kjvqf5-container, .framer-sKcnn .framer-ki23zk-container, .framer-sKcnn .framer-1rb683p-container, .framer-sKcnn .framer-183316c-container, .framer-sKcnn .framer-lgvz9q-container, .framer-sKcnn .framer-1yy6nov-container { align-self: unset; flex: none; width: 100%; } .framer-sKcnn .framer-m2w9hm-container, .framer-sKcnn .framer-17cfvhk-container, .framer-sKcnn .framer-175jq4g-container, .framer-sKcnn .framer-n5g6b-container { flex: none; width: 100%; } .framer-sKcnn .framer-25tjhn { height: 60px; order: 7; } .framer-sKcnn .framer-1nvbfku { order: 8; padding: 60px 20px 60px 20px; } .framer-sKcnn .framer-195qq93 { flex-wrap: wrap; } .framer-sKcnn .framer-qfbvnc { order: 9; padding: 60px 20px 60px 20px; } .framer-sKcnn .framer-w53ndl { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-sKcnn .framer-rbe281-container { flex: none; height: auto; width: 100%; } .framer-sKcnn .framer-1kl2c05 { order: 10; padding: 60px 20px 60px 20px; } .framer-sKcnn .framer-oeivca-container { flex: none; height: 476px; width: 100%; } .framer-sKcnn .framer-9h5ii5 { order: 11; padding: 60px 20px 60px 20px; } .framer-sKcnn .framer-1j2bd80 { flex: none; order: 1; width: 100%; } .framer-sKcnn .framer-1vtrd6d { flex: none; height: var(--framer-aspect-ratio-supported, 382px); order: 0; width: 100%; } .framer-sKcnn .framer-pzk96r-container { order: 12; } .framer-sKcnn .framer-lgosx-container { order: 13; } .framer-sKcnn .framer-1onub8-container { order: 14; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sKcnn .framer-1w0hxdb, .framer-sKcnn .framer-1v4fm37, .framer-sKcnn .framer-1c3qpsc, .framer-sKcnn .framer-1bsmuyd, .framer-sKcnn .framer-1hnbinz, .framer-sKcnn .framer-1wq9szd, .framer-sKcnn .framer-d9shml, .framer-sKcnn .framer-1nmkcut { gap: 0px; } .framer-sKcnn .framer-1w0hxdb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sKcnn .framer-1w0hxdb > :first-child, .framer-sKcnn .framer-1c3qpsc > :first-child, .framer-sKcnn .framer-1bsmuyd > :first-child, .framer-sKcnn .framer-1hnbinz > :first-child, .framer-sKcnn .framer-1wq9szd > :first-child, .framer-sKcnn .framer-d9shml > :first-child, .framer-sKcnn .framer-1nmkcut > :first-child { margin-top: 0px; } .framer-sKcnn .framer-1w0hxdb > :last-child, .framer-sKcnn .framer-1c3qpsc > :last-child, .framer-sKcnn .framer-1bsmuyd > :last-child, .framer-sKcnn .framer-1hnbinz > :last-child, .framer-sKcnn .framer-1wq9szd > :last-child, .framer-sKcnn .framer-d9shml > :last-child, .framer-sKcnn .framer-1nmkcut > :last-child { margin-bottom: 0px; } .framer-sKcnn .framer-1v4fm37 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-sKcnn .framer-1v4fm37 > :first-child { margin-left: 0px; } .framer-sKcnn .framer-1v4fm37 > :last-child { margin-right: 0px; } .framer-sKcnn .framer-1c3qpsc > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-sKcnn .framer-1bsmuyd > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-sKcnn .framer-1hnbinz > *, .framer-sKcnn .framer-1wq9szd > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-sKcnn .framer-d9shml > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-sKcnn .framer-1nmkcut > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8954\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rTd9Yi3Gv\":{\"layout\":[\"fixed\",\"auto\"]},\"Q8qQrPXi8\":{\"layout\":[\"fixed\",\"auto\"]},\"KF67LzMFG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-sKcnn\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8954,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K4RHKGAGLQZBXEZQT2O2AGSLKJF2E4YC/JRUTXNFPWLFGIEVSSEYOW7EP7TYM3V6A/UCDYLFFGLZRGCFY5GYDYM5LDB52BAR5M.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{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:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/E6J4GS76KHNRRUWODFCFOX2JRKNRSFVY/3GYVT5S4AH7VMPASDDKOTIPV6P3WJXGI/24R4YOH3G2SFDSTCNHOVGYEX3DMRC3CE.woff2\",weight:\"600\"}]},...NavigationFonts,...ButtonNavigationFonts,...SlideshowFonts,...LasersCardFonts,...IntroducingCardFonts,...BenefitsCardFonts,...TestimonialCardFonts,...ContactFonts,...CtaFonts,...FoooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"8954\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rTd9Yi3Gv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Q8qQrPXi8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KF67LzMFG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "t", "r", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "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", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "tagName", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "M8Ph3bgqC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "RichText2", "css", "FramerkIM3ouRIY", "withCSS", "kIM3ouRIY_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LaserTagButtonFonts", "getFonts", "kIM3ouRIY_default", "LasersCardValueFonts", "AZl9sH3C0_default", "ButtonNavigationFonts", "Jtah503q3_default", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "_01", "_02", "_03", "_04", "_05", "_06", "buttonName", "cardHeading", "cardImage", "description", "height", "id", "opacity01", "opacity02", "priceAmount", "tagName01", "tagName02", "tagName03", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "MuvYKca5m", "Cbqqkywya", "qFRgyrH6v", "bEpxta8sW", "uLWD1XIx7", "Y_DUqESfC", "s1iFsoPY8", "WmZ7pOpky", "AQXhM0_Sz", "TpDV1G3CF", "AZweSjfFv", "j7p72Mo6S", "sJaN_PW70", "LuhTB6CHu", "LO4pBYf5R", "ggV34xEjg", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "visible", "visible1", "router", "useRouter", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "kIM3ouRIY_default", "AZl9sH3C0_default", "ResolveLinks", "resolvedLinks", "Jtah503q3_default", "css", "FramerBHbWtTJEm", "withCSS", "BHbWtTJEm_default", "addPropertyControls", "ControlType", "addFonts", "LaserTagButtonFonts", "LasersCardValueFonts", "ButtonNavigationFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "comment", "height", "id", "name1", "title", "visible", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "KrEN3P1nv", "ZhBoi9VCs", "DdTPgiBs3", "w6QEYMrny", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "RichText2", "css", "FramerCT70IM8PT", "withCSS", "CT70IM8PT_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "description", "heading", "height", "icon", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "xnSrc0bp2", "Ac3QVduyp", "FLJ4kdeFC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerP8grC1VH8", "withCSS", "P8grC1VH8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "cardDescrib", "cardHeading", "height", "icon", "id", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "sEbKYk393", "s17QzORGr", "Cht_ZBydN", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerTbtoKi6JS", "withCSS", "TbtoKi6JS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "NavigationFonts", "getFonts", "NUCgH2cl7_default", "ButtonNavigationFonts", "Jtah503q3_default", "SlideshowFonts", "Slideshow", "LasersCardFonts", "BHbWtTJEm_default", "IntroducingCardFonts", "P8grC1VH8_default", "BenefitsCardFonts", "TbtoKi6JS_default", "TestimonialCardFonts", "CT70IM8PT_default", "ContactFonts", "TlLdzDn10_default", "CtaFonts", "DloSc0ls3_default", "FoooterFonts", "qqbEVYOSE_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "RichText2", "x", "PropertyOverrides2", "ComponentViewportProvider", "Container", "ResolveLinks", "resolvedLinks", "Image2", "resolvedLinks1", "resolvedLinks2", "getLoadingLazyAtYPosition", "SVG", "resolvedLinks3", "resolvedLinks4", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
