{
  "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.13.1/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/a3ToMO3isHeNQ4l6vaga/gOK2N9JQPlhaBf0kh2i0/a2VJDegfY.js", "ssg:https://framerusercontent.com/modules/uztSQy2q4yYD5nPeGsVw/Wq1AuKXZfwXF1d35SLIl/mELEXBhEU.js", "ssg:https://framerusercontent.com/modules/Wf2kxJvv01tZDKnhDxzJ/Uouhc5CTIU4LGPaCd5lO/UJjyLp_2n.js", "ssg:https://framerusercontent.com/modules/qwt47lVrhKmNlT2ghBUt/9EbYKn9fhZmaFjiDBrw0/j9NBevuvT.js", "ssg:https://framerusercontent.com/modules/44aUcl2ufgCmYi4va7sw/FNWK6N3yQeFjbeWNI5n0/tUB56J4OC.js", "ssg:https://framerusercontent.com/modules/onD7sZaCWZp95Dpte2nQ/v3mVmVGhuSxJX0LtPJpP/t6Kczwxgv.js", "ssg:https://framerusercontent.com/modules/q4CeUNZ0BkIEUsM0dfCg/ReF7VuwbXTkGEFkABiKx/Zquyxrmh2.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,progress as o,isFunction as i,defaults as s,isCubicBezier as r,isEasingGenerator as a,isEasingList as c,isNumber as l,time as f,noop as u,removeItem as d,mix as g,getEasingForSegment as m,isString as h,defaultOffset as p,fillOffset as v,velocityPerSecond as y,interpolate as w}from\"@motionone/utils\";import{Animation as E,getEasingFunction as b}from\"@motionone/animation\";import{__rest as S}from\"tslib\";import{invariant as A}from\"hey-listen\";import{pregenerateKeyframes as O,calcGeneratorVelocity as x,spring as V,glide as z}from\"@motionone/generators\";const W=new WeakMap;function getAnimationData(e){W.has(e)||W.set(e,{transforms:[],values:new Map});return W.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const L=[\"\",\"X\",\"Y\",\"Z\"];const T=[\"translate\",\"scale\",\"rotate\",\"skew\"];const D={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const M={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const k={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:M,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:M};const B=new Map;const asTransformCssVar=e=>`--motion-${e}`;const j=[\"x\",\"y\",\"z\"];T.forEach((e=>{L.forEach((t=>{j.push(e+t);B.set(asTransformCssVar(e+t),k[e])}))}));const compareTransformOrder=(e,t)=>j.indexOf(e)-j.indexOf(t);const P=new Set(j);const isTransform=e=>P.has(e);const addTransformToElement=(e,t)=>{D[t]&&(t=D[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 $=new Set;function registerCssVariable(e){if(!$.has(e)){$.add(e);try{const{syntax:t,initialValue:n}=B.has(e)?B.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const testAnimation=(e,t)=>document.createElement(\"div\").animate(e,t);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]},{duration:.001}).finished),linearEasing:()=>{try{testAnimation({opacity:0},{easing:\"linear(0, 1)\"})}catch(e){return false}return true}};const R={};const H={};for(const e in C)H[e]=()=>{void 0===R[e]&&(R[e]=C[e]());return R[e]};const I=.015;const generateLinearEasingPoints=(e,t)=>{let n=\"\";const i=Math.round(t/I);for(let t=0;t<i;t++)n+=e(o(0,i-1,t))+\", \";return n.substring(0,n.length-2)};const convertEasing=(e,t)=>i(e)?H.linearEasing()?`linear(${generateLinearEasingPoints(e,t)})`:s.easing:r(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;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){D[e]&&(e=D[e]);return isTransform(e)?asTransformCssVar(e):e}const N={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=B.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 r=getDevToolsRecord();const d=false!==o.record&&r;let g;let{duration:m=s.duration,delay:h=s.delay,endDelay:p=s.endDelay,repeat:v=s.repeat,easing:y=s.easing,direction:w,offset:b,allowWebkitAcceleration:S=false}=o;const A=getAnimationData(e);const O=isTransform(t);let x=H.waapi();O&&addTransformToElement(e,t);const V=getStyleName(t);const z=getMotionValue(A.values,V);const W=B.get(V);stopAnimation(z.animation,!(a(y)&&z.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=N.get(e,V))&&void 0!==t?t:null===W||void 0===W?void 0:W.initialValue)&&void 0!==n?n:0};let s=hydrateKeyframes(keyframesList(n),readInitialValue);if(a(y)){const e=y.createAnimation(s,readInitialValue,O,V,z);y=e.easing;void 0!==e.keyframes&&(s=e.keyframes);void 0!==e.duration&&(m=e.duration)}isCssVar(V)&&(H.cssRegisterProperty()?registerCssVariable(V):x=false);O&&!H.linearEasing()&&(i(y)||c(y)&&y.some(i))&&(x=false);if(x){W&&(s=s.map((e=>l(e)?W.toDefaultUnit(e):e)));1!==s.length||H.partialKeyframes()&&!d||s.unshift(readInitialValue());const t={delay:f.ms(h),duration:f.ms(m),endDelay:f.ms(p),easing:c(y)?void 0:convertEasing(y,m),direction:w,iterations:v+1,fill:\"both\"};g=e.animate({[V]:s,offset:b,easing:c(y)?y.map((e=>convertEasing(e,m))):void 0},t);g.finished||(g.finished=new Promise(((e,t)=>{g.onfinish=e;g.oncancel=t})));const n=s[s.length-1];g.finished.then((()=>{N.set(e,V,n);g.cancel()})).catch(u);S||(g.playbackRate=1.000001)}else if(O){s=s.map((e=>\"string\"===typeof e?parseFloat(e):e));1===s.length&&s.unshift(parseFloat(readInitialValue()));const render=t=>{W&&(t=W.toDefaultUnit(t));N.set(e,V,t)};g=new E(render,s,Object.assign(Object.assign({},o),{duration:m,easing:y}))}else{const t=s[s.length-1];N.set(e,V,W&&l(t)?W.toDefaultUnit(t):t)}d&&r(e,t,s,{duration:m,delay:h,easing:y,repeat:v,offset:b},\"motion-one\");z.setAnimation(g);return g}}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=s.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},F);const getActiveAnimation=e=>e.animations[0];const F={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return f.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(u));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=f.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 r=l(n)?n:getFromIndex(n,s);const a=Math.abs(r-i);let c=e*a;if(o){const t=s*e;const n=b(o);c=n(c/t)*t}return t+c}}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 i(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 l(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){d(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:g(i,s,o[r]),easing:m(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,i=S(t,[\"defaultOptions\"]);const r=[];const c=new Map;const l={};const f=new Map;let u=0;let d=0;let g=0;for(let t=0;t<e.length;t++){const o=e[t];if(h(o)){f.set(o,d);continue}if(!Array.isArray(o)){f.set(o.name,calcNextTime(d,o.at,u,f));continue}const[i,r,m={}]=o;void 0!==m.at&&(d=calcNextTime(d,m.at,u,f));let y=0;const w=resolveElements(i,l);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,c);for(const t in r){const i=getValueSequence(t,o);let c=keyframesList(r[t]);const l=getOptions(m,t);let{duration:f=n.duration||s.duration,easing:u=n.easing||s.easing}=l;if(a(u)){const e=isTransform(t);A(2===c.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=u.createAnimation(c,(()=>\"0\"),e);u=n.easing;void 0!==n.keyframes&&(c=n.keyframes);void 0!==n.duration&&(f=n.duration)}const h=resolveOption(m.delay,e,E)||0;const w=d+h;const b=w+f;let{offset:S=p(c.length)}=l;1===S.length&&0===S[0]&&(S[1]=1);const O=length-c.length;O>0&&v(S,O);1===c.length&&c.unshift(null);addKeyframes(i,c,u,S,w,b);y=Math.max(h+f,y);g=Math.max(b,g)}}u=d;d+=y}c.forEach(((e,t)=>{for(const a in e){const c=e[a];c.sort(compareByTime);const l=[];const f=[];const u=[];for(let e=0;e<c.length;e++){const{at:t,value:n,easing:i}=c[e];l.push(n);f.push(o(0,g,t));u.push(i||s.easing)}if(0!==f[0]){f.unshift(0);l.unshift(l[0]);u.unshift(\"linear\")}if(1!==f[f.length-1]){f.push(1);l.push(null)}r.push([t,a,l,Object.assign(Object.assign(Object.assign({},n),{duration:g,easing:u,offset:f}),i)])}}));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,O(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=x((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 U=createGeneratorEasing(V);const q=createGeneratorEasing(z);const K={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:s=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const r=resolveElements(e);const a=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=a.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);i(n)?a.set(e.target,n):c.unobserve(e.target)}else if(n){n(e);a.delete(e.target)}}))};const c=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof s?s:K[s]});r.forEach((e=>c.observe(e)));return()=>c.disconnect()}const G=new WeakMap;let _;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=G.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&&(_=new ResizeObserver(notifyAll))}function resizeElement(e,t){_||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=G.get(e);if(!n){n=new Set;G.set(e,n)}n.add(t);null===_||void 0===_?void 0:_.observe(e)}));return()=>{n.forEach((e=>{const n=G.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===_||void 0===_?void 0:_.unobserve(e))}))}}const Z=new Set;let X;function createWindowResizeHandler(){X=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};Z.forEach((e=>e(t)))};window.addEventListener(\"resize\",X)}function resizeWindow(e){Z.add(e);X||createWindowResizeHandler();return()=>{Z.delete(e);!Z.size&&X&&(X=void 0)}}function resize(e,t){return i(e)?resizeWindow(e):resizeElement(e,t)}const Y=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 J={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,i){const s=n[t];const{length:r,position:a}=J[t];const c=s.current;const l=n.time;s.current=e[\"scroll\"+a];s.scrollLength=e[\"scroll\"+r]-e[\"client\"+r];s.offset.length=0;s.offset[0]=0;s.offset[1]=s.scrollLength;s.progress=o(0,s.scrollLength,s.current);const f=i-l;s.velocity=f>Y?0:y(s.current-c,f)}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 Q={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const ee={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==ee[e]&&(e=ee[e]);if(h(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}l(e)&&(o=t*e);return n+o}const te=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:te;let s=0;let r=0;if(l(e))i=[e,e];else if(h(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,ee[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);r=resolveEdge(i[1],t);return s-r}const ne={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Q.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ne;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=w(p(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 s=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:i(t)?()=>t(n):scrubAnimation(t,n[s])}}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 oe=new WeakMap;const ie=new WeakMap;const se=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=S(t,[\"container\"]);let i=se.get(n);if(!i){i=new Set;se.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!oe.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()};oe.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ie.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=oe.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=se.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=oe.get(n);oe.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ie.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 re;function processScheduledAnimations(){if(!re)return;const e=re.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);re=void 0}function scheduleAnimation(e){if(re)n(re,e);else{re=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){re&&d(re,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 ae={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=S(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 ce={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 le={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 fe={inView:ae,hover:ce,press:le};const ue=[\"initial\",\"animate\",...Object.keys(fe),\"exit\"];const de=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 ue)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)||{},l=S(c,[\"transition\"]);const f=Object.assign({},l);function*animateUpdates(){var t,o;const s=l;l={};const r={};for(const n of ue){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){l[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(l),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===l[e]&&(l[e]=f[e]);if(hasChanged(s[e],l[e])){null!==(t=f[e])&&void 0!==t?t:f[e]=N.get(n,e);c.push(animateStyle(n,e,l[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=l;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(u)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in fe){const o=fe[t].isActive(e);const i=s[t];if(o&&!i)s[t]=fe[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:()=>l,getOptions:()=>e,getContext:()=>r,mount:e=>{A(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;de.set(n,d);updateGestureSubscriptions();return()=>{de.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)){D[o]&&(o=D[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const r=B.get(o);r&&(s=l(i)?r.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{Q as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,q as glide,inView$1 as inView,de as mountedStates,resize,scroll,U as spring,stagger,N as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (1be12e0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";const IconoirFonts=getFonts(Iconoir);const enabledGestures={mPSPXmlJG:{hover:true},tzPXYeQ1S:{hover:true},XDtDD20Oc:{hover:true}};const cycleOrder=[\"XDtDD20Oc\",\"tzPXYeQ1S\",\"mPSPXmlJG\"];const serializationHash=\"framer-AZfxk\";const variantClassNames={mPSPXmlJG:\"framer-v-1j6cndb\",tzPXYeQ1S:\"framer-v-o4uqvi\",XDtDD20Oc:\"framer-v-4ptff6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Phone - Pillars\":\"mPSPXmlJG\",Desktop:\"XDtDD20Oc\",Phone:\"tzPXYeQ1S\"};const getProps=({color,height,id,intro,label,link,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,H8mvus_GY:(_ref=label!==null&&label!==void 0?label:props.H8mvus_GY)!==null&&_ref!==void 0?_ref:\"what we do\",nnmtdphEy:(_ref1=color!==null&&color!==void 0?color:props.nnmtdphEy)!==null&&_ref1!==void 0?_ref1:\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\",P74BETmPA:(_ref2=intro!==null&&intro!==void 0?intro:props.P74BETmPA)!==null&&_ref2!==void 0?_ref2:\"Find out more about\",q9e5LTnHt:link!==null&&link!==void 0?link:props.q9e5LTnHt,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"XDtDD20Oc\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,P74BETmPA,nnmtdphEy,H8mvus_GY,q9e5LTnHt,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XDtDD20Oc\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"tzPXYeQ1S-hover\",\"mPSPXmlJG-hover\"].includes(gestureVariant))return false;if([\"tzPXYeQ1S\",\"mPSPXmlJG\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:q9e5LTnHt,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-4ptff6\",className,classNames)} framer-g2ch8q`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"XDtDD20Oc\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"mPSPXmlJG-hover\":{\"data-framer-name\":undefined},\"tzPXYeQ1S-hover\":{\"data-framer-name\":undefined},\"XDtDD20Oc-hover\":{\"data-framer-name\":undefined},mPSPXmlJG:{\"data-framer-name\":\"Phone - Pillars\"},tzPXYeQ1S:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Sarvatrik Devanagari Regular\", \"Sarvatrik Devanagari Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223)))\"},children:\"Find out more about\"})}),className:\"framer-3xijkx\",fonts:[\"CUSTOM;Sarvatrik Devanagari Regular\"],layoutDependency:layoutDependency,layoutId:\"UbptH20zM\",style:{\"--extracted-r6o4lv\":\"var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:P74BETmPA,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gaivb\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"DaVgIf7hM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Sarvatrik Devanagari Regular\", \"Sarvatrik Devanagari Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-nnmtdphEy-a2VJDegfY))\"},children:\"what we do\"})}),className:\"framer-1rcy26v\",fonts:[\"CUSTOM;Sarvatrik Devanagari Regular\"],layoutDependency:layoutDependency,layoutId:\"lhjEwRe7F\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-nnmtdphEy-a2VJDegfY)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-nnmtdphEy-a2VJDegfY\":nnmtdphEy},text:H8mvus_GY,variants:{mPSPXmlJG:{\"--extracted-r6o4lv\":\"var(--token-f775d073-7a62-4c81-9606-a9f7ff05f17b, rgb(81, 41, 54))\"},tzPXYeQ1S:{\"--extracted-r6o4lv\":\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mPSPXmlJG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Sarvatrik Devanagari Regular\", \"Sarvatrik Devanagari Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f775d073-7a62-4c81-9606-a9f7ff05f17b, rgb(81, 41, 54)))\"},children:\"Sustainable Pillars\"})})},tzPXYeQ1S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Sarvatrik Devanagari Regular\", \"Sarvatrik Devanagari Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"What we do\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11bqua3-container\",layoutDependency:layoutDependency,layoutId:\"N_6bgtAnz-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"N_6bgtAnz\",layoutId:\"N_6bgtAnz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({mPSPXmlJG:{color:\"var(--token-f775d073-7a62-4c81-9606-a9f7ff05f17b, rgb(81, 41, 54))\"}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AZfxk.framer-g2ch8q, .framer-AZfxk .framer-g2ch8q { display: block; }\",\".framer-AZfxk.framer-4ptff6 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-AZfxk .framer-3xijkx, .framer-AZfxk .framer-1rcy26v { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AZfxk .framer-1gaivb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 30px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AZfxk .framer-11bqua3-container { flex: none; height: 30px; position: relative; width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AZfxk.framer-4ptff6, .framer-AZfxk .framer-1gaivb { gap: 0px; } .framer-AZfxk.framer-4ptff6 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-AZfxk.framer-4ptff6 > :first-child, .framer-AZfxk .framer-1gaivb > :first-child { margin-left: 0px; } .framer-AZfxk.framer-4ptff6 > :last-child, .framer-AZfxk .framer-1gaivb > :last-child { margin-right: 0px; } .framer-AZfxk .framer-1gaivb > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-AZfxk.framer-v-4ptff6.hover .framer-1gaivb, .framer-AZfxk.framer-v-o4uqvi.hover.framer-4ptff6, .framer-AZfxk.framer-v-o4uqvi.hover .framer-1gaivb, .framer-AZfxk.framer-v-1j6cndb.hover .framer-1gaivb { gap: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AZfxk.framer-v-4ptff6.hover .framer-1gaivb { gap: 0px; } .framer-AZfxk.framer-v-4ptff6.hover .framer-1gaivb > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-AZfxk.framer-v-4ptff6.hover .framer-1gaivb > :first-child { margin-left: 0px; } .framer-AZfxk.framer-v-4ptff6.hover .framer-1gaivb > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AZfxk.framer-v-o4uqvi.hover.framer-4ptff6, .framer-AZfxk.framer-v-o4uqvi.hover .framer-1gaivb { gap: 0px; } .framer-AZfxk.framer-v-o4uqvi.hover.framer-4ptff6 > *, .framer-AZfxk.framer-v-o4uqvi.hover .framer-1gaivb > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-AZfxk.framer-v-o4uqvi.hover.framer-4ptff6 > :first-child, .framer-AZfxk.framer-v-o4uqvi.hover .framer-1gaivb > :first-child { margin-left: 0px; } .framer-AZfxk.framer-v-o4uqvi.hover.framer-4ptff6 > :last-child, .framer-AZfxk.framer-v-o4uqvi.hover .framer-1gaivb > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AZfxk.framer-v-1j6cndb.hover .framer-1gaivb { gap: 0px; } .framer-AZfxk.framer-v-1j6cndb.hover .framer-1gaivb > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-AZfxk.framer-v-1j6cndb.hover .framer-1gaivb > :first-child { margin-left: 0px; } .framer-AZfxk.framer-v-1j6cndb.hover .framer-1gaivb > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 383\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"tzPXYeQ1S\":{\"layout\":[\"auto\",\"auto\"]},\"mPSPXmlJG\":{\"layout\":[\"auto\",\"auto\"]},\"h4irSVwkV\":{\"layout\":[\"auto\",\"auto\"]},\"csU8tSdcM\":{\"layout\":[\"auto\",\"auto\"]},\"TOXi28n3p\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"P74BETmPA\":\"intro\",\"nnmtdphEy\":\"color\",\"H8mvus_GY\":\"label\",\"q9e5LTnHt\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framera2VJDegfY=withCSS(Component,css,\"framer-AZfxk\");export default Framera2VJDegfY;Framera2VJDegfY.displayName=\"button_front\";Framera2VJDegfY.defaultProps={height:30,width:383};addPropertyControls(Framera2VJDegfY,{variant:{options:[\"XDtDD20Oc\",\"tzPXYeQ1S\",\"mPSPXmlJG\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone - Pillars\"],title:\"Variant\",type:ControlType.Enum},P74BETmPA:{defaultValue:\"Find out more about\",displayTextArea:false,title:\"Intro\",type:ControlType.String},nnmtdphEy:{defaultValue:\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\",title:\"Color\",type:ControlType.Color},H8mvus_GY:{defaultValue:\"what we do\",displayTextArea:false,title:\"Label\",type:ControlType.String},q9e5LTnHt:{title:\"Link\",type:ControlType.Link}});addFonts(Framera2VJDegfY,[{explicitInter:true,fonts:[{family:\"Sarvatrik Devanagari Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/n5QUiniVdRDQedzg2ASjIlpJJE.woff2\"}]},...IconoirFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framera2VJDegfY\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"P74BETmPA\\\":\\\"intro\\\",\\\"nnmtdphEy\\\":\\\"color\\\",\\\"H8mvus_GY\\\":\\\"label\\\",\\\"q9e5LTnHt\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"30\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tzPXYeQ1S\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mPSPXmlJG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"h4irSVwkV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"csU8tSdcM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TOXi28n3p\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"383\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./a2VJDegfY.map", "// Generated by Framer (c56cc2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import Button_front from\"https://framerusercontent.com/modules/a3ToMO3isHeNQ4l6vaga/gOK2N9JQPlhaBf0kh2i0/a2VJDegfY.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const Button_frontFonts=getFonts(Button_front);const VideoControls=getPropertyControls(Video);const cycleOrder=[\"lhZ6WVt5k\",\"jOurdJnmG\",\"Gqmg7NNzu\",\"GbyDkVqcp\"];const serializationHash=\"framer-7aP5U\";const variantClassNames={GbyDkVqcp:\"framer-v-1f3vrm1\",Gqmg7NNzu:\"framer-v-1uun8ta\",jOurdJnmG:\"framer-v-kbybl4\",lhZ6WVt5k:\"framer-v-ls1cw4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:10,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"lhZ6WVt5k\",Phone:\"GbyDkVqcp\",Tablet:\"Gqmg7NNzu\",Wide:\"jOurdJnmG\"};const getProps=({circleColor,height,id,intro,label,link,title,video,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4,_ref5;return{...props,C7H03oC21:(_ref=circleColor!==null&&circleColor!==void 0?circleColor:props.C7H03oC21)!==null&&_ref!==void 0?_ref:\"var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223))\",RNzTJQH74:(_ref1=title!==null&&title!==void 0?title:props.RNzTJQH74)!==null&&_ref1!==void 0?_ref1:\"Creating a responsible future in packaging\",TKBbIkqr1:(_ref2=intro!==null&&intro!==void 0?intro:props.TKBbIkqr1)!==null&&_ref2!==void 0?_ref2:\"Find out more about\",TOA4HiGSG:link!==null&&link!==void 0?link:props.TOA4HiGSG,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"lhZ6WVt5k\",yC3HEl8xs:(_ref4=video!==null&&video!==void 0?video:props.yC3HEl8xs)!==null&&_ref4!==void 0?_ref4:\"https://framerusercontent.com/assets/slJxIPyCH93131r2L9h2Oj4w.mp4\",zXYMYl0ww:(_ref5=label!==null&&label!==void 0?label:props.zXYMYl0ww)!==null&&_ref5!==void 0?_ref5:\"what we do\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,yC3HEl8xs,RNzTJQH74,TKBbIkqr1,zXYMYl0ww,TOA4HiGSG,C7H03oC21,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lhZ6WVt5k\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ls1cw4\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"lhZ6WVt5k\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\",...style},...addPropertyOverrides({GbyDkVqcp:{\"data-framer-name\":\"Phone\"},Gqmg7NNzu:{\"data-framer-name\":\"Tablet\"},jOurdJnmG:{\"data-framer-name\":\"Wide\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-151w7zp\",\"data-framer-appear-id\":\"151w7zp\",\"data-framer-name\":\"Graphic\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"FXrSO1zAj\",optimized:true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sdhe09\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"hTVaQTV9o\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 704 704\"><path d=\"M 351.966 0.714 C 157.971 0.714 0.714 157.971 0.714 351.966 C 0.714 545.961 157.971 703.218 351.966 703.218 C 545.961 703.218 703.218 545.961 703.218 351.966 C 703.218 157.971 545.941 0.714 351.966 0.714 Z M 351.966 562.717 C 235.581 562.717 141.215 468.371 141.215 351.966 C 141.215 235.561 235.561 141.215 351.966 141.215 C 468.371 141.215 562.717 235.561 562.717 351.966 C 562.717 468.371 468.371 562.717 351.966 562.717 Z\" fill=\"transparent\" stroke-width=\"1.33\" stroke=\"var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223)) /* {&quot;name&quot;:&quot;Skanem Sustainable Beige&quot;} */\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9348684093,withExternalLayout:true,...addPropertyOverrides({GbyDkVqcp:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 407 407\"><path d=\"M 963.934 747.652 C 852.49 747.652 762.151 837.991 762.151 949.435 C 762.151 1060.879 852.49 1151.218 963.934 1151.218 C 1075.378 1151.218 1165.717 1060.879 1165.717 949.435 C 1165.717 837.991 1075.367 747.652 963.934 747.652 Z M 974.294 1080.855 C 907.434 1080.855 853.224 1026.656 853.224 959.785 C 853.224 892.914 907.422 838.715 974.294 838.715 C 1041.165 838.715 1095.364 892.914 1095.364 959.785 C 1095.364 1026.656 1041.165 1080.855 974.294 1080.855 Z\" fill=\"transparent\" stroke-width=\"0.76\" stroke=\"var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223)) /* {&quot;name&quot;:&quot;Skanem Sustainable Beige&quot;} */\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:8740035771},Gqmg7NNzu:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 704 704\"><path d=\"M 354.385 3.134 C 160.39 3.134 3.133 160.391 3.133 354.387 C 3.133 548.382 160.39 705.639 354.385 705.639 C 548.381 705.639 705.638 548.382 705.638 354.387 C 705.638 160.391 548.361 3.134 354.385 3.134 Z M 372.419 583.155 C 256.033 583.155 161.667 488.809 161.667 372.404 C 161.667 255.998 256.013 161.652 372.419 161.652 C 488.824 161.652 583.17 255.998 583.17 372.404 C 583.17 488.809 488.824 583.155 372.419 583.155 Z\" fill=\"transparent\" stroke-width=\"1.33\" stroke=\"var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223)) /* {&quot;name&quot;:&quot;Skanem Sustainable Beige&quot;} */\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11032368213},jOurdJnmG:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 704 704\"><path d=\"M 354.385 3.134 C 160.39 3.134 3.133 160.391 3.133 354.387 C 3.133 548.382 160.39 705.639 354.385 705.639 C 548.381 705.639 705.638 548.382 705.638 354.387 C 705.638 160.391 548.361 3.134 354.385 3.134 Z M 372.419 583.155 C 256.033 583.155 161.667 488.809 161.667 372.404 C 161.667 255.998 256.013 161.652 372.419 161.652 C 488.824 161.652 583.17 255.998 583.17 372.404 C 583.17 488.809 488.824 583.155 372.419 583.155 Z\" fill=\"transparent\" stroke-width=\"1.33\" stroke=\"var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223)) /* {&quot;name&quot;:&quot;Skanem Sustainable Beige&quot;} */\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11032368213}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rk6jnv-container\",layoutDependency:layoutDependency,layoutId:\"ZTvQ0korh-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ZTvQ0korh\",isMixedBorderRadius:false,layoutId:\"ZTvQ0korh\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:yC3HEl8xs,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t6po29\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"GjxYgUz5S\",style:{background:\"linear-gradient(205deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.24) 100%)\"}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation2},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-hd3q9e\",\"data-framer-name\":\"Grow-circle\",layoutDependency:layoutDependency,layoutId:\"Bq11Kb4ex\",style:{backgroundColor:C7H03oC21,borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14l26a5\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"frVOTusWb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIE1lZGl1bQ==\",\"--framer-font-family\":'\"Sarvatrik Devanagari Medium\", \"Sarvatrik Devanagari Medium Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-letter-spacing\":\"-0.07px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223)))\"},children:\"Creating a responsible future in packaging\"})}),className:\"framer-e5fqgg\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Sarvatrik Devanagari Medium\"],layoutDependency:layoutDependency,layoutId:\"aC1AJDfbH\",style:{\"--extracted-r6o4lv\":\"var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223))\"},text:RNzTJQH74,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GbyDkVqcp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIE1lZGl1bQ==\",\"--framer-font-family\":'\"Sarvatrik Devanagari Medium\", \"Sarvatrik Devanagari Medium Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-0.07px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223)))\"},children:\"Creating a responsible future in packaging\"})})},jOurdJnmG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIE1lZGl1bQ==\",\"--framer-font-family\":'\"Sarvatrik Devanagari Medium\", \"Sarvatrik Devanagari Medium Placeholder\", sans-serif',\"--framer-font-size\":\"130px\",\"--framer-letter-spacing\":\"-0.07px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223)))\"},children:\"Creating a responsible future in packaging\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||706)-180-530+0+0)+0+500,...addPropertyOverrides({GbyDkVqcp:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||760)-200-325.00000000000006+0+0)+0+295.00000000000006},Gqmg7NNzu:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||972)-220-530+0+0)+0+500},jOurdJnmG:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1172)-220-830+0+0)+0+800}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z3z5vy-container\",\"data-framer-name\":\"BTN Front\",layoutDependency:layoutDependency,layoutId:\"qNiZQRTMY-container\",name:\"BTN Front\",children:/*#__PURE__*/_jsx(Button_front,{H8mvus_GY:zXYMYl0ww,height:\"100%\",id:\"qNiZQRTMY\",layoutId:\"qNiZQRTMY\",name:\"BTN Front\",nnmtdphEy:\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\",P74BETmPA:TKBbIkqr1,q9e5LTnHt:TOA4HiGSG,variant:\"XDtDD20Oc\",width:\"100%\",...addPropertyOverrides({GbyDkVqcp:{variant:\"tzPXYeQ1S\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7aP5U.framer-k8b5xb, .framer-7aP5U .framer-k8b5xb { display: block; }\",\".framer-7aP5U.framer-ls1cw4 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 706px; justify-content: flex-end; overflow: hidden; padding: 120px 60px 60px 60px; position: relative; width: 1200px; }\",\".framer-7aP5U .framer-151w7zp { bottom: -100px; flex: none; height: 745px; left: -193px; mix-blend-mode: soft-light; overflow: hidden; position: absolute; width: 793px; z-index: 3; }\",\".framer-7aP5U .framer-1sdhe09 { flex: none; height: 704px; left: calc(50.072072072072096% - 704px / 2); position: absolute; top: calc(50.201342281879214% - 704px / 2); width: 704px; z-index: 2; }\",\".framer-7aP5U .framer-rk6jnv-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-7aP5U .framer-t6po29 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 3; }\",\".framer-7aP5U .framer-hd3q9e { bottom: -95px; flex: none; height: 150px; left: calc(51.16666666666669% - 150px / 2); overflow: hidden; position: absolute; width: 150px; will-change: var(--framer-will-change-override, transform); z-index: 5; }\",\".framer-7aP5U .framer-14l26a5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 80%; z-index: 3; }\",\".framer-7aP5U .framer-e5fqgg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7aP5U .framer-z3z5vy-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7aP5U.framer-ls1cw4, .framer-7aP5U .framer-14l26a5 { gap: 0px; } .framer-7aP5U.framer-ls1cw4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7aP5U.framer-ls1cw4 > :first-child, .framer-7aP5U .framer-14l26a5 > :first-child { margin-top: 0px; } .framer-7aP5U.framer-ls1cw4 > :last-child, .framer-7aP5U .framer-14l26a5 > :last-child { margin-bottom: 0px; } .framer-7aP5U .framer-14l26a5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-7aP5U.framer-v-kbybl4.framer-ls1cw4 { height: 1172px; padding: 120px 100px 100px 100px; width: 1920px; }\",\".framer-7aP5U.framer-v-kbybl4 .framer-1sdhe09, .framer-7aP5U.framer-v-1uun8ta .framer-1sdhe09 { left: calc(50.06305170239599% - 704px / 2); }\",\".framer-7aP5U.framer-v-kbybl4 .framer-14l26a5 { width: 85%; }\",\".framer-7aP5U.framer-v-1uun8ta.framer-ls1cw4 { height: 972px; padding: 120px 40px 100px 40px; width: 810px; }\",\".framer-7aP5U.framer-v-1uun8ta .framer-14l26a5 { width: 100%; }\",\".framer-7aP5U.framer-v-1f3vrm1.framer-ls1cw4 { height: 760px; padding: 120px 20px 80px 20px; width: 390px; }\",\".framer-7aP5U.framer-v-1f3vrm1 .framer-151w7zp { height: 472px; order: 0; width: 502px; }\",\".framer-7aP5U.framer-v-1f3vrm1 .framer-1sdhe09 { height: 407px; left: unset; right: 0px; top: calc(-180.72033898305082% - 407px / 2); width: 407px; }\",\".framer-7aP5U.framer-v-1f3vrm1 .framer-rk6jnv-container { order: 1; }\",\".framer-7aP5U.framer-v-1f3vrm1 .framer-t6po29 { order: 3; }\",\".framer-7aP5U.framer-v-1f3vrm1 .framer-hd3q9e { bottom: -73px; height: 110px; left: calc(51.02564102564104% - 110px / 2); order: 2; width: 110px; }\",\".framer-7aP5U.framer-v-1f3vrm1 .framer-14l26a5 { order: 4; width: 90%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 706\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jOurdJnmG\":{\"layout\":[\"fixed\",\"fixed\"]},\"Gqmg7NNzu\":{\"layout\":[\"fixed\",\"fixed\"]},\"GbyDkVqcp\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"yC3HEl8xs\":\"video\",\"RNzTJQH74\":\"title\",\"TKBbIkqr1\":\"intro\",\"zXYMYl0ww\":\"label\",\"TOA4HiGSG\":\"link\",\"C7H03oC21\":\"circleColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermELEXBhEU=withCSS(Component,css,\"framer-7aP5U\");export default FramermELEXBhEU;FramermELEXBhEU.displayName=\"Hero-video\";FramermELEXBhEU.defaultProps={height:706,width:1200};addPropertyControls(FramermELEXBhEU,{variant:{options:[\"lhZ6WVt5k\",\"jOurdJnmG\",\"Gqmg7NNzu\",\"GbyDkVqcp\"],optionTitles:[\"Desktop\",\"Wide\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},yC3HEl8xs:(VideoControls===null||VideoControls===void 0?void 0:VideoControls[\"srcFile\"])&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,slJxIPyCH93131r2L9h2Oj4w.mp4?originalFilename=Woman_Serving_Dinner_For_Family_fhd_1253218.mp4\",description:undefined,hidden:undefined,title:\"Video\"},RNzTJQH74:{defaultValue:\"Creating a responsible future in packaging\",displayTextArea:true,title:\"Title\",type:ControlType.String},TKBbIkqr1:{defaultValue:\"Find out more about\",displayTextArea:false,title:\"Intro\",type:ControlType.String},zXYMYl0ww:{defaultValue:\"what we do\",displayTextArea:false,title:\"Label\",type:ControlType.String},TOA4HiGSG:{title:\"Link\",type:ControlType.Link},C7H03oC21:{defaultValue:'var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223)) /* {\"name\":\"Skanem Sustainable Beige\"} */',title:\"Circle color\",type:ControlType.Color}});addFonts(FramermELEXBhEU,[{explicitInter:true,fonts:[{family:\"Sarvatrik Devanagari Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/WsY0IloA51whSGpR8LmI19yURlM.woff2\"}]},...VideoFonts,...Button_frontFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermELEXBhEU\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"706\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jOurdJnmG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Gqmg7NNzu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GbyDkVqcp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"yC3HEl8xs\\\":\\\"video\\\",\\\"RNzTJQH74\\\":\\\"title\\\",\\\"TKBbIkqr1\\\":\\\"intro\\\",\\\"zXYMYl0ww\\\":\\\"label\\\",\\\"TOA4HiGSG\\\":\\\"link\\\",\\\"C7H03oC21\\\":\\\"circleColor\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mELEXBhEU.map", "// Generated by Framer (c56cc2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/anOAoTYVc10Hf6q8MEBZ/k01nwtyeQPQp2ViNgmiZ/J6PlvhcBO.js\";import BTNPrimary from\"https://framerusercontent.com/modules/bRP8Kbu6hJolyQdsgGZu/FsjeDqXzzMKU4V0OGtt4/q5zbsDBos.js\";const IconoirFonts=getFonts(Iconoir);const MotionDivWithFX=withFX(motion.div);const BTNPrimaryFonts=getFonts(BTNPrimary);const BTNPrimaryControls=getPropertyControls(BTNPrimary);const cycleOrder=[\"ZjQMv5Rqr\",\"zWTKHLwmi\",\"gnUryTiiw\",\"RL2WOjAri\"];const serializationHash=\"framer-G57MW\";const variantClassNames={gnUryTiiw:\"framer-v-oin3e4\",RL2WOjAri:\"framer-v-7rcivg\",ZjQMv5Rqr:\"framer-v-15n2h5l\",zWTKHLwmi:\"framer-v-b51yo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:38,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:-3};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"body-normal\":\"x5kND_qx8\",\"BTN-dark-normal\":\"yFz5h2H6f\",\"BTN-dark-small\":\"MJeEogQLV\",\"BTN-L-Friendly-Genuine\":\"Q_5bZIVhV\",\"BTN-large\":\"wlRa49exK\",\"BTN-M-Frindly-Genuine\":\"gHdbPeXUC\",\"BTN-normal-dark\":\"OyEbNuHAQ\",\"BTN-normal\":\"t5v_UrWyY\",\"BTN-S-Friendly-Genuine\":\"BeTIp8B6U\",\"BTN-small\":\"z96rBYeJc\",\"Chips-normal\":\"WRE3nRmkG\",\"Chips-small\":\"nn0B394Ag\",body:\"HiDU8qiad\"};const humanReadableVariantMap={Desktop:\"ZjQMv5Rqr\",Phone:\"RL2WOjAri\",Tablet:\"gnUryTiiw\",Wide:\"zWTKHLwmi\"};const getProps=({backgroundColor,bTNLabel,bTNType,height,id,image,link,padding,showArrow,text,textColor,width,...props})=>{var _humanReadableEnumMap_bTNType,_ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_humanReadableVariantMap_props_variant,_ref7,_ref8,_ref9;return{...props,Coze9tx4a:(_ref1=(_ref=(_humanReadableEnumMap_bTNType=humanReadableEnumMap[bTNType])!==null&&_humanReadableEnumMap_bTNType!==void 0?_humanReadableEnumMap_bTNType:bTNType)!==null&&_ref!==void 0?_ref:props.Coze9tx4a)!==null&&_ref1!==void 0?_ref1:\"x5kND_qx8\",d_VxGIxld:(_ref2=image!==null&&image!==void 0?image:props.d_VxGIxld)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/qqKoRMYndtxVNIiNOUAnM3KP5o.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/qqKoRMYndtxVNIiNOUAnM3KP5o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qqKoRMYndtxVNIiNOUAnM3KP5o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qqKoRMYndtxVNIiNOUAnM3KP5o.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qqKoRMYndtxVNIiNOUAnM3KP5o.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/qqKoRMYndtxVNIiNOUAnM3KP5o.jpg 4896w\"},lu9Ze6Q6u:(_ref3=text!==null&&text!==void 0?text:props.lu9Ze6Q6u)!==null&&_ref3!==void 0?_ref3:\"We are pioneers in the European plastic industry, providing child-safe packaging, thin-walled food packaging, technical packaging, caps, closures and tubes. \\n\\nWe are also market leaders in the supply of plastic items for laboratories within hospitals, universities and other research facilities.\\xa0\\xa0\",o1XdHeEeB:(_ref4=backgroundColor!==null&&backgroundColor!==void 0?backgroundColor:props.o1XdHeEeB)!==null&&_ref4!==void 0?_ref4:\"var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223))\",tAUmit8Rc:(_ref5=showArrow!==null&&showArrow!==void 0?showArrow:props.tAUmit8Rc)!==null&&_ref5!==void 0?_ref5:true,uOl7qcFaU:(_ref6=bTNLabel!==null&&bTNLabel!==void 0?bTNLabel:props.uOl7qcFaU)!==null&&_ref6!==void 0?_ref6:\"More about Skanem\",variant:(_ref7=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref7!==void 0?_ref7:\"ZjQMv5Rqr\",w9fBjR2Ke:(_ref8=padding!==null&&padding!==void 0?padding:props.w9fBjR2Ke)!==null&&_ref8!==void 0?_ref8:\"150px 150px 120px 30px\",xngpUfsKV:(_ref9=textColor!==null&&textColor!==void 0?textColor:props.xngpUfsKV)!==null&&_ref9!==void 0?_ref9:\"rgb(0, 0, 0)\",Y3fXHdnU7:link!==null&&link!==void 0?link:props.Y3fXHdnU7};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,lu9Ze6Q6u,d_VxGIxld,Coze9tx4a,uOl7qcFaU,Y3fXHdnU7,w9fBjR2Ke,o1XdHeEeB,tAUmit8Rc,xngpUfsKV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZjQMv5Rqr\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"gnUryTiiw\",\"RL2WOjAri\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15n2h5l\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ZjQMv5Rqr\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--peyfcw\":numberToPixelString(w9fBjR2Ke),backgroundColor:o1XdHeEeB,...style},...addPropertyOverrides({gnUryTiiw:{\"data-framer-name\":\"Tablet\"},RL2WOjAri:{\"data-framer-name\":\"Phone\"},zWTKHLwmi:{\"data-framer-name\":\"Wide\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-1qfu427\",\"data-framer-name\":\"Image-container\",layoutDependency:layoutDependency,layoutId:\"DWxILxJm2\",style:{borderBottomLeftRadius:189,borderBottomRightRadius:189,borderTopLeftRadius:189,borderTopRightRadius:189,rotate:33},variants:{gnUryTiiw:{borderBottomLeftRadius:250,borderBottomRightRadius:250,borderTopLeftRadius:250,borderTopRightRadius:250},RL2WOjAri:{borderBottomLeftRadius:250,borderBottomRightRadius:250,borderTopLeftRadius:250,borderTopRightRadius:250},zWTKHLwmi:{borderBottomLeftRadius:250,borderBottomRightRadius:250,borderTopLeftRadius:250,borderTopRightRadius:250}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+4.672986418818937),pixelHeight:3264,pixelWidth:4896,sizes:\"430px\",...toResponsiveImage(d_VxGIxld),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-dh9n49\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JPVTkHiFx\",style:{rotate:-33},...addPropertyOverrides({gnUryTiiw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(100+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-170-387.82816229116946)/2)+-4.1752133612499165),pixelHeight:3264,pixelWidth:4896,sizes:\"363px\",...toResponsiveImage(d_VxGIxld),...{positionX:\"center\",positionY:\"center\"}}},RL2WOjAri:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+70+0+10.500000000000085),pixelHeight:3264,pixelWidth:4896,sizes:\"388px\",...toResponsiveImage(d_VxGIxld),...{positionX:\"center\",positionY:\"center\"}}},zWTKHLwmi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+70+0),pixelHeight:3264,pixelWidth:4896,sizes:\"619px\",...toResponsiveImage(d_VxGIxld),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ojljhg\",\"data-framer-name\":\"Placeholder-frame\",layoutDependency:layoutDependency,layoutId:\"SJ1OdOh_J\",children:tAUmit8Rc&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1xna0vm\",\"data-framer-name\":\"Arrow-btn-container\",layoutDependency:layoutDependency,layoutId:\"EDzjIcZXf\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JTcwj7wA5\"},nodeId:\"qbWobkPdh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-twp0gk framer-rwonba\",\"data-framer-name\":\"Background-container\",layoutDependency:layoutDependency,layoutId:\"qbWobkPdh\",style:{backgroundColor:\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-995k1j-container\",layoutDependency:layoutDependency,layoutId:\"N4eg9_gIu-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-2c6b3561-0c9f-4523-9d86-0be6e76fc3b6, rgb(14, 78, 78))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"N4eg9_gIu\",layoutId:\"N4eg9_gIu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c3rync\",\"data-framer-name\":\"Content container\",layoutDependency:layoutDependency,layoutId:\"yTZRafUQP\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pcf5tl\",\"data-framer-name\":\"Content container\",layoutDependency:layoutDependency,layoutId:\"N2hIaStCF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-137uzyr\",\"data-styles-preset\":\"J6PlvhcBO\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--variable-reference-xngpUfsKV-UJjyLp_2n))\"},children:\"We are pioneers in the European plastic industry, providing child-safe packaging, thin-walled food packaging, technical packaging, caps, closures and tubes. \"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1ais0t9, var(--variable-reference-xngpUfsKV-UJjyLp_2n))\"},children:\"We are also market leaders in the supply of plastic items for laboratories within hospitals, universities and other research facilities.\\xa0\\xa0\"})]})}),className:\"framer-1eirbcg\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fpoA2TWka\",style:{\"--extracted-1ais0t9\":\"var(--variable-reference-xngpUfsKV-UJjyLp_2n)\",\"--extracted-1w3ko1f\":\"var(--variable-reference-xngpUfsKV-UJjyLp_2n)\",\"--variable-reference-xngpUfsKV-UJjyLp_2n\":xngpUfsKV},text:lu9Ze6Q6u,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(120+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||617)-240-265)/2)+0+0+0+217,...addPropertyOverrides({gnUryTiiw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(100+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-170-285)/2)+0+0+20+217},RL2WOjAri:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+70+418+0+0+0+237},zWTKHLwmi:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rgrizb-container\",layoutDependency:layoutDependency,layoutId:\"Krlu36b6n-container\",whileHover:animation1,children:/*#__PURE__*/_jsx(BTNPrimary,{aD6Y1As9w:Y3fXHdnU7,height:\"100%\",i6vBw2MVs:true,id:\"Krlu36b6n\",layoutId:\"Krlu36b6n\",v2JpTq8_v:uOl7qcFaU,variant:Coze9tx4a,width:\"100%\",yvnvmAhBY:false,...addPropertyOverrides({gnUryTiiw:{variant:\"x5kND_qx8\"},RL2WOjAri:{variant:\"z96rBYeJc\"},zWTKHLwmi:{variant:\"HiDU8qiad\"}},baseVariant,gestureVariant)})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-G57MW.framer-rwonba, .framer-G57MW .framer-rwonba { display: block; }\",\".framer-G57MW.framer-15n2h5l { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: flex-start; max-width: 2100px; overflow: visible; padding: 120px 30px 120px 30px; position: relative; width: 1200px; }\",\".framer-G57MW .framer-1qfu427 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 495px; justify-content: flex-end; left: 109px; overflow: hidden; padding: 20px; position: absolute; top: 60px; width: 321px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-G57MW .framer-dh9n49 { flex: none; height: 479px; left: -56px; overflow: hidden; position: absolute; right: -53px; top: 5px; z-index: 1; }\",\".framer-G57MW .framer-1ojljhg { flex: 2 0 0px; height: 165px; overflow: visible; position: relative; width: 1px; }\",\".framer-G57MW .framer-1xna0vm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 150px; justify-content: center; left: 298px; overflow: hidden; padding: 0px; position: absolute; top: 150px; width: 150px; z-index: 1; }\",\".framer-G57MW .framer-twp0gk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-G57MW .framer-995k1j-container { flex: none; height: 85px; position: relative; width: 85px; }\",\".framer-G57MW .framer-c3rync { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 81px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-G57MW .framer-1pcf5tl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-G57MW .framer-1eirbcg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-G57MW .framer-rgrizb-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-G57MW.framer-15n2h5l, .framer-G57MW .framer-1qfu427, .framer-G57MW .framer-1xna0vm, .framer-G57MW .framer-twp0gk, .framer-G57MW .framer-c3rync, .framer-G57MW .framer-1pcf5tl { gap: 0px; } .framer-G57MW.framer-15n2h5l > * { margin: 0px; margin-left: calc(88px / 2); margin-right: calc(88px / 2); } .framer-G57MW.framer-15n2h5l > :first-child, .framer-G57MW .framer-1xna0vm > :first-child, .framer-G57MW .framer-twp0gk > :first-child { margin-left: 0px; } .framer-G57MW.framer-15n2h5l > :last-child, .framer-G57MW .framer-1xna0vm > :last-child, .framer-G57MW .framer-twp0gk > :last-child { margin-right: 0px; } .framer-G57MW .framer-1qfu427 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-G57MW .framer-1qfu427 > :first-child, .framer-G57MW .framer-c3rync > :first-child, .framer-G57MW .framer-1pcf5tl > :first-child { margin-top: 0px; } .framer-G57MW .framer-1qfu427 > :last-child, .framer-G57MW .framer-c3rync > :last-child, .framer-G57MW .framer-1pcf5tl > :last-child { margin-bottom: 0px; } .framer-G57MW .framer-1xna0vm > *, .framer-G57MW .framer-twp0gk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-G57MW .framer-c3rync > * { margin: 0px; margin-bottom: calc(81px / 2); margin-top: calc(81px / 2); } .framer-G57MW .framer-1pcf5tl > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\".framer-G57MW.framer-v-b51yo.framer-15n2h5l { padding: var(--peyfcw); width: 1920px; }\",\".framer-G57MW.framer-v-b51yo .framer-1qfu427 { height: 650px; left: 173px; padding: 30px; top: 70px; width: 419px; }\",\".framer-G57MW.framer-v-b51yo .framer-dh9n49 { bottom: -20px; height: unset; left: -100px; right: unset; top: 0px; width: 619px; }\",\".framer-G57MW.framer-v-b51yo .framer-1xna0vm { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 200px); left: 423px; top: 100px; width: 200px; }\",\".framer-G57MW.framer-v-b51yo .framer-twp0gk { order: 0; }\",\".framer-G57MW.framer-v-b51yo .framer-995k1j-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 123px); width: 120px; }\",\".framer-G57MW.framer-v-oin3e4.framer-15n2h5l { padding: 100px 30px 70px 60px; width: 810px; }\",\".framer-G57MW.framer-v-oin3e4 .framer-1qfu427 { aspect-ratio: 0.6446153846153846 / 1; height: var(--framer-aspect-ratio-supported, 388px); left: unset; padding: 30px; position: relative; top: unset; width: 250px; }\",\".framer-G57MW.framer-v-oin3e4 .framer-dh9n49 { bottom: -2px; height: unset; left: -48px; right: unset; top: -4px; width: 363px; }\",\".framer-G57MW.framer-v-oin3e4 .framer-1pcf5tl { padding: 20px 0px 0px 0px; }\",\".framer-G57MW.framer-v-7rcivg.framer-15n2h5l { flex-direction: column; gap: 60px; padding: 70px 20px 60px 20px; width: 390px; }\",\".framer-G57MW.framer-v-7rcivg .framer-1qfu427 { align-content: flex-end; align-items: flex-end; aspect-ratio: 0.6446153846153846 / 1; height: var(--framer-aspect-ratio-supported, 358px); justify-content: flex-start; left: unset; order: 1; padding: 30px; position: relative; top: unset; width: 231px; }\",\".framer-G57MW.framer-v-7rcivg .framer-dh9n49 { height: 339px; left: unset; right: -79px; top: calc(50.279329608938575% - 339px / 2); width: 168%; }\",\".framer-G57MW.framer-v-7rcivg .framer-c3rync { flex: none; order: 2; width: 100%; }\",\".framer-G57MW.framer-v-7rcivg .framer-1pcf5tl { gap: 50px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-G57MW.framer-v-7rcivg.framer-15n2h5l, .framer-G57MW.framer-v-7rcivg .framer-1pcf5tl { gap: 0px; } .framer-G57MW.framer-v-7rcivg.framer-15n2h5l > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-G57MW.framer-v-7rcivg.framer-15n2h5l > :first-child, .framer-G57MW.framer-v-7rcivg .framer-1pcf5tl > :first-child { margin-top: 0px; } .framer-G57MW.framer-v-7rcivg.framer-15n2h5l > :last-child, .framer-G57MW.framer-v-7rcivg .framer-1pcf5tl > :last-child { margin-bottom: 0px; } .framer-G57MW.framer-v-7rcivg .framer-1pcf5tl > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 617\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"2100px\",null,null]},\"zWTKHLwmi\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"2100px\",null,null]},\"gnUryTiiw\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"2100px\",null,null]},\"RL2WOjAri\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"2100px\",null,null]}}}\n * @framerVariables {\"lu9Ze6Q6u\":\"text\",\"d_VxGIxld\":\"image\",\"Coze9tx4a\":\"bTNType\",\"uOl7qcFaU\":\"bTNLabel\",\"Y3fXHdnU7\":\"link\",\"w9fBjR2Ke\":\"padding\",\"o1XdHeEeB\":\"backgroundColor\",\"tAUmit8Rc\":\"showArrow\",\"xngpUfsKV\":\"textColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUJjyLp_2n=withCSS(Component,css,\"framer-G57MW\");export default FramerUJjyLp_2n;FramerUJjyLp_2n.displayName=\"Section: Image (oval)+P+BTN\";FramerUJjyLp_2n.defaultProps={height:617,width:1200};addPropertyControls(FramerUJjyLp_2n,{variant:{options:[\"ZjQMv5Rqr\",\"zWTKHLwmi\",\"gnUryTiiw\",\"RL2WOjAri\"],optionTitles:[\"Desktop\",\"Wide\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},lu9Ze6Q6u:{defaultValue:\"We are pioneers in the European plastic industry, providing child-safe packaging, thin-walled food packaging, technical packaging, caps, closures and tubes. \\n\\nWe are also market leaders in the supply of plastic items for laboratories within hospitals, universities and other research facilities.\\xa0\\xa0\",displayTextArea:true,title:\"Text\",type:ControlType.String},d_VxGIxld:{__defaultAssetReference:\"data:framer/asset-reference,qqKoRMYndtxVNIiNOUAnM3KP5o.jpg?originalFilename=photo-1528183429752-a97d0bf99b5a%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw4fHx0cmVlfGVufDB8fHx8MTcyNTk3NzkyN3ww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},Coze9tx4a:(BTNPrimaryControls===null||BTNPrimaryControls===void 0?void 0:BTNPrimaryControls[\"variant\"])&&{...BTNPrimaryControls[\"variant\"],defaultValue:\"x5kND_qx8\",description:undefined,hidden:undefined,title:\"BTN Type\"},uOl7qcFaU:{defaultValue:\"More about Skanem\",displayTextArea:false,placeholder:\"Button title\",title:\"BTN Label\",type:ControlType.String},Y3fXHdnU7:{title:\"Link\",type:ControlType.Link},w9fBjR2Ke:{defaultValue:\"150px 150px 120px 30px\",title:\"Padding\",type:ControlType.Padding},o1XdHeEeB:{defaultValue:'var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223)) /* {\"name\":\"Skanem Sustainable Beige\"} */',title:\"Background color\",type:ControlType.Color},tAUmit8Rc:{defaultValue:true,title:\"Show arrow\",type:ControlType.Boolean},xngpUfsKV:{defaultValue:\"rgb(0, 0, 0)\",title:\"Text Color\",type:ControlType.Color}});addFonts(FramerUJjyLp_2n,[{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\"}]},...IconoirFonts,...BTNPrimaryFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUJjyLp_2n\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"2100px\\\",null,null]},\\\"zWTKHLwmi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"2100px\\\",null,null]},\\\"gnUryTiiw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"2100px\\\",null,null]},\\\"RL2WOjAri\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"2100px\\\",null,null]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"lu9Ze6Q6u\\\":\\\"text\\\",\\\"d_VxGIxld\\\":\\\"image\\\",\\\"Coze9tx4a\\\":\\\"bTNType\\\",\\\"uOl7qcFaU\\\":\\\"bTNLabel\\\",\\\"Y3fXHdnU7\\\":\\\"link\\\",\\\"w9fBjR2Ke\\\":\\\"padding\\\",\\\"o1XdHeEeB\\\":\\\"backgroundColor\\\",\\\"tAUmit8Rc\\\":\\\"showArrow\\\",\\\"xngpUfsKV\\\":\\\"textColor\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"617\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UJjyLp_2n.map", "// Generated by Framer (7f988a2)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"sDM4UkJ1f\",\"nrngR1DOm\",\"kA1NzRUP_\",\"Kr8l3JspA\",\"Y_zVcMYpH\",\"kbjoYg8Ds\",\"lNhu4X6TI\",\"fRxVtCfZc\",\"fOyfKh169\",\"YfE7GkIgs\",\"FIp5KhDpS\",\"bCFPhWM8I\",\"RAFY1xfFk\",\"DwTeWiL0Y\",\"GrEtKwZpV\",\"sgNeSsJit\",\"fwjGreM5L\",\"q3F4wrWgL\",\"nfyAuZwZ2\",\"zP6hFYX4o\",\"YN6rrL7bf\",\"tSBbfveCG\",\"Bd8SD_6RF\"];const serializationHash=\"framer-ZjHHV\";const variantClassNames={bCFPhWM8I:\"framer-v-29qfo4\",Bd8SD_6RF:\"framer-v-pttsh\",DwTeWiL0Y:\"framer-v-1dn7tir\",FIp5KhDpS:\"framer-v-1bgyh0i\",fOyfKh169:\"framer-v-hsn56u\",fRxVtCfZc:\"framer-v-1aveo25\",fwjGreM5L:\"framer-v-169jebk\",GrEtKwZpV:\"framer-v-9hv4lv\",kA1NzRUP_:\"framer-v-41r2sa\",kbjoYg8Ds:\"framer-v-qhd80m\",Kr8l3JspA:\"framer-v-1j447x6\",lNhu4X6TI:\"framer-v-wui0au\",nfyAuZwZ2:\"framer-v-17yg8g8\",nrngR1DOm:\"framer-v-18o3pra\",q3F4wrWgL:\"framer-v-1l40p82\",RAFY1xfFk:\"framer-v-e6qh3p\",sDM4UkJ1f:\"framer-v-lmkala\",sgNeSsJit:\"framer-v-m4ooeh\",tSBbfveCG:\"framer-v-15e14lz\",Y_zVcMYpH:\"framer-v-cj7g39\",YfE7GkIgs:\"framer-v-1qesme4\",YN6rrL7bf:\"framer-v-d4p103\",zP6hFYX4o:\"framer-v-6ixrsn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const transition3={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"1\":\"nrngR1DOm\",\"10-90\":\"RAFY1xfFk\",\"100-90\":\"tSBbfveCG\",\"2\":\"kA1NzRUP_\",\"20-90\":\"DwTeWiL0Y\",\"3\":\"Kr8l3JspA\",\"30-90\":\"GrEtKwZpV\",\"4\":\"Y_zVcMYpH\",\"40-90\":\"sgNeSsJit\",\"5\":\"kbjoYg8Ds\",\"50-90\":\"fwjGreM5L\",\"6\":\"lNhu4X6TI\",\"60-90\":\"q3F4wrWgL\",\"7\":\"fRxVtCfZc\",\"70-90\":\"nfyAuZwZ2\",\"8\":\"fOyfKh169\",\"80-90\":\"zP6hFYX4o\",\"9\":\"YfE7GkIgs\",\"90-90\":\"YN6rrL7bf\",\"Start 50\":\"bCFPhWM8I\",\"Start 60\":\"sDM4UkJ1f\",End:\"FIp5KhDpS\",Pause:\"Bd8SD_6RF\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"sDM4UkJ1f\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sDM4UkJ1f\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1g0jzkg=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"nrngR1DOm\"),50);});const onAppear14obnar=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"kA1NzRUP_\"),100);});const onAppear1vknx6m=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Kr8l3JspA\"),150);});const onAppear704159=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Y_zVcMYpH\"),200);});const onAppear1dgh7a1=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"kbjoYg8Ds\"),250);});const onAppearymoxwi=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"lNhu4X6TI\"),300);});const onAppear12pcqq4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fRxVtCfZc\"),350);});const onAppeartg6m39=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fOyfKh169\"),400);});const onAppear9spovy=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"YfE7GkIgs\"),450);});const onAppear11a2t5b=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"FIp5KhDpS\"),500);});const onAppear161x3w7=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"RAFY1xfFk\"),50);});const onAppear5z2wbl=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"DwTeWiL0Y\"),100);});const onAppear1pmdxp9=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"GrEtKwZpV\"),150);});const onAppear1jxgcp3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"sgNeSsJit\"),200);});const onAppeare5q9x8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fwjGreM5L\"),250);});const onAppear1wzqas6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"q3F4wrWgL\"),300);});const onAppear1g21x9e=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"nfyAuZwZ2\"),350);});const onAppearbku99n=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"zP6hFYX4o\"),400);});const onAppearh5exzj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"YN6rrL7bf\"),450);});const onAppear8dxvr7=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"tSBbfveCG\"),500);});useOnVariantChange(baseVariant,{bCFPhWM8I:onAppear161x3w7,Bd8SD_6RF:undefined,default:onAppear1g0jzkg,DwTeWiL0Y:onAppear1pmdxp9,FIp5KhDpS:undefined,fOyfKh169:onAppear9spovy,fRxVtCfZc:onAppeartg6m39,fwjGreM5L:onAppear1wzqas6,GrEtKwZpV:onAppear1jxgcp3,kA1NzRUP_:onAppear1vknx6m,kbjoYg8Ds:onAppearymoxwi,Kr8l3JspA:onAppear704159,lNhu4X6TI:onAppear12pcqq4,nfyAuZwZ2:onAppearbku99n,nrngR1DOm:onAppear14obnar,q3F4wrWgL:onAppear1g21x9e,RAFY1xfFk:onAppear5z2wbl,sgNeSsJit:onAppeare5q9x8,tSBbfveCG:undefined,Y_zVcMYpH:onAppear1dgh7a1,YfE7GkIgs:onAppear11a2t5b,YN6rrL7bf:onAppear8dxvr7,zP6hFYX4o:onAppearh5exzj});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({DwTeWiL0Y:{value:transition2},FIp5KhDpS:{value:transition3},fOyfKh169:{value:transition2},fRxVtCfZc:{value:transition2},fwjGreM5L:{value:transition2},GrEtKwZpV:{value:transition2},kA1NzRUP_:{value:transition2},kbjoYg8Ds:{value:transition2},Kr8l3JspA:{value:transition2},lNhu4X6TI:{value:transition2},nfyAuZwZ2:{value:transition2},nrngR1DOm:{value:transition2},q3F4wrWgL:{value:transition2},RAFY1xfFk:{value:transition2},sgNeSsJit:{value:transition2},tSBbfveCG:{value:transition3},Y_zVcMYpH:{value:transition2},YfE7GkIgs:{value:transition2},YN6rrL7bf:{value:transition2},zP6hFYX4o:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-lmkala\",className,classNames),\"data-framer-name\":\"Start 60\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sDM4UkJ1f\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({bCFPhWM8I:{\"data-framer-name\":\"Start 50\"},Bd8SD_6RF:{\"data-framer-name\":\"Pause\",\"data-highlight\":undefined},DwTeWiL0Y:{\"data-framer-name\":\"20-90\"},FIp5KhDpS:{\"data-framer-name\":\"End\",\"data-highlight\":undefined},fOyfKh169:{\"data-framer-name\":\"8\"},fRxVtCfZc:{\"data-framer-name\":\"7\"},fwjGreM5L:{\"data-framer-name\":\"50-90\"},GrEtKwZpV:{\"data-framer-name\":\"30-90\"},kA1NzRUP_:{\"data-framer-name\":\"2\"},kbjoYg8Ds:{\"data-framer-name\":\"5\"},Kr8l3JspA:{\"data-framer-name\":\"3\"},lNhu4X6TI:{\"data-framer-name\":\"6\"},nfyAuZwZ2:{\"data-framer-name\":\"70-90\"},nrngR1DOm:{\"data-framer-name\":\"1\"},q3F4wrWgL:{\"data-framer-name\":\"60-90\"},RAFY1xfFk:{\"data-framer-name\":\"10-90\"},sgNeSsJit:{\"data-framer-name\":\"40-90\"},tSBbfveCG:{\"data-framer-name\":\"100-90\",\"data-highlight\":undefined},Y_zVcMYpH:{\"data-framer-name\":\"4\"},YfE7GkIgs:{\"data-framer-name\":\"9\"},YN6rrL7bf:{\"data-framer-name\":\"90-90\"},zP6hFYX4o:{\"data-framer-name\":\"80-90\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"0%\"})}),className:\"framer-16x36kb\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"mCxH3wvTF\",style:{\"--extracted-r6o4lv\":\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DwTeWiL0Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"20%\"})})},FIp5KhDpS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"60%\"})})},fOyfKh169:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"56%\"})})},fRxVtCfZc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"54%\"})})},fwjGreM5L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"40%\"})})},GrEtKwZpV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"30%\"})})},kA1NzRUP_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"20%\"})})},kbjoYg8Ds:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"50%\"})})},Kr8l3JspA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"30%\"})})},lNhu4X6TI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"52%\"})})},nfyAuZwZ2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"44%\"})})},nrngR1DOm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"10%\"})})},q3F4wrWgL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"42%\"})})},RAFY1xfFk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"10%\"})})},sgNeSsJit:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"35%\"})})},tSBbfveCG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"50%\"})})},Y_zVcMYpH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"40%\"})})},YfE7GkIgs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"58%\"})})},YN6rrL7bf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"48%\"})})},zP6hFYX4o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174)))\"},children:\"46%\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZjHHV.framer-1dtyh7w, .framer-ZjHHV .framer-1dtyh7w { display: block; }\",\".framer-ZjHHV.framer-lmkala { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 130px; }\",\".framer-ZjHHV .framer-16x36kb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZjHHV.framer-lmkala { gap: 0px; } .framer-ZjHHV.framer-lmkala > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZjHHV.framer-lmkala > :first-child { margin-top: 0px; } .framer-ZjHHV.framer-lmkala > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 130\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"nrngR1DOm\":{\"layout\":[\"fixed\",\"fixed\"]},\"kA1NzRUP_\":{\"layout\":[\"fixed\",\"fixed\"]},\"Kr8l3JspA\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y_zVcMYpH\":{\"layout\":[\"fixed\",\"fixed\"]},\"kbjoYg8Ds\":{\"layout\":[\"fixed\",\"fixed\"]},\"lNhu4X6TI\":{\"layout\":[\"fixed\",\"fixed\"]},\"fRxVtCfZc\":{\"layout\":[\"fixed\",\"fixed\"]},\"fOyfKh169\":{\"layout\":[\"fixed\",\"fixed\"]},\"YfE7GkIgs\":{\"layout\":[\"fixed\",\"fixed\"]},\"FIp5KhDpS\":{\"layout\":[\"fixed\",\"fixed\"]},\"bCFPhWM8I\":{\"layout\":[\"fixed\",\"fixed\"]},\"RAFY1xfFk\":{\"layout\":[\"fixed\",\"fixed\"]},\"DwTeWiL0Y\":{\"layout\":[\"fixed\",\"fixed\"]},\"GrEtKwZpV\":{\"layout\":[\"fixed\",\"fixed\"]},\"sgNeSsJit\":{\"layout\":[\"fixed\",\"fixed\"]},\"fwjGreM5L\":{\"layout\":[\"fixed\",\"fixed\"]},\"q3F4wrWgL\":{\"layout\":[\"fixed\",\"fixed\"]},\"nfyAuZwZ2\":{\"layout\":[\"fixed\",\"fixed\"]},\"zP6hFYX4o\":{\"layout\":[\"fixed\",\"fixed\"]},\"YN6rrL7bf\":{\"layout\":[\"fixed\",\"fixed\"]},\"tSBbfveCG\":{\"layout\":[\"fixed\",\"fixed\"]},\"Bd8SD_6RF\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerj9NBevuvT=withCSS(Component,css,\"framer-ZjHHV\");export default Framerj9NBevuvT;Framerj9NBevuvT.displayName=\"Percentage\";Framerj9NBevuvT.defaultProps={height:80,width:130};addPropertyControls(Framerj9NBevuvT,{variant:{options:[\"sDM4UkJ1f\",\"nrngR1DOm\",\"kA1NzRUP_\",\"Kr8l3JspA\",\"Y_zVcMYpH\",\"kbjoYg8Ds\",\"lNhu4X6TI\",\"fRxVtCfZc\",\"fOyfKh169\",\"YfE7GkIgs\",\"FIp5KhDpS\",\"bCFPhWM8I\",\"RAFY1xfFk\",\"DwTeWiL0Y\",\"GrEtKwZpV\",\"sgNeSsJit\",\"fwjGreM5L\",\"q3F4wrWgL\",\"nfyAuZwZ2\",\"zP6hFYX4o\",\"YN6rrL7bf\",\"tSBbfveCG\",\"Bd8SD_6RF\"],optionTitles:[\"Start 60\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"End\",\"Start 50\",\"10-90\",\"20-90\",\"30-90\",\"40-90\",\"50-90\",\"60-90\",\"70-90\",\"80-90\",\"90-90\",\"100-90\",\"Pause\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerj9NBevuvT,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerj9NBevuvT\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nrngR1DOm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kA1NzRUP_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Kr8l3JspA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y_zVcMYpH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kbjoYg8Ds\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lNhu4X6TI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fRxVtCfZc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fOyfKh169\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YfE7GkIgs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FIp5KhDpS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bCFPhWM8I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RAFY1xfFk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DwTeWiL0Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GrEtKwZpV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sgNeSsJit\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fwjGreM5L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q3F4wrWgL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nfyAuZwZ2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zP6hFYX4o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YN6rrL7bf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tSBbfveCG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Bd8SD_6RF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"80\",\"framerIntrinsicWidth\":\"130\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./j9NBevuvT.map", "// Generated by Framer (78454af)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"FjzwCl8FM\",\"rIIUpeu9e\",\"d93QAwKEb\",\"ASFQXJ4jN\",\"CF8B6NQgu\",\"Q2gQIXV3Z\",\"CD4ej9nUi\",\"ias20a6SU\",\"BVbxZWKNF\"];const serializationHash=\"framer-NzUlz\";const variantClassNames={ASFQXJ4jN:\"framer-v-120zqli\",BVbxZWKNF:\"framer-v-vnd9i8\",CD4ej9nUi:\"framer-v-rz8fp5\",CF8B6NQgu:\"framer-v-whah8s\",d93QAwKEb:\"framer-v-k18ox3\",FjzwCl8FM:\"framer-v-vfix2w\",ias20a6SU:\"framer-v-1cdl0i9\",Q2gQIXV3Z:\"framer-v-c2hjbd\",rIIUpeu9e:\"framer-v-59ogc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:.1,duration:2.8,ease:[0,0,1,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"End-Environment\":\"rIIUpeu9e\",\"End-labour\":\"ASFQXJ4jN\",\"End-procurement\":\"CD4ej9nUi\",\"Pause-environment\":\"CF8B6NQgu\",\"Pause-labour\":\"ias20a6SU\",\"Pause-Procurement\":\"BVbxZWKNF\",\"Start-Environment\":\"FjzwCl8FM\",\"Start-labour\":\"d93QAwKEb\",\"Start-procurement\":\"Q2gQIXV3Z\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"FjzwCl8FM\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FjzwCl8FM\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1q4wm84=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rIIUpeu9e\"),200);});const onAppear588j1t=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ASFQXJ4jN\"),500);});const onAppear1wyaxlj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"CD4ej9nUi\"),500);});useOnVariantChange(baseVariant,{ASFQXJ4jN:undefined,BVbxZWKNF:undefined,CD4ej9nUi:undefined,CF8B6NQgu:undefined,d93QAwKEb:onAppear588j1t,default:onAppear1q4wm84,ias20a6SU:undefined,Q2gQIXV3Z:onAppear1wyaxlj});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-vfix2w\",className,classNames),\"data-framer-name\":\"Start-Environment\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"FjzwCl8FM\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(132, 166, 166, 0.3)\",...style},variants:{ASFQXJ4jN:{backgroundColor:\"rgba(191, 222, 243, 0.4)\"},BVbxZWKNF:{backgroundColor:\"rgba(240, 245, 215, 0.4)\"},CD4ej9nUi:{backgroundColor:\"rgba(240, 245, 215, 0.4)\"},d93QAwKEb:{backgroundColor:\"rgba(191, 222, 242, 0.4)\"},ias20a6SU:{backgroundColor:\"rgba(191, 222, 243, 0.4)\"},Q2gQIXV3Z:{backgroundColor:\"rgba(240, 245, 215, 0.4)\"}},...addPropertyOverrides({ASFQXJ4jN:{\"data-framer-name\":\"End-labour\",\"data-highlight\":undefined},BVbxZWKNF:{\"data-framer-name\":\"Pause-Procurement\",\"data-highlight\":undefined},CD4ej9nUi:{\"data-framer-name\":\"End-procurement\",\"data-highlight\":undefined},CF8B6NQgu:{\"data-framer-name\":\"Pause-environment\",\"data-highlight\":undefined},d93QAwKEb:{\"data-framer-name\":\"Start-labour\"},ias20a6SU:{\"data-framer-name\":\"Pause-labour\",\"data-highlight\":undefined},Q2gQIXV3Z:{\"data-framer-name\":\"Start-procurement\"},rIIUpeu9e:{\"data-framer-name\":\"End-Environment\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-met0ty\",\"data-framer-name\":\"Slide\",layoutDependency:layoutDependency,layoutId:\"s8teOtbmo\",style:{backgroundColor:\"var(--token-d1ef26dd-057e-4bd1-a145-0c9ae571b79c, rgb(132, 166, 166))\"},variants:{ASFQXJ4jN:{backgroundColor:\"var(--token-b7d9282d-37be-4c6b-abb9-934ca67cde7a, rgb(128, 188, 230))\"},BVbxZWKNF:{backgroundColor:\"var(--token-5b6be914-4cd6-4b87-8045-98a098cc25cf, rgb(240, 245, 215))\"},CD4ej9nUi:{backgroundColor:\"rgb(201, 217, 124)\"},CF8B6NQgu:{backgroundColor:\"rgba(132, 166, 166, 0.6)\"},d93QAwKEb:{backgroundColor:\"var(--token-b7d9282d-37be-4c6b-abb9-934ca67cde7a, rgb(128, 188, 230))\"},ias20a6SU:{backgroundColor:\"rgba(191, 222, 243, 0.8)\"},Q2gQIXV3Z:{backgroundColor:\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\"}}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NzUlz.framer-18smxe6, .framer-NzUlz .framer-18smxe6 { display: block; }\",\".framer-NzUlz.framer-vfix2w { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 800px; }\",\".framer-NzUlz .framer-met0ty { flex: none; height: 100%; overflow: hidden; position: relative; width: 0%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NzUlz.framer-vfix2w { gap: 0px; } .framer-NzUlz.framer-vfix2w > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NzUlz.framer-vfix2w > :first-child { margin-left: 0px; } .framer-NzUlz.framer-vfix2w > :last-child { margin-right: 0px; } }\",\".framer-NzUlz.framer-v-59ogc .framer-met0ty { width: 60%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NzUlz.framer-v-k18ox3 .framer-met0ty { z-index: 2; }\",\".framer-NzUlz.framer-v-120zqli .framer-met0ty { width: 60%; }\",\".framer-NzUlz.framer-v-c2hjbd .framer-met0ty { z-index: 6; }\",\".framer-NzUlz.framer-v-rz8fp5 .framer-met0ty { width: 50%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"rIIUpeu9e\":{\"layout\":[\"fixed\",\"fixed\"]},\"d93QAwKEb\":{\"layout\":[\"fixed\",\"fixed\"]},\"ASFQXJ4jN\":{\"layout\":[\"fixed\",\"fixed\"]},\"CF8B6NQgu\":{\"layout\":[\"fixed\",\"fixed\"]},\"Q2gQIXV3Z\":{\"layout\":[\"fixed\",\"fixed\"]},\"CD4ej9nUi\":{\"layout\":[\"fixed\",\"fixed\"]},\"ias20a6SU\":{\"layout\":[\"fixed\",\"fixed\"]},\"BVbxZWKNF\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertUB56J4OC=withCSS(Component,css,\"framer-NzUlz\");export default FramertUB56J4OC;FramertUB56J4OC.displayName=\"Slider\";FramertUB56J4OC.defaultProps={height:30,width:800};addPropertyControls(FramertUB56J4OC,{variant:{options:[\"FjzwCl8FM\",\"rIIUpeu9e\",\"d93QAwKEb\",\"ASFQXJ4jN\",\"CF8B6NQgu\",\"Q2gQIXV3Z\",\"CD4ej9nUi\",\"ias20a6SU\",\"BVbxZWKNF\"],optionTitles:[\"Start-Environment\",\"End-Environment\",\"Start-labour\",\"End-labour\",\"Pause-environment\",\"Start-procurement\",\"End-procurement\",\"Pause-labour\",\"Pause-Procurement\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramertUB56J4OC,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertUB56J4OC\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rIIUpeu9e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"d93QAwKEb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ASFQXJ4jN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CF8B6NQgu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Q2gQIXV3Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CD4ej9nUi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ias20a6SU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BVbxZWKNF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"30\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"800\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tUB56J4OC.map", "// Generated by Framer (461de17)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-9WfA2 .framer-styles-preset-yocier:not(.rich-text-wrapper), .framer-9WfA2 .framer-styles-preset-yocier.rich-text-wrapper a { --framer-link-current-text-color: var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, #e1ebae) /* {\"name\":\"Skanem Friendly Bright Green\"} */; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, #e1ebae) /* {\"name\":\"Skanem Friendly Bright Green\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, #e1ebae); --framer-link-text-decoration: none; }'];export const className=\"framer-9WfA2\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Blog from\"https://framerusercontent.com/modules/80dP2Xf7Vo2iv2bu3gjE/pOnMZo0gvEHfVv6y2ge0/BzxVuWaVG.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import TextKickerTextLarge from\"https://framerusercontent.com/modules/gyWr5a2lINylYx1R72UX/SZzXJnYiDvKIZ5AKIlIH/UR9z2R2WW.js\";import TitleSubheadingAndBodyText from\"https://framerusercontent.com/modules/HxI42INt2M7s7dMKgUCe/KiPtnvhXoRQZRTSf8QTZ/tKsrJvZEW.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import HeroVideo from\"https://framerusercontent.com/modules/uztSQy2q4yYD5nPeGsVw/Wq1AuKXZfwXF1d35SLIl/mELEXBhEU.js\";import SectionImageOvalPBTN from\"https://framerusercontent.com/modules/Wf2kxJvv01tZDKnhDxzJ/Uouhc5CTIU4LGPaCd5lO/UJjyLp_2n.js\";import Component1 from\"#framer/local/canvasComponent/cZk_HUSEX/cZk_HUSEX.js\";import Percentage from\"#framer/local/canvasComponent/j9NBevuvT/j9NBevuvT.js\";import Skanem_footer from\"#framer/local/canvasComponent/l6JpIvE1P/l6JpIvE1P.js\";import Nav from\"#framer/local/canvasComponent/LwUKeWyn5/LwUKeWyn5.js\";import BTNPrimary from\"#framer/local/canvasComponent/q5zbsDBos/q5zbsDBos.js\";import Slider from\"#framer/local/canvasComponent/tUB56J4OC/tUB56J4OC.js\";import Categories from\"#framer/local/collection/XN9XhK82Y/XN9XhK82Y.js\";import*as sharedStyle2 from\"#framer/local/css/nlUbK3_Yg/nlUbK3_Yg.js\";import*as sharedStyle1 from\"#framer/local/css/t6Kczwxgv/t6Kczwxgv.js\";import*as sharedStyle from\"#framer/local/css/yytQzs1sW/yytQzs1sW.js\";import metadataProvider from\"#framer/local/webPageMetadata/Zquyxrmh2/Zquyxrmh2.js\";const HeroVideoFonts=getFonts(HeroVideo);const SectionImageOvalPBTNFonts=getFonts(SectionImageOvalPBTN);const TextKickerTextLargeFonts=getFonts(TextKickerTextLarge);const TickerFonts=getFonts(Ticker);const BTNPrimaryFonts=getFonts(BTNPrimary);const Ticker1Fonts=getFonts(Ticker1);const Component1Fonts=getFonts(Component1);const PercentageFonts=getFonts(Percentage);const PercentageWithVariantAppearEffect=withVariantAppearEffect(Percentage);const SliderFonts=getFonts(Slider);const SliderWithVariantAppearEffect=withVariantAppearEffect(Slider);const MotionDivWithFX=withFX(motion.div);const TitleSubheadingAndBodyTextFonts=getFonts(TitleSubheadingAndBodyText);const VideoFonts=getFonts(Video);const NavFonts=getFonts(Nav);const NavWithVariantAppearEffect=withVariantAppearEffect(Nav);const ContainerWithFX=withFX(Container);const Skanem_footerFonts=getFonts(Skanem_footer);const breakpoints={gQxnKP0_w:\"(min-width: 1200px) and (max-width: 1919px)\",HH2D6a4mp:\"(max-width: 809px)\",nJMyL2i4C:\"(min-width: 1920px)\",xVXvXVo0a:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-s0Ilc\";const variantClassNames={gQxnKP0_w:\"framer-v-iyv91p\",HH2D6a4mp:\"framer-v-1vcx43q\",nJMyL2i4C:\"framer-v-eyb2ln\",xVXvXVo0a:\"framer-v-d9atlg\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,y:-3};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition2={delay:0,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:20};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"gQxnKP0_w\",Phone:\"HH2D6a4mp\",Tablet:\"xVXvXVo0a\",Wide:\"nJMyL2i4C\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"gQxnKP0_w\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,rs0QFx0IwSQ8QIIoVs,TP4QqQ5rhSQ8QIIoVs,L36MiWNC5SQ8QIIoVs,idSQ8QIIoVs,rs0QFx0IwnAQh41o9B,TP4QqQ5rhnAQh41o9B,L36MiWNC5nAQh41o9B,idnAQh41o9B,rs0QFx0Iwu8Eg3k91k,TP4QqQ5rhu8Eg3k91k,L36MiWNC5u8Eg3k91k,idu8Eg3k91k,rs0QFx0IwvoyEvW0tS,TP4QqQ5rhvoyEvW0tS,L36MiWNC5voyEvW0tS,idvoyEvW0tS,rs0QFx0Iwat6avPdOp,TP4QqQ5rhat6avPdOp,L36MiWNC5at6avPdOp,idat6avPdOp,rs0QFx0Iwvt6LBqzHz,TP4QqQ5rhvt6LBqzHz,L36MiWNC5vt6LBqzHz,idvt6LBqzHz,rs0QFx0Iwunjwdd6oj,TP4QqQ5rhunjwdd6oj,L36MiWNC5unjwdd6oj,idunjwdd6oj,rs0QFx0IwjCfMEDRWO,TP4QqQ5rhjCfMEDRWO,L36MiWNC5jCfMEDRWO,idjCfMEDRWO,rs0QFx0IwbTMTXyfOG,TP4QqQ5rhbTMTXyfOG,L36MiWNC5bTMTXyfOG,idbTMTXyfOG,rs0QFx0IwYLz1HTLUD,TP4QqQ5rhYLz1HTLUD,L36MiWNC5YLz1HTLUD,idYLz1HTLUD,rs0QFx0IwTygml2PQC,TP4QqQ5rhTygml2PQC,L36MiWNC5Tygml2PQC,idTygml2PQC,rs0QFx0IwdGdJZ3WAH,TP4QqQ5rhdGdJZ3WAH,L36MiWNC5dGdJZ3WAH,iddGdJZ3WAH,rs0QFx0IwtEJwB3djY,TP4QqQ5rhtEJwB3djY,L36MiWNC5tEJwB3djY,idtEJwB3djY,rs0QFx0IwLkk0r_JFG,TP4QqQ5rhLkk0r_JFG,L36MiWNC5Lkk0r_JFG,idLkk0r_JFG,rs0QFx0IwWfw62c38Q,TP4QqQ5rhWfw62c38Q,L36MiWNC5Wfw62c38Q,idWfw62c38Q,rs0QFx0IwyavVIz4nu,TP4QqQ5rhyavVIz4nu,L36MiWNC5yavVIz4nu,idyavVIz4nu,rs0QFx0Iwa_7myKfku,TP4QqQ5rha_7myKfku,L36MiWNC5a_7myKfku,ida_7myKfku,rs0QFx0IwMAu2pDsCs,TP4QqQ5rhMAu2pDsCs,L36MiWNC5MAu2pDsCs,idMAu2pDsCs,rs0QFx0IwoaWCsneqj,TP4QqQ5rhoaWCsneqj,L36MiWNC5oaWCsneqj,idoaWCsneqj,rs0QFx0IwCNvy4z4HC,TP4QqQ5rhCNvy4z4HC,L36MiWNC5CNvy4z4HC,idCNvy4z4HC,rs0QFx0IwgucAowvnN,TP4QqQ5rhgucAowvnN,L36MiWNC5gucAowvnN,idgucAowvnN,vhLy0TtfCTcAi692Id,idTcAi692Id,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-s0Ilc`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-s0Ilc`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"AMO2diOYg\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"xVXvXVo0a\",\"HH2D6a4mp\"].includes(baseVariant))return false;return true;};const elementId1=useRouteElementId(\"unjwdd6oj\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"jCfMEDRWO\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"bTMTXyfOG\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"YLz1HTLUD\");const ref6=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"xVXvXVo0a\",\"HH2D6a4mp\"].includes(baseVariant))return true;return false;};const elementId5=useRouteElementId(\"a_7myKfku\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"MAu2pDsCs\");const ref8=React.useRef(null);const elementId7=useRouteElementId(\"oaWCsneqj\");const ref9=React.useRef(null);const elementId8=useRouteElementId(\"CNvy4z4HC\");const ref10=React.useRef(null);const elementId9=useRouteElementId(\"gucAowvnN\");const ref11=React.useRef(null);const elementId10=useRouteElementId(\"IQ6WzKMf5\");const ref12=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"HH2D6a4mp\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"gQxnKP0_w\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-iyv91p\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JTcwj7wA5\"},implicitPathVariables:undefined},{href:{webPageId:\"JTcwj7wA5\"},implicitPathVariables:undefined},{href:{webPageId:\"JTcwj7wA5\"},implicitPathVariables:undefined},{href:{webPageId:\"JTcwj7wA5\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{height:900.473933649289},xVXvXVo0a:{height:900}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19v23kw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{TOA4HiGSG:resolvedLinks[3],variant:\"GbyDkVqcp\"},nJMyL2i4C:{RNzTJQH74:\"Creating a responsible\\nfuture in packaging\",TOA4HiGSG:resolvedLinks[1],variant:\"jOurdJnmG\"},xVXvXVo0a:{TOA4HiGSG:resolvedLinks[2],variant:\"Gqmg7NNzu\"}},children:/*#__PURE__*/_jsx(HeroVideo,{C7H03oC21:\"var(--token-2c6b3561-0c9f-4523-9d86-0be6e76fc3b6, rgb(14, 78, 78))\",height:\"100%\",id:\"dF1xtyRqn\",layoutId:\"dF1xtyRqn\",RNzTJQH74:\"Creating a responsible \\nfuture in packaging\",style:{height:\"100%\",width:\"100%\"},TKBbIkqr1:\"Find out more about\",TOA4HiGSG:resolvedLinks[0],variant:\"lhZ6WVt5k\",width:\"100%\",yC3HEl8xs:\"https://framerusercontent.com/assets/qzAlEPWFMroPJjKKzFfw2OeqTI.mp4\",zXYMYl0ww:\"what we do\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vjA1B3fOh\"},implicitPathVariables:undefined},{href:{webPageId:\"vjA1B3fOh\"},implicitPathVariables:undefined},{href:{webPageId:\"vjA1B3fOh\"},implicitPathVariables:undefined},{href:{webPageId:\"vjA1B3fOh\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{width:\"390px\",y:900.473933649289},nJMyL2i4C:{height:800,width:\"1920px\"},xVXvXVo0a:{width:\"810px\",y:900}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:617,width:\"100vw\",y:1e3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f1zuuw-container\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{variant:\"RL2WOjAri\",Y3fXHdnU7:resolvedLinks1[3]},nJMyL2i4C:{style:{height:\"100%\",width:\"100%\"},variant:\"zWTKHLwmi\",Y3fXHdnU7:resolvedLinks1[1]},xVXvXVo0a:{variant:\"gnUryTiiw\",Y3fXHdnU7:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(SectionImageOvalPBTN,{Coze9tx4a:\"t5v_UrWyY\",d_VxGIxld:addImageAlt({src:\"https://framerusercontent.com/images/BAoKlih7y3A2e3RrMsCTy7oYPQ.png\",srcSet:\"https://framerusercontent.com/images/BAoKlih7y3A2e3RrMsCTy7oYPQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/BAoKlih7y3A2e3RrMsCTy7oYPQ.png 545w\"},\"\"),height:\"100%\",id:\"AMO2diOYg\",layoutId:\"AMO2diOYg\",lu9Ze6Q6u:\"Primarily, packaging safeguards products during transit and storage to maintain product integrity. \\xa0Your packaging and labels decoration also serve as vital communication tools. They provide essential information like ingredients, facts and usage instructions, thereby managing consumer expectations and fostering satisfaction. \\xa0\\xa0At Skanem, we work efficiently and effortlessly to deliver not only packaging solutions, but also laboratory products that are seamlessly matched to our customers\u2019 expectations and needs.\\xa0\",o1XdHeEeB:\"var(--token-2c6b3561-0c9f-4523-9d86-0be6e76fc3b6, rgb(14, 78, 78))\",style:{width:\"100%\"},tAUmit8Rc:false,uOl7qcFaU:\"Products\",variant:\"ZjQMv5Rqr\",w9fBjR2Ke:\"150px 150px 120px 30px\",width:\"100%\",xngpUfsKV:\"var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223))\",Y3fXHdnU7:resolvedLinks1[0]})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-37dcxm\",\"data-framer-name\":\"News Container\",name:\"News Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8gpyw9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{width:\"calc(min(100vw, 2100px) - 40px)\",y:1539.473933649289},nJMyL2i4C:{y:1860},xVXvXVo0a:{width:\"calc(min(100vw, 2100px) - 80px)\",y:1577}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:341,width:\"calc(min(100vw, 2100px) - 60px)\",y:1617,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lu8qmx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{variant:\"sU61AyGft\"},nJMyL2i4C:{variant:\"YybNAfS8v\"},xVXvXVo0a:{variant:\"oj1JUq3EG\"}},children:/*#__PURE__*/_jsx(TextKickerTextLarge,{BAq28qbGg:\"var(--token-2c6b3561-0c9f-4523-9d86-0be6e76fc3b6, rgb(14, 78, 78))\",cHABn9XBG:\"0px\",height:\"100%\",IAvrFp3f2:\"\\xa0We act in a responsible way, and build trusted connections with our clients.\",id:\"PXiii6sVb\",layoutId:\"PXiii6sVb\",P5PuhBMxb:\"var(--token-d1ef26dd-057e-4bd1-a145-0c9ae571b79c, rgb(132, 166, 166))\",style:{width:\"100%\"},us9d84reH:true,variant:\"bzFleszZs\",width:\"100%\",Xk6z_DQUM:\"\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xoux63-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{gap:50},nJMyL2i4C:{speed:40},xVXvXVo0a:{gap:80}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false},gap:150,height:\"100%\",hoverFactor:1,id:\"QjzfrvOy6\",layoutId:\"QjzfrvOy6\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1duqldn\",\"data-framer-name\":\"Loeral\",name:\"Loeral\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:603,pixelWidth:3333,positionX:\"center\",positionY:\"center\",sizes:\"146px\",src:\"https://framerusercontent.com/images/joBzHPpciPZXCEbHMrW7cExGRcQ.png\",srcSet:\"https://framerusercontent.com/images/joBzHPpciPZXCEbHMrW7cExGRcQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/joBzHPpciPZXCEbHMrW7cExGRcQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/joBzHPpciPZXCEbHMrW7cExGRcQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/joBzHPpciPZXCEbHMrW7cExGRcQ.png 3333w\"},className:\"framer-qr8wwo\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-159i0iw\",\"data-framer-name\":\"Glenmark\",name:\"Glenmark\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:404,pixelWidth:844,positionX:\"center\",positionY:\"center\",sizes:\"108px\",src:\"https://framerusercontent.com/images/DnPRzJUdxEZZNJ1cAMwzcyzdHUM.png\",srcSet:\"https://framerusercontent.com/images/DnPRzJUdxEZZNJ1cAMwzcyzdHUM.png?scale-down-to=512 512w,https://framerusercontent.com/images/DnPRzJUdxEZZNJ1cAMwzcyzdHUM.png 844w\"},className:\"framer-14jfrw\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:212,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eUoLptJnwdjr4qKxQQYLX5Yf60.png\"},className:\"framer-82kkjp\",\"data-framer-name\":\"Joy\",name:\"Joy\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sk68qb\",\"data-framer-name\":\"Coca cola\",name:\"Coca cola\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2160,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:\"119px\",src:\"https://framerusercontent.com/images/qLU2j1J8i2xFHRisylPZHTdJ92o.png\",srcSet:\"https://framerusercontent.com/images/qLU2j1J8i2xFHRisylPZHTdJ92o.png?scale-down-to=512 512w,https://framerusercontent.com/images/qLU2j1J8i2xFHRisylPZHTdJ92o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qLU2j1J8i2xFHRisylPZHTdJ92o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qLU2j1J8i2xFHRisylPZHTdJ92o.png 3840w\"},className:\"framer-vt3yuh\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5xfn3r\",\"data-framer-name\":\"Diaego\",name:\"Diaego\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:673,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"120px\",src:\"https://framerusercontent.com/images/wtrunnjtoSz1LZKwVqxl4tEys.png\",srcSet:\"https://framerusercontent.com/images/wtrunnjtoSz1LZKwVqxl4tEys.png?scale-down-to=512 512w,https://framerusercontent.com/images/wtrunnjtoSz1LZKwVqxl4tEys.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wtrunnjtoSz1LZKwVqxl4tEys.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wtrunnjtoSz1LZKwVqxl4tEys.png 2560w\"},className:\"framer-5ml5rq\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hrgv1j\",\"data-framer-name\":\"Total\",name:\"Total\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:320,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"154px\",src:\"https://framerusercontent.com/images/UP2FhzuKQKxiI85PKqkroE1k.png\",srcSet:\"https://framerusercontent.com/images/UP2FhzuKQKxiI85PKqkroE1k.png?scale-down-to=512 512w,https://framerusercontent.com/images/UP2FhzuKQKxiI85PKqkroE1k.png 900w\"},className:\"framer-1ecr1ua\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ysqxrd\",\"data-framer-name\":\"Procter & Gamble\",name:\"Procter & Gamble\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:440,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"105px\",src:\"https://framerusercontent.com/images/dYx3gfyk23eaUfBE4mB5ZQt8UFo.png\",srcSet:\"https://framerusercontent.com/images/dYx3gfyk23eaUfBE4mB5ZQt8UFo.png?scale-down-to=512 512w,https://framerusercontent.com/images/dYx3gfyk23eaUfBE4mB5ZQt8UFo.png 900w\"},className:\"framer-1wud25p\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2160,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:\"96px\",src:\"https://framerusercontent.com/images/nsgxby05JDfGWw3QRrOX2QLAQ.png\",srcSet:\"https://framerusercontent.com/images/nsgxby05JDfGWw3QRrOX2QLAQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/nsgxby05JDfGWw3QRrOX2QLAQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nsgxby05JDfGWw3QRrOX2QLAQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nsgxby05JDfGWw3QRrOX2QLAQ.png 3840w\"},className:\"framer-gflwbu\",\"data-framer-name\":\"Reckitt\",name:\"Reckitt\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:387,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"81px\",src:\"https://framerusercontent.com/images/mERRLFy3zpXxCW7Zvx8kgQXUtcc.png\",srcSet:\"https://framerusercontent.com/images/mERRLFy3zpXxCW7Zvx8kgQXUtcc.png?scale-down-to=512 512w,https://framerusercontent.com/images/mERRLFy3zpXxCW7Zvx8kgQXUtcc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mERRLFy3zpXxCW7Zvx8kgQXUtcc.png 1200w\"},className:\"framer-kqnhcd\",\"data-framer-name\":\"Joy\",name:\"Joy\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-133n3hk\",\"data-framer-name\":\"Unilever\",name:\"Unilever\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:274,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"138px\",src:\"https://framerusercontent.com/images/q5aprY4QYCutou4ElysONANvi28.png\",srcSet:\"https://framerusercontent.com/images/q5aprY4QYCutou4ElysONANvi28.png?scale-down-to=512 512w,https://framerusercontent.com/images/q5aprY4QYCutou4ElysONANvi28.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q5aprY4QYCutou4ElysONANvi28.png 1280w\"},className:\"framer-15tq9wj\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j8uzf4\",\"data-framer-name\":\"Unilever\",name:\"Unilever\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:756,pixelWidth:4167,positionX:\"center\",positionY:\"center\",sizes:\"224px\",src:\"https://framerusercontent.com/images/WFo5NZNsEMwDlPBQkL9GgMp7E.png\",srcSet:\"https://framerusercontent.com/images/WFo5NZNsEMwDlPBQkL9GgMp7E.png?scale-down-to=512 512w,https://framerusercontent.com/images/WFo5NZNsEMwDlPBQkL9GgMp7E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WFo5NZNsEMwDlPBQkL9GgMp7E.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WFo5NZNsEMwDlPBQkL9GgMp7E.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/WFo5NZNsEMwDlPBQkL9GgMp7E.png 4167w\"},className:\"framer-o86zp8\"})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{y:2041.473933649289},nJMyL2i4C:{y:2392},xVXvXVo0a:{y:2049}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:341,width:\"100vw\",y:2119,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bei7g6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{variant:\"sU61AyGft\"},nJMyL2i4C:{variant:\"YybNAfS8v\"},xVXvXVo0a:{variant:\"oj1JUq3EG\"}},children:/*#__PURE__*/_jsx(TextKickerTextLarge,{BAq28qbGg:\"var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223))\",cHABn9XBG:\"30px\",height:\"100%\",IAvrFp3f2:\"Our packaging and laboratory solution portfolio\",id:\"SudLCw4JX\",layoutId:\"SudLCw4JX\",P5PuhBMxb:\"var(--token-d1ef26dd-057e-4bd1-a145-0c9ae571b79c, rgb(132, 166, 166))\",style:{width:\"100%\"},us9d84reH:true,variant:\"bzFleszZs\",width:\"100%\",Xk6z_DQUM:\"Product packaging and decoration choice plays a pivotal role in ensuring product safety, enhancing consumer appeal, and promoting environmental sustainability.  \"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c9j5cp\",\"data-framer-name\":\"Section Container\",name:\"Section Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{width:\"calc(min(100vw, 2100px) - 40px)\",y:2442.473933649289},nJMyL2i4C:{y:2813},xVXvXVo0a:{y:2470}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:341,width:\"calc(min(100vw, 2100px) - 80px)\",y:2540,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uvcn0w-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{variant:\"sU61AyGft\"},nJMyL2i4C:{variant:\"YybNAfS8v\"},xVXvXVo0a:{variant:\"oj1JUq3EG\"}},children:/*#__PURE__*/_jsx(TextKickerTextLarge,{BAq28qbGg:\"var(--token-2c6b3561-0c9f-4523-9d86-0be6e76fc3b6, rgb(14, 78, 78))\",cHABn9XBG:\"0px\",height:\"100%\",IAvrFp3f2:\"Where we operate\",id:\"rQuQlUjgW\",layoutId:\"rQuQlUjgW\",P5PuhBMxb:\"var(--token-d1ef26dd-057e-4bd1-a145-0c9ae571b79c, rgb(132, 166, 166))\",style:{width:\"100%\"},us9d84reH:true,variant:\"bzFleszZs\",width:\"100%\",Xk6z_DQUM:\"\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13bdpgo\",\"data-framer-name\":\"Button container\",name:\"Button container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1utv0so\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mi7xjg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{background:{alt:\"Africa map with location pins on Skanem locations\",fit:\"fit\",loading:getLoadingLazyAtYPosition(2853.473933649289),pixelHeight:150,pixelWidth:141,positionX:\"center\",positionY:\"center\",sizes:\"max(min(100vw, 2100px) - 100px, 1px)\",src:\"https://framerusercontent.com/images/CYbHOq9SgfJZef5YRdqUBU1qpA.svg\",srcSet:\"https://framerusercontent.com/images/CYbHOq9SgfJZef5YRdqUBU1qpA.svg?scale-down-to=1024 960w,https://framerusercontent.com/images/CYbHOq9SgfJZef5YRdqUBU1qpA.svg 1173w\"}},nJMyL2i4C:{background:{alt:\"Africa map with location pins on Skanem locations\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3224),pixelHeight:150,pixelWidth:141,positionX:\"center\",positionY:\"center\",sizes:\"max(max((min(100vw, 2100px) - 142px) / 3, 1px) - 60px, 1px)\",src:\"https://framerusercontent.com/images/CYbHOq9SgfJZef5YRdqUBU1qpA.svg\",srcSet:\"https://framerusercontent.com/images/CYbHOq9SgfJZef5YRdqUBU1qpA.svg?scale-down-to=1024 960w,https://framerusercontent.com/images/CYbHOq9SgfJZef5YRdqUBU1qpA.svg 1173w\"}},xVXvXVo0a:{background:{alt:\"Africa map with location pins on Skanem locations\",fit:\"fit\",loading:getLoadingLazyAtYPosition(2861),pixelHeight:150,pixelWidth:141,positionX:\"center\",positionY:\"center\",sizes:\"max(max((min(100vw, 2100px) - 280px) / 3, 1px) - 60px, 1px)\",src:\"https://framerusercontent.com/images/CYbHOq9SgfJZef5YRdqUBU1qpA.svg\",srcSet:\"https://framerusercontent.com/images/CYbHOq9SgfJZef5YRdqUBU1qpA.svg?scale-down-to=1024 960w,https://framerusercontent.com/images/CYbHOq9SgfJZef5YRdqUBU1qpA.svg 1173w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Africa map with location pins on Skanem locations\",fit:\"fit\",loading:getLoadingLazyAtYPosition(2931),pixelHeight:150,pixelWidth:141,positionX:\"center\",positionY:\"center\",sizes:\"max(max((min(100vw, 2100px) - 142px) / 3, 1px) - 60px, 1px)\",src:\"https://framerusercontent.com/images/CYbHOq9SgfJZef5YRdqUBU1qpA.svg\",srcSet:\"https://framerusercontent.com/images/CYbHOq9SgfJZef5YRdqUBU1qpA.svg?scale-down-to=1024 960w,https://framerusercontent.com/images/CYbHOq9SgfJZef5YRdqUBU1qpA.svg 1173w\"},className:\"framer-7xn1dq\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{y:3050.473933649289},nJMyL2i4C:{y:3520},xVXvXVo0a:{y:3083}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:3153,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j9zfh0-container\",\"data-framer-name\":\"BTN 1\",name:\"BTN 1\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nJMyL2i4C:{variant:\"t5v_UrWyY\"}},children:/*#__PURE__*/_jsx(BTNPrimary,{aD6Y1As9w:\"https://www.skanem.ke/\",height:\"100%\",i6vBw2MVs:false,id:\"GMljOKJs4\",layoutId:\"GMljOKJs4\",name:\"BTN 1\",v2JpTq8_v:\"Skanem Africa\",variant:\"z96rBYeJc\",width:\"100%\",yvnvmAhBY:false})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-be37rl\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-n1soo4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{background:{alt:\"India map with location pins on Skanem locations\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3208.473933649289),pixelHeight:150,pixelWidth:142,positionX:\"center\",positionY:\"center\",sizes:\"max(min(100vw, 2100px) - 80px, 1px)\",src:\"https://framerusercontent.com/images/Agru5NYyIQaGIFmJA6s0oEpvLp0.svg\",srcSet:\"https://framerusercontent.com/images/Agru5NYyIQaGIFmJA6s0oEpvLp0.svg?scale-down-to=1024 968w,https://framerusercontent.com/images/Agru5NYyIQaGIFmJA6s0oEpvLp0.svg 1367w\"}},nJMyL2i4C:{background:{alt:\"India map with location pins on Skanem locations\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3214),pixelHeight:150,pixelWidth:142,positionX:\"center\",positionY:\"center\",sizes:\"max(max((min(100vw, 2100px) - 142px) / 3, 1px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/Agru5NYyIQaGIFmJA6s0oEpvLp0.svg\",srcSet:\"https://framerusercontent.com/images/Agru5NYyIQaGIFmJA6s0oEpvLp0.svg?scale-down-to=1024 968w,https://framerusercontent.com/images/Agru5NYyIQaGIFmJA6s0oEpvLp0.svg 1367w\"}},xVXvXVo0a:{background:{alt:\"India map with location pins on Skanem locations\",fit:\"fit\",loading:getLoadingLazyAtYPosition(2851),pixelHeight:150,pixelWidth:142,positionX:\"center\",positionY:\"center\",sizes:\"max(max((min(100vw, 2100px) - 280px) / 3, 1px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/Agru5NYyIQaGIFmJA6s0oEpvLp0.svg\",srcSet:\"https://framerusercontent.com/images/Agru5NYyIQaGIFmJA6s0oEpvLp0.svg?scale-down-to=1024 968w,https://framerusercontent.com/images/Agru5NYyIQaGIFmJA6s0oEpvLp0.svg 1367w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"India map with location pins on Skanem locations\",fit:\"fit\",loading:getLoadingLazyAtYPosition(2921),pixelHeight:150,pixelWidth:142,positionX:\"center\",positionY:\"center\",sizes:\"max(max((min(100vw, 2100px) - 142px) / 3, 1px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/Agru5NYyIQaGIFmJA6s0oEpvLp0.svg\",srcSet:\"https://framerusercontent.com/images/Agru5NYyIQaGIFmJA6s0oEpvLp0.svg?scale-down-to=1024 968w,https://framerusercontent.com/images/Agru5NYyIQaGIFmJA6s0oEpvLp0.svg 1367w\"},className:\"framer-1gjxf2r\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{y:3415.473933649289},nJMyL2i4C:{y:3520},xVXvXVo0a:{y:3083}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:3153,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iyd31s-container\",\"data-framer-name\":\"BTN 1\",name:\"BTN 1\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nJMyL2i4C:{variant:\"f5fOSCJEc\"}},children:/*#__PURE__*/_jsx(BTNPrimary,{aD6Y1As9w:\"https://www.skanem.in/\",height:\"100%\",i6vBw2MVs:false,id:\"sn9YNjVd9\",layoutId:\"sn9YNjVd9\",name:\"BTN 1\",v2JpTq8_v:\"Skanem India\",variant:\"WNUKMcvKu\",width:\"100%\",yvnvmAhBY:false})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p3nwyd\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hnua0p\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{background:{alt:\"Norwegian map with location pins on Skanem locations\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3573.473933649289),pixelHeight:150,pixelWidth:130,positionX:\"center\",positionY:\"center\",sizes:\"max(min(100vw, 2100px) - 80px, 1px)\",src:\"https://framerusercontent.com/images/UXuoxH7lXvd0yLoP7mm1aBW5pM.svg\",srcSet:\"https://framerusercontent.com/images/UXuoxH7lXvd0yLoP7mm1aBW5pM.svg?scale-down-to=1024 888w,https://framerusercontent.com/images/UXuoxH7lXvd0yLoP7mm1aBW5pM.svg?scale-down-to=2048 1776w,https://framerusercontent.com/images/UXuoxH7lXvd0yLoP7mm1aBW5pM.svg 2523w\"}},nJMyL2i4C:{background:{alt:\"Norwegian map with location pins on Skanem locations\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3214),pixelHeight:150,pixelWidth:130,positionX:\"center\",positionY:\"center\",sizes:\"max(max((min(100vw, 2100px) - 142px) / 3, 1px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/UXuoxH7lXvd0yLoP7mm1aBW5pM.svg\",srcSet:\"https://framerusercontent.com/images/UXuoxH7lXvd0yLoP7mm1aBW5pM.svg?scale-down-to=1024 888w,https://framerusercontent.com/images/UXuoxH7lXvd0yLoP7mm1aBW5pM.svg?scale-down-to=2048 1776w,https://framerusercontent.com/images/UXuoxH7lXvd0yLoP7mm1aBW5pM.svg 2523w\"}},xVXvXVo0a:{background:{alt:\"Norwegian map with location pins on Skanem locations\",fit:\"fit\",loading:getLoadingLazyAtYPosition(2851),pixelHeight:150,pixelWidth:130,positionX:\"center\",positionY:\"center\",sizes:\"max(max((min(100vw, 2100px) - 280px) / 3, 1px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/UXuoxH7lXvd0yLoP7mm1aBW5pM.svg\",srcSet:\"https://framerusercontent.com/images/UXuoxH7lXvd0yLoP7mm1aBW5pM.svg?scale-down-to=1024 888w,https://framerusercontent.com/images/UXuoxH7lXvd0yLoP7mm1aBW5pM.svg?scale-down-to=2048 1776w,https://framerusercontent.com/images/UXuoxH7lXvd0yLoP7mm1aBW5pM.svg 2523w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Norwegian map with location pins on Skanem locations\",fit:\"fit\",loading:getLoadingLazyAtYPosition(2921),pixelHeight:150,pixelWidth:130,positionX:\"center\",positionY:\"center\",sizes:\"max(max((min(100vw, 2100px) - 142px) / 3, 1px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/UXuoxH7lXvd0yLoP7mm1aBW5pM.svg\",srcSet:\"https://framerusercontent.com/images/UXuoxH7lXvd0yLoP7mm1aBW5pM.svg?scale-down-to=1024 888w,https://framerusercontent.com/images/UXuoxH7lXvd0yLoP7mm1aBW5pM.svg?scale-down-to=2048 1776w,https://framerusercontent.com/images/UXuoxH7lXvd0yLoP7mm1aBW5pM.svg 2523w\"},className:\"framer-i6npqb\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{y:3780.473933649289},nJMyL2i4C:{y:3520},xVXvXVo0a:{y:3083}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:3153,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11gutk5-container\",\"data-framer-name\":\"BTN 1\",name:\"BTN 1\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nJMyL2i4C:{variant:\"t5v_UrWyY\"}},children:/*#__PURE__*/_jsx(BTNPrimary,{aD6Y1As9w:\"https://www.skanem.no\",height:\"100%\",i6vBw2MVs:false,id:\"CUOyu2eMY\",layoutId:\"CUOyu2eMY\",name:\"BTN 1\",v2JpTq8_v:\"Skanem Norway\",variant:\"z96rBYeJc\",width:\"100%\",yvnvmAhBY:false})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10o1ec6\",\"data-framer-name\":\"Section Container\",name:\"Section Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kcobvq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1jmndeq\",\"data-styles-preset\":\"yytQzs1sW\",style:{\"--framer-text-color\":\"var(--token-d1ef26dd-057e-4bd1-a145-0c9ae571b79c, rgb(132, 166, 166))\"},children:\"What we deliver\"})}),className:\"framer-woguui\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1jmndeq\",\"data-styles-preset\":\"yytQzs1sW\",style:{\"--framer-text-color\":\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vjA1B3fOh\"},nodeId:\"roY4pmbiv\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-yocier\",\"data-styles-preset\":\"t6Kczwxgv\",children:\"See more products\\xbb\"})})})}),className:\"framer-q50wgl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w7bkv3-container hidden-d9atlg hidden-1vcx43q\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"ev7ixvY39\",layoutId:\"ev7ixvY39\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bj4njq\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"SQ8QIIoVs\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"SQ8QIIoVs\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"SQ8QIIoVs\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"SQ8QIIoVs\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"SQ8QIIoVs\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SQ8QIIoVs\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"e1PlSw2vf\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({id:idSQ8QIIoVs,L36MiWNC5:L36MiWNC5SQ8QIIoVs,rs0QFx0Iw:rs0QFx0IwSQ8QIIoVs,TP4QqQ5rh:TP4QqQ5rhSQ8QIIoVs},i)=>{TP4QqQ5rhSQ8QIIoVs!==null&&TP4QqQ5rhSQ8QIIoVs!==void 0?TP4QqQ5rhSQ8QIIoVs:TP4QqQ5rhSQ8QIIoVs=\"\";L36MiWNC5SQ8QIIoVs!==null&&L36MiWNC5SQ8QIIoVs!==void 0?L36MiWNC5SQ8QIIoVs:L36MiWNC5SQ8QIIoVs=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`SQ8QIIoVs-${idSQ8QIIoVs}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5SQ8QIIoVs},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-axqfx3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12j2wo0\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"110.0625px\",...toResponsiveImage(rs0QFx0IwSQ8QIIoVs),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-vkjmdu\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-15vcgt2\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhSQ8QIIoVs,verticalAlignment:\"top\",withExternalLayout:true})]})})},idSQ8QIIoVs);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jy26mv\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"nAQh41o9B\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"nAQh41o9B\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"nAQh41o9B\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"nAQh41o9B\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"nAQh41o9B\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"nAQh41o9B\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"e1PlSw2vf\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({id:idnAQh41o9B,L36MiWNC5:L36MiWNC5nAQh41o9B,rs0QFx0Iw:rs0QFx0IwnAQh41o9B,TP4QqQ5rh:TP4QqQ5rhnAQh41o9B},i)=>{TP4QqQ5rhnAQh41o9B!==null&&TP4QqQ5rhnAQh41o9B!==void 0?TP4QqQ5rhnAQh41o9B:TP4QqQ5rhnAQh41o9B=\"\";L36MiWNC5nAQh41o9B!==null&&L36MiWNC5nAQh41o9B!==void 0?L36MiWNC5nAQh41o9B:L36MiWNC5nAQh41o9B=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`nAQh41o9B-${idnAQh41o9B}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5nAQh41o9B},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-46tg2v\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s166tf\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"44.5px\",...toResponsiveImage(rs0QFx0IwnAQh41o9B),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-2rx9sb\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-fqgzlz\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhnAQh41o9B,verticalAlignment:\"top\",withExternalLayout:true})]})})},idnAQh41o9B);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xcy2xl\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"u8Eg3k91k\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"u8Eg3k91k\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"u8Eg3k91k\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"u8Eg3k91k\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"u8Eg3k91k\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"u8Eg3k91k\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"e1PlSw2vf\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({id:idu8Eg3k91k,L36MiWNC5:L36MiWNC5u8Eg3k91k,rs0QFx0Iw:rs0QFx0Iwu8Eg3k91k,TP4QqQ5rh:TP4QqQ5rhu8Eg3k91k},i)=>{TP4QqQ5rhu8Eg3k91k!==null&&TP4QqQ5rhu8Eg3k91k!==void 0?TP4QqQ5rhu8Eg3k91k:TP4QqQ5rhu8Eg3k91k=\"\";L36MiWNC5u8Eg3k91k!==null&&L36MiWNC5u8Eg3k91k!==void 0?L36MiWNC5u8Eg3k91k:L36MiWNC5u8Eg3k91k=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`u8Eg3k91k-${idu8Eg3k91k}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5u8Eg3k91k},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ti11o4\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mop38l\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"44.5px\",...toResponsiveImage(rs0QFx0Iwu8Eg3k91k),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-yhg0d8\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-rldgxm\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhu8Eg3k91k,verticalAlignment:\"top\",withExternalLayout:true})]})})},idu8Eg3k91k);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v4ey4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"voyEvW0tS\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"voyEvW0tS\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"voyEvW0tS\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"voyEvW0tS\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"voyEvW0tS\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"voyEvW0tS\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"e1PlSw2vf\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3.map(({id:idvoyEvW0tS,L36MiWNC5:L36MiWNC5voyEvW0tS,rs0QFx0Iw:rs0QFx0IwvoyEvW0tS,TP4QqQ5rh:TP4QqQ5rhvoyEvW0tS},i)=>{TP4QqQ5rhvoyEvW0tS!==null&&TP4QqQ5rhvoyEvW0tS!==void 0?TP4QqQ5rhvoyEvW0tS:TP4QqQ5rhvoyEvW0tS=\"\";L36MiWNC5voyEvW0tS!==null&&L36MiWNC5voyEvW0tS!==void 0?L36MiWNC5voyEvW0tS:L36MiWNC5voyEvW0tS=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`voyEvW0tS-${idvoyEvW0tS}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5voyEvW0tS},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cqlffn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-oty4sq\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"44.5px\",...toResponsiveImage(rs0QFx0IwvoyEvW0tS),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1xoxno5\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-r7yxuy\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhvoyEvW0tS,verticalAlignment:\"top\",withExternalLayout:true})]})})},idvoyEvW0tS);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16ft8ic\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"at6avPdOp\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"at6avPdOp\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"at6avPdOp\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"at6avPdOp\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"at6avPdOp\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"at6avPdOp\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"e1PlSw2vf\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4.map(({id:idat6avPdOp,L36MiWNC5:L36MiWNC5at6avPdOp,rs0QFx0Iw:rs0QFx0Iwat6avPdOp,TP4QqQ5rh:TP4QqQ5rhat6avPdOp},i)=>{TP4QqQ5rhat6avPdOp!==null&&TP4QqQ5rhat6avPdOp!==void 0?TP4QqQ5rhat6avPdOp:TP4QqQ5rhat6avPdOp=\"\";L36MiWNC5at6avPdOp!==null&&L36MiWNC5at6avPdOp!==void 0?L36MiWNC5at6avPdOp:L36MiWNC5at6avPdOp=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`at6avPdOp-${idat6avPdOp}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5at6avPdOp},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j1oyf7\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fl0fyu\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"44.5px\",...toResponsiveImage(rs0QFx0Iwat6avPdOp),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-7wr70b\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-84q4fw\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhat6avPdOp,verticalAlignment:\"top\",withExternalLayout:true})]})})},idat6avPdOp);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v18669\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vt6LBqzHz\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"vt6LBqzHz\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"vt6LBqzHz\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"vt6LBqzHz\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"vt6LBqzHz\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vt6LBqzHz\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"e1PlSw2vf\"},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5.map(({id:idvt6LBqzHz,L36MiWNC5:L36MiWNC5vt6LBqzHz,rs0QFx0Iw:rs0QFx0Iwvt6LBqzHz,TP4QqQ5rh:TP4QqQ5rhvt6LBqzHz},i)=>{TP4QqQ5rhvt6LBqzHz!==null&&TP4QqQ5rhvt6LBqzHz!==void 0?TP4QqQ5rhvt6LBqzHz:TP4QqQ5rhvt6LBqzHz=\"\";L36MiWNC5vt6LBqzHz!==null&&L36MiWNC5vt6LBqzHz!==void 0?L36MiWNC5vt6LBqzHz:L36MiWNC5vt6LBqzHz=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vt6LBqzHz-${idvt6LBqzHz}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5vt6LBqzHz},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16m9z9f\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-e2ob2g\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"44.5px\",...toResponsiveImage(rs0QFx0Iwvt6LBqzHz),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-rgr8j3\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-1olyqvg\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhvt6LBqzHz,verticalAlignment:\"top\",withExternalLayout:true})]})})},idvt6LBqzHz);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bqt0j9\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"unjwdd6oj\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"unjwdd6oj\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"unjwdd6oj\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"unjwdd6oj\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"unjwdd6oj\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"unjwdd6oj\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"D5kbDF2N0\"},type:\"BinaryOperation\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6.map(({id:idunjwdd6oj,L36MiWNC5:L36MiWNC5unjwdd6oj,rs0QFx0Iw:rs0QFx0Iwunjwdd6oj,TP4QqQ5rh:TP4QqQ5rhunjwdd6oj},i)=>{TP4QqQ5rhunjwdd6oj!==null&&TP4QqQ5rhunjwdd6oj!==void 0?TP4QqQ5rhunjwdd6oj:TP4QqQ5rhunjwdd6oj=\"\";L36MiWNC5unjwdd6oj!==null&&L36MiWNC5unjwdd6oj!==void 0?L36MiWNC5unjwdd6oj:L36MiWNC5unjwdd6oj=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`unjwdd6oj-${idunjwdd6oj}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5unjwdd6oj},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16nhoyl\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fgncai\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"Infinitypx\",...toResponsiveImage(rs0QFx0Iwunjwdd6oj),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-106u8u6\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-is0qpg\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhunjwdd6oj,verticalAlignment:\"top\",withExternalLayout:true})]})})},idunjwdd6oj);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1etytj\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"jCfMEDRWO\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"jCfMEDRWO\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"jCfMEDRWO\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"jCfMEDRWO\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"jCfMEDRWO\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"jCfMEDRWO\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"D5kbDF2N0\"},type:\"BinaryOperation\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7.map(({id:idjCfMEDRWO,L36MiWNC5:L36MiWNC5jCfMEDRWO,rs0QFx0Iw:rs0QFx0IwjCfMEDRWO,TP4QqQ5rh:TP4QqQ5rhjCfMEDRWO},i)=>{TP4QqQ5rhjCfMEDRWO!==null&&TP4QqQ5rhjCfMEDRWO!==void 0?TP4QqQ5rhjCfMEDRWO:TP4QqQ5rhjCfMEDRWO=\"\";L36MiWNC5jCfMEDRWO!==null&&L36MiWNC5jCfMEDRWO!==void 0?L36MiWNC5jCfMEDRWO:L36MiWNC5jCfMEDRWO=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`jCfMEDRWO-${idjCfMEDRWO}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5jCfMEDRWO},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l0n8kt\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q63jf6\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"Infinitypx\",...toResponsiveImage(rs0QFx0IwjCfMEDRWO),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1v805rd\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-1yoxci4\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhjCfMEDRWO,verticalAlignment:\"top\",withExternalLayout:true})]})})},idjCfMEDRWO);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y3ap3t\",id:elementId3,ref:ref5,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"bTMTXyfOG\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"bTMTXyfOG\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"bTMTXyfOG\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"bTMTXyfOG\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"bTMTXyfOG\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"bTMTXyfOG\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"D5kbDF2N0\"},type:\"BinaryOperation\"}},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8.map(({id:idbTMTXyfOG,L36MiWNC5:L36MiWNC5bTMTXyfOG,rs0QFx0Iw:rs0QFx0IwbTMTXyfOG,TP4QqQ5rh:TP4QqQ5rhbTMTXyfOG},i)=>{TP4QqQ5rhbTMTXyfOG!==null&&TP4QqQ5rhbTMTXyfOG!==void 0?TP4QqQ5rhbTMTXyfOG:TP4QqQ5rhbTMTXyfOG=\"\";L36MiWNC5bTMTXyfOG!==null&&L36MiWNC5bTMTXyfOG!==void 0?L36MiWNC5bTMTXyfOG:L36MiWNC5bTMTXyfOG=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`bTMTXyfOG-${idbTMTXyfOG}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5bTMTXyfOG},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ck8vkb\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t3cp85\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"Infinitypx\",...toResponsiveImage(rs0QFx0IwbTMTXyfOG),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1ex4q9w\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-1kmpmpy\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhbTMTXyfOG,verticalAlignment:\"top\",withExternalLayout:true})]})})},idbTMTXyfOG);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f7bb1h\",id:elementId4,ref:ref6,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"YLz1HTLUD\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"YLz1HTLUD\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"YLz1HTLUD\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"YLz1HTLUD\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"YLz1HTLUD\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"YLz1HTLUD\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"D5kbDF2N0\"},type:\"BinaryOperation\"}},children:(collection9,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9.map(({id:idYLz1HTLUD,L36MiWNC5:L36MiWNC5YLz1HTLUD,rs0QFx0Iw:rs0QFx0IwYLz1HTLUD,TP4QqQ5rh:TP4QqQ5rhYLz1HTLUD},i)=>{TP4QqQ5rhYLz1HTLUD!==null&&TP4QqQ5rhYLz1HTLUD!==void 0?TP4QqQ5rhYLz1HTLUD:TP4QqQ5rhYLz1HTLUD=\"\";L36MiWNC5YLz1HTLUD!==null&&L36MiWNC5YLz1HTLUD!==void 0?L36MiWNC5YLz1HTLUD:L36MiWNC5YLz1HTLUD=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`YLz1HTLUD-${idYLz1HTLUD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5YLz1HTLUD},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yb2eb\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ci0cn\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"Infinitypx\",...toResponsiveImage(rs0QFx0IwYLz1HTLUD),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-19tkt8a\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-3xvfk\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhYLz1HTLUD,verticalAlignment:\"top\",withExternalLayout:true})]})})},idYLz1HTLUD);})})})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-npfzkp-container hidden-iyv91p hidden-eyb2ln\",\"data-framer-name\":\"Ticker-mobile\",name:\"Ticker-mobile\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{alignment:\"flex-start\"}},children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"IojAlmpuN\",layoutId:\"IojAlmpuN\",name:\"Ticker-mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-os7nrn\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Tygml2PQC\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"Tygml2PQC\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"Tygml2PQC\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"Tygml2PQC\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"Tygml2PQC\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Tygml2PQC\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"e1PlSw2vf\"},type:\"BinaryOperation\"}},children:(collection10,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection10.map(({id:idTygml2PQC,L36MiWNC5:L36MiWNC5Tygml2PQC,rs0QFx0Iw:rs0QFx0IwTygml2PQC,TP4QqQ5rh:TP4QqQ5rhTygml2PQC},i)=>{TP4QqQ5rhTygml2PQC!==null&&TP4QqQ5rhTygml2PQC!==void 0?TP4QqQ5rhTygml2PQC:TP4QqQ5rhTygml2PQC=\"\";L36MiWNC5Tygml2PQC!==null&&L36MiWNC5Tygml2PQC!==void 0?L36MiWNC5Tygml2PQC:L36MiWNC5Tygml2PQC=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Tygml2PQC-${idTygml2PQC}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5Tygml2PQC},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1at4whr\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-n4ls7m\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"Infinitypx\",...toResponsiveImage(rs0QFx0IwTygml2PQC),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1ojt5c1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-1nd38e0\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhTygml2PQC,verticalAlignment:\"top\",withExternalLayout:true})]})})},idTygml2PQC);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tecrsj\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"dGdJZ3WAH\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"dGdJZ3WAH\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"dGdJZ3WAH\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"dGdJZ3WAH\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"dGdJZ3WAH\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"dGdJZ3WAH\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"e1PlSw2vf\"},type:\"BinaryOperation\"}},children:(collection11,paginationInfo11,loadMore11)=>/*#__PURE__*/_jsx(_Fragment,{children:collection11.map(({id:iddGdJZ3WAH,L36MiWNC5:L36MiWNC5dGdJZ3WAH,rs0QFx0Iw:rs0QFx0IwdGdJZ3WAH,TP4QqQ5rh:TP4QqQ5rhdGdJZ3WAH},i)=>{TP4QqQ5rhdGdJZ3WAH!==null&&TP4QqQ5rhdGdJZ3WAH!==void 0?TP4QqQ5rhdGdJZ3WAH:TP4QqQ5rhdGdJZ3WAH=\"\";L36MiWNC5dGdJZ3WAH!==null&&L36MiWNC5dGdJZ3WAH!==void 0?L36MiWNC5dGdJZ3WAH:L36MiWNC5dGdJZ3WAH=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`dGdJZ3WAH-${iddGdJZ3WAH}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5dGdJZ3WAH},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iallqp\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-46pa6u\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"Infinitypx\",...toResponsiveImage(rs0QFx0IwdGdJZ3WAH),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1mvfnzn\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-m2pcxo\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhdGdJZ3WAH,verticalAlignment:\"top\",withExternalLayout:true})]})})},iddGdJZ3WAH);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-106sfoa\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"tEJwB3djY\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"tEJwB3djY\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"tEJwB3djY\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"tEJwB3djY\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"tEJwB3djY\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"tEJwB3djY\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"e1PlSw2vf\"},type:\"BinaryOperation\"}},children:(collection12,paginationInfo12,loadMore12)=>/*#__PURE__*/_jsx(_Fragment,{children:collection12.map(({id:idtEJwB3djY,L36MiWNC5:L36MiWNC5tEJwB3djY,rs0QFx0Iw:rs0QFx0IwtEJwB3djY,TP4QqQ5rh:TP4QqQ5rhtEJwB3djY},i)=>{TP4QqQ5rhtEJwB3djY!==null&&TP4QqQ5rhtEJwB3djY!==void 0?TP4QqQ5rhtEJwB3djY:TP4QqQ5rhtEJwB3djY=\"\";L36MiWNC5tEJwB3djY!==null&&L36MiWNC5tEJwB3djY!==void 0?L36MiWNC5tEJwB3djY:L36MiWNC5tEJwB3djY=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`tEJwB3djY-${idtEJwB3djY}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5tEJwB3djY},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3y429d\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12k61hi\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"80px\",...toResponsiveImage(rs0QFx0IwtEJwB3djY),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-i2wm1t\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-pioo1t\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhtEJwB3djY,verticalAlignment:\"top\",withExternalLayout:true})]})})},idtEJwB3djY);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2bx668\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Lkk0r_JFG\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"Lkk0r_JFG\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"Lkk0r_JFG\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"Lkk0r_JFG\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"Lkk0r_JFG\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Lkk0r_JFG\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"e1PlSw2vf\"},type:\"BinaryOperation\"}},children:(collection13,paginationInfo13,loadMore13)=>/*#__PURE__*/_jsx(_Fragment,{children:collection13.map(({id:idLkk0r_JFG,L36MiWNC5:L36MiWNC5Lkk0r_JFG,rs0QFx0Iw:rs0QFx0IwLkk0r_JFG,TP4QqQ5rh:TP4QqQ5rhLkk0r_JFG},i)=>{TP4QqQ5rhLkk0r_JFG!==null&&TP4QqQ5rhLkk0r_JFG!==void 0?TP4QqQ5rhLkk0r_JFG:TP4QqQ5rhLkk0r_JFG=\"\";L36MiWNC5Lkk0r_JFG!==null&&L36MiWNC5Lkk0r_JFG!==void 0?L36MiWNC5Lkk0r_JFG:L36MiWNC5Lkk0r_JFG=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Lkk0r_JFG-${idLkk0r_JFG}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5Lkk0r_JFG},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gx2ln\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u3zqef\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"Infinitypx\",...toResponsiveImage(rs0QFx0IwLkk0r_JFG),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1avixbo\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-1ammhgg\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhLkk0r_JFG,verticalAlignment:\"top\",withExternalLayout:true})]})})},idLkk0r_JFG);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-150po48\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Wfw62c38Q\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"Wfw62c38Q\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"Wfw62c38Q\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"Wfw62c38Q\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"Wfw62c38Q\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Wfw62c38Q\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"e1PlSw2vf\"},type:\"BinaryOperation\"}},children:(collection14,paginationInfo14,loadMore14)=>/*#__PURE__*/_jsx(_Fragment,{children:collection14.map(({id:idWfw62c38Q,L36MiWNC5:L36MiWNC5Wfw62c38Q,rs0QFx0Iw:rs0QFx0IwWfw62c38Q,TP4QqQ5rh:TP4QqQ5rhWfw62c38Q},i)=>{TP4QqQ5rhWfw62c38Q!==null&&TP4QqQ5rhWfw62c38Q!==void 0?TP4QqQ5rhWfw62c38Q:TP4QqQ5rhWfw62c38Q=\"\";L36MiWNC5Wfw62c38Q!==null&&L36MiWNC5Wfw62c38Q!==void 0?L36MiWNC5Wfw62c38Q:L36MiWNC5Wfw62c38Q=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Wfw62c38Q-${idWfw62c38Q}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5Wfw62c38Q},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w4sg3i\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e8yysh\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"Infinitypx\",...toResponsiveImage(rs0QFx0IwWfw62c38Q),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-14esgxe\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-8oghxq\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhWfw62c38Q,verticalAlignment:\"top\",withExternalLayout:true})]})})},idWfw62c38Q);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-os7nrn\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Tygml2PQC\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"Tygml2PQC\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"Tygml2PQC\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"Tygml2PQC\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"Tygml2PQC\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Tygml2PQC\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"e1PlSw2vf\"},type:\"BinaryOperation\"}},children:(collection10,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection10.map(({id:idTygml2PQC,L36MiWNC5:L36MiWNC5Tygml2PQC,rs0QFx0Iw:rs0QFx0IwTygml2PQC,TP4QqQ5rh:TP4QqQ5rhTygml2PQC},i)=>{TP4QqQ5rhTygml2PQC!==null&&TP4QqQ5rhTygml2PQC!==void 0?TP4QqQ5rhTygml2PQC:TP4QqQ5rhTygml2PQC=\"\";L36MiWNC5Tygml2PQC!==null&&L36MiWNC5Tygml2PQC!==void 0?L36MiWNC5Tygml2PQC:L36MiWNC5Tygml2PQC=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Tygml2PQC-${idTygml2PQC}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5Tygml2PQC},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1at4whr\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-n4ls7m\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"Infinitypx\",...toResponsiveImage(rs0QFx0IwTygml2PQC),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1ojt5c1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-1nd38e0\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhTygml2PQC,verticalAlignment:\"top\",withExternalLayout:true})]})})},idTygml2PQC);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13svjuq\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"yavVIz4nu\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"yavVIz4nu\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"yavVIz4nu\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"yavVIz4nu\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"yavVIz4nu\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"yavVIz4nu\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"e1PlSw2vf\"},type:\"BinaryOperation\"}},children:(collection15,paginationInfo15,loadMore15)=>/*#__PURE__*/_jsx(_Fragment,{children:collection15.map(({id:idyavVIz4nu,L36MiWNC5:L36MiWNC5yavVIz4nu,rs0QFx0Iw:rs0QFx0IwyavVIz4nu,TP4QqQ5rh:TP4QqQ5rhyavVIz4nu},i)=>{TP4QqQ5rhyavVIz4nu!==null&&TP4QqQ5rhyavVIz4nu!==void 0?TP4QqQ5rhyavVIz4nu:TP4QqQ5rhyavVIz4nu=\"\";L36MiWNC5yavVIz4nu!==null&&L36MiWNC5yavVIz4nu!==void 0?L36MiWNC5yavVIz4nu:L36MiWNC5yavVIz4nu=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`yavVIz4nu-${idyavVIz4nu}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5yavVIz4nu},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jp2ifv\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12x3dgf\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"Infinitypx\",...toResponsiveImage(rs0QFx0IwyavVIz4nu),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1b2af5p\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-1enjo5l\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhyavVIz4nu,verticalAlignment:\"top\",withExternalLayout:true})]})})},idyavVIz4nu);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d5p50e\",id:elementId5,ref:ref7,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"a_7myKfku\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"a_7myKfku\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"a_7myKfku\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"a_7myKfku\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"a_7myKfku\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"a_7myKfku\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"D5kbDF2N0\"},type:\"BinaryOperation\"}},children:(collection16,paginationInfo16,loadMore16)=>/*#__PURE__*/_jsx(_Fragment,{children:collection16.map(({id:ida_7myKfku,L36MiWNC5:L36MiWNC5a_7myKfku,rs0QFx0Iw:rs0QFx0Iwa_7myKfku,TP4QqQ5rh:TP4QqQ5rha_7myKfku},i)=>{TP4QqQ5rha_7myKfku!==null&&TP4QqQ5rha_7myKfku!==void 0?TP4QqQ5rha_7myKfku:TP4QqQ5rha_7myKfku=\"\";L36MiWNC5a_7myKfku!==null&&L36MiWNC5a_7myKfku!==void 0?L36MiWNC5a_7myKfku:L36MiWNC5a_7myKfku=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`a_7myKfku-${ida_7myKfku}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5a_7myKfku},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18k1fc3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cmnv3r\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"Infinitypx\",...toResponsiveImage(rs0QFx0Iwa_7myKfku),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-15phuxf\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-16kpjhb\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rha_7myKfku,verticalAlignment:\"top\",withExternalLayout:true})]})})},ida_7myKfku);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l0jy34\",id:elementId6,ref:ref8,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"MAu2pDsCs\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MAu2pDsCs\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"MAu2pDsCs\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"MAu2pDsCs\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"MAu2pDsCs\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"MAu2pDsCs\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"D5kbDF2N0\"},type:\"BinaryOperation\"}},children:(collection17,paginationInfo17,loadMore17)=>/*#__PURE__*/_jsx(_Fragment,{children:collection17.map(({id:idMAu2pDsCs,L36MiWNC5:L36MiWNC5MAu2pDsCs,rs0QFx0Iw:rs0QFx0IwMAu2pDsCs,TP4QqQ5rh:TP4QqQ5rhMAu2pDsCs},i)=>{TP4QqQ5rhMAu2pDsCs!==null&&TP4QqQ5rhMAu2pDsCs!==void 0?TP4QqQ5rhMAu2pDsCs:TP4QqQ5rhMAu2pDsCs=\"\";L36MiWNC5MAu2pDsCs!==null&&L36MiWNC5MAu2pDsCs!==void 0?L36MiWNC5MAu2pDsCs:L36MiWNC5MAu2pDsCs=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`MAu2pDsCs-${idMAu2pDsCs}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5MAu2pDsCs},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n8idqp\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-z3sv98\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"Infinitypx\",...toResponsiveImage(rs0QFx0IwMAu2pDsCs),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-i8dd8c\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-cs6vds\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhMAu2pDsCs,verticalAlignment:\"top\",withExternalLayout:true})]})})},idMAu2pDsCs);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qmjco4\",id:elementId7,ref:ref9,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"oaWCsneqj\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"oaWCsneqj\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"oaWCsneqj\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"oaWCsneqj\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"oaWCsneqj\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"oaWCsneqj\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"D5kbDF2N0\"},type:\"BinaryOperation\"}},children:(collection18,paginationInfo18,loadMore18)=>/*#__PURE__*/_jsx(_Fragment,{children:collection18.map(({id:idoaWCsneqj,L36MiWNC5:L36MiWNC5oaWCsneqj,rs0QFx0Iw:rs0QFx0IwoaWCsneqj,TP4QqQ5rh:TP4QqQ5rhoaWCsneqj},i)=>{TP4QqQ5rhoaWCsneqj!==null&&TP4QqQ5rhoaWCsneqj!==void 0?TP4QqQ5rhoaWCsneqj:TP4QqQ5rhoaWCsneqj=\"\";L36MiWNC5oaWCsneqj!==null&&L36MiWNC5oaWCsneqj!==void 0?L36MiWNC5oaWCsneqj:L36MiWNC5oaWCsneqj=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`oaWCsneqj-${idoaWCsneqj}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5oaWCsneqj},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bbqxft\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ag01zf\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"Infinitypx\",...toResponsiveImage(rs0QFx0IwoaWCsneqj),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-13vbabb\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-cu6cki\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhoaWCsneqj,verticalAlignment:\"top\",withExternalLayout:true})]})})},idoaWCsneqj);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zz1ohv\",id:elementId8,ref:ref10,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"CNvy4z4HC\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"CNvy4z4HC\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"CNvy4z4HC\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"CNvy4z4HC\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"CNvy4z4HC\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"CNvy4z4HC\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"D5kbDF2N0\"},type:\"BinaryOperation\"}},children:(collection19,paginationInfo19,loadMore19)=>/*#__PURE__*/_jsx(_Fragment,{children:collection19.map(({id:idCNvy4z4HC,L36MiWNC5:L36MiWNC5CNvy4z4HC,rs0QFx0Iw:rs0QFx0IwCNvy4z4HC,TP4QqQ5rh:TP4QqQ5rhCNvy4z4HC},i)=>{TP4QqQ5rhCNvy4z4HC!==null&&TP4QqQ5rhCNvy4z4HC!==void 0?TP4QqQ5rhCNvy4z4HC:TP4QqQ5rhCNvy4z4HC=\"\";L36MiWNC5CNvy4z4HC!==null&&L36MiWNC5CNvy4z4HC!==void 0?L36MiWNC5CNvy4z4HC:L36MiWNC5CNvy4z4HC=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`CNvy4z4HC-${idCNvy4z4HC}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5CNvy4z4HC},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jrop3c\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1am7oyp\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"Infinitypx\",...toResponsiveImage(rs0QFx0IwCNvy4z4HC),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-cyno0y\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-1dke9zb\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhCNvy4z4HC,verticalAlignment:\"top\",withExternalLayout:true})]})})},idCNvy4z4HC);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c4yqyy\",id:elementId9,ref:ref11,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"gucAowvnN\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"gucAowvnN\",name:\"rs0QFx0Iw\",type:\"Identifier\"},{collection:\"gucAowvnN\",name:\"TP4QqQ5rh\",type:\"Identifier\"},{collection:\"gucAowvnN\",name:\"L36MiWNC5\",type:\"Identifier\"},{collection:\"gucAowvnN\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"gucAowvnN\",name:\"ZpX87FBvb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"D5kbDF2N0\"},type:\"BinaryOperation\"}},children:(collection20,paginationInfo20,loadMore20)=>/*#__PURE__*/_jsx(_Fragment,{children:collection20.map(({id:idgucAowvnN,L36MiWNC5:L36MiWNC5gucAowvnN,rs0QFx0Iw:rs0QFx0IwgucAowvnN,TP4QqQ5rh:TP4QqQ5rhgucAowvnN},i)=>{TP4QqQ5rhgucAowvnN!==null&&TP4QqQ5rhgucAowvnN!==void 0?TP4QqQ5rhgucAowvnN:TP4QqQ5rhgucAowvnN=\"\";L36MiWNC5gucAowvnN!==null&&L36MiWNC5gucAowvnN!==void 0?L36MiWNC5gucAowvnN:L36MiWNC5gucAowvnN=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`gucAowvnN-${idgucAowvnN}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L36MiWNC5:L36MiWNC5gucAowvnN},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jky95w\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ug2rw1\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"Infinitypx\",...toResponsiveImage(rs0QFx0IwgucAowvnN),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-sr2z4b\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ex2xgj\",\"data-styles-preset\":\"nlUbK3_Yg\",children:\"Category Name\"})}),className:\"framer-1hz7et8\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:TP4QqQ5rhgucAowvnN,verticalAlignment:\"top\",withExternalLayout:true})]})})},idgucAowvnN);})})})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{y:4249.273933649289},nJMyL2i4C:{y:4218.8},xVXvXVo0a:{y:3621.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:341,width:\"100vw\",y:3751.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eexig5-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{variant:\"sU61AyGft\"},nJMyL2i4C:{variant:\"YybNAfS8v\"},xVXvXVo0a:{variant:\"oj1JUq3EG\"}},children:/*#__PURE__*/_jsx(TextKickerTextLarge,{BAq28qbGg:\"var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223))\",cHABn9XBG:\"30px\",height:\"100%\",IAvrFp3f2:\"Sustainability in Skanem\",id:\"uG3t8iHXK\",layoutId:\"uG3t8iHXK\",P5PuhBMxb:\"var(--token-d1ef26dd-057e-4bd1-a145-0c9ae571b79c, rgb(132, 166, 166))\",style:{width:\"100%\"},us9d84reH:true,variant:\"bzFleszZs\",width:\"100%\",Xk6z_DQUM:\"Results are important to us, but of equal importance is how we achieve those results. We have defined three main pillars to meet our sustainability ambitions.\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mbu7wd\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8qgfks\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":LX6Gr4B_P\",webPageId:\"Dj00Jxamt\"},implicitPathVariables:undefined},{href:{hash:\":tkoqlbNjs\",webPageId:\"Dj00Jxamt\"},implicitPathVariables:undefined},{href:{hash:\":HgYpb3XWS\",webPageId:\"Dj00Jxamt\"},implicitPathVariables:undefined},{href:{hash:\":LX6Gr4B_P\",webPageId:\"Dj00Jxamt\"},implicitPathVariables:undefined},{href:{hash:\":tkoqlbNjs\",webPageId:\"Dj00Jxamt\"},implicitPathVariables:undefined},{href:{hash:\":HgYpb3XWS\",webPageId:\"Dj00Jxamt\"},implicitPathVariables:undefined},{href:{hash:\":LX6Gr4B_P\",webPageId:\"Dj00Jxamt\"},implicitPathVariables:undefined},{href:{hash:\":tkoqlbNjs\",webPageId:\"Dj00Jxamt\"},implicitPathVariables:undefined},{href:{hash:\":HgYpb3XWS\",webPageId:\"Dj00Jxamt\"},implicitPathVariables:undefined},{href:{hash:\":LX6Gr4B_P\",webPageId:\"Dj00Jxamt\"},implicitPathVariables:undefined},{href:{hash:\":tkoqlbNjs\",webPageId:\"Dj00Jxamt\"},implicitPathVariables:undefined},{href:{hash:\":HgYpb3XWS\",webPageId:\"Dj00Jxamt\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{height:1e3,width:\"calc(min(100vw, 2100px) - 40px)\",y:4630.273933649289},nJMyL2i4C:{height:1e3,y:4599.8},xVXvXVo0a:{height:550,width:\"calc(min(100vw, 2100px) - 80px)\",y:4032.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:750,width:\"calc(min(100vw, 2100px) - 60px)\",y:4132.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b7d7bx-container\",id:elementId10,ref:ref12,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{BS1ZWfc6v:resolvedLinks2[9],sNxfY7son:resolvedLinks2[10],style:{width:\"100%\"},Us5hg9qcI:resolvedLinks2[11],variant:\"qn3g1MIPD\"},nJMyL2i4C:{BS1ZWfc6v:resolvedLinks2[3],sNxfY7son:resolvedLinks2[4],Us5hg9qcI:resolvedLinks2[5]},xVXvXVo0a:{BS1ZWfc6v:resolvedLinks2[6],sNxfY7son:resolvedLinks2[7],Us5hg9qcI:resolvedLinks2[8],variant:\"Vz5xkySol\"}},children:/*#__PURE__*/_jsx(Component1,{bEPxITljI:\"Waste is a global challenge.  We acknowledge that reducing our material impact requires tight integration with suppliers and customers to enable circularity through the end-to-end supply chain\",BS1ZWfc6v:resolvedLinks2[0],C9tNpQnVD:addImageAlt({src:\"https://framerusercontent.com/images/1jRKO8QOrBngRdCKPWzZsDtmVM.svg\"},\"Skanem Reduce material impact icon\"),height:\"100%\",i0h8w4r2M:\"When people grow, the business grows. This is not only a proven strategy, but also what we believe in. We also know that there are some pre-requisites such as human rights, decent living conditions, physical and psychological safety. \",id:\"IQ6WzKMf5\",jrM2xOS7j:\"According to the United Nations, climate change is the single biggest health threat facing humanity. \",Kg085PetU:addImageAlt({src:\"https://framerusercontent.com/images/Di319L9bHROcydc2Wc4kkmLNcc.jpg\",srcSet:\"https://framerusercontent.com/images/Di319L9bHROcydc2Wc4kkmLNcc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Di319L9bHROcydc2Wc4kkmLNcc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Di319L9bHROcydc2Wc4kkmLNcc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Di319L9bHROcydc2Wc4kkmLNcc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Di319L9bHROcydc2Wc4kkmLNcc.jpg 4272w\"},\"Landscape image with green forrest and stormy weather\"),layoutId:\"IQ6WzKMf5\",NWyQmeqUK:addImageAlt({src:\"https://framerusercontent.com/images/1cOcecbYgVT0cNyxTTAJDFZBSw.svg\"},\"Skanems Care for climate icon\"),QaOoFP0mK:addImageAlt({src:\"https://framerusercontent.com/images/IVnJJwTLfbqENGBCswnw0P054E.svg\"},\"Skanems Care for People icon\"),rk1xwkEKJ:\"We continuously strive to improve our operations and reduce emissions at scale. \u200BWe take full responsibility for our climate footprint.\",rzOlRdxex:\"Reduce material impact\",s1ahL9EZF:\"rgb(9, 51, 51)\",sNxfY7son:resolvedLinks2[1],style:{height:\"100%\",width:\"100%\"},Us5hg9qcI:resolvedLinks2[2],variant:\"yFwtZ1W4U\",vv0QZStDS:\"Care for people\",width:\"100%\",wuQFLSK3_:\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\",wvoQnAHdb:\"We are a driver of circularity throughout the lifecycle of our products.\u200B\",x3O7tuuDX:\"Care for climate\",yUFjRyFtd:addImageAlt({src:\"https://framerusercontent.com/images/5sSYRyLlG97XHLlmBVUOZVsznO4.jpg\",srcSet:\"https://framerusercontent.com/images/5sSYRyLlG97XHLlmBVUOZVsznO4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5sSYRyLlG97XHLlmBVUOZVsznO4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5sSYRyLlG97XHLlmBVUOZVsznO4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5sSYRyLlG97XHLlmBVUOZVsznO4.jpg 4032w\"},\"Group of people creating hearts with their hands overlooking a field\"),zzzNdGvQn:\"We are known as a company that cares for people.\"})})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{y:5660.273933649289},nJMyL2i4C:{y:5629.8},xVXvXVo0a:{y:4612.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:341,width:\"100vw\",y:4912.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l1rbwz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{variant:\"sU61AyGft\"},nJMyL2i4C:{variant:\"YybNAfS8v\"},xVXvXVo0a:{variant:\"oj1JUq3EG\"}},children:/*#__PURE__*/_jsx(TextKickerTextLarge,{BAq28qbGg:\"var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223))\",cHABn9XBG:\"30px\",height:\"100%\",IAvrFp3f2:\"Working with sustainability in packaging\",id:\"K0ofB83Zc\",layoutId:\"K0ofB83Zc\",P5PuhBMxb:\"var(--token-d1ef26dd-057e-4bd1-a145-0c9ae571b79c, rgb(132, 166, 166))\",style:{width:\"100%\"},us9d84reH:true,variant:\"bzFleszZs\",width:\"100%\",Xk6z_DQUM:\"Companies are increasingly adopting sustainable packaging solutions, catering to the demand for recyclable, biodegradable, or renewable materials.  \"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qr4ep1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-87ju70\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14vq9nl\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1heb2ar\",\"data-framer-name\":\"Cards-Duo\",name:\"Cards-Duo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ej2ns\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hxe3y9\",\"data-framer-name\":\"Cost and frustration container\",name:\"Cost and frustration container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qxd2wz\",\"data-framer-name\":\"Cost saved\",name:\"Cost saved\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ltc3j\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kkaii8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIE1lZGl1bQ==\",\"--framer-font-family\":'\"Sarvatrik Devanagari Medium\", \"Sarvatrik Devanagari Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\"},children:\"Environment\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIE1lZGl1bQ==\",\"--framer-font-family\":'\"Sarvatrik Devanagari Medium\", \"Sarvatrik Devanagari Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\"},children:\"Environment\"})}),className:\"framer-8v8kpl\",fonts:[\"CUSTOM;Sarvatrik Devanagari Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Sarvatrik Devanagari Regular\", \"Sarvatrik Devanagari Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-d1ef26dd-057e-4bd1-a145-0c9ae571b79c, rgb(132, 166, 166))\"},children:\"Skanem's ECOVADIS Score\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Sarvatrik Devanagari Regular\", \"Sarvatrik Devanagari Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--token-d1ef26dd-057e-4bd1-a145-0c9ae571b79c, rgb(132, 166, 166))\"},children:\"Skanem's ECOVADIS Score\"})}),className:\"framer-1sdkm03\",fonts:[\"CUSTOM;Sarvatrik Devanagari Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{y:6061.273933649289},nJMyL2i4C:{y:6060.8},xVXvXVo0a:{y:5013.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"130px\",y:5313.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vulfwp-container\",children:/*#__PURE__*/_jsx(PercentageWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Bd8SD_6RF\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"sDM4UkJ1f\",height:\"100%\",id:\"JKBhUhQdq\",layoutId:\"JKBhUhQdq\",style:{height:\"100%\",width:\"100%\"},variant:\"Bd8SD_6RF\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{width:\"min(min(100vw, 2100px) - 40px, 1500px)\",y:6190.273933649289},nJMyL2i4C:{y:6189.8},xVXvXVo0a:{width:\"min(min(100vw, 2100px) - 80px, 1500px)\",y:5142.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"min(max((min(100vw, 2100px) - 180px) / 2, 1px), 1500px)\",y:5442.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-prv3h0-container\",children:/*#__PURE__*/_jsx(SliderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"CF8B6NQgu\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"FjzwCl8FM\",height:\"100%\",id:\"CMmoU9PuI\",layoutId:\"CMmoU9PuI\",style:{width:\"100%\"},variant:\"CF8B6NQgu\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-153z7ei\",\"data-framer-name\":\"Cost saved\",name:\"Cost saved\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-120ktq0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-menzim\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIE1lZGl1bQ==\",\"--framer-font-family\":'\"Sarvatrik Devanagari Medium\", \"Sarvatrik Devanagari Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\"},children:\"Labour & Human Rights\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIE1lZGl1bQ==\",\"--framer-font-family\":'\"Sarvatrik Devanagari Medium\", \"Sarvatrik Devanagari Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\"},children:\"Labour & Human Rights\"})}),className:\"framer-hqoq46\",fonts:[\"CUSTOM;Sarvatrik Devanagari Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Sarvatrik Devanagari Regular\", \"Sarvatrik Devanagari Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-d1ef26dd-057e-4bd1-a145-0c9ae571b79c, rgb(132, 166, 166))\"},children:\"Skanem's ECOVADIS Score\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Sarvatrik Devanagari Regular\", \"Sarvatrik Devanagari Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--token-d1ef26dd-057e-4bd1-a145-0c9ae571b79c, rgb(132, 166, 166))\"},children:\"Skanem's ECOVADIS Score\"})}),className:\"framer-1e3jxe8\",fonts:[\"CUSTOM;Sarvatrik Devanagari Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{y:6260.273933649289},nJMyL2i4C:{y:6060.8},xVXvXVo0a:{y:5212.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"130px\",y:5313.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uu3hcj-container\",children:/*#__PURE__*/_jsx(PercentageWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Bd8SD_6RF\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"sDM4UkJ1f\",height:\"100%\",id:\"gWnsvqLDI\",layoutId:\"gWnsvqLDI\",style:{height:\"100%\",width:\"100%\"},variant:\"Bd8SD_6RF\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{width:\"min(min(100vw, 2100px) - 40px, 1500px)\",y:6389.273933649289},nJMyL2i4C:{y:6189.8},xVXvXVo0a:{width:\"min(min(100vw, 2100px) - 80px, 1500px)\",y:5341.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"min(max((min(100vw, 2100px) - 180px) / 2, 1px), 1500px)\",y:5442.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19ukh8g-container\",children:/*#__PURE__*/_jsx(SliderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"ias20a6SU\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"d93QAwKEb\",height:\"100%\",id:\"kL4oJG3vT\",layoutId:\"kL4oJG3vT\",style:{width:\"100%\"},variant:\"ias20a6SU\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uqy1pn\",\"data-framer-name\":\"Cost and frustration container\",name:\"Cost and frustration container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18id4fl\",\"data-framer-name\":\"Cost saved\",name:\"Cost saved\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qcm6rv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1frydkg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIE1lZGl1bQ==\",\"--framer-font-family\":'\"Sarvatrik Devanagari Medium\", \"Sarvatrik Devanagari Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\"},children:\"Ethics\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIE1lZGl1bQ==\",\"--framer-font-family\":'\"Sarvatrik Devanagari Medium\", \"Sarvatrik Devanagari Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\"},children:\"Ethics\"})}),className:\"framer-quye9z\",fonts:[\"CUSTOM;Sarvatrik Devanagari Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Sarvatrik Devanagari Regular\", \"Sarvatrik Devanagari Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-d1ef26dd-057e-4bd1-a145-0c9ae571b79c, rgb(132, 166, 166))\"},children:\"Skanem's ECOVADIS Score\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Sarvatrik Devanagari Regular\", \"Sarvatrik Devanagari Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--token-d1ef26dd-057e-4bd1-a145-0c9ae571b79c, rgb(132, 166, 166))\"},children:\"Skanem's ECOVADIS Score\"})}),className:\"framer-8e5i1m\",fonts:[\"CUSTOM;Sarvatrik Devanagari Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{y:6459.273933649289},nJMyL2i4C:{y:6219.8},xVXvXVo0a:{y:5371.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"130px\",y:5472.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mibxng-container\",children:/*#__PURE__*/_jsx(PercentageWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Bd8SD_6RF\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"bCFPhWM8I\",height:\"100%\",id:\"ix6y18anN\",layoutId:\"ix6y18anN\",style:{height:\"100%\",width:\"100%\"},variant:\"Bd8SD_6RF\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{width:\"min(min(100vw, 2100px) - 40px, 1500px)\",y:6588.273933649289},nJMyL2i4C:{y:6348.8},xVXvXVo0a:{width:\"min(min(100vw, 2100px) - 80px, 1500px)\",y:5500.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"min(max((min(100vw, 2100px) - 180px) / 2, 1px), 1500px)\",y:5601.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ar5ogs-container\",children:/*#__PURE__*/_jsx(SliderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"BVbxZWKNF\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"Q2gQIXV3Z\",height:\"100%\",id:\"cjk9jgIHf\",layoutId:\"cjk9jgIHf\",style:{width:\"100%\"},variant:\"CF8B6NQgu\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x3m4uh\",\"data-framer-name\":\"Cost saved\",name:\"Cost saved\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1grprcm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w3ehoc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIE1lZGl1bQ==\",\"--framer-font-family\":'\"Sarvatrik Devanagari Medium\", \"Sarvatrik Devanagari Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\"},children:\"Sustainable Procurement\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIE1lZGl1bQ==\",\"--framer-font-family\":'\"Sarvatrik Devanagari Medium\", \"Sarvatrik Devanagari Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-212ee4a0-dd74-44bb-93db-02dcb86c0e21, rgb(225, 235, 174))\"},children:\"Sustainable Procurement\"})}),className:\"framer-g9y44i\",fonts:[\"CUSTOM;Sarvatrik Devanagari Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Sarvatrik Devanagari Regular\", \"Sarvatrik Devanagari Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-d1ef26dd-057e-4bd1-a145-0c9ae571b79c, rgb(132, 166, 166))\"},children:\"Skanem's ECOVADIS Score\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhcnZhdHJpayBEZXZhbmFnYXJpIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Sarvatrik Devanagari Regular\", \"Sarvatrik Devanagari Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--token-d1ef26dd-057e-4bd1-a145-0c9ae571b79c, rgb(132, 166, 166))\"},children:\"Skanem's ECOVADIS Score\"})}),className:\"framer-2610dl\",fonts:[\"CUSTOM;Sarvatrik Devanagari Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{y:6658.273933649289},nJMyL2i4C:{y:6219.8},xVXvXVo0a:{y:5570.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"130px\",y:5472.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h1bu9k-container\",children:/*#__PURE__*/_jsx(PercentageWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Bd8SD_6RF\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"sDM4UkJ1f\",height:\"100%\",id:\"c04pFPIZn\",layoutId:\"c04pFPIZn\",style:{height:\"100%\",width:\"100%\"},variant:\"Bd8SD_6RF\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{width:\"min(min(100vw, 2100px) - 40px, 1500px)\",y:6787.273933649289},nJMyL2i4C:{y:6348.8},xVXvXVo0a:{width:\"min(min(100vw, 2100px) - 80px, 1500px)\",y:5699.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"min(max((min(100vw, 2100px) - 180px) / 2, 1px), 1500px)\",y:5601.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1epujmi-container\",children:/*#__PURE__*/_jsx(SliderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"ias20a6SU\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"d93QAwKEb\",height:\"100%\",id:\"N48wOAbn7\",layoutId:\"N48wOAbn7\",style:{width:\"100%\"},variant:\"BVbxZWKNF\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gygb6s\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{width:\"calc(min(100vw, 2100px) - 40px)\",y:6917.273933649289},nJMyL2i4C:{width:\"max((min(100vw, 2100px) - 180px) / 2, 1px)\",y:6443.8},xVXvXVo0a:{width:\"calc(min(100vw, 2100px) - 80px)\",y:5794.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:206,width:\"calc(min(100vw, 2100px) - 60px)\",y:5691.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yevnac-container\",children:/*#__PURE__*/_jsx(TitleSubheadingAndBodyText,{CHy_akynG:\"rcdIrcmXs\",dUpWoup3h:\"var(--token-2c6b3561-0c9f-4523-9d86-0be6e76fc3b6, rgb(14, 78, 78))\",height:\"100%\",id:\"xA83_s_89\",JL9Z56yCW:\"var(--token-f775d073-7a62-4c81-9606-a9f7ff05f17b, rgb(81, 41, 54))\",kUFs_sXCb:\"The adoption of more sustainable practices enables a more positive contribution to sustainability, but also appeals to environmentally conscious consumers while strengthening the responsible and forward-thinking approach of our customers. \",layoutId:\"xA83_s_89\",M9Lq7vpoM:\"rgb(0, 0, 0)\",qcRbYF6Cf:\"V1v9smTa0\",rBh6Frjsq:\"\",RxUs_ptq_:\"\",style:{width:\"100%\"},TqGVpW0Ga:\"var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223))\",width:\"100%\",WIvQ5zsrd:\"\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{width:\"calc(min(100vw, 2100px) - 40px)\",y:7163.273933649289},nJMyL2i4C:{width:\"max((min(100vw, 2100px) - 180px) / 2, 1px)\",y:6443.8},xVXvXVo0a:{width:\"calc(min(100vw, 2100px) - 80px)\",y:6040.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:206,width:\"calc(min(100vw, 2100px) - 60px)\",y:5927.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m40iyg-container\",children:/*#__PURE__*/_jsx(TitleSubheadingAndBodyText,{CHy_akynG:\"rcdIrcmXs\",dUpWoup3h:\"var(--token-2c6b3561-0c9f-4523-9d86-0be6e76fc3b6, rgb(14, 78, 78))\",height:\"100%\",id:\"aybiMZNN7\",JL9Z56yCW:\"var(--token-f775d073-7a62-4c81-9606-a9f7ff05f17b, rgb(81, 41, 54))\",kUFs_sXCb:\"While sustainable packaging and products present certain challenges, such as cost and availability, technological advancements and heightened awareness are making sustainable options more feasible for businesses, aligning brand values with consumer expectations in an environmentally-conscious marketplace.\\xa0\",layoutId:\"aybiMZNN7\",M9Lq7vpoM:\"rgb(0, 0, 0)\",qcRbYF6Cf:\"V1v9smTa0\",rBh6Frjsq:\"\",RxUs_ptq_:\"\",style:{width:\"100%\"},TqGVpW0Ga:\"var(--token-966f696b-7071-48d5-aa75-1fe6d0631704, rgb(255, 242, 223))\",width:\"100%\",WIvQ5zsrd:\"\"})})})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gf61ck\",\"data-framer-name\":\"Image-section\",name:\"Image-section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-172ko45\",\"data-framer-name\":\"Main-image-container\",name:\"Main-image-container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19q1qqc\",\"data-framer-name\":\"CMS-Container-1\",name:\"CMS-Container-1\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uo9rbr hidden-1vcx43q\",\"data-framer-name\":\"Background-color\",name:\"Background-color\"}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-9hvkcu hidden-1vcx43q\",\"data-framer-name\":\"placeholder-image\",name:\"placeholder-image\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lcvyte\",\"data-framer-name\":\"Skanem_Symbol_White\",layout:\"position\",name:\"Skanem_Symbol_White\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 91 134\"><path d=\"M 28.916 85.734 C 28.916 80.824 32.897 76.843 37.807 76.843 C 42.717 76.843 46.698 80.824 46.698 85.734 C 46.698 90.644 42.717 94.624 37.807 94.624 C 32.897 94.624 28.916 90.644 28.916 85.734 Z\" fill=\"rgba(133, 166, 166, 0.39)\"></path><path d=\"M 35.795 133.986 C 22.591 133.986 9.447 128.574 0 117.959 L 12.759 106.606 C 24.049 119.292 43.556 120.429 56.244 109.14 C 68.931 97.851 70.068 78.346 58.777 65.659 L 47.658 53.387 L 60.315 41.921 L 71.485 54.25 C 80.039 63.86 84.311 76.152 83.567 88.918 C 82.823 101.684 77.152 113.397 67.597 121.898 C 58.49 130.001 47.12 133.986 35.795 133.986 Z\" fill=\"rgba(133, 166, 166, 0.39)\"></path><path d=\"M 19.463 79.704 C 1.913 59.983 3.68 29.661 23.403 12.113 C 32.956 3.611 45.245 -0.664 58.017 0.084 C 70.784 0.828 82.498 6.499 91 16.052 L 78.241 27.404 C 72.772 21.259 65.237 17.611 57.024 17.133 C 48.809 16.645 40.903 19.402 34.757 24.871 C 28.611 30.339 24.962 37.873 24.484 46.086 C 24.005 54.298 26.753 62.206 32.223 68.351 Z\" fill=\"rgba(133, 166, 166, 0.39)\"></path></svg>',svgContentId:8885364016,withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:6014,pixelWidth:9021,positionX:\"center\",positionY:\"center\"},className:\"framer-es8vdc\",\"data-framer-name\":\"CMS Products\",name:\"CMS Products\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"TcAi692Id\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"TcAi692Id\",name:\"vhLy0TtfC\",type:\"Identifier\"},{collection:\"TcAi692Id\",name:\"id\",type:\"Identifier\"}]},children:(collection21,paginationInfo21,loadMore21)=>/*#__PURE__*/_jsx(_Fragment,{children:collection21.map(({id:idTcAi692Id,vhLy0TtfC:vhLy0TtfCTcAi692Id},i)=>{vhLy0TtfCTcAi692Id!==null&&vhLy0TtfCTcAi692Id!==void 0?vhLy0TtfCTcAi692Id:vhLy0TtfCTcAi692Id=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`TcAi692Id-${idTcAi692Id}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{vhLy0TtfC:vhLy0TtfCTcAi692Id},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v8j0qt-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,controls:false,height:\"100%\",id:\"JxUyy8Ueq\",isMixedBorderRadius:false,layoutId:\"JxUyy8Ueq\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/atUqKmb5G1nNBeqMbGtdjliCGs.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:15,topRightRadius:15,volume:25,width:\"100%\"})})})})},idTcAi692Id);})})})})})]})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:113,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation3},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wlwi8t-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{variant:\"kTQ07GYeR\"},xVXvXVo0a:{variant:\"bNLLb279s\"}},children:/*#__PURE__*/_jsx(NavWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"dTERx1cSd\",layoutId:\"dTERx1cSd\",style:{width:\"100%\"},variant:\"hOHuA0eE9\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{y:7919.273933649289},nJMyL2i4C:{y:7129.8},xVXvXVo0a:{y:6706.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:656,width:\"100vw\",y:6753.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kaey52-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HH2D6a4mp:{variant:\"iimnlyU28\"},nJMyL2i4C:{variant:\"t__ujNuh1\"},xVXvXVo0a:{variant:\"EAxSx6Qjs\"}},children:/*#__PURE__*/_jsx(Skanem_footer,{height:\"100%\",id:\"m2hn3_Je7\",layoutId:\"m2hn3_Je7\",style:{width:\"100%\"},variant:\"T5r6Pl3Ad\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-s0Ilc { background: var(--token-2c6b3561-0c9f-4523-9d86-0be6e76fc3b6, rgb(14, 78, 78)) /* {\"name\":\"Skanem Genuine Green\"} */; }`,\".framer-s0Ilc.framer-yxlud3, .framer-s0Ilc .framer-yxlud3 { display: block; }\",\".framer-s0Ilc.framer-iyv91p { align-content: center; align-items: center; background-color: var(--token-2c6b3561-0c9f-4523-9d86-0be6e76fc3b6, #0e4e4e); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-s0Ilc .framer-19v23kw-container { flex: none; height: 100vh; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-1f1zuuw-container, .framer-s0Ilc .framer-lu8qmx-container, .framer-s0Ilc .framer-bei7g6-container, .framer-s0Ilc .framer-1uvcn0w-container, .framer-s0Ilc .framer-1eexig5-container, .framer-s0Ilc .framer-1l1rbwz-container, .framer-s0Ilc .framer-prv3h0-container, .framer-s0Ilc .framer-19ukh8g-container, .framer-s0Ilc .framer-ar5ogs-container, .framer-s0Ilc .framer-1epujmi-container, .framer-s0Ilc .framer-1yevnac-container, .framer-s0Ilc .framer-1m40iyg-container, .framer-s0Ilc .framer-1kaey52-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-37dcxm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 119px; height: min-content; justify-content: flex-start; max-width: 2100px; overflow: hidden; padding: 0px 30px 70px 30px; position: relative; width: 100%; z-index: 0; }\",\".framer-s0Ilc .framer-8gpyw9, .framer-s0Ilc .framer-14vq9nl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-xoux63-container { flex: none; height: 61px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-1duqldn { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 146px; }\",\".framer-s0Ilc .framer-qr8wwo, .framer-s0Ilc .framer-14jfrw, .framer-s0Ilc .framer-vt3yuh, .framer-s0Ilc .framer-5ml5rq, .framer-s0Ilc .framer-1ecr1ua, .framer-s0Ilc .framer-1wud25p, .framer-s0Ilc .framer-15tq9wj, .framer-s0Ilc .framer-o86zp8 { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-s0Ilc .framer-159i0iw { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 57px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 108px; }\",\".framer-s0Ilc .framer-82kkjp { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 54px; justify-content: center; padding: 0px; position: relative; width: 85px; }\",\".framer-s0Ilc .framer-sk68qb { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 63px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 119px; }\",\".framer-s0Ilc .framer-5xfn3r { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 45px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 120px; }\",\".framer-s0Ilc .framer-1hrgv1j { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 51px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 154px; }\",\".framer-s0Ilc .framer-1ysqxrd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 105px; }\",\".framer-s0Ilc .framer-gflwbu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 61px; justify-content: center; padding: 0px; position: relative; width: 96px; }\",\".framer-s0Ilc .framer-kqnhcd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 51px; justify-content: center; padding: 0px; position: relative; width: 81px; }\",\".framer-s0Ilc .framer-133n3hk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 138px; }\",\".framer-s0Ilc .framer-j8uzf4 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 57px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 224px; }\",\".framer-s0Ilc .framer-c9j5cp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 2100px; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-13bdpgo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 31px; height: 300px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-1utv0so, .framer-s0Ilc .framer-be37rl, .framer-s0Ilc .framer-p3nwyd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: center; min-height: 300px; overflow: hidden; padding: 0px 20px 20px 20px; position: relative; width: 1px; }\",\".framer-s0Ilc .framer-mi7xjg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-7xn1dq, .framer-s0Ilc .framer-1gjxf2r, .framer-s0Ilc .framer-i6npqb { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-s0Ilc .framer-1j9zfh0-container, .framer-s0Ilc .framer-1iyd31s-container, .framer-s0Ilc .framer-11gutk5-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-s0Ilc .framer-n1soo4, .framer-s0Ilc .framer-hnua0p { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-10o1ec6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2100px; overflow: hidden; padding: 20px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-1kcobvq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-woguui, .framer-s0Ilc .framer-q50wgl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-s0Ilc .framer-1w7bkv3-container { flex: none; height: 300px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-1bj4njq, .framer-s0Ilc .framer-1jy26mv, .framer-s0Ilc .framer-1xcy2xl, .framer-s0Ilc .framer-v4ey4, .framer-s0Ilc .framer-16ft8ic, .framer-s0Ilc .framer-1v18669 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 290px; }\",\".framer-s0Ilc .framer-axqfx3, .framer-s0Ilc .framer-46tg2v, .framer-s0Ilc .framer-1ti11o4, .framer-s0Ilc .framer-1cqlffn, .framer-s0Ilc .framer-j1oyf7, .framer-s0Ilc .framer-16m9z9f, .framer-s0Ilc .framer-16nhoyl, .framer-s0Ilc .framer-l0n8kt, .framer-s0Ilc .framer-ck8vkb, .framer-s0Ilc .framer-yb2eb, .framer-s0Ilc .framer-1at4whr, .framer-s0Ilc .framer-1iallqp, .framer-s0Ilc .framer-3y429d, .framer-s0Ilc .framer-gx2ln, .framer-s0Ilc .framer-w4sg3i, .framer-s0Ilc .framer-jp2ifv, .framer-s0Ilc .framer-18k1fc3, .framer-s0Ilc .framer-n8idqp, .framer-s0Ilc .framer-bbqxft, .framer-s0Ilc .framer-1jrop3c, .framer-s0Ilc .framer-jky95w { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-s0Ilc .framer-12j2wo0 { align-content: center; align-items: center; aspect-ratio: 1.115625 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 260px); justify-content: center; overflow: hidden; padding: 90px; position: relative; width: 290px; }\",\".framer-s0Ilc .framer-vkjmdu, .framer-s0Ilc .framer-i2wm1t { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-s0Ilc .framer-15vcgt2, .framer-s0Ilc .framer-pioo1t { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 145px; word-break: break-word; word-wrap: break-word; }\",\".framer-s0Ilc .framer-1s166tf, .framer-s0Ilc .framer-oty4sq, .framer-s0Ilc .framer-e2ob2g { align-content: center; align-items: center; aspect-ratio: 1.1125 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 180px); justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-2rx9sb, .framer-s0Ilc .framer-1xoxno5, .framer-s0Ilc .framer-rgr8j3 { align-content: center; align-items: center; aspect-ratio: 1.1125 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 223px); }\",\".framer-s0Ilc .framer-fqgzlz, .framer-s0Ilc .framer-1nd38e0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 225px; word-break: break-word; word-wrap: break-word; }\",\".framer-s0Ilc .framer-1mop38l, .framer-s0Ilc .framer-1fl0fyu { align-content: center; align-items: center; aspect-ratio: 1.1125 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 261px); justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-yhg0d8, .framer-s0Ilc .framer-7wr70b { align-content: center; align-items: center; aspect-ratio: 1.1125 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 156px); }\",\".framer-s0Ilc .framer-rldgxm, .framer-s0Ilc .framer-1ammhgg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 200px; word-break: break-word; word-wrap: break-word; }\",\".framer-s0Ilc .framer-r7yxuy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 234px; word-break: break-word; word-wrap: break-word; }\",\".framer-s0Ilc .framer-84q4fw, .framer-s0Ilc .framer-1olyqvg, .framer-s0Ilc .framer-3xvfk, .framer-s0Ilc .framer-m2pcxo, .framer-s0Ilc .framer-8oghxq, .framer-s0Ilc .framer-1enjo5l, .framer-s0Ilc .framer-cs6vds, .framer-s0Ilc .framer-1dke9zb, .framer-s0Ilc .framer-1hz7et8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-s0Ilc .framer-1bqt0j9, .framer-s0Ilc .framer-1etytj, .framer-s0Ilc .framer-y3ap3t, .framer-s0Ilc .framer-1f7bb1h { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 290px; }\",\".framer-s0Ilc .framer-1fgncai, .framer-s0Ilc .framer-1t3cp85 { align-content: center; align-items: center; aspect-ratio: 1.1153846153846154 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 179px); justify-content: center; overflow: hidden; padding: 65px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-106u8u6, .framer-s0Ilc .framer-1v805rd, .framer-s0Ilc .framer-1ex4q9w, .framer-s0Ilc .framer-19tkt8a, .framer-s0Ilc .framer-15phuxf, .framer-s0Ilc .framer-i8dd8c, .framer-s0Ilc .framer-13vbabb, .framer-s0Ilc .framer-cyno0y, .framer-s0Ilc .framer-sr2z4b { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-s0Ilc .framer-is0qpg, .framer-s0Ilc .framer-1yoxci4, .framer-s0Ilc .framer-1kmpmpy, .framer-s0Ilc .framer-16kpjhb, .framer-s0Ilc .framer-cu6cki { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 148px; word-break: break-word; word-wrap: break-word; }\",\".framer-s0Ilc .framer-1q63jf6, .framer-s0Ilc .framer-10ci0cn { align-content: center; align-items: center; aspect-ratio: 1.1153846153846154 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 260px); justify-content: center; overflow: hidden; padding: 65px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-npfzkp-container { flex: none; height: 350px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-os7nrn, .framer-s0Ilc .framer-1tecrsj, .framer-s0Ilc .framer-106sfoa, .framer-s0Ilc .framer-2bx668, .framer-s0Ilc .framer-150po48, .framer-s0Ilc .framer-13svjuq { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 200px; }\",\".framer-s0Ilc .framer-n4ls7m, .framer-s0Ilc .framer-46pa6u, .framer-s0Ilc .framer-1u3zqef { align-content: center; align-items: center; aspect-ratio: 1.1125 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 180px); justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-1ojt5c1 { align-content: center; align-items: center; aspect-ratio: 1.1125 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 108px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-s0Ilc .framer-1mvfnzn, .framer-s0Ilc .framer-1avixbo, .framer-s0Ilc .framer-14esgxe, .framer-s0Ilc .framer-1b2af5p { align-content: center; align-items: center; aspect-ratio: 1.1125 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 180px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-s0Ilc .framer-12k61hi { align-content: center; align-items: center; aspect-ratio: 1.115625 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 179px); justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 200px; }\",\".framer-s0Ilc .framer-1e8yysh { align-content: center; align-items: center; aspect-ratio: 1.1125 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 180px); justify-content: center; overflow: hidden; padding: 45px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-12x3dgf { align-content: center; align-items: center; aspect-ratio: 1.1125 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 180px); justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-d5p50e, .framer-s0Ilc .framer-1l0jy34, .framer-s0Ilc .framer-1qmjco4, .framer-s0Ilc .framer-zz1ohv, .framer-s0Ilc .framer-1c4yqyy { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 200px; }\",\".framer-s0Ilc .framer-1cmnv3r { align-content: center; align-items: center; aspect-ratio: 1.1153846153846154 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 180px); justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-z3sv98, .framer-s0Ilc .framer-ag01zf, .framer-s0Ilc .framer-1am7oyp, .framer-s0Ilc .framer-1ug2rw1 { align-content: center; align-items: center; aspect-ratio: 1.1153846153846154 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 179px); justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-mbu7wd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 2100px; overflow: hidden; padding: 40px 30px 30px 30px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-8qgfks { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-s0Ilc .framer-b7d7bx-container { flex: none; height: 750px; min-height: 750px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-1qr4ep1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 2100px; overflow: hidden; padding: 60px 30px 80px 30px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-87ju70 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 99px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-1heb2ar { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-12ej2ns { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-1hxe3y9, .framer-s0Ilc .framer-1uqy1pn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-qxd2wz, .framer-s0Ilc .framer-153z7ei, .framer-s0Ilc .framer-18id4fl, .framer-s0Ilc .framer-x3m4uh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: center; max-width: 1500px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-s0Ilc .framer-3ltc3j, .framer-s0Ilc .framer-120ktq0, .framer-s0Ilc .framer-1qcm6rv, .framer-s0Ilc .framer-1grprcm { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-kkaii8, .framer-s0Ilc .framer-menzim, .framer-s0Ilc .framer-1frydkg, .framer-s0Ilc .framer-w3ehoc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 327px; }\",\".framer-s0Ilc .framer-8v8kpl, .framer-s0Ilc .framer-1sdkm03, .framer-s0Ilc .framer-hqoq46, .framer-s0Ilc .framer-1e3jxe8, .framer-s0Ilc .framer-quye9z, .framer-s0Ilc .framer-8e5i1m, .framer-s0Ilc .framer-g9y44i, .framer-s0Ilc .framer-2610dl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-s0Ilc .framer-1vulfwp-container, .framer-s0Ilc .framer-1uu3hcj-container, .framer-s0Ilc .framer-mibxng-container, .framer-s0Ilc .framer-h1bu9k-container { flex: none; height: 100px; position: relative; width: 130px; }\",\".framer-s0Ilc .framer-1gygb6s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-gf61ck { 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-s0Ilc .framer-172ko45 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-19q1qqc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-s0Ilc .framer-1uo9rbr { background-color: #ebdeca; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-s0Ilc .framer-9hvkcu { background-color: #f2e5d0; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-s0Ilc .framer-1lcvyte { flex: none; height: 134px; left: calc(50.00000000000002% - 91px / 2); position: absolute; top: calc(50.00000000000002% - 134px / 2); width: 91px; }\",\".framer-s0Ilc .framer-es8vdc { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-start; padding: 20px; position: relative; width: 100%; }\",\".framer-s0Ilc .framer-1v8j0qt-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-s0Ilc .framer-wlwi8t-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s0Ilc.framer-iyv91p, .framer-s0Ilc .framer-37dcxm, .framer-s0Ilc .framer-8gpyw9, .framer-s0Ilc .framer-1duqldn, .framer-s0Ilc .framer-159i0iw, .framer-s0Ilc .framer-82kkjp, .framer-s0Ilc .framer-sk68qb, .framer-s0Ilc .framer-5xfn3r, .framer-s0Ilc .framer-1hrgv1j, .framer-s0Ilc .framer-1ysqxrd, .framer-s0Ilc .framer-gflwbu, .framer-s0Ilc .framer-kqnhcd, .framer-s0Ilc .framer-133n3hk, .framer-s0Ilc .framer-j8uzf4, .framer-s0Ilc .framer-c9j5cp, .framer-s0Ilc .framer-13bdpgo, .framer-s0Ilc .framer-1utv0so, .framer-s0Ilc .framer-mi7xjg, .framer-s0Ilc .framer-be37rl, .framer-s0Ilc .framer-n1soo4, .framer-s0Ilc .framer-p3nwyd, .framer-s0Ilc .framer-hnua0p, .framer-s0Ilc .framer-10o1ec6, .framer-s0Ilc .framer-1kcobvq, .framer-s0Ilc .framer-1bj4njq, .framer-s0Ilc .framer-axqfx3, .framer-s0Ilc .framer-12j2wo0, .framer-s0Ilc .framer-vkjmdu, .framer-s0Ilc .framer-1jy26mv, .framer-s0Ilc .framer-46tg2v, .framer-s0Ilc .framer-1s166tf, .framer-s0Ilc .framer-2rx9sb, .framer-s0Ilc .framer-1xcy2xl, .framer-s0Ilc .framer-1ti11o4, .framer-s0Ilc .framer-1mop38l, .framer-s0Ilc .framer-yhg0d8, .framer-s0Ilc .framer-v4ey4, .framer-s0Ilc .framer-1cqlffn, .framer-s0Ilc .framer-oty4sq, .framer-s0Ilc .framer-1xoxno5, .framer-s0Ilc .framer-16ft8ic, .framer-s0Ilc .framer-j1oyf7, .framer-s0Ilc .framer-1fl0fyu, .framer-s0Ilc .framer-7wr70b, .framer-s0Ilc .framer-1v18669, .framer-s0Ilc .framer-16m9z9f, .framer-s0Ilc .framer-e2ob2g, .framer-s0Ilc .framer-rgr8j3, .framer-s0Ilc .framer-1bqt0j9, .framer-s0Ilc .framer-16nhoyl, .framer-s0Ilc .framer-1fgncai, .framer-s0Ilc .framer-106u8u6, .framer-s0Ilc .framer-1etytj, .framer-s0Ilc .framer-l0n8kt, .framer-s0Ilc .framer-1q63jf6, .framer-s0Ilc .framer-1v805rd, .framer-s0Ilc .framer-y3ap3t, .framer-s0Ilc .framer-ck8vkb, .framer-s0Ilc .framer-1t3cp85, .framer-s0Ilc .framer-1ex4q9w, .framer-s0Ilc .framer-1f7bb1h, .framer-s0Ilc .framer-yb2eb, .framer-s0Ilc .framer-10ci0cn, .framer-s0Ilc .framer-19tkt8a, .framer-s0Ilc .framer-os7nrn, .framer-s0Ilc .framer-1at4whr, .framer-s0Ilc .framer-n4ls7m, .framer-s0Ilc .framer-1ojt5c1, .framer-s0Ilc .framer-1tecrsj, .framer-s0Ilc .framer-1iallqp, .framer-s0Ilc .framer-46pa6u, .framer-s0Ilc .framer-1mvfnzn, .framer-s0Ilc .framer-106sfoa, .framer-s0Ilc .framer-3y429d, .framer-s0Ilc .framer-12k61hi, .framer-s0Ilc .framer-i2wm1t, .framer-s0Ilc .framer-2bx668, .framer-s0Ilc .framer-gx2ln, .framer-s0Ilc .framer-1u3zqef, .framer-s0Ilc .framer-1avixbo, .framer-s0Ilc .framer-150po48, .framer-s0Ilc .framer-w4sg3i, .framer-s0Ilc .framer-1e8yysh, .framer-s0Ilc .framer-14esgxe, .framer-s0Ilc .framer-13svjuq, .framer-s0Ilc .framer-jp2ifv, .framer-s0Ilc .framer-12x3dgf, .framer-s0Ilc .framer-1b2af5p, .framer-s0Ilc .framer-d5p50e, .framer-s0Ilc .framer-18k1fc3, .framer-s0Ilc .framer-1cmnv3r, .framer-s0Ilc .framer-15phuxf, .framer-s0Ilc .framer-1l0jy34, .framer-s0Ilc .framer-n8idqp, .framer-s0Ilc .framer-z3sv98, .framer-s0Ilc .framer-i8dd8c, .framer-s0Ilc .framer-1qmjco4, .framer-s0Ilc .framer-bbqxft, .framer-s0Ilc .framer-ag01zf, .framer-s0Ilc .framer-13vbabb, .framer-s0Ilc .framer-zz1ohv, .framer-s0Ilc .framer-1jrop3c, .framer-s0Ilc .framer-1am7oyp, .framer-s0Ilc .framer-cyno0y, .framer-s0Ilc .framer-1c4yqyy, .framer-s0Ilc .framer-jky95w, .framer-s0Ilc .framer-1ug2rw1, .framer-s0Ilc .framer-sr2z4b, .framer-s0Ilc .framer-mbu7wd, .framer-s0Ilc .framer-8qgfks, .framer-s0Ilc .framer-1qr4ep1, .framer-s0Ilc .framer-87ju70, .framer-s0Ilc .framer-14vq9nl, .framer-s0Ilc .framer-1heb2ar, .framer-s0Ilc .framer-12ej2ns, .framer-s0Ilc .framer-1hxe3y9, .framer-s0Ilc .framer-qxd2wz, .framer-s0Ilc .framer-kkaii8, .framer-s0Ilc .framer-153z7ei, .framer-s0Ilc .framer-menzim, .framer-s0Ilc .framer-1uqy1pn, .framer-s0Ilc .framer-18id4fl, .framer-s0Ilc .framer-1frydkg, .framer-s0Ilc .framer-x3m4uh, .framer-s0Ilc .framer-w3ehoc, .framer-s0Ilc .framer-1gygb6s, .framer-s0Ilc .framer-gf61ck, .framer-s0Ilc .framer-172ko45, .framer-s0Ilc .framer-19q1qqc, .framer-s0Ilc .framer-es8vdc { gap: 0px; } .framer-s0Ilc.framer-iyv91p > *, .framer-s0Ilc .framer-axqfx3 > *, .framer-s0Ilc .framer-46tg2v > *, .framer-s0Ilc .framer-1ti11o4 > *, .framer-s0Ilc .framer-1cqlffn > *, .framer-s0Ilc .framer-j1oyf7 > *, .framer-s0Ilc .framer-16m9z9f > *, .framer-s0Ilc .framer-16nhoyl > *, .framer-s0Ilc .framer-l0n8kt > *, .framer-s0Ilc .framer-ck8vkb > *, .framer-s0Ilc .framer-yb2eb > *, .framer-s0Ilc .framer-1at4whr > *, .framer-s0Ilc .framer-1iallqp > *, .framer-s0Ilc .framer-3y429d > *, .framer-s0Ilc .framer-gx2ln > *, .framer-s0Ilc .framer-w4sg3i > *, .framer-s0Ilc .framer-jp2ifv > *, .framer-s0Ilc .framer-18k1fc3 > *, .framer-s0Ilc .framer-n8idqp > *, .framer-s0Ilc .framer-bbqxft > *, .framer-s0Ilc .framer-1jrop3c > *, .framer-s0Ilc .framer-jky95w > *, .framer-s0Ilc .framer-12ej2ns > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-s0Ilc.framer-iyv91p > :first-child, .framer-s0Ilc .framer-37dcxm > :first-child, .framer-s0Ilc .framer-8gpyw9 > :first-child, .framer-s0Ilc .framer-c9j5cp > :first-child, .framer-s0Ilc .framer-1utv0so > :first-child, .framer-s0Ilc .framer-be37rl > :first-child, .framer-s0Ilc .framer-p3nwyd > :first-child, .framer-s0Ilc .framer-10o1ec6 > :first-child, .framer-s0Ilc .framer-axqfx3 > :first-child, .framer-s0Ilc .framer-46tg2v > :first-child, .framer-s0Ilc .framer-1ti11o4 > :first-child, .framer-s0Ilc .framer-1cqlffn > :first-child, .framer-s0Ilc .framer-j1oyf7 > :first-child, .framer-s0Ilc .framer-16m9z9f > :first-child, .framer-s0Ilc .framer-16nhoyl > :first-child, .framer-s0Ilc .framer-l0n8kt > :first-child, .framer-s0Ilc .framer-ck8vkb > :first-child, .framer-s0Ilc .framer-yb2eb > :first-child, .framer-s0Ilc .framer-1at4whr > :first-child, .framer-s0Ilc .framer-1iallqp > :first-child, .framer-s0Ilc .framer-3y429d > :first-child, .framer-s0Ilc .framer-gx2ln > :first-child, .framer-s0Ilc .framer-w4sg3i > :first-child, .framer-s0Ilc .framer-jp2ifv > :first-child, .framer-s0Ilc .framer-18k1fc3 > :first-child, .framer-s0Ilc .framer-n8idqp > :first-child, .framer-s0Ilc .framer-bbqxft > :first-child, .framer-s0Ilc .framer-1jrop3c > :first-child, .framer-s0Ilc .framer-jky95w > :first-child, .framer-s0Ilc .framer-mbu7wd > :first-child, .framer-s0Ilc .framer-8qgfks > :first-child, .framer-s0Ilc .framer-1qr4ep1 > :first-child, .framer-s0Ilc .framer-87ju70 > :first-child, .framer-s0Ilc .framer-14vq9nl > :first-child, .framer-s0Ilc .framer-1heb2ar > :first-child, .framer-s0Ilc .framer-12ej2ns > :first-child, .framer-s0Ilc .framer-qxd2wz > :first-child, .framer-s0Ilc .framer-kkaii8 > :first-child, .framer-s0Ilc .framer-153z7ei > :first-child, .framer-s0Ilc .framer-menzim > :first-child, .framer-s0Ilc .framer-18id4fl > :first-child, .framer-s0Ilc .framer-1frydkg > :first-child, .framer-s0Ilc .framer-x3m4uh > :first-child, .framer-s0Ilc .framer-w3ehoc > :first-child, .framer-s0Ilc .framer-1gygb6s > :first-child, .framer-s0Ilc .framer-gf61ck > :first-child, .framer-s0Ilc .framer-es8vdc > :first-child { margin-top: 0px; } .framer-s0Ilc.framer-iyv91p > :last-child, .framer-s0Ilc .framer-37dcxm > :last-child, .framer-s0Ilc .framer-8gpyw9 > :last-child, .framer-s0Ilc .framer-c9j5cp > :last-child, .framer-s0Ilc .framer-1utv0so > :last-child, .framer-s0Ilc .framer-be37rl > :last-child, .framer-s0Ilc .framer-p3nwyd > :last-child, .framer-s0Ilc .framer-10o1ec6 > :last-child, .framer-s0Ilc .framer-axqfx3 > :last-child, .framer-s0Ilc .framer-46tg2v > :last-child, .framer-s0Ilc .framer-1ti11o4 > :last-child, .framer-s0Ilc .framer-1cqlffn > :last-child, .framer-s0Ilc .framer-j1oyf7 > :last-child, .framer-s0Ilc .framer-16m9z9f > :last-child, .framer-s0Ilc .framer-16nhoyl > :last-child, .framer-s0Ilc .framer-l0n8kt > :last-child, .framer-s0Ilc .framer-ck8vkb > :last-child, .framer-s0Ilc .framer-yb2eb > :last-child, .framer-s0Ilc .framer-1at4whr > :last-child, .framer-s0Ilc .framer-1iallqp > :last-child, .framer-s0Ilc .framer-3y429d > :last-child, .framer-s0Ilc .framer-gx2ln > :last-child, .framer-s0Ilc .framer-w4sg3i > :last-child, .framer-s0Ilc .framer-jp2ifv > :last-child, .framer-s0Ilc .framer-18k1fc3 > :last-child, .framer-s0Ilc .framer-n8idqp > :last-child, .framer-s0Ilc .framer-bbqxft > :last-child, .framer-s0Ilc .framer-1jrop3c > :last-child, .framer-s0Ilc .framer-jky95w > :last-child, .framer-s0Ilc .framer-mbu7wd > :last-child, .framer-s0Ilc .framer-8qgfks > :last-child, .framer-s0Ilc .framer-1qr4ep1 > :last-child, .framer-s0Ilc .framer-87ju70 > :last-child, .framer-s0Ilc .framer-14vq9nl > :last-child, .framer-s0Ilc .framer-1heb2ar > :last-child, .framer-s0Ilc .framer-12ej2ns > :last-child, .framer-s0Ilc .framer-qxd2wz > :last-child, .framer-s0Ilc .framer-kkaii8 > :last-child, .framer-s0Ilc .framer-153z7ei > :last-child, .framer-s0Ilc .framer-menzim > :last-child, .framer-s0Ilc .framer-18id4fl > :last-child, .framer-s0Ilc .framer-1frydkg > :last-child, .framer-s0Ilc .framer-x3m4uh > :last-child, .framer-s0Ilc .framer-w3ehoc > :last-child, .framer-s0Ilc .framer-1gygb6s > :last-child, .framer-s0Ilc .framer-gf61ck > :last-child, .framer-s0Ilc .framer-es8vdc > :last-child { margin-bottom: 0px; } .framer-s0Ilc .framer-37dcxm > * { margin: 0px; margin-bottom: calc(119px / 2); margin-top: calc(119px / 2); } .framer-s0Ilc .framer-8gpyw9 > *, .framer-s0Ilc .framer-14vq9nl > *, .framer-s0Ilc .framer-1gygb6s > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-s0Ilc .framer-1duqldn > *, .framer-s0Ilc .framer-159i0iw > *, .framer-s0Ilc .framer-82kkjp > *, .framer-s0Ilc .framer-sk68qb > *, .framer-s0Ilc .framer-5xfn3r > *, .framer-s0Ilc .framer-1hrgv1j > *, .framer-s0Ilc .framer-1ysqxrd > *, .framer-s0Ilc .framer-gflwbu > *, .framer-s0Ilc .framer-kqnhcd > *, .framer-s0Ilc .framer-133n3hk > *, .framer-s0Ilc .framer-j8uzf4 > *, .framer-s0Ilc .framer-mi7xjg > *, .framer-s0Ilc .framer-n1soo4 > *, .framer-s0Ilc .framer-hnua0p > *, .framer-s0Ilc .framer-1kcobvq > *, .framer-s0Ilc .framer-12j2wo0 > *, .framer-s0Ilc .framer-1s166tf > *, .framer-s0Ilc .framer-2rx9sb > *, .framer-s0Ilc .framer-1mop38l > *, .framer-s0Ilc .framer-yhg0d8 > *, .framer-s0Ilc .framer-oty4sq > *, .framer-s0Ilc .framer-1xoxno5 > *, .framer-s0Ilc .framer-1fl0fyu > *, .framer-s0Ilc .framer-7wr70b > *, .framer-s0Ilc .framer-e2ob2g > *, .framer-s0Ilc .framer-rgr8j3 > *, .framer-s0Ilc .framer-1fgncai > *, .framer-s0Ilc .framer-106u8u6 > *, .framer-s0Ilc .framer-1q63jf6 > *, .framer-s0Ilc .framer-1v805rd > *, .framer-s0Ilc .framer-1t3cp85 > *, .framer-s0Ilc .framer-1ex4q9w > *, .framer-s0Ilc .framer-10ci0cn > *, .framer-s0Ilc .framer-19tkt8a > *, .framer-s0Ilc .framer-n4ls7m > *, .framer-s0Ilc .framer-1ojt5c1 > *, .framer-s0Ilc .framer-46pa6u > *, .framer-s0Ilc .framer-1mvfnzn > *, .framer-s0Ilc .framer-12k61hi > *, .framer-s0Ilc .framer-1u3zqef > *, .framer-s0Ilc .framer-1avixbo > *, .framer-s0Ilc .framer-1e8yysh > *, .framer-s0Ilc .framer-14esgxe > *, .framer-s0Ilc .framer-12x3dgf > *, .framer-s0Ilc .framer-1b2af5p > *, .framer-s0Ilc .framer-1cmnv3r > *, .framer-s0Ilc .framer-15phuxf > *, .framer-s0Ilc .framer-z3sv98 > *, .framer-s0Ilc .framer-i8dd8c > *, .framer-s0Ilc .framer-ag01zf > *, .framer-s0Ilc .framer-13vbabb > *, .framer-s0Ilc .framer-1am7oyp > *, .framer-s0Ilc .framer-cyno0y > *, .framer-s0Ilc .framer-1ug2rw1 > *, .framer-s0Ilc .framer-sr2z4b > *, .framer-s0Ilc .framer-19q1qqc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-s0Ilc .framer-1duqldn > :first-child, .framer-s0Ilc .framer-159i0iw > :first-child, .framer-s0Ilc .framer-82kkjp > :first-child, .framer-s0Ilc .framer-sk68qb > :first-child, .framer-s0Ilc .framer-5xfn3r > :first-child, .framer-s0Ilc .framer-1hrgv1j > :first-child, .framer-s0Ilc .framer-1ysqxrd > :first-child, .framer-s0Ilc .framer-gflwbu > :first-child, .framer-s0Ilc .framer-kqnhcd > :first-child, .framer-s0Ilc .framer-133n3hk > :first-child, .framer-s0Ilc .framer-j8uzf4 > :first-child, .framer-s0Ilc .framer-13bdpgo > :first-child, .framer-s0Ilc .framer-mi7xjg > :first-child, .framer-s0Ilc .framer-n1soo4 > :first-child, .framer-s0Ilc .framer-hnua0p > :first-child, .framer-s0Ilc .framer-1kcobvq > :first-child, .framer-s0Ilc .framer-1bj4njq > :first-child, .framer-s0Ilc .framer-12j2wo0 > :first-child, .framer-s0Ilc .framer-vkjmdu > :first-child, .framer-s0Ilc .framer-1jy26mv > :first-child, .framer-s0Ilc .framer-1s166tf > :first-child, .framer-s0Ilc .framer-2rx9sb > :first-child, .framer-s0Ilc .framer-1xcy2xl > :first-child, .framer-s0Ilc .framer-1mop38l > :first-child, .framer-s0Ilc .framer-yhg0d8 > :first-child, .framer-s0Ilc .framer-v4ey4 > :first-child, .framer-s0Ilc .framer-oty4sq > :first-child, .framer-s0Ilc .framer-1xoxno5 > :first-child, .framer-s0Ilc .framer-16ft8ic > :first-child, .framer-s0Ilc .framer-1fl0fyu > :first-child, .framer-s0Ilc .framer-7wr70b > :first-child, .framer-s0Ilc .framer-1v18669 > :first-child, .framer-s0Ilc .framer-e2ob2g > :first-child, .framer-s0Ilc .framer-rgr8j3 > :first-child, .framer-s0Ilc .framer-1bqt0j9 > :first-child, .framer-s0Ilc .framer-1fgncai > :first-child, .framer-s0Ilc .framer-106u8u6 > :first-child, .framer-s0Ilc .framer-1etytj > :first-child, .framer-s0Ilc .framer-1q63jf6 > :first-child, .framer-s0Ilc .framer-1v805rd > :first-child, .framer-s0Ilc .framer-y3ap3t > :first-child, .framer-s0Ilc .framer-1t3cp85 > :first-child, .framer-s0Ilc .framer-1ex4q9w > :first-child, .framer-s0Ilc .framer-1f7bb1h > :first-child, .framer-s0Ilc .framer-10ci0cn > :first-child, .framer-s0Ilc .framer-19tkt8a > :first-child, .framer-s0Ilc .framer-os7nrn > :first-child, .framer-s0Ilc .framer-n4ls7m > :first-child, .framer-s0Ilc .framer-1ojt5c1 > :first-child, .framer-s0Ilc .framer-1tecrsj > :first-child, .framer-s0Ilc .framer-46pa6u > :first-child, .framer-s0Ilc .framer-1mvfnzn > :first-child, .framer-s0Ilc .framer-106sfoa > :first-child, .framer-s0Ilc .framer-12k61hi > :first-child, .framer-s0Ilc .framer-i2wm1t > :first-child, .framer-s0Ilc .framer-2bx668 > :first-child, .framer-s0Ilc .framer-1u3zqef > :first-child, .framer-s0Ilc .framer-1avixbo > :first-child, .framer-s0Ilc .framer-150po48 > :first-child, .framer-s0Ilc .framer-1e8yysh > :first-child, .framer-s0Ilc .framer-14esgxe > :first-child, .framer-s0Ilc .framer-13svjuq > :first-child, .framer-s0Ilc .framer-12x3dgf > :first-child, .framer-s0Ilc .framer-1b2af5p > :first-child, .framer-s0Ilc .framer-d5p50e > :first-child, .framer-s0Ilc .framer-1cmnv3r > :first-child, .framer-s0Ilc .framer-15phuxf > :first-child, .framer-s0Ilc .framer-1l0jy34 > :first-child, .framer-s0Ilc .framer-z3sv98 > :first-child, .framer-s0Ilc .framer-i8dd8c > :first-child, .framer-s0Ilc .framer-1qmjco4 > :first-child, .framer-s0Ilc .framer-ag01zf > :first-child, .framer-s0Ilc .framer-13vbabb > :first-child, .framer-s0Ilc .framer-zz1ohv > :first-child, .framer-s0Ilc .framer-1am7oyp > :first-child, .framer-s0Ilc .framer-cyno0y > :first-child, .framer-s0Ilc .framer-1c4yqyy > :first-child, .framer-s0Ilc .framer-1ug2rw1 > :first-child, .framer-s0Ilc .framer-sr2z4b > :first-child, .framer-s0Ilc .framer-1hxe3y9 > :first-child, .framer-s0Ilc .framer-1uqy1pn > :first-child, .framer-s0Ilc .framer-172ko45 > :first-child, .framer-s0Ilc .framer-19q1qqc > :first-child { margin-left: 0px; } .framer-s0Ilc .framer-1duqldn > :last-child, .framer-s0Ilc .framer-159i0iw > :last-child, .framer-s0Ilc .framer-82kkjp > :last-child, .framer-s0Ilc .framer-sk68qb > :last-child, .framer-s0Ilc .framer-5xfn3r > :last-child, .framer-s0Ilc .framer-1hrgv1j > :last-child, .framer-s0Ilc .framer-1ysqxrd > :last-child, .framer-s0Ilc .framer-gflwbu > :last-child, .framer-s0Ilc .framer-kqnhcd > :last-child, .framer-s0Ilc .framer-133n3hk > :last-child, .framer-s0Ilc .framer-j8uzf4 > :last-child, .framer-s0Ilc .framer-13bdpgo > :last-child, .framer-s0Ilc .framer-mi7xjg > :last-child, .framer-s0Ilc .framer-n1soo4 > :last-child, .framer-s0Ilc .framer-hnua0p > :last-child, .framer-s0Ilc .framer-1kcobvq > :last-child, .framer-s0Ilc .framer-1bj4njq > :last-child, .framer-s0Ilc .framer-12j2wo0 > :last-child, .framer-s0Ilc .framer-vkjmdu > :last-child, .framer-s0Ilc .framer-1jy26mv > :last-child, .framer-s0Ilc .framer-1s166tf > :last-child, .framer-s0Ilc .framer-2rx9sb > :last-child, .framer-s0Ilc .framer-1xcy2xl > :last-child, .framer-s0Ilc .framer-1mop38l > :last-child, .framer-s0Ilc .framer-yhg0d8 > :last-child, .framer-s0Ilc .framer-v4ey4 > :last-child, .framer-s0Ilc .framer-oty4sq > :last-child, .framer-s0Ilc .framer-1xoxno5 > :last-child, .framer-s0Ilc .framer-16ft8ic > :last-child, .framer-s0Ilc .framer-1fl0fyu > :last-child, .framer-s0Ilc .framer-7wr70b > :last-child, .framer-s0Ilc .framer-1v18669 > :last-child, .framer-s0Ilc .framer-e2ob2g > :last-child, .framer-s0Ilc .framer-rgr8j3 > :last-child, .framer-s0Ilc .framer-1bqt0j9 > :last-child, .framer-s0Ilc .framer-1fgncai > :last-child, .framer-s0Ilc .framer-106u8u6 > :last-child, .framer-s0Ilc .framer-1etytj > :last-child, .framer-s0Ilc .framer-1q63jf6 > :last-child, .framer-s0Ilc .framer-1v805rd > :last-child, .framer-s0Ilc .framer-y3ap3t > :last-child, .framer-s0Ilc .framer-1t3cp85 > :last-child, .framer-s0Ilc .framer-1ex4q9w > :last-child, .framer-s0Ilc .framer-1f7bb1h > :last-child, .framer-s0Ilc .framer-10ci0cn > :last-child, .framer-s0Ilc .framer-19tkt8a > :last-child, .framer-s0Ilc .framer-os7nrn > :last-child, .framer-s0Ilc .framer-n4ls7m > :last-child, .framer-s0Ilc .framer-1ojt5c1 > :last-child, .framer-s0Ilc .framer-1tecrsj > :last-child, .framer-s0Ilc .framer-46pa6u > :last-child, .framer-s0Ilc .framer-1mvfnzn > :last-child, .framer-s0Ilc .framer-106sfoa > :last-child, .framer-s0Ilc .framer-12k61hi > :last-child, .framer-s0Ilc .framer-i2wm1t > :last-child, .framer-s0Ilc .framer-2bx668 > :last-child, .framer-s0Ilc .framer-1u3zqef > :last-child, .framer-s0Ilc .framer-1avixbo > :last-child, .framer-s0Ilc .framer-150po48 > :last-child, .framer-s0Ilc .framer-1e8yysh > :last-child, .framer-s0Ilc .framer-14esgxe > :last-child, .framer-s0Ilc .framer-13svjuq > :last-child, .framer-s0Ilc .framer-12x3dgf > :last-child, .framer-s0Ilc .framer-1b2af5p > :last-child, .framer-s0Ilc .framer-d5p50e > :last-child, .framer-s0Ilc .framer-1cmnv3r > :last-child, .framer-s0Ilc .framer-15phuxf > :last-child, .framer-s0Ilc .framer-1l0jy34 > :last-child, .framer-s0Ilc .framer-z3sv98 > :last-child, .framer-s0Ilc .framer-i8dd8c > :last-child, .framer-s0Ilc .framer-1qmjco4 > :last-child, .framer-s0Ilc .framer-ag01zf > :last-child, .framer-s0Ilc .framer-13vbabb > :last-child, .framer-s0Ilc .framer-zz1ohv > :last-child, .framer-s0Ilc .framer-1am7oyp > :last-child, .framer-s0Ilc .framer-cyno0y > :last-child, .framer-s0Ilc .framer-1c4yqyy > :last-child, .framer-s0Ilc .framer-1ug2rw1 > :last-child, .framer-s0Ilc .framer-sr2z4b > :last-child, .framer-s0Ilc .framer-1hxe3y9 > :last-child, .framer-s0Ilc .framer-1uqy1pn > :last-child, .framer-s0Ilc .framer-172ko45 > :last-child, .framer-s0Ilc .framer-19q1qqc > :last-child { margin-right: 0px; } .framer-s0Ilc .framer-c9j5cp > *, .framer-s0Ilc .framer-1utv0so > *, .framer-s0Ilc .framer-be37rl > *, .framer-s0Ilc .framer-p3nwyd > *, .framer-s0Ilc .framer-1qr4ep1 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-s0Ilc .framer-13bdpgo > * { margin: 0px; margin-left: calc(31px / 2); margin-right: calc(31px / 2); } .framer-s0Ilc .framer-10o1ec6 > *, .framer-s0Ilc .framer-gf61ck > *, .framer-s0Ilc .framer-es8vdc > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-s0Ilc .framer-1bj4njq > *, .framer-s0Ilc .framer-vkjmdu > *, .framer-s0Ilc .framer-1jy26mv > *, .framer-s0Ilc .framer-1xcy2xl > *, .framer-s0Ilc .framer-v4ey4 > *, .framer-s0Ilc .framer-16ft8ic > *, .framer-s0Ilc .framer-1v18669 > *, .framer-s0Ilc .framer-os7nrn > *, .framer-s0Ilc .framer-1tecrsj > *, .framer-s0Ilc .framer-106sfoa > *, .framer-s0Ilc .framer-i2wm1t > *, .framer-s0Ilc .framer-2bx668 > *, .framer-s0Ilc .framer-150po48 > *, .framer-s0Ilc .framer-13svjuq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-s0Ilc .framer-1bqt0j9 > *, .framer-s0Ilc .framer-1etytj > *, .framer-s0Ilc .framer-y3ap3t > *, .framer-s0Ilc .framer-1f7bb1h > *, .framer-s0Ilc .framer-d5p50e > *, .framer-s0Ilc .framer-1l0jy34 > *, .framer-s0Ilc .framer-1qmjco4 > *, .framer-s0Ilc .framer-zz1ohv > *, .framer-s0Ilc .framer-1c4yqyy > *, .framer-s0Ilc .framer-172ko45 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-s0Ilc .framer-mbu7wd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-s0Ilc .framer-8qgfks > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-s0Ilc .framer-87ju70 > * { margin: 0px; margin-bottom: calc(99px / 2); margin-top: calc(99px / 2); } .framer-s0Ilc .framer-1heb2ar > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-s0Ilc .framer-1hxe3y9 > *, .framer-s0Ilc .framer-1uqy1pn > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-s0Ilc .framer-qxd2wz > *, .framer-s0Ilc .framer-153z7ei > *, .framer-s0Ilc .framer-18id4fl > *, .framer-s0Ilc .framer-x3m4uh > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-s0Ilc .framer-kkaii8 > *, .framer-s0Ilc .framer-menzim > *, .framer-s0Ilc .framer-1frydkg > *, .framer-s0Ilc .framer-w3ehoc > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,`@media (min-width: 1920px) { .${metadata.bodyClassName}-framer-s0Ilc { background: var(--token-2c6b3561-0c9f-4523-9d86-0be6e76fc3b6, rgb(14, 78, 78)) /* {\"name\":\"Skanem Genuine Green\"} */; } .framer-s0Ilc.framer-iyv91p { width: 1920px; } .framer-s0Ilc .framer-1f1zuuw-container { height: 800px; width: 1920px; } .framer-s0Ilc .framer-37dcxm { gap: 80px; padding: 60px 30px 100px 30px; } .framer-s0Ilc .framer-c9j5cp { gap: 60px; padding: 80px 40px 100px 40px; } .framer-s0Ilc .framer-13bdpgo { gap: unset; height: 374px; justify-content: space-between; } .framer-s0Ilc .framer-10o1ec6 { gap: 60px; padding: 20px 40px 120px 40px; } .framer-s0Ilc .framer-8qgfks { align-content: flex-start; align-items: flex-start; } .framer-s0Ilc .framer-b7d7bx-container { height: 1000px; } .framer-s0Ilc .framer-1qr4ep1 { gap: 60px; padding: 90px 30px 80px 30px; } .framer-s0Ilc .framer-87ju70 { order: 0; } .framer-s0Ilc .framer-1heb2ar { gap: 65px; } .framer-s0Ilc .framer-1gygb6s { flex-direction: row; gap: 120px; } .framer-s0Ilc .framer-1yevnac-container, .framer-s0Ilc .framer-1m40iyg-container { flex: 1 0 0px; width: 1px; } .framer-s0Ilc .framer-gf61ck { order: 1; } .framer-s0Ilc .framer-172ko45 { aspect-ratio: 2.9411764705882355 / 1; height: var(--framer-aspect-ratio-supported, 969px); } .framer-s0Ilc .framer-19q1qqc { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; height: 969px; will-change: var(--framer-will-change-override, transform); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s0Ilc .framer-37dcxm, .framer-s0Ilc .framer-c9j5cp, .framer-s0Ilc .framer-13bdpgo, .framer-s0Ilc .framer-10o1ec6, .framer-s0Ilc .framer-1qr4ep1, .framer-s0Ilc .framer-1heb2ar, .framer-s0Ilc .framer-1gygb6s { gap: 0px; } .framer-s0Ilc .framer-37dcxm > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-s0Ilc .framer-37dcxm > :first-child, .framer-s0Ilc .framer-c9j5cp > :first-child, .framer-s0Ilc .framer-10o1ec6 > :first-child, .framer-s0Ilc .framer-1qr4ep1 > :first-child, .framer-s0Ilc .framer-1heb2ar > :first-child { margin-top: 0px; } .framer-s0Ilc .framer-37dcxm > :last-child, .framer-s0Ilc .framer-c9j5cp > :last-child, .framer-s0Ilc .framer-10o1ec6 > :last-child, .framer-s0Ilc .framer-1qr4ep1 > :last-child, .framer-s0Ilc .framer-1heb2ar > :last-child { margin-bottom: 0px; } .framer-s0Ilc .framer-c9j5cp > *, .framer-s0Ilc .framer-10o1ec6 > *, .framer-s0Ilc .framer-1qr4ep1 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-s0Ilc .framer-13bdpgo > *, .framer-s0Ilc .framer-13bdpgo > :first-child, .framer-s0Ilc .framer-13bdpgo > :last-child { margin: 0px; } .framer-s0Ilc .framer-1heb2ar > * { margin: 0px; margin-bottom: calc(65px / 2); margin-top: calc(65px / 2); } .framer-s0Ilc .framer-1gygb6s > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-s0Ilc .framer-1gygb6s > :first-child { margin-left: 0px; } .framer-s0Ilc .framer-1gygb6s > :last-child { margin-right: 0px; } }}`,`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-s0Ilc { background: var(--token-2c6b3561-0c9f-4523-9d86-0be6e76fc3b6, rgb(14, 78, 78)) /* {\"name\":\"Skanem Genuine Green\"} */; } .framer-s0Ilc.framer-iyv91p, .framer-s0Ilc .framer-1f1zuuw-container { width: 810px; } .framer-s0Ilc .framer-19v23kw-container { height: 90vh; } .framer-s0Ilc .framer-37dcxm { padding: 60px 40px 40px 40px; } .framer-s0Ilc .framer-13bdpgo { gap: 100px; height: min-content; } .framer-s0Ilc .framer-1utv0so, .framer-s0Ilc .framer-be37rl, .framer-s0Ilc .framer-p3nwyd { height: 300px; } .framer-s0Ilc .framer-10o1ec6 { padding: 20px 40px 40px 40px; } .framer-s0Ilc .framer-npfzkp-container { height: 280px; } .framer-s0Ilc .framer-mbu7wd { padding: 70px 40px 30px 40px; } .framer-s0Ilc .framer-8qgfks { align-content: flex-start; align-items: flex-start; gap: 40px; } .framer-s0Ilc .framer-b7d7bx-container { height: 550px; min-height: unset; } .framer-s0Ilc .framer-1qr4ep1 { padding: 60px 40px 80px 40px; } .framer-s0Ilc .framer-87ju70 { order: 0; } .framer-s0Ilc .framer-1heb2ar { gap: 65px; } .framer-s0Ilc .framer-1hxe3y9, .framer-s0Ilc .framer-1uqy1pn { flex-direction: column; gap: 40px; } .framer-s0Ilc .framer-qxd2wz, .framer-s0Ilc .framer-153z7ei, .framer-s0Ilc .framer-18id4fl, .framer-s0Ilc .framer-x3m4uh { flex: none; width: 100%; } .framer-s0Ilc .framer-1gygb6s { gap: 40px; } .framer-s0Ilc .framer-gf61ck { gap: 10px; order: 1; } .framer-s0Ilc .framer-172ko45 { aspect-ratio: 2.6470588235294117 / 1; gap: 10px; height: var(--framer-aspect-ratio-supported, 450px); } .framer-s0Ilc .framer-19q1qqc { height: 450px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s0Ilc .framer-13bdpgo, .framer-s0Ilc .framer-8qgfks, .framer-s0Ilc .framer-1heb2ar, .framer-s0Ilc .framer-1hxe3y9, .framer-s0Ilc .framer-1uqy1pn, .framer-s0Ilc .framer-1gygb6s, .framer-s0Ilc .framer-gf61ck, .framer-s0Ilc .framer-172ko45 { gap: 0px; } .framer-s0Ilc .framer-13bdpgo > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-s0Ilc .framer-13bdpgo > :first-child, .framer-s0Ilc .framer-172ko45 > :first-child { margin-left: 0px; } .framer-s0Ilc .framer-13bdpgo > :last-child, .framer-s0Ilc .framer-172ko45 > :last-child { margin-right: 0px; } .framer-s0Ilc .framer-8qgfks > *, .framer-s0Ilc .framer-1hxe3y9 > *, .framer-s0Ilc .framer-1uqy1pn > *, .framer-s0Ilc .framer-1gygb6s > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-s0Ilc .framer-8qgfks > :first-child, .framer-s0Ilc .framer-1heb2ar > :first-child, .framer-s0Ilc .framer-1hxe3y9 > :first-child, .framer-s0Ilc .framer-1uqy1pn > :first-child, .framer-s0Ilc .framer-1gygb6s > :first-child, .framer-s0Ilc .framer-gf61ck > :first-child { margin-top: 0px; } .framer-s0Ilc .framer-8qgfks > :last-child, .framer-s0Ilc .framer-1heb2ar > :last-child, .framer-s0Ilc .framer-1hxe3y9 > :last-child, .framer-s0Ilc .framer-1uqy1pn > :last-child, .framer-s0Ilc .framer-1gygb6s > :last-child, .framer-s0Ilc .framer-gf61ck > :last-child { margin-bottom: 0px; } .framer-s0Ilc .framer-1heb2ar > * { margin: 0px; margin-bottom: calc(65px / 2); margin-top: calc(65px / 2); } .framer-s0Ilc .framer-gf61ck > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-s0Ilc .framer-172ko45 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-s0Ilc { background: var(--token-2c6b3561-0c9f-4523-9d86-0be6e76fc3b6, rgb(14, 78, 78)) /* {\"name\":\"Skanem Genuine Green\"} */; } .framer-s0Ilc.framer-iyv91p, .framer-s0Ilc .framer-1f1zuuw-container { width: 390px; } .framer-s0Ilc .framer-19v23kw-container { height: 90.04739336492891vh; } .framer-s0Ilc .framer-37dcxm { padding: 22px 20px 70px 20px; } .framer-s0Ilc .framer-c9j5cp { gap: 60px; padding: 60px 20px 60px 20px; } .framer-s0Ilc .framer-13bdpgo { flex-direction: column; gap: 90px; height: 1005px; } .framer-s0Ilc .framer-1utv0so, .framer-s0Ilc .framer-be37rl, .framer-s0Ilc .framer-p3nwyd { height: 1px; min-height: unset; width: 100%; } .framer-s0Ilc .framer-10o1ec6 { padding: 20px; } .framer-s0Ilc .framer-npfzkp-container { height: 250px; } .framer-s0Ilc .framer-mbu7wd { padding: 40px 20px 30px 20px; } .framer-s0Ilc .framer-8qgfks { align-content: flex-start; align-items: flex-start; gap: 40px; } .framer-s0Ilc .framer-b7d7bx-container { height: auto; min-height: unset; } .framer-s0Ilc .framer-1qr4ep1 { gap: 70px; padding: 60px 20px 80px 20px; } .framer-s0Ilc .framer-87ju70 { order: 0; } .framer-s0Ilc .framer-14vq9nl, .framer-s0Ilc .framer-12ej2ns, .framer-s0Ilc .framer-1gygb6s { gap: 40px; } .framer-s0Ilc .framer-1heb2ar { gap: 100px; } .framer-s0Ilc .framer-1hxe3y9, .framer-s0Ilc .framer-1uqy1pn { flex-direction: column; gap: 40px; } .framer-s0Ilc .framer-qxd2wz, .framer-s0Ilc .framer-153z7ei, .framer-s0Ilc .framer-18id4fl, .framer-s0Ilc .framer-x3m4uh { flex: none; width: 100%; } .framer-s0Ilc .framer-kkaii8, .framer-s0Ilc .framer-menzim, .framer-s0Ilc .framer-1frydkg, .framer-s0Ilc .framer-w3ehoc { width: min-content; } .framer-s0Ilc .framer-gf61ck { gap: 10px; order: 1; } .framer-s0Ilc .framer-172ko45 { flex-direction: column; gap: 10px; height: 400px; } .framer-s0Ilc .framer-19q1qqc { height: 1px; width: 100%; } .framer-s0Ilc .framer-es8vdc { height: 400px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s0Ilc .framer-c9j5cp, .framer-s0Ilc .framer-13bdpgo, .framer-s0Ilc .framer-8qgfks, .framer-s0Ilc .framer-1qr4ep1, .framer-s0Ilc .framer-14vq9nl, .framer-s0Ilc .framer-1heb2ar, .framer-s0Ilc .framer-12ej2ns, .framer-s0Ilc .framer-1hxe3y9, .framer-s0Ilc .framer-1uqy1pn, .framer-s0Ilc .framer-1gygb6s, .framer-s0Ilc .framer-gf61ck, .framer-s0Ilc .framer-172ko45 { gap: 0px; } .framer-s0Ilc .framer-c9j5cp > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-s0Ilc .framer-c9j5cp > :first-child, .framer-s0Ilc .framer-13bdpgo > :first-child, .framer-s0Ilc .framer-8qgfks > :first-child, .framer-s0Ilc .framer-1qr4ep1 > :first-child, .framer-s0Ilc .framer-14vq9nl > :first-child, .framer-s0Ilc .framer-1heb2ar > :first-child, .framer-s0Ilc .framer-12ej2ns > :first-child, .framer-s0Ilc .framer-1hxe3y9 > :first-child, .framer-s0Ilc .framer-1uqy1pn > :first-child, .framer-s0Ilc .framer-1gygb6s > :first-child, .framer-s0Ilc .framer-gf61ck > :first-child, .framer-s0Ilc .framer-172ko45 > :first-child { margin-top: 0px; } .framer-s0Ilc .framer-c9j5cp > :last-child, .framer-s0Ilc .framer-13bdpgo > :last-child, .framer-s0Ilc .framer-8qgfks > :last-child, .framer-s0Ilc .framer-1qr4ep1 > :last-child, .framer-s0Ilc .framer-14vq9nl > :last-child, .framer-s0Ilc .framer-1heb2ar > :last-child, .framer-s0Ilc .framer-12ej2ns > :last-child, .framer-s0Ilc .framer-1hxe3y9 > :last-child, .framer-s0Ilc .framer-1uqy1pn > :last-child, .framer-s0Ilc .framer-1gygb6s > :last-child, .framer-s0Ilc .framer-gf61ck > :last-child, .framer-s0Ilc .framer-172ko45 > :last-child { margin-bottom: 0px; } .framer-s0Ilc .framer-13bdpgo > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } .framer-s0Ilc .framer-8qgfks > *, .framer-s0Ilc .framer-14vq9nl > *, .framer-s0Ilc .framer-12ej2ns > *, .framer-s0Ilc .framer-1hxe3y9 > *, .framer-s0Ilc .framer-1uqy1pn > *, .framer-s0Ilc .framer-1gygb6s > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-s0Ilc .framer-1qr4ep1 > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-s0Ilc .framer-1heb2ar > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-s0Ilc .framer-gf61ck > *, .framer-s0Ilc .framer-172ko45 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6403\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nJMyL2i4C\":{\"layout\":[\"fixed\",\"auto\"]},\"xVXvXVo0a\":{\"layout\":[\"fixed\",\"auto\"]},\"HH2D6a4mp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerZquyxrmh2=withCSS(Component,css,\"framer-s0Ilc\");export default FramerZquyxrmh2;FramerZquyxrmh2.displayName=\"Home\";FramerZquyxrmh2.defaultProps={height:6403,width:1200};addFonts(FramerZquyxrmh2,[{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:\"Sarvatrik Devanagari Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/WsY0IloA51whSGpR8LmI19yURlM.woff2\"},{family:\"Sarvatrik Devanagari Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/n5QUiniVdRDQedzg2ASjIlpJJE.woff2\"}]},...HeroVideoFonts,...SectionImageOvalPBTNFonts,...TextKickerTextLargeFonts,...TickerFonts,...BTNPrimaryFonts,...Ticker1Fonts,...Component1Fonts,...PercentageFonts,...SliderFonts,...TitleSubheadingAndBodyTextFonts,...VideoFonts,...NavFonts,...Skanem_footerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZquyxrmh2\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nJMyL2i4C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xVXvXVo0a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HH2D6a4mp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"6403\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "isFunction", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "L", "T", "M", "e", "k", "noopReturn", "B", "asTransformCssVar", "j", "T", "L", "t", "P", "j", "testAnimation", "e", "t", "C", "R", "H", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "U", "spring", "q", "glide", "K", "inView$1", "resolveElements", "onIntersectionChange", "isFunction", "G", "_", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "Z", "X", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "ae", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "ce", "le", "onPointerUp", "window", "onPointerDown", "fe", "ue", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "IconoirFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color", "height", "id", "intro", "label", "link", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "P74BETmPA", "nnmtdphEy", "H8mvus_GY", "q9e5LTnHt", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText", "ComponentViewportProvider", "css", "Framera2VJDegfY", "withCSS", "a2VJDegfY_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "VideoFonts", "getFonts", "Video", "MotionDivWithFX", "Button_frontFonts", "a2VJDegfY_default", "VideoControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transition3", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "circleColor", "height", "id", "intro", "label", "link", "title", "video", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "yC3HEl8xs", "RNzTJQH74", "TKBbIkqr1", "zXYMYl0ww", "TOA4HiGSG", "C7H03oC21", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "ComponentViewportProvider", "RichText", "css", "FramermELEXBhEU", "withCSS", "mELEXBhEU_default", "addPropertyControls", "ControlType", "addFonts", "IconoirFonts", "getFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "BTNPrimaryFonts", "q5zbsDBos_default", "BTNPrimaryControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToPixelString", "value", "toResponsiveImage", "transition2", "animation", "animation1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "backgroundColor", "bTNLabel", "bTNType", "height", "id", "image", "link", "padding", "showArrow", "text", "textColor", "width", "props", "_humanReadableEnumMap_bTNType", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_humanReadableVariantMap_props_variant", "_ref7", "_ref8", "_ref9", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "lu9Ze6Q6u", "d_VxGIxld", "Coze9tx4a", "uOl7qcFaU", "Y3fXHdnU7", "w9fBjR2Ke", "o1XdHeEeB", "tAUmit8Rc", "xngpUfsKV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "Link", "ComponentViewportProvider", "RichText", "css", "FramerUJjyLp_2n", "withCSS", "UJjyLp_2n_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1g0jzkg", "args", "onAppear14obnar", "onAppear1vknx6m", "onAppear704159", "onAppear1dgh7a1", "onAppearymoxwi", "onAppear12pcqq4", "onAppeartg6m39", "onAppear9spovy", "onAppear11a2t5b", "onAppear161x3w7", "onAppear5z2wbl", "onAppear1pmdxp9", "onAppear1jxgcp3", "onAppeare5q9x8", "onAppear1wzqas6", "onAppear1g21x9e", "onAppearbku99n", "onAppearh5exzj", "onAppear8dxvr7", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText", "css", "Framerj9NBevuvT", "withCSS", "j9NBevuvT_default", "addPropertyControls", "ControlType", "addFonts", "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", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1q4wm84", "args", "onAppear588j1t", "onAppear1wyaxlj", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "css", "FramertUB56J4OC", "withCSS", "tUB56J4OC_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "HeroVideoFonts", "getFonts", "mELEXBhEU_default", "SectionImageOvalPBTNFonts", "UJjyLp_2n_default", "TextKickerTextLargeFonts", "UR9z2R2WW_default", "TickerFonts", "Ticker", "BTNPrimaryFonts", "q5zbsDBos_default", "Ticker1Fonts", "Component1Fonts", "cZk_HUSEX_default", "PercentageFonts", "j9NBevuvT_default", "PercentageWithVariantAppearEffect", "withVariantAppearEffect", "SliderFonts", "tUB56J4OC_default", "SliderWithVariantAppearEffect", "MotionDivWithFX", "withFX", "motion", "TitleSubheadingAndBodyTextFonts", "tKsrJvZEW_default", "VideoFonts", "Video", "NavFonts", "LwUKeWyn5_default", "NavWithVariantAppearEffect", "ContainerWithFX", "Container", "Skanem_footerFonts", "l6JpIvE1P_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "transition1", "animation", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation1", "transition2", "animation2", "animation3", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "rs0QFx0IwSQ8QIIoVs", "TP4QqQ5rhSQ8QIIoVs", "L36MiWNC5SQ8QIIoVs", "idSQ8QIIoVs", "rs0QFx0IwnAQh41o9B", "TP4QqQ5rhnAQh41o9B", "L36MiWNC5nAQh41o9B", "idnAQh41o9B", "rs0QFx0Iwu8Eg3k91k", "TP4QqQ5rhu8Eg3k91k", "L36MiWNC5u8Eg3k91k", "idu8Eg3k91k", "rs0QFx0IwvoyEvW0tS", "TP4QqQ5rhvoyEvW0tS", "L36MiWNC5voyEvW0tS", "idvoyEvW0tS", "rs0QFx0Iwat6avPdOp", "TP4QqQ5rhat6avPdOp", "L36MiWNC5at6avPdOp", "idat6avPdOp", "rs0QFx0Iwvt6LBqzHz", "TP4QqQ5rhvt6LBqzHz", "L36MiWNC5vt6LBqzHz", "idvt6LBqzHz", "rs0QFx0Iwunjwdd6oj", "TP4QqQ5rhunjwdd6oj", "L36MiWNC5unjwdd6oj", "idunjwdd6oj", "rs0QFx0IwjCfMEDRWO", "TP4QqQ5rhjCfMEDRWO", "L36MiWNC5jCfMEDRWO", "idjCfMEDRWO", "rs0QFx0IwbTMTXyfOG", "TP4QqQ5rhbTMTXyfOG", "L36MiWNC5bTMTXyfOG", "idbTMTXyfOG", "rs0QFx0IwYLz1HTLUD", "TP4QqQ5rhYLz1HTLUD", "L36MiWNC5YLz1HTLUD", "idYLz1HTLUD", "rs0QFx0IwTygml2PQC", "TP4QqQ5rhTygml2PQC", "L36MiWNC5Tygml2PQC", "idTygml2PQC", "rs0QFx0IwdGdJZ3WAH", "TP4QqQ5rhdGdJZ3WAH", "L36MiWNC5dGdJZ3WAH", "iddGdJZ3WAH", "rs0QFx0IwtEJwB3djY", "TP4QqQ5rhtEJwB3djY", "L36MiWNC5tEJwB3djY", "idtEJwB3djY", "rs0QFx0IwLkk0r_JFG", "TP4QqQ5rhLkk0r_JFG", "L36MiWNC5Lkk0r_JFG", "idLkk0r_JFG", "rs0QFx0IwWfw62c38Q", "TP4QqQ5rhWfw62c38Q", "L36MiWNC5Wfw62c38Q", "idWfw62c38Q", "rs0QFx0IwyavVIz4nu", "TP4QqQ5rhyavVIz4nu", "L36MiWNC5yavVIz4nu", "idyavVIz4nu", "rs0QFx0Iwa_7myKfku", "TP4QqQ5rha_7myKfku", "L36MiWNC5a_7myKfku", "ida_7myKfku", "rs0QFx0IwMAu2pDsCs", "TP4QqQ5rhMAu2pDsCs", "L36MiWNC5MAu2pDsCs", "idMAu2pDsCs", "rs0QFx0IwoaWCsneqj", "TP4QqQ5rhoaWCsneqj", "L36MiWNC5oaWCsneqj", "idoaWCsneqj", "rs0QFx0IwCNvy4z4HC", "TP4QqQ5rhCNvy4z4HC", "L36MiWNC5CNvy4z4HC", "idCNvy4z4HC", "rs0QFx0IwgucAowvnN", "TP4QqQ5rhgucAowvnN", "L36MiWNC5gucAowvnN", "idgucAowvnN", "vhLy0TtfCTcAi692Id", "idTcAi692Id", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "isDisplayed", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "isDisplayed1", "elementId5", "ref7", "elementId6", "ref8", "elementId7", "ref9", "elementId8", "ref10", "elementId9", "ref11", "elementId10", "ref12", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "ComponentViewportProvider", "resolvedLinks1", "Image2", "getLoadingLazyAtYPosition", "RichText", "x", "Link", "ChildrenCanSuspend", "XN9XhK82Y_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "collection2", "paginationInfo2", "loadMore2", "collection3", "paginationInfo3", "loadMore3", "collection4", "paginationInfo4", "loadMore4", "collection5", "paginationInfo5", "loadMore5", "collection6", "paginationInfo6", "loadMore6", "collection7", "paginationInfo7", "loadMore7", "collection8", "paginationInfo8", "loadMore8", "collection9", "paginationInfo9", "loadMore9", "collection10", "paginationInfo10", "loadMore10", "collection11", "paginationInfo11", "loadMore11", "collection12", "paginationInfo12", "loadMore12", "collection13", "paginationInfo13", "loadMore13", "collection14", "paginationInfo14", "loadMore14", "collection15", "paginationInfo15", "loadMore15", "collection16", "paginationInfo16", "loadMore16", "collection17", "paginationInfo17", "loadMore17", "collection18", "paginationInfo18", "loadMore18", "collection19", "paginationInfo19", "loadMore19", "collection20", "paginationInfo20", "loadMore20", "resolvedLinks2", "SVG", "BzxVuWaVG_default", "collection21", "paginationInfo21", "loadMore21", "css", "FramerZquyxrmh2", "withCSS", "Zquyxrmh2_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
