{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/9unx7g0F1eC2ZdEE6o3L/1p3uEjTIqapvnnVYFX7q/aPBKupae1.js", "ssg:https://framerusercontent.com/modules/mf4sym9l1uCHlqZwOK7S/VDw3DOISFHZMdjicgpqf/qdh47ofDI.js", "ssg:https://framerusercontent.com/modules/nq5fg7zCFaCNcBKLZYAU/LOl7oLMjhzzC4JdyEvV1/iM_Db61b0.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (5b26096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lrZ7kGWAhVjpbgzAryJK/MKwzrvsL5XKFAugh94bH/U1qcscO0z.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"iYNosgUzU\",\"CV9xh04Kg\",\"wggNZ6l1q\"];const serializationHash=\"framer-Od76Z\";const variantClassNames={CV9xh04Kg:\"framer-v-1iq77d9\",iYNosgUzU:\"framer-v-wv2jlf\",wggNZ6l1q:\"framer-v-10wjb8g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"iYNosgUzU\",Phone:\"wggNZ6l1q\",Tablet:\"CV9xh04Kg\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"iYNosgUzU\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iYNosgUzU\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"CV9xh04Kg\",\"wggNZ6l1q\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-wv2jlf\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"iYNosgUzU\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(217, 217, 217)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({CV9xh04Kg:{\"data-framer-name\":\"Tablet\"},wggNZ6l1q:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ij3om\",layoutDependency:layoutDependency,layoutId:\"UYh7uaaQ8\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://www.anmeld-haandvaerker.dk/maler/malerfirmaet-nordland-aps\",motionChild:true,nodeId:\"dZDbpHgyn\",scopeId:\"aPBKupae1\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-7u8qpq framer-1iy253k\",\"data-framer-name\":\"heading-and-text\",layoutDependency:layoutDependency,layoutId:\"dZDbpHgyn\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jvd2l9\",layoutDependency:layoutDependency,layoutId:\"lKQsJBA15\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-30l22d\",\"data-styles-preset\":\"U1qcscO0z\",children:\"Vores anmeldelser\"})}),className:\"framer-p9z27j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"s7bypKsAB\",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,{style:{\"--framer-text-alignment\":\"left\"},children:\"Vi har 5,0 stjerner ud af 5,0 fra alle vores kunder.\"})}),className:\"framer-hj57bz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"c4aubfDY3\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fzoe6y\",layoutDependency:layoutDependency,layoutId:\"f4Pqe4ysj\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jk4v62\",layoutDependency:layoutDependency,layoutId:\"cQzQwWB7K\",children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-7p5a81\",layoutDependency:layoutDependency,layoutId:\"BhZIrOk1R\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><g><path d=\"M 48 24 C 48 37.255 37.255 48 24 48 C 10.745 48 0 37.255 0 24 C 0 10.745 10.745 0 24 0 C 37.255 0 48 10.745 48 24 Z M 4.093 24 C 4.093 34.994 13.006 43.907 24 43.907 C 34.994 43.907 43.907 34.994 43.907 24 C 43.907 13.006 34.994 4.093 24 4.093 C 13.006 4.093 4.093 13.006 4.093 24 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 35.4 28.2 C 35.4 34.496 30.296 39.6 24 39.6 C 17.704 39.6 12.6 34.496 12.6 28.2 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.2 19.8 C 13.2 17.812 14.812 16.2 16.8 16.2 C 18.788 16.2 20.4 17.812 20.4 19.8 C 20.4 21.788 18.788 23.4 16.8 23.4 C 14.812 23.4 13.2 21.788 13.2 19.8 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 27.6 19.8 C 27.6 17.812 29.212 16.2 31.2 16.2 C 33.188 16.2 34.8 17.812 34.8 19.8 C 34.8 21.788 33.188 23.4 31.2 23.4 C 29.212 23.4 27.6 21.788 27.6 19.8 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-1vl04k2\",layoutDependency:layoutDependency,layoutId:\"KcXDSvmx7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><path d=\"M 48 24 C 48 37.255 37.255 48 24 48 C 10.745 48 0 37.255 0 24 C 0 10.745 10.745 0 24 0 C 37.255 0 48 10.745 48 24 Z M 4.093 24 C 4.093 34.994 13.006 43.907 24 43.907 C 34.994 43.907 43.907 34.994 43.907 24 C 43.907 13.006 34.994 4.093 24 4.093 C 13.006 4.093 4.093 13.006 4.093 24 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-k659xb\",layoutDependency:layoutDependency,layoutId:\"a8m1wba6e\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><path d=\"M 48 24 C 48 37.255 37.255 48 24 48 C 10.745 48 0 37.255 0 24 C 0 10.745 10.745 0 24 0 C 37.255 0 48 10.745 48 24 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c9zwoj\",layoutDependency:layoutDependency,layoutId:\"R_dzS6mn2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39.814 39.814\" overflow=\"visible\"><path d=\"M 0 19.907 C 0 30.901 8.912 39.814 19.907 39.814 C 30.901 39.814 39.814 30.901 39.814 19.907 C 39.814 8.912 30.901 0 19.907 0 C 8.912 0 0 8.912 0 19.907 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cd45rj\",layoutDependency:layoutDependency,layoutId:\"yqvpx1GjI\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.8 11.4\" overflow=\"visible\"><path d=\"M 22.8 0 C 22.8 6.296 17.696 11.4 11.4 11.4 C 5.104 11.4 0 6.296 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-emjc7q\",layoutDependency:layoutDependency,layoutId:\"na_mRZFk8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.2 7.2\" overflow=\"visible\"><path d=\"M 0 3.6 C 0 1.612 1.612 0 3.6 0 C 5.588 0 7.2 1.612 7.2 3.6 C 7.2 5.588 5.588 7.2 3.6 7.2 C 1.612 7.2 0 5.588 0 3.6 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1q2yaec\",layoutDependency:layoutDependency,layoutId:\"xcMVPVwZv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.2 7.2\" overflow=\"visible\"><path d=\"M 0 3.6 C 0 1.612 1.612 0 3.6 0 C 5.588 0 7.2 1.612 7.2 3.6 C 7.2 5.588 5.588 7.2 3.6 7.2 C 1.612 7.2 0 5.588 0 3.6 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-10tlpgs\",layoutDependency:layoutDependency,layoutId:\"mkO0Od0AA\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><g><path d=\"M 48 24 C 48 37.255 37.255 48 24 48 C 10.745 48 0 37.255 0 24 C 0 10.745 10.745 0 24 0 C 37.255 0 48 10.745 48 24 Z M 4.093 24 C 4.093 34.994 13.006 43.907 24 43.907 C 34.994 43.907 43.907 34.994 43.907 24 C 43.907 13.006 34.994 4.093 24 4.093 C 13.006 4.093 4.093 13.006 4.093 24 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 35.4 28.2 C 35.4 34.496 30.296 39.6 24 39.6 C 17.704 39.6 12.6 34.496 12.6 28.2 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.2 19.8 C 13.2 17.812 14.812 16.2 16.8 16.2 C 18.788 16.2 20.4 17.812 20.4 19.8 C 20.4 21.788 18.788 23.4 16.8 23.4 C 14.812 23.4 13.2 21.788 13.2 19.8 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 27.6 19.8 C 27.6 17.812 29.212 16.2 31.2 16.2 C 33.188 16.2 34.8 17.812 34.8 19.8 C 34.8 21.788 33.188 23.4 31.2 23.4 C 29.212 23.4 27.6 21.788 27.6 19.8 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-yytwzr\",layoutDependency:layoutDependency,layoutId:\"SFdlgz9ts\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><path d=\"M 48 24 C 48 37.255 37.255 48 24 48 C 10.745 48 0 37.255 0 24 C 0 10.745 10.745 0 24 0 C 37.255 0 48 10.745 48 24 Z M 4.093 24 C 4.093 34.994 13.006 43.907 24 43.907 C 34.994 43.907 43.907 34.994 43.907 24 C 43.907 13.006 34.994 4.093 24 4.093 C 13.006 4.093 4.093 13.006 4.093 24 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18ux2o4\",layoutDependency:layoutDependency,layoutId:\"NTr3KQ48G\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><path d=\"M 48 24 C 48 37.255 37.255 48 24 48 C 10.745 48 0 37.255 0 24 C 0 10.745 10.745 0 24 0 C 37.255 0 48 10.745 48 24 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-g6cjgt\",layoutDependency:layoutDependency,layoutId:\"zCqHGp2QU\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39.814 39.814\" overflow=\"visible\"><path d=\"M 0 19.907 C 0 30.901 8.912 39.814 19.907 39.814 C 30.901 39.814 39.814 30.901 39.814 19.907 C 39.814 8.912 30.901 0 19.907 0 C 8.912 0 0 8.912 0 19.907 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qdyn0b\",layoutDependency:layoutDependency,layoutId:\"acuvEECBB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.8 11.4\" overflow=\"visible\"><path d=\"M 22.8 0 C 22.8 6.296 17.696 11.4 11.4 11.4 C 5.104 11.4 0 6.296 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1335flf\",layoutDependency:layoutDependency,layoutId:\"h5dL8IKZw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.2 7.2\" overflow=\"visible\"><path d=\"M 0 3.6 C 0 1.612 1.612 0 3.6 0 C 5.588 0 7.2 1.612 7.2 3.6 C 7.2 5.588 5.588 7.2 3.6 7.2 C 1.612 7.2 0 5.588 0 3.6 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1b68fyo\",layoutDependency:layoutDependency,layoutId:\"bDEJAtxaK\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.2 7.2\" overflow=\"visible\"><path d=\"M 0 3.6 C 0 1.612 1.612 0 3.6 0 C 5.588 0 7.2 1.612 7.2 3.6 C 7.2 5.588 5.588 7.2 3.6 7.2 C 1.612 7.2 0 5.588 0 3.6 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1npzeof\",layoutDependency:layoutDependency,layoutId:\"hjixqxugo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><g><path d=\"M 48 24 C 48 37.255 37.255 48 24 48 C 10.745 48 0 37.255 0 24 C 0 10.745 10.745 0 24 0 C 37.255 0 48 10.745 48 24 Z M 4.093 24 C 4.093 34.994 13.006 43.907 24 43.907 C 34.994 43.907 43.907 34.994 43.907 24 C 43.907 13.006 34.994 4.093 24 4.093 C 13.006 4.093 4.093 13.006 4.093 24 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 35.4 28.2 C 35.4 34.496 30.296 39.6 24 39.6 C 17.704 39.6 12.6 34.496 12.6 28.2 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.2 19.8 C 13.2 17.812 14.812 16.2 16.8 16.2 C 18.788 16.2 20.4 17.812 20.4 19.8 C 20.4 21.788 18.788 23.4 16.8 23.4 C 14.812 23.4 13.2 21.788 13.2 19.8 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 27.6 19.8 C 27.6 17.812 29.212 16.2 31.2 16.2 C 33.188 16.2 34.8 17.812 34.8 19.8 C 34.8 21.788 33.188 23.4 31.2 23.4 C 29.212 23.4 27.6 21.788 27.6 19.8 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-18vgtv6\",layoutDependency:layoutDependency,layoutId:\"oFcjUazJx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><path d=\"M 48 24 C 48 37.255 37.255 48 24 48 C 10.745 48 0 37.255 0 24 C 0 10.745 10.745 0 24 0 C 37.255 0 48 10.745 48 24 Z M 4.093 24 C 4.093 34.994 13.006 43.907 24 43.907 C 34.994 43.907 43.907 34.994 43.907 24 C 43.907 13.006 34.994 4.093 24 4.093 C 13.006 4.093 4.093 13.006 4.093 24 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-xcuppe\",layoutDependency:layoutDependency,layoutId:\"jERORE5i1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><path d=\"M 48 24 C 48 37.255 37.255 48 24 48 C 10.745 48 0 37.255 0 24 C 0 10.745 10.745 0 24 0 C 37.255 0 48 10.745 48 24 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1j5vblm\",layoutDependency:layoutDependency,layoutId:\"TJfkAaUg7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39.814 39.814\" overflow=\"visible\"><path d=\"M 0 19.907 C 0 30.901 8.912 39.814 19.907 39.814 C 30.901 39.814 39.814 30.901 39.814 19.907 C 39.814 8.912 30.901 0 19.907 0 C 8.912 0 0 8.912 0 19.907 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dgg09x\",layoutDependency:layoutDependency,layoutId:\"VaWLxjRCS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.8 11.4\" overflow=\"visible\"><path d=\"M 22.8 0 C 22.8 6.296 17.696 11.4 11.4 11.4 C 5.104 11.4 0 6.296 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2h5f32\",layoutDependency:layoutDependency,layoutId:\"CsHn5VQOZ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.2 7.2\" overflow=\"visible\"><path d=\"M 0 3.6 C 0 1.612 1.612 0 3.6 0 C 5.588 0 7.2 1.612 7.2 3.6 C 7.2 5.588 5.588 7.2 3.6 7.2 C 1.612 7.2 0 5.588 0 3.6 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yuoiik\",layoutDependency:layoutDependency,layoutId:\"EQr7Wv6F7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.2 7.2\" overflow=\"visible\"><path d=\"M 0 3.6 C 0 1.612 1.612 0 3.6 0 C 5.588 0 7.2 1.612 7.2 3.6 C 7.2 5.588 5.588 7.2 3.6 7.2 C 1.612 7.2 0 5.588 0 3.6 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1npz81e\",layoutDependency:layoutDependency,layoutId:\"qMFQNPKFF\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><g><path d=\"M 48 24 C 48 37.255 37.255 48 24 48 C 10.745 48 0 37.255 0 24 C 0 10.745 10.745 0 24 0 C 37.255 0 48 10.745 48 24 Z M 4.093 24 C 4.093 34.994 13.006 43.907 24 43.907 C 34.994 43.907 43.907 34.994 43.907 24 C 43.907 13.006 34.994 4.093 24 4.093 C 13.006 4.093 4.093 13.006 4.093 24 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 35.4 28.2 C 35.4 34.496 30.296 39.6 24 39.6 C 17.704 39.6 12.6 34.496 12.6 28.2 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.2 19.8 C 13.2 17.812 14.812 16.2 16.8 16.2 C 18.788 16.2 20.4 17.812 20.4 19.8 C 20.4 21.788 18.788 23.4 16.8 23.4 C 14.812 23.4 13.2 21.788 13.2 19.8 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 27.6 19.8 C 27.6 17.812 29.212 16.2 31.2 16.2 C 33.188 16.2 34.8 17.812 34.8 19.8 C 34.8 21.788 33.188 23.4 31.2 23.4 C 29.212 23.4 27.6 21.788 27.6 19.8 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-y4va5k\",layoutDependency:layoutDependency,layoutId:\"lF1BHBhKj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><path d=\"M 48 24 C 48 37.255 37.255 48 24 48 C 10.745 48 0 37.255 0 24 C 0 10.745 10.745 0 24 0 C 37.255 0 48 10.745 48 24 Z M 4.093 24 C 4.093 34.994 13.006 43.907 24 43.907 C 34.994 43.907 43.907 34.994 43.907 24 C 43.907 13.006 34.994 4.093 24 4.093 C 13.006 4.093 4.093 13.006 4.093 24 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-756oho\",layoutDependency:layoutDependency,layoutId:\"TPMuglhVZ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><path d=\"M 48 24 C 48 37.255 37.255 48 24 48 C 10.745 48 0 37.255 0 24 C 0 10.745 10.745 0 24 0 C 37.255 0 48 10.745 48 24 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jphl5g\",layoutDependency:layoutDependency,layoutId:\"PXFNsHdiw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39.814 39.814\" overflow=\"visible\"><path d=\"M 0 19.907 C 0 30.901 8.912 39.814 19.907 39.814 C 30.901 39.814 39.814 30.901 39.814 19.907 C 39.814 8.912 30.901 0 19.907 0 C 8.912 0 0 8.912 0 19.907 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13kg08p\",layoutDependency:layoutDependency,layoutId:\"jHiAd3wq2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.8 11.4\" overflow=\"visible\"><path d=\"M 22.8 0 C 22.8 6.296 17.696 11.4 11.4 11.4 C 5.104 11.4 0 6.296 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1aqm2p1\",layoutDependency:layoutDependency,layoutId:\"XXLQuxFBO\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.2 7.2\" overflow=\"visible\"><path d=\"M 0 3.6 C 0 1.612 1.612 0 3.6 0 C 5.588 0 7.2 1.612 7.2 3.6 C 7.2 5.588 5.588 7.2 3.6 7.2 C 1.612 7.2 0 5.588 0 3.6 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nayy98\",layoutDependency:layoutDependency,layoutId:\"anNbu47M7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.2 7.2\" overflow=\"visible\"><path d=\"M 0 3.6 C 0 1.612 1.612 0 3.6 0 C 5.588 0 7.2 1.612 7.2 3.6 C 7.2 5.588 5.588 7.2 3.6 7.2 C 1.612 7.2 0 5.588 0 3.6 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-bbv8gq\",layoutDependency:layoutDependency,layoutId:\"ShPjg5OsX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><g><path d=\"M 48 24 C 48 37.255 37.255 48 24 48 C 10.745 48 0 37.255 0 24 C 0 10.745 10.745 0 24 0 C 37.255 0 48 10.745 48 24 Z M 4.093 24 C 4.093 34.994 13.006 43.907 24 43.907 C 34.994 43.907 43.907 34.994 43.907 24 C 43.907 13.006 34.994 4.093 24 4.093 C 13.006 4.093 4.093 13.006 4.093 24 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 35.4 28.2 C 35.4 34.496 30.296 39.6 24 39.6 C 17.704 39.6 12.6 34.496 12.6 28.2 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.2 19.8 C 13.2 17.812 14.812 16.2 16.8 16.2 C 18.788 16.2 20.4 17.812 20.4 19.8 C 20.4 21.788 18.788 23.4 16.8 23.4 C 14.812 23.4 13.2 21.788 13.2 19.8 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 27.6 19.8 C 27.6 17.812 29.212 16.2 31.2 16.2 C 33.188 16.2 34.8 17.812 34.8 19.8 C 34.8 21.788 33.188 23.4 31.2 23.4 C 29.212 23.4 27.6 21.788 27.6 19.8 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-8haj0k\",layoutDependency:layoutDependency,layoutId:\"PTp7WIsZq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><path d=\"M 48 24 C 48 37.255 37.255 48 24 48 C 10.745 48 0 37.255 0 24 C 0 10.745 10.745 0 24 0 C 37.255 0 48 10.745 48 24 Z M 4.093 24 C 4.093 34.994 13.006 43.907 24 43.907 C 34.994 43.907 43.907 34.994 43.907 24 C 43.907 13.006 34.994 4.093 24 4.093 C 13.006 4.093 4.093 13.006 4.093 24 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-kxfhze\",layoutDependency:layoutDependency,layoutId:\"m9TFsUXx7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\" overflow=\"visible\"><path d=\"M 48 24 C 48 37.255 37.255 48 24 48 C 10.745 48 0 37.255 0 24 C 0 10.745 10.745 0 24 0 C 37.255 0 48 10.745 48 24 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ww58xa\",layoutDependency:layoutDependency,layoutId:\"SXV8NRtd0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39.814 39.814\" overflow=\"visible\"><path d=\"M 0 19.907 C 0 30.901 8.912 39.814 19.907 39.814 C 30.901 39.814 39.814 30.901 39.814 19.907 C 39.814 8.912 30.901 0 19.907 0 C 8.912 0 0 8.912 0 19.907 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wghikk\",layoutDependency:layoutDependency,layoutId:\"QmYZZYEXH\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.8 11.4\" overflow=\"visible\"><path d=\"M 22.8 0 C 22.8 6.296 17.696 11.4 11.4 11.4 C 5.104 11.4 0 6.296 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4xavp4\",layoutDependency:layoutDependency,layoutId:\"PBZq3TTGs\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.2 7.2\" overflow=\"visible\"><path d=\"M 0 3.6 C 0 1.612 1.612 0 3.6 0 C 5.588 0 7.2 1.612 7.2 3.6 C 7.2 5.588 5.588 7.2 3.6 7.2 C 1.612 7.2 0 5.588 0 3.6 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xpljqt\",layoutDependency:layoutDependency,layoutId:\"Qnf6s7yNv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.2 7.2\" overflow=\"visible\"><path d=\"M 0 3.6 C 0 1.612 1.612 0 3.6 0 C 5.588 0 7.2 1.612 7.2 3.6 C 7.2 5.588 5.588 7.2 3.6 7.2 C 1.612 7.2 0 5.588 0 3.6 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\"},children:\"Baseret p\\xe5 + 120 anmeldelser\"})}),className:\"framer-orjsod\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TO6ydO7P0\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-18f1etj\",layoutDependency:layoutDependency,layoutId:\"oULKa_z6y\",style:{backgroundColor:\"rgb(217, 217, 217)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7yyluq-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kF01EGTNT-container\",nodeId:\"kF01EGTNT\",rendersWithMotion:true,scopeId:\"aPBKupae1\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"kF01EGTNT\",layoutId:\"kF01EGTNT\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://www.anmeld-haandvaerker.dk/maler/malerfirmaet-nordland-aps\",motionChild:true,nodeId:\"PVw7xJKsj\",scopeId:\"aPBKupae1\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-4yw723 framer-1iy253k\",\"data-framer-name\":\"heading-and-text\",layoutDependency:layoutDependency,layoutId:\"PVw7xJKsj\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1caai15\",layoutDependency:layoutDependency,layoutId:\"iauqARIxH\",children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-1ewz4bz\",layoutDependency:layoutDependency,layoutId:\"GDT8RA5vw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 17.7 14.1 C 17.7 17.248 15.148 19.8 12 19.8 C 8.852 19.8 6.3 17.248 6.3 14.1 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 6.6 9.9 C 6.6 8.906 7.406 8.1 8.4 8.1 C 9.394 8.1 10.2 8.906 10.2 9.9 C 10.2 10.894 9.394 11.7 8.4 11.7 C 7.406 11.7 6.6 10.894 6.6 9.9 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.8 9.9 C 13.8 8.906 14.606 8.1 15.6 8.1 C 16.594 8.1 17.4 8.906 17.4 9.9 C 17.4 10.894 16.594 11.7 15.6 11.7 C 14.606 11.7 13.8 10.894 13.8 9.9 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-4puxay\",layoutDependency:layoutDependency,layoutId:\"IyDRDxx3q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wpu0fv\",layoutDependency:layoutDependency,layoutId:\"FZj8wt0IS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-86fsdl\",layoutDependency:layoutDependency,layoutId:\"s1eAnTJu2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.907 19.907\" overflow=\"visible\"><path d=\"M 0 9.953 C 0 15.451 4.456 19.907 9.953 19.907 C 15.451 19.907 19.907 15.451 19.907 9.953 C 19.907 4.456 15.451 0 9.953 0 C 4.456 0 0 4.456 0 9.953 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kzs7b7\",layoutDependency:layoutDependency,layoutId:\"ReadGZTRT\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.4 5.7\" overflow=\"visible\"><path d=\"M 11.4 0 C 11.4 3.148 8.848 5.7 5.7 5.7 C 2.552 5.7 0 3.148 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3nctxd\",layoutDependency:layoutDependency,layoutId:\"vCZLgWUV6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-b7dpau\",layoutDependency:layoutDependency,layoutId:\"ZybrhnzOM\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-hm4v4l\",layoutDependency:layoutDependency,layoutId:\"aRzWkZ68M\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 17.7 14.1 C 17.7 17.248 15.148 19.8 12 19.8 C 8.852 19.8 6.3 17.248 6.3 14.1 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 6.6 9.9 C 6.6 8.906 7.406 8.1 8.4 8.1 C 9.394 8.1 10.2 8.906 10.2 9.9 C 10.2 10.894 9.394 11.7 8.4 11.7 C 7.406 11.7 6.6 10.894 6.6 9.9 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.8 9.9 C 13.8 8.906 14.606 8.1 15.6 8.1 C 16.594 8.1 17.4 8.906 17.4 9.9 C 17.4 10.894 16.594 11.7 15.6 11.7 C 14.606 11.7 13.8 10.894 13.8 9.9 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-4oceyn\",layoutDependency:layoutDependency,layoutId:\"JNozmozjf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1giloes\",layoutDependency:layoutDependency,layoutId:\"d7JgpIbFh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-as1b35\",layoutDependency:layoutDependency,layoutId:\"NZro6WU3f\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.907 19.907\" overflow=\"visible\"><path d=\"M 0 9.953 C 0 15.451 4.456 19.907 9.953 19.907 C 15.451 19.907 19.907 15.451 19.907 9.953 C 19.907 4.456 15.451 0 9.953 0 C 4.456 0 0 4.456 0 9.953 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1o4ltg4\",layoutDependency:layoutDependency,layoutId:\"a8g7ZzFsw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.4 5.7\" overflow=\"visible\"><path d=\"M 11.4 0 C 11.4 3.148 8.848 5.7 5.7 5.7 C 2.552 5.7 0 3.148 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bb2lwr\",layoutDependency:layoutDependency,layoutId:\"F4ofzD2zj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-b9g8ff\",layoutDependency:layoutDependency,layoutId:\"xryu0IDnQ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-a8rqsk\",layoutDependency:layoutDependency,layoutId:\"dCKrJns6E\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 17.7 14.1 C 17.7 17.248 15.148 19.8 12 19.8 C 8.852 19.8 6.3 17.248 6.3 14.1 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 6.6 9.9 C 6.6 8.906 7.406 8.1 8.4 8.1 C 9.394 8.1 10.2 8.906 10.2 9.9 C 10.2 10.894 9.394 11.7 8.4 11.7 C 7.406 11.7 6.6 10.894 6.6 9.9 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.8 9.9 C 13.8 8.906 14.606 8.1 15.6 8.1 C 16.594 8.1 17.4 8.906 17.4 9.9 C 17.4 10.894 16.594 11.7 15.6 11.7 C 14.606 11.7 13.8 10.894 13.8 9.9 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-9w4z1w\",layoutDependency:layoutDependency,layoutId:\"eKdmtDT1o\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-rk6gb\",layoutDependency:layoutDependency,layoutId:\"UldHr9ETy\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bw6i5t\",layoutDependency:layoutDependency,layoutId:\"z7urLyt14\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.907 19.907\" overflow=\"visible\"><path d=\"M 0 9.953 C 0 15.451 4.456 19.907 9.953 19.907 C 15.451 19.907 19.907 15.451 19.907 9.953 C 19.907 4.456 15.451 0 9.953 0 C 4.456 0 0 4.456 0 9.953 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-sy0wty\",layoutDependency:layoutDependency,layoutId:\"bBslMtx8Z\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.4 5.7\" overflow=\"visible\"><path d=\"M 11.4 0 C 11.4 3.148 8.848 5.7 5.7 5.7 C 2.552 5.7 0 3.148 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fcvr0m\",layoutDependency:layoutDependency,layoutId:\"maaC97N4H\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vnah6n\",layoutDependency:layoutDependency,layoutId:\"JX8bOQ2XM\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1wse6hy\",layoutDependency:layoutDependency,layoutId:\"yQYsptwyh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 17.7 14.1 C 17.7 17.248 15.148 19.8 12 19.8 C 8.852 19.8 6.3 17.248 6.3 14.1 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 6.6 9.9 C 6.6 8.906 7.406 8.1 8.4 8.1 C 9.394 8.1 10.2 8.906 10.2 9.9 C 10.2 10.894 9.394 11.7 8.4 11.7 C 7.406 11.7 6.6 10.894 6.6 9.9 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.8 9.9 C 13.8 8.906 14.606 8.1 15.6 8.1 C 16.594 8.1 17.4 8.906 17.4 9.9 C 17.4 10.894 16.594 11.7 15.6 11.7 C 14.606 11.7 13.8 10.894 13.8 9.9 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-13e5aj4\",layoutDependency:layoutDependency,layoutId:\"KZnDheqzt\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11qvz2t\",layoutDependency:layoutDependency,layoutId:\"tvRpOxdft\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rnob92\",layoutDependency:layoutDependency,layoutId:\"yHtQJihT7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.907 19.907\" overflow=\"visible\"><path d=\"M 0 9.953 C 0 15.451 4.456 19.907 9.953 19.907 C 15.451 19.907 19.907 15.451 19.907 9.953 C 19.907 4.456 15.451 0 9.953 0 C 4.456 0 0 4.456 0 9.953 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12e11qx\",layoutDependency:layoutDependency,layoutId:\"ODV2FCoAl\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.4 5.7\" overflow=\"visible\"><path d=\"M 11.4 0 C 11.4 3.148 8.848 5.7 5.7 5.7 C 2.552 5.7 0 3.148 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c1s6cz\",layoutDependency:layoutDependency,layoutId:\"bB65n21tp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17gacmd\",layoutDependency:layoutDependency,layoutId:\"aO695hdZb\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1hwdw0k\",layoutDependency:layoutDependency,layoutId:\"ndNcugv6E\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 17.7 14.1 C 17.7 17.248 15.148 19.8 12 19.8 C 8.852 19.8 6.3 17.248 6.3 14.1 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 6.6 9.9 C 6.6 8.906 7.406 8.1 8.4 8.1 C 9.394 8.1 10.2 8.906 10.2 9.9 C 10.2 10.894 9.394 11.7 8.4 11.7 C 7.406 11.7 6.6 10.894 6.6 9.9 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.8 9.9 C 13.8 8.906 14.606 8.1 15.6 8.1 C 16.594 8.1 17.4 8.906 17.4 9.9 C 17.4 10.894 16.594 11.7 15.6 11.7 C 14.606 11.7 13.8 10.894 13.8 9.9 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-1f4vwu8\",layoutDependency:layoutDependency,layoutId:\"XAU5B550p\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-sgx7jg\",layoutDependency:layoutDependency,layoutId:\"H0_1d1C9D\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-n2qzb3\",layoutDependency:layoutDependency,layoutId:\"Ewst1tmbd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.907 19.907\" overflow=\"visible\"><path d=\"M 0 9.953 C 0 15.451 4.456 19.907 9.953 19.907 C 15.451 19.907 19.907 15.451 19.907 9.953 C 19.907 4.456 15.451 0 9.953 0 C 4.456 0 0 4.456 0 9.953 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-iny83g\",layoutDependency:layoutDependency,layoutId:\"Exf0moAPD\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.4 5.7\" overflow=\"visible\"><path d=\"M 11.4 0 C 11.4 3.148 8.848 5.7 5.7 5.7 C 2.552 5.7 0 3.148 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1me7myo\",layoutDependency:layoutDependency,layoutId:\"qafYcYiWa\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11otn3b\",layoutDependency:layoutDependency,layoutId:\"ZpAV75tkr\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:\"Anders & Betina\"})}),className:\"framer-1exnfeh\",fonts:[\"FS;Plus Jakarta Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"EHl_jWQUP\",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,{style:{\"--framer-text-alignment\":\"left\"},children:\"Det er en af de mest p\\xe5lidelige h\\xe5ndv\\xe6rkere jeg har entreret med, og det er bestemt ikke sidste gang jeg hyrer dem.\"})}),className:\"framer-dttnhl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Pp0N07mVe\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.anmeld-haandvaerker.dk/maler/malerfirmaet-nordland-aps\",motionChild:true,nodeId:\"XqoH9v8Qc\",scopeId:\"aPBKupae1\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-12qfgph framer-1iy253k\",\"data-framer-name\":\"heading-and-text\",layoutDependency:layoutDependency,layoutId:\"XqoH9v8Qc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6nvryy\",layoutDependency:layoutDependency,layoutId:\"t8Kaw0DOe\",children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-1aquwlq\",layoutDependency:layoutDependency,layoutId:\"ekRl4LTsH\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 17.7 14.1 C 17.7 17.248 15.148 19.8 12 19.8 C 8.852 19.8 6.3 17.248 6.3 14.1 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 6.6 9.9 C 6.6 8.906 7.406 8.1 8.4 8.1 C 9.394 8.1 10.2 8.906 10.2 9.9 C 10.2 10.894 9.394 11.7 8.4 11.7 C 7.406 11.7 6.6 10.894 6.6 9.9 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.8 9.9 C 13.8 8.906 14.606 8.1 15.6 8.1 C 16.594 8.1 17.4 8.906 17.4 9.9 C 17.4 10.894 16.594 11.7 15.6 11.7 C 14.606 11.7 13.8 10.894 13.8 9.9 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-1ofj2wc\",layoutDependency:layoutDependency,layoutId:\"PINTfuTcD\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13tmcnt\",layoutDependency:layoutDependency,layoutId:\"tUL2sTPlJ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6q56e\",layoutDependency:layoutDependency,layoutId:\"BvGy4JimG\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.907 19.907\" overflow=\"visible\"><path d=\"M 0 9.953 C 0 15.451 4.456 19.907 9.953 19.907 C 15.451 19.907 19.907 15.451 19.907 9.953 C 19.907 4.456 15.451 0 9.953 0 C 4.456 0 0 4.456 0 9.953 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18sdnn4\",layoutDependency:layoutDependency,layoutId:\"WajaDiCkh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.4 5.7\" overflow=\"visible\"><path d=\"M 11.4 0 C 11.4 3.148 8.848 5.7 5.7 5.7 C 2.552 5.7 0 3.148 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mqii47\",layoutDependency:layoutDependency,layoutId:\"UqOH6n6H8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5piju3\",layoutDependency:layoutDependency,layoutId:\"Uv4Uetwps\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-2mmddb\",layoutDependency:layoutDependency,layoutId:\"od0isW9ef\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 17.7 14.1 C 17.7 17.248 15.148 19.8 12 19.8 C 8.852 19.8 6.3 17.248 6.3 14.1 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 6.6 9.9 C 6.6 8.906 7.406 8.1 8.4 8.1 C 9.394 8.1 10.2 8.906 10.2 9.9 C 10.2 10.894 9.394 11.7 8.4 11.7 C 7.406 11.7 6.6 10.894 6.6 9.9 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.8 9.9 C 13.8 8.906 14.606 8.1 15.6 8.1 C 16.594 8.1 17.4 8.906 17.4 9.9 C 17.4 10.894 16.594 11.7 15.6 11.7 C 14.606 11.7 13.8 10.894 13.8 9.9 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-mopctz\",layoutDependency:layoutDependency,layoutId:\"vNQyMdx6b\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-xpsx55\",layoutDependency:layoutDependency,layoutId:\"BBuERiJpg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-o4dqvm\",layoutDependency:layoutDependency,layoutId:\"imfAlCeC4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.907 19.907\" overflow=\"visible\"><path d=\"M 0 9.953 C 0 15.451 4.456 19.907 9.953 19.907 C 15.451 19.907 19.907 15.451 19.907 9.953 C 19.907 4.456 15.451 0 9.953 0 C 4.456 0 0 4.456 0 9.953 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qur5j0\",layoutDependency:layoutDependency,layoutId:\"aWhLPHwgd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.4 5.7\" overflow=\"visible\"><path d=\"M 11.4 0 C 11.4 3.148 8.848 5.7 5.7 5.7 C 2.552 5.7 0 3.148 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3z13tz\",layoutDependency:layoutDependency,layoutId:\"IKNmAiWEM\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-syzo40\",layoutDependency:layoutDependency,layoutId:\"IaH4TAPDE\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1qg4ni7\",layoutDependency:layoutDependency,layoutId:\"nFZhRnu_U\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 17.7 14.1 C 17.7 17.248 15.148 19.8 12 19.8 C 8.852 19.8 6.3 17.248 6.3 14.1 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 6.6 9.9 C 6.6 8.906 7.406 8.1 8.4 8.1 C 9.394 8.1 10.2 8.906 10.2 9.9 C 10.2 10.894 9.394 11.7 8.4 11.7 C 7.406 11.7 6.6 10.894 6.6 9.9 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.8 9.9 C 13.8 8.906 14.606 8.1 15.6 8.1 C 16.594 8.1 17.4 8.906 17.4 9.9 C 17.4 10.894 16.594 11.7 15.6 11.7 C 14.606 11.7 13.8 10.894 13.8 9.9 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-12zj5h5\",layoutDependency:layoutDependency,layoutId:\"HAgo4dTB_\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1dn9bb0\",layoutDependency:layoutDependency,layoutId:\"iFMOGPsAa\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6nsqbs\",layoutDependency:layoutDependency,layoutId:\"mQiFcfKqZ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.907 19.907\" overflow=\"visible\"><path d=\"M 0 9.953 C 0 15.451 4.456 19.907 9.953 19.907 C 15.451 19.907 19.907 15.451 19.907 9.953 C 19.907 4.456 15.451 0 9.953 0 C 4.456 0 0 4.456 0 9.953 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fvxzbf\",layoutDependency:layoutDependency,layoutId:\"u7tT4NZtX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.4 5.7\" overflow=\"visible\"><path d=\"M 11.4 0 C 11.4 3.148 8.848 5.7 5.7 5.7 C 2.552 5.7 0 3.148 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-z6z9yc\",layoutDependency:layoutDependency,layoutId:\"aVNShu5ex\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jpmve8\",layoutDependency:layoutDependency,layoutId:\"D3VUe0rrk\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-odhb5q\",layoutDependency:layoutDependency,layoutId:\"s_G9PB9bG\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 17.7 14.1 C 17.7 17.248 15.148 19.8 12 19.8 C 8.852 19.8 6.3 17.248 6.3 14.1 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 6.6 9.9 C 6.6 8.906 7.406 8.1 8.4 8.1 C 9.394 8.1 10.2 8.906 10.2 9.9 C 10.2 10.894 9.394 11.7 8.4 11.7 C 7.406 11.7 6.6 10.894 6.6 9.9 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.8 9.9 C 13.8 8.906 14.606 8.1 15.6 8.1 C 16.594 8.1 17.4 8.906 17.4 9.9 C 17.4 10.894 16.594 11.7 15.6 11.7 C 14.606 11.7 13.8 10.894 13.8 9.9 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-1sovjyx\",layoutDependency:layoutDependency,layoutId:\"P6BHcKV5d\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-kk99o2\",layoutDependency:layoutDependency,layoutId:\"D03YlRer2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-x02mmw\",layoutDependency:layoutDependency,layoutId:\"wuvYdEudX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.907 19.907\" overflow=\"visible\"><path d=\"M 0 9.953 C 0 15.451 4.456 19.907 9.953 19.907 C 15.451 19.907 19.907 15.451 19.907 9.953 C 19.907 4.456 15.451 0 9.953 0 C 4.456 0 0 4.456 0 9.953 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dx4tp7\",layoutDependency:layoutDependency,layoutId:\"a6j_xb_ge\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.4 5.7\" overflow=\"visible\"><path d=\"M 11.4 0 C 11.4 3.148 8.848 5.7 5.7 5.7 C 2.552 5.7 0 3.148 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-px3tde\",layoutDependency:layoutDependency,layoutId:\"l3GEnzirO\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18ryfow\",layoutDependency:layoutDependency,layoutId:\"tJ4FTHw7m\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-za700z\",layoutDependency:layoutDependency,layoutId:\"Lw9RnrE9r\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 17.7 14.1 C 17.7 17.248 15.148 19.8 12 19.8 C 8.852 19.8 6.3 17.248 6.3 14.1 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 6.6 9.9 C 6.6 8.906 7.406 8.1 8.4 8.1 C 9.394 8.1 10.2 8.906 10.2 9.9 C 10.2 10.894 9.394 11.7 8.4 11.7 C 7.406 11.7 6.6 10.894 6.6 9.9 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.8 9.9 C 13.8 8.906 14.606 8.1 15.6 8.1 C 16.594 8.1 17.4 8.906 17.4 9.9 C 17.4 10.894 16.594 11.7 15.6 11.7 C 14.606 11.7 13.8 10.894 13.8 9.9 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-1teg50z\",layoutDependency:layoutDependency,layoutId:\"BDiTohgEg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-d5kxct\",layoutDependency:layoutDependency,layoutId:\"FMFqtBFvL\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-id3n0u\",layoutDependency:layoutDependency,layoutId:\"KwDixCdjg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.907 19.907\" overflow=\"visible\"><path d=\"M 0 9.953 C 0 15.451 4.456 19.907 9.953 19.907 C 15.451 19.907 19.907 15.451 19.907 9.953 C 19.907 4.456 15.451 0 9.953 0 C 4.456 0 0 4.456 0 9.953 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hdtw4y\",layoutDependency:layoutDependency,layoutId:\"EUE5UBkPZ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.4 5.7\" overflow=\"visible\"><path d=\"M 11.4 0 C 11.4 3.148 8.848 5.7 5.7 5.7 C 2.552 5.7 0 3.148 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1els4pu\",layoutDependency:layoutDependency,layoutId:\"B4F2KdnHi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cp75mc\",layoutDependency:layoutDependency,layoutId:\"kAQalg5aK\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:\"Louise Herby\"})}),className:\"framer-or2rcu\",fonts:[\"FS;Plus Jakarta Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"ryYe4AWbP\",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,{style:{\"--framer-text-alignment\":\"left\"},children:\"Vi har haft en god oplevelse med Malerfirmaet Nordland ApS. Vi har f\\xe5et spartlet, slebet, malet, fuget etc. v\\xe6gge og loft i et v\\xe6relse. \"})}),className:\"framer-dtqadc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PcCIJ0Lbh\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.anmeld-haandvaerker.dk/maler/malerfirmaet-nordland-aps\",motionChild:true,nodeId:\"M_0H3th3N\",scopeId:\"aPBKupae1\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-2jtznc framer-1iy253k\",\"data-framer-name\":\"heading-and-text\",layoutDependency:layoutDependency,layoutId:\"M_0H3th3N\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zvqynq\",layoutDependency:layoutDependency,layoutId:\"UaiAeQmMJ\",children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-apm2o8\",layoutDependency:layoutDependency,layoutId:\"tNz7_z4hT\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 17.7 14.1 C 17.7 17.248 15.148 19.8 12 19.8 C 8.852 19.8 6.3 17.248 6.3 14.1 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 6.6 9.9 C 6.6 8.906 7.406 8.1 8.4 8.1 C 9.394 8.1 10.2 8.906 10.2 9.9 C 10.2 10.894 9.394 11.7 8.4 11.7 C 7.406 11.7 6.6 10.894 6.6 9.9 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.8 9.9 C 13.8 8.906 14.606 8.1 15.6 8.1 C 16.594 8.1 17.4 8.906 17.4 9.9 C 17.4 10.894 16.594 11.7 15.6 11.7 C 14.606 11.7 13.8 10.894 13.8 9.9 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-i9hrdb\",layoutDependency:layoutDependency,layoutId:\"d2DgNkTnB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1mn1eed\",layoutDependency:layoutDependency,layoutId:\"oHhcM8nP7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-n1g62h\",layoutDependency:layoutDependency,layoutId:\"RhtDjhnhR\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.907 19.907\" overflow=\"visible\"><path d=\"M 0 9.953 C 0 15.451 4.456 19.907 9.953 19.907 C 15.451 19.907 19.907 15.451 19.907 9.953 C 19.907 4.456 15.451 0 9.953 0 C 4.456 0 0 4.456 0 9.953 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13olqdt\",layoutDependency:layoutDependency,layoutId:\"GN4KociT4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.4 5.7\" overflow=\"visible\"><path d=\"M 11.4 0 C 11.4 3.148 8.848 5.7 5.7 5.7 C 2.552 5.7 0 3.148 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9bmcw8\",layoutDependency:layoutDependency,layoutId:\"g9WzWlL7B\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jvpeep\",layoutDependency:layoutDependency,layoutId:\"ygIh00wMt\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-16msgv9\",layoutDependency:layoutDependency,layoutId:\"OFkde0xyc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 17.7 14.1 C 17.7 17.248 15.148 19.8 12 19.8 C 8.852 19.8 6.3 17.248 6.3 14.1 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 6.6 9.9 C 6.6 8.906 7.406 8.1 8.4 8.1 C 9.394 8.1 10.2 8.906 10.2 9.9 C 10.2 10.894 9.394 11.7 8.4 11.7 C 7.406 11.7 6.6 10.894 6.6 9.9 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.8 9.9 C 13.8 8.906 14.606 8.1 15.6 8.1 C 16.594 8.1 17.4 8.906 17.4 9.9 C 17.4 10.894 16.594 11.7 15.6 11.7 C 14.606 11.7 13.8 10.894 13.8 9.9 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-5zu8qc\",layoutDependency:layoutDependency,layoutId:\"Pji2jfq5i\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jsdrvg\",layoutDependency:layoutDependency,layoutId:\"jCIIeOYvC\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-160hpun\",layoutDependency:layoutDependency,layoutId:\"EwLVhx1eY\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.907 19.907\" overflow=\"visible\"><path d=\"M 0 9.953 C 0 15.451 4.456 19.907 9.953 19.907 C 15.451 19.907 19.907 15.451 19.907 9.953 C 19.907 4.456 15.451 0 9.953 0 C 4.456 0 0 4.456 0 9.953 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xtflc7\",layoutDependency:layoutDependency,layoutId:\"sidBx7fh2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.4 5.7\" overflow=\"visible\"><path d=\"M 11.4 0 C 11.4 3.148 8.848 5.7 5.7 5.7 C 2.552 5.7 0 3.148 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-102y4pm\",layoutDependency:layoutDependency,layoutId:\"B4mVggODB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qdt0ur\",layoutDependency:layoutDependency,layoutId:\"ZxLF1LZKb\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-vlxfs7\",layoutDependency:layoutDependency,layoutId:\"Zt5OnLpHd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 17.7 14.1 C 17.7 17.248 15.148 19.8 12 19.8 C 8.852 19.8 6.3 17.248 6.3 14.1 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 6.6 9.9 C 6.6 8.906 7.406 8.1 8.4 8.1 C 9.394 8.1 10.2 8.906 10.2 9.9 C 10.2 10.894 9.394 11.7 8.4 11.7 C 7.406 11.7 6.6 10.894 6.6 9.9 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.8 9.9 C 13.8 8.906 14.606 8.1 15.6 8.1 C 16.594 8.1 17.4 8.906 17.4 9.9 C 17.4 10.894 16.594 11.7 15.6 11.7 C 14.606 11.7 13.8 10.894 13.8 9.9 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-119cjfs\",layoutDependency:layoutDependency,layoutId:\"m_cUfZc3a\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-dltin\",layoutDependency:layoutDependency,layoutId:\"NHJWZiQCi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-aj2370\",layoutDependency:layoutDependency,layoutId:\"CfTo3E7vD\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.907 19.907\" overflow=\"visible\"><path d=\"M 0 9.953 C 0 15.451 4.456 19.907 9.953 19.907 C 15.451 19.907 19.907 15.451 19.907 9.953 C 19.907 4.456 15.451 0 9.953 0 C 4.456 0 0 4.456 0 9.953 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-sjo79f\",layoutDependency:layoutDependency,layoutId:\"NNlAk6k6l\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.4 5.7\" overflow=\"visible\"><path d=\"M 11.4 0 C 11.4 3.148 8.848 5.7 5.7 5.7 C 2.552 5.7 0 3.148 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rqsxqk\",layoutDependency:layoutDependency,layoutId:\"BXZZzx1JO\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mg6r6j\",layoutDependency:layoutDependency,layoutId:\"XSBJsftFN\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-yfw70z\",layoutDependency:layoutDependency,layoutId:\"s4BAc_5wo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 17.7 14.1 C 17.7 17.248 15.148 19.8 12 19.8 C 8.852 19.8 6.3 17.248 6.3 14.1 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 6.6 9.9 C 6.6 8.906 7.406 8.1 8.4 8.1 C 9.394 8.1 10.2 8.906 10.2 9.9 C 10.2 10.894 9.394 11.7 8.4 11.7 C 7.406 11.7 6.6 10.894 6.6 9.9 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.8 9.9 C 13.8 8.906 14.606 8.1 15.6 8.1 C 16.594 8.1 17.4 8.906 17.4 9.9 C 17.4 10.894 16.594 11.7 15.6 11.7 C 14.606 11.7 13.8 10.894 13.8 9.9 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-14aqegb\",layoutDependency:layoutDependency,layoutId:\"hYH6sklQj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-p1adm7\",layoutDependency:layoutDependency,layoutId:\"ThnAoLW0q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yiazkq\",layoutDependency:layoutDependency,layoutId:\"caIolLvG6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.907 19.907\" overflow=\"visible\"><path d=\"M 0 9.953 C 0 15.451 4.456 19.907 9.953 19.907 C 15.451 19.907 19.907 15.451 19.907 9.953 C 19.907 4.456 15.451 0 9.953 0 C 4.456 0 0 4.456 0 9.953 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15yzhwa\",layoutDependency:layoutDependency,layoutId:\"hbtZ2dl4q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.4 5.7\" overflow=\"visible\"><path d=\"M 11.4 0 C 11.4 3.148 8.848 5.7 5.7 5.7 C 2.552 5.7 0 3.148 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10o0fak\",layoutDependency:layoutDependency,layoutId:\"L7SgAmSMH\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ow6u99\",layoutDependency:layoutDependency,layoutId:\"XJX9oFU2c\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-yhej5z\",layoutDependency:layoutDependency,layoutId:\"l3anMgczs\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 17.7 14.1 C 17.7 17.248 15.148 19.8 12 19.8 C 8.852 19.8 6.3 17.248 6.3 14.1 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 6.6 9.9 C 6.6 8.906 7.406 8.1 8.4 8.1 C 9.394 8.1 10.2 8.906 10.2 9.9 C 10.2 10.894 9.394 11.7 8.4 11.7 C 7.406 11.7 6.6 10.894 6.6 9.9 Z\" fill=\"rgb(0,119,68)\"></path><path d=\"M 13.8 9.9 C 13.8 8.906 14.606 8.1 15.6 8.1 C 16.594 8.1 17.4 8.906 17.4 9.9 C 17.4 10.894 16.594 11.7 15.6 11.7 C 14.606 11.7 13.8 10.894 13.8 9.9 Z\" fill=\"rgb(0,119,68)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-uen1yg\",layoutDependency:layoutDependency,layoutId:\"QAth2FWX2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z M 2.047 12 C 2.047 17.497 6.503 21.953 12 21.953 C 17.497 21.953 21.953 17.497 21.953 12 C 21.953 6.503 17.497 2.047 12 2.047 C 6.503 2.047 2.047 6.503 2.047 12 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14ygvmw\",layoutDependency:layoutDependency,layoutId:\"CTlvhdleR\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gur94v\",layoutDependency:layoutDependency,layoutId:\"DZ0N3JkcL\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.907 19.907\" overflow=\"visible\"><path d=\"M 0 9.953 C 0 15.451 4.456 19.907 9.953 19.907 C 15.451 19.907 19.907 15.451 19.907 9.953 C 19.907 4.456 15.451 0 9.953 0 C 4.456 0 0 4.456 0 9.953 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16nb62d\",layoutDependency:layoutDependency,layoutId:\"uIqRKB1Yn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.4 5.7\" overflow=\"visible\"><path d=\"M 11.4 0 C 11.4 3.148 8.848 5.7 5.7 5.7 C 2.552 5.7 0 3.148 0 0 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1g9rx7f\",layoutDependency:layoutDependency,layoutId:\"wWBjMZW2s\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15jpvhp\",layoutDependency:layoutDependency,layoutId:\"GCHVdXAXU\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.6 3.6\" overflow=\"visible\"><path d=\"M 0 1.8 C 0 0.806 0.806 0 1.8 0 C 2.794 0 3.6 0.806 3.6 1.8 C 3.6 2.794 2.794 3.6 1.8 3.6 C 0.806 3.6 0 2.794 0 1.8 Z\" fill=\"rgb(0,119,68)\"></path></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:\"Tobias\"})}),className:\"framer-1c7ee8b\",fonts:[\"FS;Plus Jakarta Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"bvus2UFtv\",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,{style:{\"--framer-text-alignment\":\"left\"},children:\"Super duper han er en rar mand fandt ham faktisk p\\xe5 TikTok hvor han laver lidt comadie mens han stadigv\\xe6k laver en reklame for ham selv.\"})}),className:\"framer-jdivje\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pZR0Uayv6\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-dakd0p\",layoutDependency:layoutDependency,layoutId:\"PfO1VKKfh\",style:{backgroundColor:\"rgb(217, 217, 217)\"}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Od76Z.framer-1iy253k, .framer-Od76Z .framer-1iy253k { display: block; }\",\".framer-Od76Z.framer-wv2jlf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-Od76Z .framer-1ij3om { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1320px; overflow: visible; padding: 80px 20px 80px 20px; position: relative; width: 100%; }\",\".framer-Od76Z .framer-7u8qpq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; max-width: 420px; overflow: hidden; padding: 0px 60px 0px 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-Od76Z .framer-1jvd2l9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Od76Z .framer-p9z27j { flex: none; height: auto; max-width: 580px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Od76Z .framer-hj57bz, .framer-Od76Z .framer-orjsod, .framer-Od76Z .framer-1exnfeh, .framer-Od76Z .framer-dttnhl, .framer-Od76Z .framer-or2rcu, .framer-Od76Z .framer-dtqadc, .framer-Od76Z .framer-1c7ee8b, .framer-Od76Z .framer-jdivje { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Od76Z .framer-fzoe6y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Od76Z .framer-1jk4v62 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Od76Z .framer-7p5a81, .framer-Od76Z .framer-10tlpgs, .framer-Od76Z .framer-1npzeof, .framer-Od76Z .framer-1npz81e, .framer-Od76Z .framer-bbv8gq { height: 48px; position: relative; width: 48px; }\",\".framer-Od76Z .framer-1vl04k2, .framer-Od76Z .framer-k659xb, .framer-Od76Z .framer-yytwzr, .framer-Od76Z .framer-18ux2o4, .framer-Od76Z .framer-18vgtv6, .framer-Od76Z .framer-xcuppe, .framer-Od76Z .framer-y4va5k, .framer-Od76Z .framer-756oho, .framer-Od76Z .framer-8haj0k, .framer-Od76Z .framer-kxfhze { height: 48px; left: 0px; position: absolute; top: 0px; width: 48px; }\",\".framer-Od76Z .framer-1c9zwoj, .framer-Od76Z .framer-g6cjgt, .framer-Od76Z .framer-1j5vblm, .framer-Od76Z .framer-1jphl5g, .framer-Od76Z .framer-1ww58xa { height: 40px; left: 4px; position: absolute; top: 4px; width: 40px; }\",\".framer-Od76Z .framer-1cd45rj, .framer-Od76Z .framer-1qdyn0b, .framer-Od76Z .framer-1dgg09x, .framer-Od76Z .framer-13kg08p, .framer-Od76Z .framer-wghikk { height: 12px; left: 13px; position: absolute; top: 28px; width: 23px; }\",\".framer-Od76Z .framer-emjc7q, .framer-Od76Z .framer-1335flf, .framer-Od76Z .framer-2h5f32, .framer-Od76Z .framer-1aqm2p1, .framer-Od76Z .framer-4xavp4 { height: 7px; left: 13px; position: absolute; top: 16px; width: 7px; }\",\".framer-Od76Z .framer-1q2yaec, .framer-Od76Z .framer-1b68fyo, .framer-Od76Z .framer-1yuoiik, .framer-Od76Z .framer-nayy98, .framer-Od76Z .framer-xpljqt { height: 7px; left: 28px; position: absolute; top: 16px; width: 7px; }\",\".framer-Od76Z .framer-18f1etj, .framer-Od76Z .framer-dakd0p { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-Od76Z .framer-7yyluq-container { flex: 1 0 0px; height: 200px; position: relative; width: 1px; }\",\".framer-Od76Z .framer-4yw723, .framer-Od76Z .framer-12qfgph, .framer-Od76Z .framer-2jtznc { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 280px; }\",\".framer-Od76Z .framer-1caai15, .framer-Od76Z .framer-6nvryy, .framer-Od76Z .framer-zvqynq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Od76Z .framer-1ewz4bz, .framer-Od76Z .framer-hm4v4l, .framer-Od76Z .framer-a8rqsk, .framer-Od76Z .framer-1wse6hy, .framer-Od76Z .framer-1hwdw0k, .framer-Od76Z .framer-1aquwlq, .framer-Od76Z .framer-2mmddb, .framer-Od76Z .framer-1qg4ni7, .framer-Od76Z .framer-odhb5q, .framer-Od76Z .framer-za700z, .framer-Od76Z .framer-apm2o8, .framer-Od76Z .framer-16msgv9, .framer-Od76Z .framer-vlxfs7, .framer-Od76Z .framer-yfw70z, .framer-Od76Z .framer-yhej5z { height: 24px; position: relative; width: 24px; }\",\".framer-Od76Z .framer-4puxay, .framer-Od76Z .framer-1wpu0fv, .framer-Od76Z .framer-4oceyn, .framer-Od76Z .framer-1giloes, .framer-Od76Z .framer-9w4z1w, .framer-Od76Z .framer-rk6gb, .framer-Od76Z .framer-13e5aj4, .framer-Od76Z .framer-11qvz2t, .framer-Od76Z .framer-1f4vwu8, .framer-Od76Z .framer-sgx7jg, .framer-Od76Z .framer-1ofj2wc, .framer-Od76Z .framer-13tmcnt, .framer-Od76Z .framer-mopctz, .framer-Od76Z .framer-xpsx55, .framer-Od76Z .framer-12zj5h5, .framer-Od76Z .framer-1dn9bb0, .framer-Od76Z .framer-1sovjyx, .framer-Od76Z .framer-kk99o2, .framer-Od76Z .framer-1teg50z, .framer-Od76Z .framer-d5kxct, .framer-Od76Z .framer-i9hrdb, .framer-Od76Z .framer-1mn1eed, .framer-Od76Z .framer-5zu8qc, .framer-Od76Z .framer-jsdrvg, .framer-Od76Z .framer-119cjfs, .framer-Od76Z .framer-dltin, .framer-Od76Z .framer-14aqegb, .framer-Od76Z .framer-p1adm7, .framer-Od76Z .framer-uen1yg, .framer-Od76Z .framer-14ygvmw { height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-Od76Z .framer-86fsdl, .framer-Od76Z .framer-as1b35, .framer-Od76Z .framer-1bw6i5t, .framer-Od76Z .framer-rnob92, .framer-Od76Z .framer-n2qzb3, .framer-Od76Z .framer-6q56e, .framer-Od76Z .framer-o4dqvm, .framer-Od76Z .framer-6nsqbs, .framer-Od76Z .framer-x02mmw, .framer-Od76Z .framer-id3n0u, .framer-Od76Z .framer-n1g62h, .framer-Od76Z .framer-160hpun, .framer-Od76Z .framer-aj2370, .framer-Od76Z .framer-1yiazkq, .framer-Od76Z .framer-1gur94v { height: 20px; left: 2px; position: absolute; top: 2px; width: 20px; }\",\".framer-Od76Z .framer-kzs7b7, .framer-Od76Z .framer-1o4ltg4, .framer-Od76Z .framer-sy0wty, .framer-Od76Z .framer-12e11qx, .framer-Od76Z .framer-iny83g, .framer-Od76Z .framer-18sdnn4, .framer-Od76Z .framer-1qur5j0, .framer-Od76Z .framer-fvxzbf, .framer-Od76Z .framer-1dx4tp7, .framer-Od76Z .framer-1hdtw4y, .framer-Od76Z .framer-13olqdt, .framer-Od76Z .framer-1xtflc7, .framer-Od76Z .framer-sjo79f, .framer-Od76Z .framer-15yzhwa, .framer-Od76Z .framer-16nb62d { height: 6px; left: 7px; position: absolute; top: 14px; width: 12px; }\",\".framer-Od76Z .framer-3nctxd, .framer-Od76Z .framer-bb2lwr, .framer-Od76Z .framer-fcvr0m, .framer-Od76Z .framer-1c1s6cz, .framer-Od76Z .framer-1me7myo, .framer-Od76Z .framer-1mqii47, .framer-Od76Z .framer-3z13tz, .framer-Od76Z .framer-z6z9yc, .framer-Od76Z .framer-px3tde, .framer-Od76Z .framer-1els4pu, .framer-Od76Z .framer-9bmcw8, .framer-Od76Z .framer-102y4pm, .framer-Od76Z .framer-rqsxqk, .framer-Od76Z .framer-10o0fak, .framer-Od76Z .framer-1g9rx7f { height: 4px; left: 7px; position: absolute; top: 8px; width: 4px; }\",\".framer-Od76Z .framer-b7dpau, .framer-Od76Z .framer-b9g8ff, .framer-Od76Z .framer-1vnah6n, .framer-Od76Z .framer-17gacmd, .framer-Od76Z .framer-11otn3b, .framer-Od76Z .framer-5piju3, .framer-Od76Z .framer-syzo40, .framer-Od76Z .framer-1jpmve8, .framer-Od76Z .framer-18ryfow, .framer-Od76Z .framer-cp75mc, .framer-Od76Z .framer-1jvpeep, .framer-Od76Z .framer-1qdt0ur, .framer-Od76Z .framer-mg6r6j, .framer-Od76Z .framer-ow6u99, .framer-Od76Z .framer-15jpvhp { height: 4px; left: 14px; position: absolute; top: 8px; width: 4px; }\",\".framer-Od76Z.framer-v-1iq77d9.framer-wv2jlf { width: 810px; }\",\".framer-Od76Z.framer-v-1iq77d9 .framer-1ij3om { max-width: unset; padding: 60px 0px 60px 0px; }\",\".framer-Od76Z.framer-v-10wjb8g.framer-wv2jlf { width: 390px; }\",\".framer-Od76Z.framer-v-10wjb8g .framer-1ij3om { max-width: unset; padding: 40px 0px 40px 0px; }\",...sharedStyle.css,'.framer-Od76Z[data-border=\"true\"]::after, .framer-Od76Z [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 363\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CV9xh04Kg\":{\"layout\":[\"fixed\",\"auto\"]},\"wggNZ6l1q\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameraPBKupae1=withCSS(Component,css,\"framer-Od76Z\");export default FrameraPBKupae1;FrameraPBKupae1.displayName=\"review-section\";FrameraPBKupae1.defaultProps={height:363,width:1440};addPropertyControls(FrameraPBKupae1,{variant:{options:[\"iYNosgUzU\",\"CV9xh04Kg\",\"wggNZ6l1q\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameraPBKupae1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"}]},...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraPBKupae1\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"363\",\"framerIntrinsicWidth\":\"1440\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CV9xh04Kg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wggNZ6l1q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aPBKupae1.map", "// Generated by Framer (47dffbb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/xR6norM857kAY1uW2i7L/55iNTBzLcwrealuFp0us/fZI6D5WkN.js\";const enabledGestures={KeqBGNe5Z:{hover:true}};const serializationHash=\"framer-mD5NE\";const variantClassNames={KeqBGNe5Z:\"framer-v-9ldxl1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,title,width,...props})=>{return{...props,NxTGoUaPq:link??props.NxTGoUaPq,wxMNVzJ82:title??props.wxMNVzJ82??\"Helsing\\xf8r\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,wxMNVzJ82,NxTGoUaPq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"KeqBGNe5Z\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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-9ldxl1\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"KeqBGNe5Z\",ref:refBinding,style:{opacity:1,...style},variants:{\"KeqBGNe5Z-hover\":{opacity:.5}},...addPropertyOverrides({\"KeqBGNe5Z-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1r3jewx\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:21,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"Cvf7CRmnn\",svg:'<svg width=\"20\" height=\"21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m9.617 19.126.058.033.023.014a.634.634 0 0 0 .603 0l.023-.013.06-.034c.325-.193.643-.4.953-.619a16.31 16.31 0 0 0 2.236-1.901c1.62-1.659 3.302-4.15 3.302-7.356a6.875 6.875 0 1 0-13.75 0c0 3.205 1.683 5.697 3.303 7.356.686.7 1.434 1.336 2.234 1.901.31.22.628.426.955.619ZM10 11.75a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z\" fill=\"#959595\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:NxTGoUaPq,motionChild:true,nodeId:\"J08bIr8lk\",openInNewTab:false,scopeId:\"qdh47ofDI\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1gm9dom\",\"data-styles-preset\":\"fZI6D5WkN\",children:\"Helsing\\xf8r\"})})})}),className:\"framer-iwxi1q\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J08bIr8lk\",text:wxMNVzJ82,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mD5NE.framer-16625zc, .framer-mD5NE .framer-16625zc { display: block; }\",\".framer-mD5NE.framer-9ldxl1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 173px; }\",\".framer-mD5NE .framer-1r3jewx { aspect-ratio: 0.9523809523809523 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 20px; }\",\".framer-mD5NE .framer-iwxi1q { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21\n * @framerIntrinsicWidth 172\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hSTZANvv7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"wxMNVzJ82\":\"title\",\"NxTGoUaPq\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerqdh47ofDI=withCSS(Component,css,\"framer-mD5NE\");export default Framerqdh47ofDI;Framerqdh47ofDI.displayName=\"city-link\";Framerqdh47ofDI.defaultProps={height:21,width:172};addPropertyControls(Framerqdh47ofDI,{wxMNVzJ82:{defaultValue:\"Helsing\\xf8r\",displayTextArea:false,title:\"Title\",type:ControlType.String},NxTGoUaPq:{title:\"Link\",type:ControlType.Link}});addFonts(Framerqdh47ofDI,[{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\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerqdh47ofDI\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"172\",\"framerIntrinsicHeight\":\"21\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hSTZANvv7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"wxMNVzJ82\\\":\\\"title\\\",\\\"NxTGoUaPq\\\":\\\"link\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qdh47ofDI.map", "// Generated by Framer (47dffbb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/lrZ7kGWAhVjpbgzAryJK/MKwzrvsL5XKFAugh94bH/U1qcscO0z.js\";import CityLink from\"https://framerusercontent.com/modules/mf4sym9l1uCHlqZwOK7S/VDw3DOISFHZMdjicgpqf/qdh47ofDI.js\";import Button from\"https://framerusercontent.com/modules/wpqN0iBepnImKiq1R5MR/vFSPJXybMWtfCPx3RnJK/x7eti4mzR.js\";const CityLinkFonts=getFonts(CityLink);const ButtonFonts=getFonts(Button);const cycleOrder=[\"do3Z0snlC\",\"ZfrZnmvYS\",\"BuPwINzU_\"];const serializationHash=\"framer-uTojS\";const variantClassNames={BuPwINzU_:\"framer-v-5weyb7\",do3Z0snlC:\"framer-v-6ek022\",ZfrZnmvYS:\"framer-v-1nm23xm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"do3Z0snlC\",Phone:\"BuPwINzU_\",Tablet:\"ZfrZnmvYS\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"do3Z0snlC\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"do3Z0snlC\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-6ek022\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"do3Z0snlC\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(217, 217, 217)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({BuPwINzU_:{\"data-framer-name\":\"Phone\"},ZfrZnmvYS:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19mbkku\",layoutDependency:layoutDependency,layoutId:\"tqKsiAjik\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:625.5555721271189,intrinsicWidth:534.4444586023876,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+80),pixelHeight:1126,pixelWidth:962,sizes:`min(max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px), 480px)`,src:\"https://framerusercontent.com/images/xeZo3xAfJTFdJaRkWVhmIoY7PWY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/xeZo3xAfJTFdJaRkWVhmIoY7PWY.png?scale-down-to=1024 874w,https://framerusercontent.com/images/xeZo3xAfJTFdJaRkWVhmIoY7PWY.png 962w\"},className:\"framer-1wakln8\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"sajEeyByG\",...addPropertyOverrides({BuPwINzU_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:625.5555721271189,intrinsicWidth:534.4444586023876,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+0),pixelHeight:1126,pixelWidth:962,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1320px) - 40px)`,src:\"https://framerusercontent.com/images/xeZo3xAfJTFdJaRkWVhmIoY7PWY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/xeZo3xAfJTFdJaRkWVhmIoY7PWY.png?scale-down-to=1024 874w,https://framerusercontent.com/images/xeZo3xAfJTFdJaRkWVhmIoY7PWY.png 962w\"}},ZfrZnmvYS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:625.5555721271189,intrinsicWidth:534.4444586023876,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+0),pixelHeight:1126,pixelWidth:962,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1320px) - 40px)`,src:\"https://framerusercontent.com/images/xeZo3xAfJTFdJaRkWVhmIoY7PWY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/xeZo3xAfJTFdJaRkWVhmIoY7PWY.png?scale-down-to=1024 874w,https://framerusercontent.com/images/xeZo3xAfJTFdJaRkWVhmIoY7PWY.png 962w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yl6b81\",\"data-framer-name\":\"heading-and-text\",layoutDependency:layoutDependency,layoutId:\"YeGreiTqc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1blur4a\",layoutDependency:layoutDependency,layoutId:\"Sg7BqddI9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-30l22d\",\"data-styles-preset\":\"U1qcscO0z\",children:\"Malerarbejde p\\xe5 i Lynge og p\\xe5 hele Sj\\xe6lland\"})}),className:\"framer-zhbdwb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Zr9RD3BsP\",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,{style:{\"--framer-text-alignment\":\"left\"},children:\"Herunder kan du se nogle af de byer vi operere i:\"})}),className:\"framer-13r0dap\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"T9XU1iF3k\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fu6eqh\",layoutDependency:layoutDependency,layoutId:\"Zr6Nk4ayd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15760su\",layoutDependency:layoutDependency,layoutId:\"WYfWvUsIJ\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"L0qt0dNEZ\"},implicitPathVariables:undefined},{href:{webPageId:\"L0qt0dNEZ\"},implicitPathVariables:undefined},{href:{webPageId:\"L0qt0dNEZ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+0,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+0+0+0},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xxg3mo-container\",layoutDependency:layoutDependency,layoutId:\"vZbViOekK-container\",nodeId:\"vZbViOekK\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"vZbViOekK\",layoutId:\"vZbViOekK\",NxTGoUaPq:resolvedLinks[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Albertslund\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ItWkfxcU3\"},implicitPathVariables:undefined},{href:{webPageId:\"ItWkfxcU3\"},implicitPathVariables:undefined},{href:{webPageId:\"ItWkfxcU3\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+37,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+0+0+37},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+37}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e37yvx-container\",layoutDependency:layoutDependency,layoutId:\"fskRKi00O-container\",nodeId:\"fskRKi00O\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"fskRKi00O\",layoutId:\"fskRKi00O\",NxTGoUaPq:resolvedLinks1[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Amager\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks1[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zIFC7VI8N\"},implicitPathVariables:undefined},{href:{webPageId:\"zIFC7VI8N\"},implicitPathVariables:undefined},{href:{webPageId:\"zIFC7VI8N\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+74,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+0+0+74},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+74}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1t1un9k-container\",layoutDependency:layoutDependency,layoutId:\"p7DmP5CGm-container\",nodeId:\"p7DmP5CGm\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"p7DmP5CGm\",layoutId:\"p7DmP5CGm\",NxTGoUaPq:resolvedLinks2[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Ballerup\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks2[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CeBZj2K_V\"},implicitPathVariables:undefined},{href:{webPageId:\"CeBZj2K_V\"},implicitPathVariables:undefined},{href:{webPageId:\"CeBZj2K_V\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+111,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+0+0+111},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+111}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z0wstd-container\",layoutDependency:layoutDependency,layoutId:\"eZPNgef2Z-container\",nodeId:\"eZPNgef2Z\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"eZPNgef2Z\",layoutId:\"eZPNgef2Z\",NxTGoUaPq:resolvedLinks3[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Farum\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks3[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QGZO_y0mA\"},implicitPathVariables:undefined},{href:{webPageId:\"QGZO_y0mA\"},implicitPathVariables:undefined},{href:{webPageId:\"QGZO_y0mA\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+148,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+0+0+148},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+148}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kufpe9-container\",layoutDependency:layoutDependency,layoutId:\"odtiW64O_-container\",nodeId:\"odtiW64O_\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"odtiW64O_\",layoutId:\"odtiW64O_\",NxTGoUaPq:resolvedLinks4[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Faxe\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks4[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kkcy6y\",layoutDependency:layoutDependency,layoutId:\"uRIoAoo8H\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Ahl7Hi7op\"},implicitPathVariables:undefined},{href:{webPageId:\"Ahl7Hi7op\"},implicitPathVariables:undefined},{href:{webPageId:\"Ahl7Hi7op\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+0,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+0+0+0},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j91cfx-container\",layoutDependency:layoutDependency,layoutId:\"QF4sbn8fc-container\",nodeId:\"QF4sbn8fc\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"QF4sbn8fc\",layoutId:\"QF4sbn8fc\",NxTGoUaPq:resolvedLinks5[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Frederikssund\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks5[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lXUYmEflT\"},implicitPathVariables:undefined},{href:{webPageId:\"lXUYmEflT\"},implicitPathVariables:undefined},{href:{webPageId:\"lXUYmEflT\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+37,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+0+0+37},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+37}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rhltyv-container\",layoutDependency:layoutDependency,layoutId:\"wIBE9dKbO-container\",nodeId:\"wIBE9dKbO\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"wIBE9dKbO\",layoutId:\"wIBE9dKbO\",NxTGoUaPq:resolvedLinks6[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Frederiksv\\xe6rk\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks6[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"D5WNpRnss\"},implicitPathVariables:undefined},{href:{webPageId:\"D5WNpRnss\"},implicitPathVariables:undefined},{href:{webPageId:\"D5WNpRnss\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+74,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+0+0+74},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+74}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1v7ezuj-container\",layoutDependency:layoutDependency,layoutId:\"aAfM9M1z3-container\",nodeId:\"aAfM9M1z3\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"aAfM9M1z3\",layoutId:\"aAfM9M1z3\",NxTGoUaPq:resolvedLinks7[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Gentofte\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks7[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ET1XhODuD\"},implicitPathVariables:undefined},{href:{webPageId:\"ET1XhODuD\"},implicitPathVariables:undefined},{href:{webPageId:\"ET1XhODuD\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+111,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+0+0+111},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+111}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2rgi0t-container\",layoutDependency:layoutDependency,layoutId:\"yTkYgOwne-container\",nodeId:\"yTkYgOwne\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"yTkYgOwne\",layoutId:\"yTkYgOwne\",NxTGoUaPq:resolvedLinks8[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Gilleleje\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks8[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks8[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"AP9wmaBSX\"},implicitPathVariables:undefined},{href:{webPageId:\"AP9wmaBSX\"},implicitPathVariables:undefined},{href:{webPageId:\"AP9wmaBSX\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+148,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+0+0+148},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+148}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1c87zql-container\",layoutDependency:layoutDependency,layoutId:\"hAjl8jB9X-container\",nodeId:\"hAjl8jB9X\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"hAjl8jB9X\",layoutId:\"hAjl8jB9X\",NxTGoUaPq:resolvedLinks9[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Glostrup\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks9[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks9[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12bm8uj\",layoutDependency:layoutDependency,layoutId:\"DnrFFln0J\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"KfSVX62QT\"},implicitPathVariables:undefined},{href:{webPageId:\"KfSVX62QT\"},implicitPathVariables:undefined},{href:{webPageId:\"KfSVX62QT\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+0,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+179+0+0},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-max1bv-container\",layoutDependency:layoutDependency,layoutId:\"uk6bEbBXQ-container\",nodeId:\"uk6bEbBXQ\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"uk6bEbBXQ\",layoutId:\"uk6bEbBXQ\",NxTGoUaPq:resolvedLinks10[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Greve\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks10[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks10[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PLGzFeULu\"},implicitPathVariables:undefined},{href:{webPageId:\"PLGzFeULu\"},implicitPathVariables:undefined},{href:{webPageId:\"PLGzFeULu\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+37,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+179+0+37},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+37}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vnu9ol-container\",layoutDependency:layoutDependency,layoutId:\"H_yNy12jR-container\",nodeId:\"H_yNy12jR\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"H_yNy12jR\",layoutId:\"H_yNy12jR\",NxTGoUaPq:resolvedLinks11[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Hedehusene\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks11[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks11[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jwdFY4589\"},implicitPathVariables:undefined},{href:{webPageId:\"jwdFY4589\"},implicitPathVariables:undefined},{href:{webPageId:\"jwdFY4589\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+74,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+179+0+74},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+74}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10vgnbd-container\",layoutDependency:layoutDependency,layoutId:\"ScsEHvzKA-container\",nodeId:\"ScsEHvzKA\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"ScsEHvzKA\",layoutId:\"ScsEHvzKA\",NxTGoUaPq:resolvedLinks12[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Hellerup\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks12[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks12[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GVf0Kv_28\"},implicitPathVariables:undefined},{href:{webPageId:\"GVf0Kv_28\"},implicitPathVariables:undefined},{href:{webPageId:\"GVf0Kv_28\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+111,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+179+0+111},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+111}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1egy60d-container\",layoutDependency:layoutDependency,layoutId:\"d12LaMYvt-container\",nodeId:\"d12LaMYvt\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"d12LaMYvt\",layoutId:\"d12LaMYvt\",NxTGoUaPq:resolvedLinks13[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Helsing\\xf8r\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks13[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks13[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"c98ZTTCEf\"},implicitPathVariables:undefined},{href:{webPageId:\"c98ZTTCEf\"},implicitPathVariables:undefined},{href:{webPageId:\"c98ZTTCEf\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+148,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+179+0+148},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+148}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8wgvma-container\",layoutDependency:layoutDependency,layoutId:\"vc4UOsDNi-container\",nodeId:\"vc4UOsDNi\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"vc4UOsDNi\",layoutId:\"vc4UOsDNi\",NxTGoUaPq:resolvedLinks14[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Herlev\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks14[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks14[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-enx1l\",layoutDependency:layoutDependency,layoutId:\"no7Pp1dzg\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"D7RFOpplh\"},implicitPathVariables:undefined},{href:{webPageId:\"D7RFOpplh\"},implicitPathVariables:undefined},{href:{webPageId:\"D7RFOpplh\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+0,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+179+0+0},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-141fw7-container\",layoutDependency:layoutDependency,layoutId:\"o4RwOTuIm-container\",nodeId:\"o4RwOTuIm\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"o4RwOTuIm\",layoutId:\"o4RwOTuIm\",NxTGoUaPq:resolvedLinks15[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Holb\\xe6k\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks15[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks15[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"asXlk5ClI\"},implicitPathVariables:undefined},{href:{webPageId:\"asXlk5ClI\"},implicitPathVariables:undefined},{href:{webPageId:\"asXlk5ClI\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+37,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+179+0+37},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+37}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q7wgn2-container\",layoutDependency:layoutDependency,layoutId:\"LMSlajDQz-container\",nodeId:\"LMSlajDQz\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"LMSlajDQz\",layoutId:\"LMSlajDQz\",NxTGoUaPq:resolvedLinks16[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Hvidovre\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks16[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks16[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"djgDwRdTt\"},implicitPathVariables:undefined},{href:{webPageId:\"djgDwRdTt\"},implicitPathVariables:undefined},{href:{webPageId:\"djgDwRdTt\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+74,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+179+0+74},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+74}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j8h8y3-container\",layoutDependency:layoutDependency,layoutId:\"n5RgM8kyN-container\",nodeId:\"n5RgM8kyN\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"n5RgM8kyN\",layoutId:\"n5RgM8kyN\",NxTGoUaPq:resolvedLinks17[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"J\\xe6gerspris\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks17[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks17[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"TEbAhC9xF\"},implicitPathVariables:undefined},{href:{webPageId:\"TEbAhC9xF\"},implicitPathVariables:undefined},{href:{webPageId:\"TEbAhC9xF\"},implicitPathVariables:undefined}],children:resolvedLinks18=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+111,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+179+0+111},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+111}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14qjag3-container\",layoutDependency:layoutDependency,layoutId:\"vUKlXyiSX-container\",nodeId:\"vUKlXyiSX\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"vUKlXyiSX\",layoutId:\"vUKlXyiSX\",NxTGoUaPq:resolvedLinks18[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"R\\xf8dovre\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks18[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks18[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vqX8PbAFb\"},implicitPathVariables:undefined},{href:{webPageId:\"vqX8PbAFb\"},implicitPathVariables:undefined},{href:{webPageId:\"vqX8PbAFb\"},implicitPathVariables:undefined}],children:resolvedLinks19=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`max((max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 120px) / 2, 1px) - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+0+0+192+0+0+148,...addPropertyOverrides({BuPwINzU_:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 50px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+0+0+192+0+179+0+148},ZfrZnmvYS:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1320px) - 70px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+0+0+192+0+0+148}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j57f6k-container\",layoutDependency:layoutDependency,layoutId:\"ftPYdm59R-container\",nodeId:\"ftPYdm59R\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(CityLink,{height:\"100%\",id:\"ftPYdm59R\",layoutId:\"ftPYdm59R\",NxTGoUaPq:resolvedLinks19[0],style:{width:\"100%\"},width:\"100%\",wxMNVzJ82:\"Roskilde\",...addPropertyOverrides({BuPwINzU_:{NxTGoUaPq:resolvedLinks19[2]},ZfrZnmvYS:{NxTGoUaPq:resolvedLinks19[1]}},baseVariant,gestureVariant)})})})})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1srl5ft\",\"data-framer-name\":\"Button Wrap\",layoutDependency:layoutDependency,layoutId:\"eYanbc_iL\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+(((componentViewport?.height||722)-0-785.5556)/2+0+0)+166.7778+0+401+0,...addPropertyOverrides({BuPwINzU_:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1320px) - 40px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1215)-0-1408.5556)/2+0+0)+60+665.5556+0+572+0+0},ZfrZnmvYS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1517)-0-1277.5556)/2+0+0)+80+665.5556+0+401+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1po2tsu-container\",layoutDependency:layoutDependency,layoutId:\"sGacUPB22-container\",nodeId:\"sGacUPB22\",rendersWithMotion:true,scopeId:\"iM_Db61b0\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",I5F37_X5n:\"tel: +45 21 63 73 82\",id:\"sGacUPB22\",jqLz_Brtw:\"+45 21 63 73 82\",layoutId:\"sGacUPB22\",variant:\"KkPc4q5DS\",width:\"100%\",...addPropertyOverrides({BuPwINzU_:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uTojS.framer-1r3v527, .framer-uTojS .framer-1r3v527 { display: block; }\",\".framer-uTojS.framer-6ek022 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-uTojS .framer-19mbkku { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1320px; overflow: visible; padding: 80px 20px 80px 20px; position: relative; width: 100%; }\",\".framer-uTojS .framer-1wakln8 { aspect-ratio: 0.8543516873889876 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 562px); max-width: 480px; overflow: visible; position: relative; width: 1px; }\",\".framer-uTojS .framer-1yl6b81 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uTojS .framer-1blur4a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uTojS .framer-zhbdwb, .framer-uTojS .framer-13r0dap { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uTojS .framer-fu6eqh { 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-uTojS .framer-15760su, .framer-uTojS .framer-1kkcy6y, .framer-uTojS .framer-12bm8uj, .framer-uTojS .framer-enx1l { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uTojS .framer-xxg3mo-container, .framer-uTojS .framer-1e37yvx-container, .framer-uTojS .framer-1t1un9k-container, .framer-uTojS .framer-z0wstd-container, .framer-uTojS .framer-1kufpe9-container, .framer-uTojS .framer-j91cfx-container, .framer-uTojS .framer-rhltyv-container, .framer-uTojS .framer-1v7ezuj-container, .framer-uTojS .framer-2rgi0t-container, .framer-uTojS .framer-1c87zql-container, .framer-uTojS .framer-max1bv-container, .framer-uTojS .framer-1vnu9ol-container, .framer-uTojS .framer-10vgnbd-container, .framer-uTojS .framer-1egy60d-container, .framer-uTojS .framer-8wgvma-container, .framer-uTojS .framer-141fw7-container, .framer-uTojS .framer-q7wgn2-container, .framer-uTojS .framer-1j8h8y3-container, .framer-uTojS .framer-14qjag3-container, .framer-uTojS .framer-j57f6k-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-uTojS .framer-1srl5ft { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uTojS .framer-1po2tsu-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-uTojS.framer-v-1nm23xm.framer-6ek022 { width: 810px; }\",\".framer-uTojS.framer-v-1nm23xm .framer-19mbkku { flex-direction: column; gap: 40px; }\",\".framer-uTojS.framer-v-1nm23xm .framer-1wakln8 { flex: none; height: var(--framer-aspect-ratio-supported, 901px); max-width: unset; order: 0; width: 100%; }\",\".framer-uTojS.framer-v-1nm23xm .framer-1yl6b81 { flex: none; order: 1; width: 100%; }\",\".framer-uTojS.framer-v-5weyb7.framer-6ek022 { width: 390px; }\",\".framer-uTojS.framer-v-5weyb7 .framer-19mbkku { flex-direction: column; gap: 40px; padding: 60px 20px 60px 20px; }\",\".framer-uTojS.framer-v-5weyb7 .framer-1wakln8 { flex: none; height: var(--framer-aspect-ratio-supported, 410px); max-width: unset; order: 0; width: 100%; }\",\".framer-uTojS.framer-v-5weyb7 .framer-1yl6b81 { flex: none; gap: 32px; order: 1; width: 100%; }\",\".framer-uTojS.framer-v-5weyb7 .framer-fu6eqh { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); }\",\".framer-uTojS.framer-v-5weyb7 .framer-15760su, .framer-uTojS.framer-v-5weyb7 .framer-1kkcy6y, .framer-uTojS.framer-v-5weyb7 .framer-12bm8uj, .framer-uTojS.framer-v-5weyb7 .framer-enx1l { align-self: start; flex: none; justify-self: start; width: 100%; }\",\".framer-uTojS.framer-v-5weyb7 .framer-1srl5ft { flex-direction: column; }\",\".framer-uTojS.framer-v-5weyb7 .framer-1po2tsu-container { width: 100%; }\",...sharedStyle.css,'.framer-uTojS[data-border=\"true\"]::after, .framer-uTojS [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 722\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZfrZnmvYS\":{\"layout\":[\"fixed\",\"auto\"]},\"BuPwINzU_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameriM_Db61b0=withCSS(Component,css,\"framer-uTojS\");export default FrameriM_Db61b0;FrameriM_Db61b0.displayName=\"locations-section\";FrameriM_Db61b0.defaultProps={height:722,width:1440};addPropertyControls(FrameriM_Db61b0,{variant:{options:[\"do3Z0snlC\",\"ZfrZnmvYS\",\"BuPwINzU_\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameriM_Db61b0,[{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\"}]},...CityLinkFonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriM_Db61b0\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"722\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZfrZnmvYS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BuPwINzU_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./iM_Db61b0.map"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "n", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "r", "a", "velocityPerSecond", "n", "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", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "o", "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", "i", "s", "__rest", "inView$1", "o", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Link", "RichText2", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FrameraPBKupae1", "withCSS", "aPBKupae1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "wxMNVzJ82", "NxTGoUaPq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "RichText2", "Link", "css", "Framerqdh47ofDI", "withCSS", "qdh47ofDI_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CityLinkFonts", "getFonts", "qdh47ofDI_default", "ButtonFonts", "x7eti4mzR_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "resolvedLinks15", "resolvedLinks16", "resolvedLinks17", "resolvedLinks18", "resolvedLinks19", "css", "FrameriM_Db61b0", "withCSS", "iM_Db61b0_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
