{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js", "ssg:https://framerusercontent.com/modules/IoHl2Ito7Vc2H5UD5xy2/4XbNSiNRFsaGICZmTER0/j1KKI8PCr.js", "ssg:https://framerusercontent.com/modules/yKOsmoWXpqWiC7L9X9dL/M1454x0lyBHIzLdMj083/D7Cp06g7I.js", "ssg:https://framerusercontent.com/modules/8x4L4RWeIs3YP4tfHtuQ/6TjytH1zD3QqVrRhrT1d/hq1I4tmsL.js", "ssg:https://framerusercontent.com/modules/Gf55ExVsGw8LbD0spfdY/TjrFo2ZPQu7gd1fR0P0u/mZL7XTwt9.js", "ssg:https://framerusercontent.com/modules/INtrUfacI6xWdkZZXUuA/KyaFe6jC6SGyT7SeWE0C/o_S8TyKF5.js", "ssg:https://framerusercontent.com/modules/lVa9BZMQRF7E3D0dfY1q/TJAykJF05JTCtLIRUhA4/ZKjbJbBS1.js", "ssg:https://framerusercontent.com/modules/8e3mRyLIZgj2sSlcx9lr/cBfVFQwwupUGWFDNIyzV/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;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);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,memo,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const amountChildren=Children.count(filteredSlots);const hasChildren=amountChildren>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];// when the slots change, generate new array\n},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].current;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const[firstChild,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),amountChildren>1?awaitRefCallback(lastChild,controller):true]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing||amountChildren<=1)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(index===0){if(childIndex===0){ref=childrenRef[0];}else if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/memo(/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;const fallbackRef=useRef();/**\n         * Unique offsets + scroll range [0, 1, 1, 0]\n         */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n         * Effects\n         */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{const node=ref?.current??fallbackRef.current;node?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined})})});}));const Dot=/*#__PURE__*/memo(function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});});/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (047deaf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={fZl8X3mU7:{hover:true},Gh0ciKQXm:{hover:true},Jt5Su1xNs:{hover:true}};const cycleOrder=[\"Gh0ciKQXm\",\"Jt5Su1xNs\",\"fZl8X3mU7\"];const serializationHash=\"framer-zYoqw\";const variantClassNames={fZl8X3mU7:\"framer-v-1v88t6g\",Gh0ciKQXm:\"framer-v-1i2i4cl\",Jt5Su1xNs:\"framer-v-fqtyyk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??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={Large:\"Gh0ciKQXm\",Medium:\"Jt5Su1xNs\",Small:\"fZl8X3mU7\"};const getProps=({color,height,id,link,title,width,...props})=>{return{...props,bVToBLBTS:title??props.bVToBLBTS??\"Learn more\",KqeH5xil_:color??props.KqeH5xil_??\"rgb(0, 0, 0)\",MJWWsEY26:link??props.MJWWsEY26,variant:humanReadableVariantMap[props.variant]??props.variant??\"Gh0ciKQXm\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,bVToBLBTS,KqeH5xil_,MJWWsEY26,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Gh0ciKQXm\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"Gh0ciKQXm\",scopeId:\"j1KKI8PCr\",...addPropertyOverrides({fZl8X3mU7:{href:MJWWsEY26},Jt5Su1xNs:{href:MJWWsEY26}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1i2i4cl\",className,classNames)} framer-1go775d`,\"data-framer-name\":\"Large\",layoutDependency:layoutDependency,layoutId:\"Gh0ciKQXm\",ref:refBinding,style:{opacity:1,...style},variants:{\"fZl8X3mU7-hover\":{opacity:.5},\"Gh0ciKQXm-hover\":{opacity:.5},\"Jt5Su1xNs-hover\":{opacity:.5}},...addPropertyOverrides({\"fZl8X3mU7-hover\":{\"data-framer-name\":undefined},\"Gh0ciKQXm-hover\":{\"data-framer-name\":undefined},\"Jt5Su1xNs-hover\":{\"data-framer-name\":undefined},fZl8X3mU7:{\"data-framer-name\":\"Small\"},Jt5Su1xNs:{\"data-framer-name\":\"Medium\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-KqeH5xil_-j1KKI8PCr))\"},children:\"Learn more\"})}),className:\"framer-1uwre4e\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"BVorPiC1b\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-KqeH5xil_-j1KKI8PCr)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-KqeH5xil_-j1KKI8PCr\":KqeH5xil_},text:bVToBLBTS,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"Gh0ciKQXm-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTUwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-KqeH5xil_-j1KKI8PCr))\"},children:\"Learn more\"})}),fonts:[\"GF;Mulish-500\"]},fZl8X3mU7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTUwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-KqeH5xil_-j1KKI8PCr))\"},children:\"Learn more\"})}),fonts:[\"GF;Mulish-500\"]},Jt5Su1xNs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-KqeH5xil_-j1KKI8PCr))\"},children:\"Learn more\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ttyk8j\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"D52fLbHMR\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dyn57m-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yfazqU5Ue-container\",nodeId:\"yfazqU5Ue\",rendersWithMotion:true,scopeId:\"j1KKI8PCr\",children:/*#__PURE__*/_jsx(Phosphor,{color:KqeH5xil_,height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"yfazqU5Ue\",layoutId:\"yfazqU5Ue\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zYoqw.framer-1go775d, .framer-zYoqw .framer-1go775d { display: block; }\",\".framer-zYoqw.framer-1i2i4cl { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-zYoqw .framer-1uwre4e { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zYoqw .framer-1ttyk8j { flex: none; gap: 10px; height: 20px; overflow: visible; position: relative; width: 20px; }\",\".framer-zYoqw .framer-1dyn57m-container { bottom: -1px; flex: none; height: 20px; left: 0px; position: absolute; right: 0px; }\",\".framer-zYoqw.framer-v-fqtyyk.framer-1i2i4cl { gap: 4px; text-decoration: none; }\",\".framer-zYoqw.framer-v-fqtyyk .framer-1dyn57m-container { bottom: 1px; height: 16px; right: unset; width: 16px; }\",\".framer-zYoqw.framer-v-1v88t6g.framer-1i2i4cl { gap: 2px; text-decoration: none; }\",\".framer-zYoqw.framer-v-1v88t6g .framer-1ttyk8j { height: 16px; width: 16px; }\",\".framer-zYoqw.framer-v-1v88t6g .framer-1dyn57m-container { bottom: 1px; height: 13px; left: calc(50.00000000000002% - 13px / 2); right: unset; width: 13px; }\",\".framer-zYoqw.framer-v-1i2i4cl.hover .framer-1dyn57m-container { left: unset; right: -3px; width: 20px; }\",\".framer-zYoqw.framer-v-fqtyyk.hover .framer-1dyn57m-container { left: calc(50.00000000000002% - 16px / 2); right: unset; }\",\".framer-zYoqw.framer-v-1v88t6g.hover .framer-1dyn57m-container { left: unset; right: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 129\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Jt5Su1xNs\":{\"layout\":[\"auto\",\"auto\"]},\"fZl8X3mU7\":{\"layout\":[\"auto\",\"auto\"]},\"Raec5jOin\":{\"layout\":[\"auto\",\"auto\"]},\"tLu4GIOU3\":{\"layout\":[\"auto\",\"auto\"]},\"fUZ8mkhSr\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"bVToBLBTS\":\"title\",\"KqeH5xil_\":\"color\",\"MJWWsEY26\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerj1KKI8PCr=withCSS(Component,css,\"framer-zYoqw\");export default Framerj1KKI8PCr;Framerj1KKI8PCr.displayName=\"CTA\";Framerj1KKI8PCr.defaultProps={height:30,width:129};addPropertyControls(Framerj1KKI8PCr,{variant:{options:[\"Gh0ciKQXm\",\"Jt5Su1xNs\",\"fZl8X3mU7\"],optionTitles:[\"Large\",\"Medium\",\"Small\"],title:\"Variant\",type:ControlType.Enum},bVToBLBTS:{defaultValue:\"Learn more\",displayTextArea:false,title:\"Title\",type:ControlType.String},KqeH5xil_:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color\",type:ControlType.Color},MJWWsEY26:{title:\"Link\",type:ControlType.Link}});addFonts(Framerj1KKI8PCr,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaWlGrw-PTY.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerj1KKI8PCr\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"129\",\"framerIntrinsicHeight\":\"30\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"bVToBLBTS\\\":\\\"title\\\",\\\"KqeH5xil_\\\":\\\"color\\\",\\\"MJWWsEY26\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Jt5Su1xNs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fZl8X3mU7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Raec5jOin\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tLu4GIOU3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fUZ8mkhSr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./j1KKI8PCr.map", "// Generated by Framer (047deaf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ZZUuk5stgAYycOQkPF7I/fXiQFWjPzSW0wz5P7osF/b0oJbQZyB.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/gYVd8Kx8M9ufejlp4RwI/mJwdoLb6A9xlaaTuGlm6/PhldXxnWn.js\";import CTA from\"https://framerusercontent.com/modules/IoHl2Ito7Vc2H5UD5xy2/4XbNSiNRFsaGICZmTER0/j1KKI8PCr.js\";const PhosphorFonts=getFonts(Phosphor);const CTAFonts=getFonts(CTA);const PhosphorControls=getPropertyControls(Phosphor);const serializationHash=\"framer-PqP4r\";const variantClassNames={l4PZuea46:\"framer-v-1d8svmu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({color,cTA,cTA1,height,icon,id,link,text,title,width,...props})=>{return{...props,ET3uJSa1F:icon??props.ET3uJSa1F??\"Leaf\",iHqIagJOF:cTA1??props.iHqIagJOF??\"Learn more\",Pzs4GcH4x:color??props.Pzs4GcH4x??\"rgb(0, 0, 0)\",RsSBbXcyG:link??props.RsSBbXcyG,Z6hiuC6BW:title??props.Z6hiuC6BW??\"Integration ecosystem\",ZdZM7np2V:cTA??props.ZdZM7np2V??true,ZfP85W1Qa:text??props.ZfP85W1Qa??\"Track your progress and motivate your efforts everyday.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Pzs4GcH4x,ET3uJSa1F,Z6hiuC6BW,ZfP85W1Qa,ZdZM7np2V,iHqIagJOF,RsSBbXcyG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"l4PZuea46\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1d8svmu\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"l4PZuea46\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xiyw0r-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pdy7esdUj-container\",nodeId:\"pdy7esdUj\",rendersWithMotion:true,scopeId:\"D7Cp06g7I\",children:/*#__PURE__*/_jsx(Phosphor,{color:Pzs4GcH4x,height:\"100%\",iconSearch:\"House\",iconSelection:ET3uJSa1F,id:\"pdy7esdUj\",layoutId:\"pdy7esdUj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-51l42x\",layoutDependency:layoutDependency,layoutId:\"j2KWsV8Pc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-8c755y\",\"data-styles-preset\":\"b0oJbQZyB\",children:\"Integration ecosystem\"})}),className:\"framer-1enpq33\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PLeLihFQm\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Z6hiuC6BW,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",children:\"Track your progress and motivate your efforts everyday.\"})}),className:\"framer-szwljj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"c7mX8Q42J\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:ZfP85W1Qa,verticalAlignment:\"top\",withExternalLayout:true})]}),ZdZM7np2V&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(componentViewport?.height||210)-30,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l1ro1i-container\",layoutDependency:layoutDependency,layoutId:\"RggoqO3oc-container\",nodeId:\"RggoqO3oc\",rendersWithMotion:true,scopeId:\"D7Cp06g7I\",children:/*#__PURE__*/_jsx(CTA,{bVToBLBTS:iHqIagJOF,height:\"100%\",id:\"RggoqO3oc\",KqeH5xil_:Pzs4GcH4x,layoutId:\"RggoqO3oc\",MJWWsEY26:RsSBbXcyG,variant:\"Jt5Su1xNs\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PqP4r.framer-1m9cd1g, .framer-PqP4r .framer-1m9cd1g { display: block; }\",\".framer-PqP4r.framer-1d8svmu { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 210px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 373px; }\",\".framer-PqP4r .framer-xiyw0r-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-PqP4r .framer-51l42x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PqP4r .framer-1enpq33 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PqP4r .framer-szwljj { flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PqP4r .framer-l1ro1i-container { bottom: 0px; flex: none; height: auto; left: 0px; position: absolute; width: auto; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 210\n * @framerIntrinsicWidth 373\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Pzs4GcH4x\":\"color\",\"ET3uJSa1F\":\"icon\",\"Z6hiuC6BW\":\"title\",\"ZfP85W1Qa\":\"text\",\"ZdZM7np2V\":\"cTA\",\"iHqIagJOF\":\"cTA1\",\"RsSBbXcyG\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerD7Cp06g7I=withCSS(Component,css,\"framer-PqP4r\");export default FramerD7Cp06g7I;FramerD7Cp06g7I.displayName=\"Feature Simple\";FramerD7Cp06g7I.defaultProps={height:210,width:373};addPropertyControls(FramerD7Cp06g7I,{Pzs4GcH4x:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color\",type:ControlType.Color},ET3uJSa1F:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Leaf\",description:undefined,hidden:undefined,title:\"Icon\"},Z6hiuC6BW:{defaultValue:\"Integration ecosystem\",displayTextArea:true,title:\"Title\",type:ControlType.String},ZfP85W1Qa:{defaultValue:\"Track your progress and motivate your efforts everyday.\",displayTextArea:true,title:\"Text\",type:ControlType.String},ZdZM7np2V:{defaultValue:true,title:\"CTA\",type:ControlType.Boolean},iHqIagJOF:{defaultValue:\"Learn more\",displayTextArea:false,title:\"CTA\",type:ControlType.String},RsSBbXcyG:{title:\"Link\",type:ControlType.Link}});addFonts(FramerD7Cp06g7I,[{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\"}]},...PhosphorFonts,...CTAFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerD7Cp06g7I\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"210\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"373\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"Pzs4GcH4x\\\":\\\"color\\\",\\\"ET3uJSa1F\\\":\\\"icon\\\",\\\"Z6hiuC6BW\\\":\\\"title\\\",\\\"ZfP85W1Qa\\\":\\\"text\\\",\\\"ZdZM7np2V\\\":\\\"cTA\\\",\\\"iHqIagJOF\\\":\\\"cTA1\\\",\\\"RsSBbXcyG\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./D7Cp06g7I.map", "// Generated by Framer (47dffbb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/gYVd8Kx8M9ufejlp4RwI/mJwdoLb6A9xlaaTuGlm6/PhldXxnWn.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Io33YpLPR2Rc9r938SG5/cDUDP1Oct8VSQEAp7QNP/YVHf1dG9d.js\";const cycleOrder=[\"jBqPsPKyd\",\"hkTbDxNht\"];const serializationHash=\"framer-UW3XL\";const variantClassNames={hkTbDxNht:\"framer-v-11ce6vh\",jBqPsPKyd:\"framer-v-y36eeh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={\"\u26AA\uFE0F Day\":\"jBqPsPKyd\",\"\u26AB\uFE0F Night\":\"hkTbDxNht\"};const getProps=({company,height,id,image,image1,name1,quote,subtitle,subtitle1,visible,width,...props})=>{return{...props,aY3NDFicr:image1??props.aY3NDFicr??{pixelHeight:2700,pixelWidth:2160,src:\"https://framerusercontent.com/images/sMqVvBfBl5KcmlBwot3cCOu0u6c.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/sMqVvBfBl5KcmlBwot3cCOu0u6c.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/sMqVvBfBl5KcmlBwot3cCOu0u6c.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/sMqVvBfBl5KcmlBwot3cCOu0u6c.jpg 2160w\"},bErIHJkdI:quote??props.bErIHJkdI??\"As a seasoned designer always on the lookout for innovative tools, Framer.com instantly grabbed my attention. This powerful web design platform is more than just a design tool - it's a complete ecosystem.\",cbUz736fH:visible??props.cbUz736fH??true,d_UTY0YE0:company??props.d_UTY0YE0??\"Ad Layer\",iblTMwOmJ:subtitle1??props.iblTMwOmJ??\"@mariac3203094\",oVU8J_Br4:name1??props.oVU8J_Br4??\"Fredrik Bayati\",tbHzgMiO7:image??props.tbHzgMiO7??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"jBqPsPKyd\",yhkvJJf0e:subtitle??props.yhkvJJf0e??true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,bErIHJkdI,tbHzgMiO7,aY3NDFicr,oVU8J_Br4,yhkvJJf0e,iblTMwOmJ,d_UTY0YE0,cbUz736fH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jBqPsPKyd\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapyrm1mk=activeVariantCallback(async(...args)=>{setVariant(\"jBqPsPKyd\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-y36eeh\",className,classNames),\"data-border\":true,\"data-framer-name\":\"\u26AA\uFE0F Day\",layoutDependency:layoutDependency,layoutId:\"jBqPsPKyd\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 10px 15px 0px rgba(0, 0, 0, 0.08)\",...style},variants:{hkTbDxNht:{\"--border-color\":\"var(--token-58a904ff-197a-49b3-8356-adaa464e1642, rgba(255, 255, 255, 0.12))\",backgroundColor:\"var(--token-fae2c128-35fb-45de-a6c2-32169f920c68, rgb(20, 20, 20))\"}},...addPropertyOverrides({hkTbDxNht:{\"data-framer-name\":\"\u26AB\uFE0F Night\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1037e4b2-ffb3-4db0-b336-ae293ae05f12, rgb(69, 69, 69)))\"},children:\"As a seasoned designer always on the lookout for innovative tools, Framer.com instantly grabbed my attention. This powerful web design platform is more than just a design tool - it's a complete ecosystem.\"})}),className:\"framer-1b6wbml\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BUu5IzDVA\",style:{\"--extracted-r6o4lv\":\"var(--token-1037e4b2-ffb3-4db0-b336-ae293ae05f12, rgb(69, 69, 69))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:bErIHJkdI,variants:{hkTbDxNht:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hkTbDxNht:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"As a seasoned designer always on the lookout for innovative tools, Framer.com instantly grabbed my attention. This powerful web design platform is more than just a design tool - it's a complete ecosystem.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qrstqz\",layoutDependency:layoutDependency,layoutId:\"Uoid3vYao\",children:[tbHzgMiO7&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2700,intrinsicWidth:2160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+148+12.6),pixelHeight:2700,pixelWidth:2160,sizes:\"42px\",...toResponsiveImage(aY3NDFicr)},className:\"framer-1xtg647\",layoutDependency:layoutDependency,layoutId:\"N0VqZUBJ2\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l0cmg6\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"egieXA515\",onTap:onTapyrm1mk,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-pxf370\",\"data-styles-preset\":\"YVHf1dG9d\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0)))\"},children:\"Maria Cortez\"})}),className:\"framer-1rv1b1e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"M0Iil6Kt0\",style:{\"--extracted-r6o4lv\":\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:oVU8J_Br4,variants:{hkTbDxNht:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hkTbDxNht:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-pxf370\",\"data-styles-preset\":\"YVHf1dG9d\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Maria Cortez\"})})}},baseVariant,gestureVariant)}),yhkvJJf0e&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-pxf370\",\"data-styles-preset\":\"YVHf1dG9d\",style:{\"--framer-text-alignment\":\"left\"},children:\"@mariac3203094\"})}),className:\"framer-geyjjl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SrrA06uXk\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:iblTMwOmJ,variants:{hkTbDxNht:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hkTbDxNht:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-pxf370\",\"data-styles-preset\":\"YVHf1dG9d\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"@mariac3203094\"})})}},baseVariant,gestureVariant)}),cbUz736fH&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-pxf370\",\"data-styles-preset\":\"YVHf1dG9d\",style:{\"--framer-text-alignment\":\"left\"},children:\"Ad Layer\"})}),className:\"framer-1rmcdcb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YfjoKJmP3\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:d_UTY0YE0,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UW3XL.framer-vc85nm, .framer-UW3XL .framer-vc85nm { display: block; }\",\".framer-UW3XL.framer-y36eeh { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 340px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UW3XL .framer-1b6wbml { flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UW3XL .framer-1qrstqz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-UW3XL .framer-1xtg647 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: hidden; position: relative; width: 42px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UW3XL .framer-l0cmg6 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-UW3XL .framer-1rv1b1e, .framer-UW3XL .framer-geyjjl, .framer-UW3XL .framer-1rmcdcb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-UW3XL[data-border=\"true\"]::after, .framer-UW3XL [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 321\n * @framerIntrinsicWidth 340\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hkTbDxNht\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"bErIHJkdI\":\"quote\",\"tbHzgMiO7\":\"image\",\"aY3NDFicr\":\"image1\",\"oVU8J_Br4\":\"name1\",\"yhkvJJf0e\":\"subtitle\",\"iblTMwOmJ\":\"subtitle1\",\"d_UTY0YE0\":\"company\",\"cbUz736fH\":\"visible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerhq1I4tmsL=withCSS(Component,css,\"framer-UW3XL\");export default Framerhq1I4tmsL;Framerhq1I4tmsL.displayName=\"Testimonial Card\";Framerhq1I4tmsL.defaultProps={height:321,width:340};addPropertyControls(Framerhq1I4tmsL,{variant:{options:[\"jBqPsPKyd\",\"hkTbDxNht\"],optionTitles:[\"\u26AA\uFE0F Day\",\"\u26AB\uFE0F Night\"],title:\"Variant\",type:ControlType.Enum},bErIHJkdI:{defaultValue:\"As a seasoned designer always on the lookout for innovative tools, Framer.com instantly grabbed my attention. This powerful web design platform is more than just a design tool - it's a complete ecosystem.\",displayTextArea:true,title:\"Quote\",type:ControlType.String},tbHzgMiO7:{defaultValue:true,title:\"Image\",type:ControlType.Boolean},aY3NDFicr:{__defaultAssetReference:\"data:framer/asset-reference,sMqVvBfBl5KcmlBwot3cCOu0u6c.jpg?originalFilename=photo-1694106348181-7738c01407b4%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwzNHx8cGVyc29uJTIwM2R8ZW58MHx8fHwxNzA4NzAxMzgwfDA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},oVU8J_Br4:{defaultValue:\"Fredrik Bayati\",displayTextArea:false,title:\"Name\",type:ControlType.String},yhkvJJf0e:{defaultValue:true,title:\"Subtitle\",type:ControlType.Boolean},iblTMwOmJ:{defaultValue:\"@mariac3203094\",displayTextArea:false,title:\"Subtitle\",type:ControlType.String},d_UTY0YE0:{defaultValue:\"Ad Layer\",displayTextArea:false,title:\"company\",type:ControlType.String},cbUz736fH:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean}});addFonts(Framerhq1I4tmsL,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerhq1I4tmsL\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"340\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hkTbDxNht\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"321\",\"framerVariables\":\"{\\\"bErIHJkdI\\\":\\\"quote\\\",\\\"tbHzgMiO7\\\":\\\"image\\\",\\\"aY3NDFicr\\\":\\\"image1\\\",\\\"oVU8J_Br4\\\":\\\"name1\\\",\\\"yhkvJJf0e\\\":\\\"subtitle\\\",\\\"iblTMwOmJ\\\":\\\"subtitle1\\\",\\\"d_UTY0YE0\\\":\\\"company\\\",\\\"cbUz736fH\\\":\\\"visible\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (047deaf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CTA from\"https://framerusercontent.com/modules/IoHl2Ito7Vc2H5UD5xy2/4XbNSiNRFsaGICZmTER0/j1KKI8PCr.js\";const CTAFonts=getFonts(CTA);const cycleOrder=[\"qSv85gcGt\",\"pPug_eVy9\"];const serializationHash=\"framer-40xlz\";const variantClassNames={pPug_eVy9:\"framer-v-1rutvts\",qSv85gcGt:\"framer-v-wvoy3h\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??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={\"\u26AA\uFE0F Day\":\"qSv85gcGt\",\"\u26AB\uFE0F Night\":\"pPug_eVy9\"};const getProps=({cTA,cTA1,height,id,rainbow,title,titleOpacity,width,...props})=>{return{...props,GmAhv_WVa:titleOpacity??props.GmAhv_WVa??1,hSgW9f2ir:title??props.hSgW9f2ir??\"Official Framer Resource\",p2xmGpLux:cTA1??props.p2xmGpLux??\"Read more\",ToKaS18SW:cTA??props.ToKaS18SW,variant:humanReadableVariantMap[props.variant]??props.variant??\"qSv85gcGt\",Z69PPXt7v:rainbow??props.Z69PPXt7v??true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,GmAhv_WVa,hSgW9f2ir,ToKaS18SW,p2xmGpLux,Z69PPXt7v,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qSv85gcGt\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-wvoy3h\",className,classNames),\"data-border\":true,\"data-framer-name\":\"\u26AA\uFE0F Day\",layoutDependency:layoutDependency,layoutId:\"qSv85gcGt\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(255, 255, 255, 0.3)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,WebkitBackdropFilter:\"blur(5px)\",...style},variants:{pPug_eVy9:{\"--border-color\":\"var(--token-58a904ff-197a-49b3-8356-adaa464e1642, rgba(255, 255, 255, 0.17))\",backgroundColor:\"var(--token-fae2c128-35fb-45de-a6c2-32169f920c68, rgb(13, 13, 13))\"}},...addPropertyOverrides({pPug_eVy9:{\"data-framer-name\":\"\u26AB\uFE0F Night\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTUwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:\"Official Framer Resource\"})}),className:\"framer-16nfpj1\",fonts:[\"GF;Mulish-500\"],layoutDependency:layoutDependency,layoutId:\"wsg89RklK\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:GmAhv_WVa},text:hSgW9f2ir,variants:{pPug_eVy9:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({pPug_eVy9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTUwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Official Framer Resource\"})})}},baseVariant,gestureVariant)}),ToKaS18SW&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(8+((componentViewport?.height||200)-16-30)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mam2qj-container\",layoutDependency:layoutDependency,layoutId:\"SlNjHsLF6-container\",nodeId:\"SlNjHsLF6\",rendersWithMotion:true,scopeId:\"mZL7XTwt9\",children:/*#__PURE__*/_jsx(CTA,{bVToBLBTS:p2xmGpLux,height:\"100%\",id:\"SlNjHsLF6\",KqeH5xil_:\"rgb(0, 0, 0)\",layoutId:\"SlNjHsLF6\",variant:\"Gh0ciKQXm\",width:\"100%\",...addPropertyOverrides({pPug_eVy9:{KqeH5xil_:\"rgb(255, 255, 255)\"}},baseVariant,gestureVariant)})})}),Z69PPXt7v&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ut4zdb\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"Jz09mgiZj\",style:{background:\"linear-gradient(270deg, rgb(41, 216, 255) 0%, rgb(173, 255, 188) 36.75922015765766%, rgb(255, 253, 130) 66.67546452702703%, rgb(245, 105, 255) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:.3},variants:{pPug_eVy9:{opacity:.9}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-40xlz.framer-xc2zgn, .framer-40xlz .framer-xc2zgn { display: block; }\",\".framer-40xlz.framer-wvoy3h { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 13px 8px 13px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-40xlz .framer-16nfpj1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-40xlz .framer-1mam2qj-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-40xlz .framer-ut4zdb { flex: none; height: 101%; left: calc(49.2917847025496% - 100.56657223796034% / 2); overflow: hidden; position: absolute; top: calc(50.7042253521127% - 101.40845070422534% / 2); width: 101%; will-change: var(--framer-will-change-override, transform); }\",\".framer-40xlz.framer-v-1rutvts .framer-16nfpj1, .framer-40xlz.framer-v-1rutvts .framer-1mam2qj-container { z-index: 0; }\",\".framer-40xlz.framer-v-1rutvts .framer-ut4zdb { left: 0px; mix-blend-mode: multiply; top: 0px; }\",'.framer-40xlz[data-border=\"true\"]::after, .framer-40xlz [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 34\n * @framerIntrinsicWidth 181\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"pPug_eVy9\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"GmAhv_WVa\":\"titleOpacity\",\"hSgW9f2ir\":\"title\",\"ToKaS18SW\":\"cTA\",\"p2xmGpLux\":\"cTA1\",\"Z69PPXt7v\":\"rainbow\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramermZL7XTwt9=withCSS(Component,css,\"framer-40xlz\");export default FramermZL7XTwt9;FramermZL7XTwt9.displayName=\"Tag\";FramermZL7XTwt9.defaultProps={height:34,width:181};addPropertyControls(FramermZL7XTwt9,{variant:{options:[\"qSv85gcGt\",\"pPug_eVy9\"],optionTitles:[\"\u26AA\uFE0F Day\",\"\u26AB\uFE0F Night\"],title:\"Variant\",type:ControlType.Enum},GmAhv_WVa:{defaultValue:1,max:1,min:0,step:.01,title:\"Title Opacity\",type:ControlType.Number},hSgW9f2ir:{defaultValue:\"Official Framer Resource\",displayTextArea:true,title:\"Title\",type:ControlType.String},ToKaS18SW:{defaultValue:false,title:\"CTA\",type:ControlType.Boolean},p2xmGpLux:{defaultValue:\"Read more\",displayTextArea:false,title:\"CTA\",type:ControlType.String},Z69PPXt7v:{defaultValue:true,title:\"Rainbow\",type:ControlType.Boolean}});addFonts(FramermZL7XTwt9,[{explicitInter:true,fonts:[{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaWlGrw-PTY.woff2\",weight:\"500\"}]},...CTAFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermZL7XTwt9\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"34\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pPug_eVy9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"GmAhv_WVa\\\":\\\"titleOpacity\\\",\\\"hSgW9f2ir\\\":\\\"title\\\",\\\"ToKaS18SW\\\":\\\"cTA\\\",\\\"p2xmGpLux\\\":\\\"cTA1\\\",\\\"Z69PPXt7v\\\":\\\"rainbow\\\"}\",\"framerIntrinsicWidth\":\"181\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-TlS42\";const variantClassNames={db35sz_LC:\"framer-v-hlpn34\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"db35sz_LC\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-hlpn34\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"db35sz_LC\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lvq6nb\",layoutDependency:layoutDependency,layoutId:\"gl8gh4QzE\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ovk4ru\",layoutDependency:layoutDependency,layoutId:\"ckFUaUgyV\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:19,intrinsicWidth:105,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-45.6774)/2)+0),pixelHeight:767,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:\"100.7584px\",src:\"https://framerusercontent.com/images/zfSQ1rD27LzObuQkrxDbqixFbDQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zfSQ1rD27LzObuQkrxDbqixFbDQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/zfSQ1rD27LzObuQkrxDbqixFbDQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zfSQ1rD27LzObuQkrxDbqixFbDQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zfSQ1rD27LzObuQkrxDbqixFbDQ.png 2500w\"},className:\"framer-14y1te7\",layoutDependency:layoutDependency,layoutId:\"v8QZeLa8A\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k3p1b8\",layoutDependency:layoutDependency,layoutId:\"dI8DCsmHl\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:19,intrinsicWidth:105,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-45.6774)/2)+0),pixelHeight:254,pixelWidth:2676,positionX:\"center\",positionY:\"center\",sizes:\"99.935px\",src:\"https://framerusercontent.com/images/uOmVJY91m4ROdEJfuRupZRFwZiM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/uOmVJY91m4ROdEJfuRupZRFwZiM.png?scale-down-to=512 512w,https://framerusercontent.com/images/uOmVJY91m4ROdEJfuRupZRFwZiM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uOmVJY91m4ROdEJfuRupZRFwZiM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uOmVJY91m4ROdEJfuRupZRFwZiM.png 2676w\"},className:\"framer-f61xnz\",layoutDependency:layoutDependency,layoutId:\"tu41v0tvu\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c8nbvt\",layoutDependency:layoutDependency,layoutId:\"tgMP1LtXV\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:52.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+0),pixelHeight:600,pixelWidth:1670,positionX:\"center\",positionY:\"center\",sizes:\"99.7584px\",src:\"https://framerusercontent.com/images/jP73VNWHzfgLG6JwirxQFb98.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jP73VNWHzfgLG6JwirxQFb98.png?scale-down-to=512 512w,https://framerusercontent.com/images/jP73VNWHzfgLG6JwirxQFb98.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jP73VNWHzfgLG6JwirxQFb98.png 1670w\"},className:\"framer-bzq8f8\",layoutDependency:layoutDependency,layoutId:\"dzvHLLy6c\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4csnpf\",layoutDependency:layoutDependency,layoutId:\"nKS1ZXVbe\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+0),pixelHeight:517,pixelWidth:3246,positionX:\"center\",positionY:\"center\",sizes:\"99.7584px\",src:\"https://framerusercontent.com/images/GHu6HnxrtuYnFB1mQ7Wo6OH1QPU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GHu6HnxrtuYnFB1mQ7Wo6OH1QPU.png?scale-down-to=512 512w,https://framerusercontent.com/images/GHu6HnxrtuYnFB1mQ7Wo6OH1QPU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GHu6HnxrtuYnFB1mQ7Wo6OH1QPU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GHu6HnxrtuYnFB1mQ7Wo6OH1QPU.png 3246w\"},className:\"framer-nrcfzr\",layoutDependency:layoutDependency,layoutId:\"Aj9Tb5i8P\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u7xilm\",layoutDependency:layoutDependency,layoutId:\"uabQLeLxt\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:19,intrinsicWidth:90,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+0),pixelHeight:600,pixelWidth:3886,positionX:\"center\",positionY:\"center\",sizes:\"100.7584px\",src:\"https://framerusercontent.com/images/Y2HBHeZ9vHA9CviZnknGHIqrP4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Y2HBHeZ9vHA9CviZnknGHIqrP4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y2HBHeZ9vHA9CviZnknGHIqrP4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y2HBHeZ9vHA9CviZnknGHIqrP4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Y2HBHeZ9vHA9CviZnknGHIqrP4.png 3886w\"},className:\"framer-b5be2o\",layoutDependency:layoutDependency,layoutId:\"niEghqrxM\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n34nbv\",layoutDependency:layoutDependency,layoutId:\"wXmj4wLlS\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:15,intrinsicWidth:71,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+0),pixelHeight:353,pixelWidth:1131,positionX:\"center\",positionY:\"center\",sizes:\"79.2584px\",src:\"https://framerusercontent.com/images/4Ac0LNhbAAUWuslytqFMPbutHWM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/4Ac0LNhbAAUWuslytqFMPbutHWM.png?scale-down-to=512 512w,https://framerusercontent.com/images/4Ac0LNhbAAUWuslytqFMPbutHWM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4Ac0LNhbAAUWuslytqFMPbutHWM.png 1131w\"},className:\"framer-jln86\",layoutDependency:layoutDependency,layoutId:\"DYO5wPDCY\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2fyuw7\",layoutDependency:layoutDependency,layoutId:\"q4v5DZlrS\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:15,intrinsicWidth:71,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+0),pixelHeight:600,pixelWidth:3364,positionX:\"center\",positionY:\"center\",sizes:\"96px\",src:\"https://framerusercontent.com/images/LH2KJ0FqPzIoZrUyOIT0cVJOM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/LH2KJ0FqPzIoZrUyOIT0cVJOM.png?scale-down-to=512 512w,https://framerusercontent.com/images/LH2KJ0FqPzIoZrUyOIT0cVJOM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LH2KJ0FqPzIoZrUyOIT0cVJOM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LH2KJ0FqPzIoZrUyOIT0cVJOM.png 3364w\"},className:\"framer-t2jvud\",layoutDependency:layoutDependency,layoutId:\"x8ced8d7U\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uzt8yk\",layoutDependency:layoutDependency,layoutId:\"MWc618gU6\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:15,intrinsicWidth:71,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+0),pixelHeight:600,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"79.7584px\",src:\"https://framerusercontent.com/images/TCFqVpefY7oD4wikCd7fLwPm08.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/TCFqVpefY7oD4wikCd7fLwPm08.png?scale-down-to=512 512w,https://framerusercontent.com/images/TCFqVpefY7oD4wikCd7fLwPm08.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TCFqVpefY7oD4wikCd7fLwPm08.png 1080w\"},className:\"framer-1lh930o\",layoutDependency:layoutDependency,layoutId:\"QO37u0xDP\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-erp848\",layoutDependency:layoutDependency,layoutId:\"ihMHpQcS6\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:15,intrinsicWidth:71,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+(((componentViewport?.height||63)-0)*1*.5079365079365081-25)),pixelHeight:600,pixelWidth:599,positionX:\"center\",positionY:\"center\",sizes:\"80px\",src:\"https://framerusercontent.com/images/BMzymLI7dgeSY0occ0YEIzqjsz4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/BMzymLI7dgeSY0occ0YEIzqjsz4.png 599w\"},className:\"framer-1iuprru\",layoutDependency:layoutDependency,layoutId:\"NiKbqV0yN\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ho41tn\",layoutDependency:layoutDependency,layoutId:\"JzXuBIDMP\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:15,intrinsicWidth:71,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+(((componentViewport?.height||63)-0)*1*.5079365079365081-25)),pixelHeight:600,pixelWidth:2400,positionX:\"center\",positionY:\"center\",sizes:\"80px\",src:\"https://framerusercontent.com/images/qyYtMEtptLHOJJbraqucleTFVM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qyYtMEtptLHOJJbraqucleTFVM.png?scale-down-to=512 512w,https://framerusercontent.com/images/qyYtMEtptLHOJJbraqucleTFVM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qyYtMEtptLHOJJbraqucleTFVM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qyYtMEtptLHOJJbraqucleTFVM.png 2400w\"},className:\"framer-1w6x3oe\",layoutDependency:layoutDependency,layoutId:\"RsPCcexCZ\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pbthm9\",layoutDependency:layoutDependency,layoutId:\"wd61DmEj3\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:15,intrinsicWidth:71,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+(((componentViewport?.height||63)-0)*1*.49206349206349226-24)),pixelHeight:600,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"80px\",src:\"https://framerusercontent.com/images/fY3wQMZajRKu2cOUiBsXwidDdc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fY3wQMZajRKu2cOUiBsXwidDdc.png?scale-down-to=512 512w,https://framerusercontent.com/images/fY3wQMZajRKu2cOUiBsXwidDdc.png 600w\"},className:\"framer-1mckuty\",layoutDependency:layoutDependency,layoutId:\"uuHCsxf6c\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11h66y0\",layoutDependency:layoutDependency,layoutId:\"YNPsYNGgL\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:15,intrinsicWidth:71,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+(((componentViewport?.height||63)-0)*1*.4126984126984129-19)),pixelHeight:600,pixelWidth:864,positionX:\"center\",positionY:\"center\",sizes:\"80px\",src:\"https://framerusercontent.com/images/gnD96pPXlyNYaUW4QJhwFiEP9E.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/gnD96pPXlyNYaUW4QJhwFiEP9E.png?scale-down-to=512 512w,https://framerusercontent.com/images/gnD96pPXlyNYaUW4QJhwFiEP9E.png 864w\"},className:\"framer-1r72qz8\",layoutDependency:layoutDependency,layoutId:\"vSud2y6ic\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-izg6nx\",layoutDependency:layoutDependency,layoutId:\"rh4et7onI\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:15,intrinsicWidth:71,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+(((componentViewport?.height||63)-0)*1*.5079365079365081-25)),pixelHeight:600,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"80px\",src:\"https://framerusercontent.com/images/54MFNfc4HhQa5k02Dvopwpo5MQk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/54MFNfc4HhQa5k02Dvopwpo5MQk.png?scale-down-to=512 512w,https://framerusercontent.com/images/54MFNfc4HhQa5k02Dvopwpo5MQk.png 600w\"},className:\"framer-q35qj2\",layoutDependency:layoutDependency,layoutId:\"MfsxCwmLE\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cy2hua\",layoutDependency:layoutDependency,layoutId:\"PUbd0Ifel\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:15,intrinsicWidth:71,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+(((componentViewport?.height||63)-0)*1*.5079365079365081-25)),pixelHeight:600,pixelWidth:2850,positionX:\"center\",positionY:\"center\",sizes:\"80px\",src:\"https://framerusercontent.com/images/GgnVFL6xDWhpIVOSAxwrWdWMgVo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GgnVFL6xDWhpIVOSAxwrWdWMgVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/GgnVFL6xDWhpIVOSAxwrWdWMgVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GgnVFL6xDWhpIVOSAxwrWdWMgVo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GgnVFL6xDWhpIVOSAxwrWdWMgVo.png 2850w\"},className:\"framer-1av3urh\",layoutDependency:layoutDependency,layoutId:\"xWeYlpfow\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5libko\",layoutDependency:layoutDependency,layoutId:\"xUm9_GucH\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:15,intrinsicWidth:71,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+(((componentViewport?.height||63)-0)*1*.5079365079365081-25)),pixelHeight:600,pixelWidth:2645,positionX:\"center\",positionY:\"center\",sizes:\"106px\",src:\"https://framerusercontent.com/images/lTgacTV3Iq0iboIv1iftb50O9s.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/lTgacTV3Iq0iboIv1iftb50O9s.png?scale-down-to=512 512w,https://framerusercontent.com/images/lTgacTV3Iq0iboIv1iftb50O9s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lTgacTV3Iq0iboIv1iftb50O9s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lTgacTV3Iq0iboIv1iftb50O9s.png 2645w\"},className:\"framer-1q4qwwo\",layoutDependency:layoutDependency,layoutId:\"g4K7UZGiO\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7bjkfw\",layoutDependency:layoutDependency,layoutId:\"HRLdeeKxs\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:15,intrinsicWidth:71,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+(((componentViewport?.height||63)-0)*1*.49206349206349226-24)),pixelHeight:600,pixelWidth:750,positionX:\"center\",positionY:\"center\",sizes:\"68px\",src:\"https://framerusercontent.com/images/YJaNWdcnV5al6VodpVi245ko6yg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YJaNWdcnV5al6VodpVi245ko6yg.png?scale-down-to=512 512w,https://framerusercontent.com/images/YJaNWdcnV5al6VodpVi245ko6yg.png 750w\"},className:\"framer-c1w1yt\",layoutDependency:layoutDependency,layoutId:\"Gb9A4c2Mz\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nyufg0\",layoutDependency:layoutDependency,layoutId:\"z2FeYeN9b\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:15,intrinsicWidth:71,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+(((componentViewport?.height||63)-0)*1*.5079365079365081-25)),pixelHeight:600,pixelWidth:1359,positionX:\"center\",positionY:\"center\",sizes:\"119px\",src:\"https://framerusercontent.com/images/eJ1Ch3st1JbBN29Qic2cndQwgrc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/eJ1Ch3st1JbBN29Qic2cndQwgrc.png?scale-down-to=512 512w,https://framerusercontent.com/images/eJ1Ch3st1JbBN29Qic2cndQwgrc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eJ1Ch3st1JbBN29Qic2cndQwgrc.png 1359w\"},className:\"framer-hx9rfq\",layoutDependency:layoutDependency,layoutId:\"MKNRmB1DL\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15oqlpb\",layoutDependency:layoutDependency,layoutId:\"ZuLBKOZX2\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:15,intrinsicWidth:71,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+(((componentViewport?.height||63)-0)*1*.5079365079365081-25)),pixelHeight:600,pixelWidth:874,positionX:\"center\",positionY:\"center\",sizes:\"99px\",src:\"https://framerusercontent.com/images/Z8T6I1BiXvGHzDe3BIzc6t2hW4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Z8T6I1BiXvGHzDe3BIzc6t2hW4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z8T6I1BiXvGHzDe3BIzc6t2hW4.png 874w\"},className:\"framer-19gxd0d\",layoutDependency:layoutDependency,layoutId:\"mMzTetfws\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l9vtvi\",layoutDependency:layoutDependency,layoutId:\"rzA9ehJMf\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:15,intrinsicWidth:71,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+(((componentViewport?.height||63)-0)*1*.5079365079365081-25)),pixelHeight:600,pixelWidth:2564,positionX:\"center\",positionY:\"center\",sizes:\"146px\",src:\"https://framerusercontent.com/images/vCtNCUsuqo3UjHXzF8REKiBAss.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/vCtNCUsuqo3UjHXzF8REKiBAss.png?scale-down-to=512 512w,https://framerusercontent.com/images/vCtNCUsuqo3UjHXzF8REKiBAss.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vCtNCUsuqo3UjHXzF8REKiBAss.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vCtNCUsuqo3UjHXzF8REKiBAss.png 2564w\"},className:\"framer-uh4sjg\",layoutDependency:layoutDependency,layoutId:\"tocxkaXtn\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w48c77\",layoutDependency:layoutDependency,layoutId:\"Ugfu92Ymp\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:15,intrinsicWidth:71,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+(((componentViewport?.height||63)-0)*1*.5079365079365081-25)),pixelHeight:544,pixelWidth:4039,positionX:\"center\",positionY:\"center\",sizes:\"128px\",src:\"https://framerusercontent.com/images/btfzw3hUCLRpyuY89TRHPMBlhaI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/btfzw3hUCLRpyuY89TRHPMBlhaI.png?scale-down-to=512 512w,https://framerusercontent.com/images/btfzw3hUCLRpyuY89TRHPMBlhaI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/btfzw3hUCLRpyuY89TRHPMBlhaI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/btfzw3hUCLRpyuY89TRHPMBlhaI.png 4039w\"},className:\"framer-1raf4i6\",layoutDependency:layoutDependency,layoutId:\"Yf2sUWbdJ\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-df42t1\",layoutDependency:layoutDependency,layoutId:\"IPVZ9HORT\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:15,intrinsicWidth:71,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||63)-0-((componentViewport?.height||63)-0)*1)/2)+(((componentViewport?.height||63)-0)*1*.5079365079365081-25)),pixelHeight:600,pixelWidth:1004,positionX:\"center\",positionY:\"center\",sizes:\"111px\",src:\"https://framerusercontent.com/images/5KMrgFDLy8dQaCDiWgaMdGVZ3I.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5KMrgFDLy8dQaCDiWgaMdGVZ3I.png?scale-down-to=512 512w,https://framerusercontent.com/images/5KMrgFDLy8dQaCDiWgaMdGVZ3I.png 1004w\"},className:\"framer-1j103ee\",layoutDependency:layoutDependency,layoutId:\"K7Y_lhNTG\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cfx7fd\",layoutDependency:layoutDependency,layoutId:\"R5X1HyEn0\"})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TlS42.framer-sfwbf1, .framer-TlS42 .framer-sfwbf1 { display: block; }\",\".framer-TlS42.framer-hlpn34 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: 63px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 2788px; }\",\".framer-TlS42 .framer-1lvq6nb, .framer-TlS42 .framer-1ovk4ru, .framer-TlS42 .framer-cfx7fd { flex: none; height: 46px; position: relative; width: 104px; }\",\".framer-TlS42 .framer-14y1te7, .framer-TlS42 .framer-f61xnz, .framer-TlS42 .framer-b5be2o { bottom: 0px; flex: none; left: 0px; position: absolute; right: 3px; top: 0px; }\",\".framer-TlS42 .framer-1k3p1b8 { flex: none; height: 46px; position: relative; width: 103px; }\",\".framer-TlS42 .framer-c8nbvt, .framer-TlS42 .framer-4csnpf, .framer-TlS42 .framer-1u7xilm, .framer-TlS42 .framer-n34nbv, .framer-TlS42 .framer-uzt8yk { flex: none; height: 100%; position: relative; width: 104px; }\",\".framer-TlS42 .framer-bzq8f8, .framer-TlS42 .framer-nrcfzr { bottom: 0px; flex: none; left: 0px; position: absolute; right: 4px; top: 0px; }\",\".framer-TlS42 .framer-jln86 { bottom: 0px; flex: none; left: 12px; position: absolute; right: 13px; top: 0px; }\",\".framer-TlS42 .framer-2fyuw7 { flex: none; height: 100%; position: relative; width: 120px; }\",\".framer-TlS42 .framer-t2jvud, .framer-TlS42 .framer-1lh930o { bottom: 0px; flex: none; left: 12px; position: absolute; right: 12px; top: 0px; }\",\".framer-TlS42 .framer-erp848 { flex: none; height: 100%; position: relative; width: 92px; }\",\".framer-TlS42 .framer-1iuprru, .framer-TlS42 .framer-1w6x3oe, .framer-TlS42 .framer-1av3urh { flex: none; height: 50px; left: calc(46.60194174757284% - 80px / 2); position: absolute; top: calc(50.79365079365081% - 50px / 2); width: 80px; }\",\".framer-TlS42 .framer-ho41tn { flex: none; height: 100%; position: relative; width: 93px; }\",\".framer-TlS42 .framer-1pbthm9 { flex: none; height: 100%; position: relative; width: 84px; }\",\".framer-TlS42 .framer-1mckuty { flex: none; height: 48px; left: calc(46.37681159420292% - 80px / 2); position: absolute; top: calc(49.20634920634922% - 48px / 2); width: 80px; }\",\".framer-TlS42 .framer-11h66y0, .framer-TlS42 .framer-izg6nx { flex: none; height: 100%; position: relative; width: 87px; }\",\".framer-TlS42 .framer-1r72qz8 { flex: none; height: 38px; left: calc(46.15384615384618% - 80px / 2); position: absolute; top: calc(41.26984126984129% - 38px / 2); width: 80px; }\",\".framer-TlS42 .framer-q35qj2 { flex: none; height: 50px; left: calc(46.37681159420292% - 80px / 2); position: absolute; top: calc(50.79365079365081% - 50px / 2); width: 80px; }\",\".framer-TlS42 .framer-1cy2hua, .framer-TlS42 .framer-7bjkfw { flex: none; height: 100%; position: relative; width: 100px; }\",\".framer-TlS42 .framer-5libko { flex: none; height: 100%; position: relative; width: 115px; }\",\".framer-TlS42 .framer-1q4qwwo { flex: none; height: 50px; left: calc(50.43478260869567% - 106px / 2); position: absolute; top: calc(50.79365079365081% - 50px / 2); width: 106px; }\",\".framer-TlS42 .framer-c1w1yt { flex: none; height: 48px; left: calc(50.00000000000002% - 68px / 2); position: absolute; top: calc(49.20634920634922% - 48px / 2); width: 68px; }\",\".framer-TlS42 .framer-nyufg0 { flex: none; height: 100%; position: relative; width: 134px; }\",\".framer-TlS42 .framer-hx9rfq { flex: none; height: 50px; left: calc(50.00000000000002% - 119px / 2); position: absolute; top: calc(50.79365079365081% - 50px / 2); width: 119px; }\",\".framer-TlS42 .framer-15oqlpb { flex: none; height: 100%; position: relative; width: 107px; }\",\".framer-TlS42 .framer-19gxd0d { flex: none; height: 50px; left: calc(50.00000000000002% - 99px / 2); position: absolute; top: calc(50.79365079365081% - 50px / 2); width: 99px; }\",\".framer-TlS42 .framer-l9vtvi { flex: none; height: 100%; position: relative; width: 152px; }\",\".framer-TlS42 .framer-uh4sjg { flex: none; height: 50px; left: calc(50.00000000000002% - 146px / 2); position: absolute; top: calc(50.79365079365081% - 50px / 2); width: 146px; }\",\".framer-TlS42 .framer-1w48c77, .framer-TlS42 .framer-df42t1 { flex: none; height: 100%; position: relative; width: 127px; }\",\".framer-TlS42 .framer-1raf4i6 { flex: none; height: 50px; left: calc(49.60629921259845% - 128px / 2); position: absolute; top: calc(50.79365079365081% - 50px / 2); width: 128px; }\",\".framer-TlS42 .framer-1j103ee { flex: none; height: 50px; left: calc(42.5196850393701% - 111px / 2); position: absolute; top: calc(50.79365079365081% - 50px / 2); width: 111px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 63\n * @framerIntrinsicWidth 2788\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framero_S8TyKF5=withCSS(Component,css,\"framer-TlS42\");export default Framero_S8TyKF5;Framero_S8TyKF5.displayName=\"LOGOS\";Framero_S8TyKF5.defaultProps={height:63,width:2788};addFonts(Framero_S8TyKF5,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framero_S8TyKF5\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"2788\",\"framerIntrinsicHeight\":\"63\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./o_S8TyKF5.map", "// Generated by Framer (047deaf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Io33YpLPR2Rc9r938SG5/cDUDP1Oct8VSQEAp7QNP/YVHf1dG9d.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const serializationHash=\"framer-axeLa\";const variantClassNames={O6CnPI41P:\"framer-v-1u8gklm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({color,height,icon,id,title,width,...props})=>{return{...props,jTcf_EQ_W:title??props.jTcf_EQ_W??\"Up to 5 project members\",pbavLymla:icon??props.pbavLymla??\"Check\",T2CsNbFcm:color??props.T2CsNbFcm??\"rgb(0, 0, 0)\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,T2CsNbFcm,pbavLymla,jTcf_EQ_W,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"O6CnPI41P\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1u8gklm\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"O6CnPI41P\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14q4ixv-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"hjLesdZF5-container\",nodeId:\"hjLesdZF5\",rendersWithMotion:true,scopeId:\"ZKjbJbBS1\",children:/*#__PURE__*/_jsx(Phosphor,{color:T2CsNbFcm,height:\"100%\",iconSearch:\"House\",iconSelection:pbavLymla,id:\"hjLesdZF5\",layoutId:\"hjLesdZF5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-pxf370\",\"data-styles-preset\":\"YVHf1dG9d\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0)))\"},children:\"Up to 5 project members\"})}),className:\"framer-8wyol0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iMsr23fyA\",style:{\"--extracted-r6o4lv\":\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:jTcf_EQ_W,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-axeLa.framer-1uoy245, .framer-axeLa .framer-1uoy245 { display: block; }\",\".framer-axeLa.framer-1u8gklm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-axeLa .framer-14q4ixv-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-axeLa .framer-8wyol0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 22\n * @framerIntrinsicWidth 174\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"T2CsNbFcm\":\"color\",\"pbavLymla\":\"icon\",\"jTcf_EQ_W\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZKjbJbBS1=withCSS(Component,css,\"framer-axeLa\");export default FramerZKjbJbBS1;FramerZKjbJbBS1.displayName=\"Feature List\";FramerZKjbJbBS1.defaultProps={height:22,width:174};addPropertyControls(FramerZKjbJbBS1,{T2CsNbFcm:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color\",type:ControlType.Color},pbavLymla:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Check\",description:undefined,hidden:undefined,title:\"Icon\"},jTcf_EQ_W:{defaultValue:\"Up to 5 project members\",displayTextArea:true,title:\"Title\",type:ControlType.String}});addFonts(FramerZKjbJbBS1,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZKjbJbBS1\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"174\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"T2CsNbFcm\\\":\\\"color\\\",\\\"pbavLymla\\\":\\\"icon\\\",\\\"jTcf_EQ_W\\\":\\\"title\\\"}\",\"framerIntrinsicHeight\":\"22\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (eb93fa7)\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,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import FeatureSimple from\"#framer/local/canvasComponent/D7Cp06g7I/D7Cp06g7I.js\";import GetTheMostBluebox from\"#framer/local/canvasComponent/F68aRHBUn/F68aRHBUn.js\";import Button from\"#framer/local/canvasComponent/g0qtMSL1z/g0qtMSL1z.js\";import TestimonialCard from\"#framer/local/canvasComponent/hq1I4tmsL/hq1I4tmsL.js\";import Header from\"#framer/local/canvasComponent/MHHwtatMr/MHHwtatMr.js\";import Tag from\"#framer/local/canvasComponent/mZL7XTwt9/mZL7XTwt9.js\";import LOGOS from\"#framer/local/canvasComponent/o_S8TyKF5/o_S8TyKF5.js\";import Footer from\"#framer/local/canvasComponent/VeheTyp0u/VeheTyp0u.js\";import FeatureList from\"#framer/local/canvasComponent/ZKjbJbBS1/ZKjbJbBS1.js\";import Nyheter from\"#framer/local/collection/PqPrcRKFo/PqPrcRKFo.js\";import*as sharedStyle4 from\"#framer/local/css/agY2eVhZN/agY2eVhZN.js\";import*as sharedStyle5 from\"#framer/local/css/npJOA9tz1/npJOA9tz1.js\";import*as sharedStyle3 from\"#framer/local/css/PhldXxnWn/PhldXxnWn.js\";import*as sharedStyle1 from\"#framer/local/css/PhMIq4ozm/PhMIq4ozm.js\";import*as sharedStyle2 from\"#framer/local/css/RMqVaai1F/RMqVaai1F.js\";import*as sharedStyle from\"#framer/local/css/WP6eAjcnm/WP6eAjcnm.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderFonts=getFonts(Header);const ButtonFonts=getFonts(Button);const SlideshowFonts=getFonts(Slideshow);const MotionDivWithFX=withFX(motion.div);const TickerFonts=getFonts(Ticker);const ContainerWithFX=withFX(Container);const FeatureListFonts=getFonts(FeatureList);const TagFonts=getFonts(Tag);const TestimonialCardFonts=getFonts(TestimonialCard);const LOGOSFonts=getFonts(LOGOS);const FeatureSimpleFonts=getFonts(FeatureSimple);const GetTheMostBlueboxFonts=getFonts(GetTheMostBluebox);const FooterFonts=getFonts(Footer);const breakpoints={O9rZ4zP3d:\"(min-width: 1200px)\",qyoIYLLVM:\"(max-width: 809px)\",VO3UWuvPo:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-dOh44\";const variantClassNames={O9rZ4zP3d:\"framer-v-1xegpgc\",qyoIYLLVM:\"framer-v-1ubdqy9\",VO3UWuvPo:\"framer-v-d3knhe\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={bounce:0,delay:.075,duration:.4,type:\"spring\"};const textEffect={effect:animation,startDelay:.3,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition3,x:0,y:50};const transition4={bounce:.2,delay:.5,duration:.4,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition4,x:0,y:50};const transition5={bounce:.2,delay:1,duration:.4,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition5,x:0,y:50};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"O4BeD8JUt\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"O9rZ4zP3d\",Phone:\"qyoIYLLVM\",Tablet:\"VO3UWuvPo\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"O9rZ4zP3d\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,s752TJ9vCO4BeD8JUt,TWVnzUt6uO4BeD8JUt,GoqqMAJDnO4BeD8JUt,MBpEXgGQlO4BeD8JUt,baQjlBpPbO4BeD8JUt,idO4BeD8JUt,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"qyoIYLLVM\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"qyoIYLLVM\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"VO3UWuvPo\",\"qyoIYLLVM\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"VO3UWuvPo\",\"qyoIYLLVM\"].includes(baseVariant))return true;return false;};const activeLocaleCode=useLocaleCode();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"O9rZ4zP3d\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1xegpgc\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{height:81},VO3UWuvPo:{width:\"810px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1obm1hv-container\",nodeId:\"N78lZ9cG2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{variant:\"YLfNkl9py\"},VO3UWuvPo:{variant:\"r88ThBVws\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"N78lZ9cG2\",layoutId:\"N78lZ9cG2\",style:{height:\"100%\",width:\"100%\"},variant:\"kMrUQxfip\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ot4m1r\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7ur2qq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{effect:undefined,transformTemplate:undefined},VO3UWuvPo:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3z8xb3\",\"data-styles-preset\":\"WP6eAjcnm\",children:\"Creative Ad Management Like Never Before\"})}),className:\"framer-rizzzo\",effect:textEffect,fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10vecjz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{transformTemplate:undefined},VO3UWuvPo:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hyz5t5\",\"data-styles-preset\":\"PhMIq4ozm\",children:\"Say bye-bye to unnecessary kinks in the production chain. With Ad Layer, you can create thousands of relevant ads in a few minutes, with no creative limits.\"})}),className:\"framer-1pdahl4\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"carDcP3mk\"},implicitPathVariables:undefined},{href:{webPageId:\"carDcP3mk\"},implicitPathVariables:undefined},{href:{webPageId:\"carDcP3mk\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+91+0+74.8+18+197},VO3UWuvPo:{y:(componentViewport?.y||0)+0+127+10+197-48}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"185px\",y:(componentViewport?.y||0)+0+127+0+217-73,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-eupjj4-container\",nodeId:\"tLCuWEBr5\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{X0Ua94cyL:resolvedLinks[2]},VO3UWuvPo:{X0Ua94cyL:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{gPjCJwvgK:true,height:\"100%\",id:\"tLCuWEBr5\",J9RlbPg2n:\"Book a  free demo\",layoutId:\"tLCuWEBr5\",style:{width:\"100%\"},variant:\"AZ0Fmbh_2\",width:\"100%\",X0Ua94cyL:resolvedLinks[0]})})})})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bgkzuj-container hidden-1xegpgc hidden-d3knhe\",\"data-framer-name\":\"Slideshow_mobile\",id:\"1bgkzuj\",isAuthoredByUser:true,isModuleExternal:true,name:\"Slideshow_mobile\",nodeId:\"U_qpmeAUt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"var(--token-82008375-345c-4b07-af5e-42649ba61d47, rgb(26, 184, 210))\",arrowGap:10,arrowPadding:-3,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:58,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:30,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:.75,effectsPerspective:1100,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:.85,fadeContent:false,fadeInset:0,fadeWidth:22,overflow:true},gap:0,height:\"100%\",id:\"U_qpmeAUt\",intervalControl:6,itemAmount:1,layoutId:\"U_qpmeAUt\",name:\"Slideshow_mobile\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19y2tn0\",\"data-border\":true,\"data-framer-name\":\"Ad Builder\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7abcgg\",\"data-styles-preset\":\"RMqVaai1F\",style:{\"--framer-text-alignment\":\"left\"},children:\"Ad Builder\"})}),className:\"framer-1sfzmkc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",children:\"Design freely with drag and drop functions, along with powerful tools for animations and premade guidelines for producing social ads. \"})}),className:\"framer-1q28bz0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1868,pixelWidth:2788,positionX:\"left\",positionY:\"top\",sizes:\"330px\",src:\"https://framerusercontent.com/images/FpVaq4DBfxNpnlATvYs8dW34.png\",srcSet:\"https://framerusercontent.com/images/FpVaq4DBfxNpnlATvYs8dW34.png?scale-down-to=512 512w,https://framerusercontent.com/images/FpVaq4DBfxNpnlATvYs8dW34.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FpVaq4DBfxNpnlATvYs8dW34.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FpVaq4DBfxNpnlATvYs8dW34.png 2788w\"},className:\"framer-wlhrid\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-om6a5r\",\"data-border\":true,\"data-framer-name\":\"Campaigns\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7abcgg\",\"data-styles-preset\":\"RMqVaai1F\",style:{\"--framer-text-alignment\":\"left\"},children:\"Campaigns\"})}),className:\"framer-g8qg74\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",children:\"Scale campaigns with a few clicks, use the campaign tool to mass produce different messages or languages either manually or fetched from a feed.\"})}),className:\"framer-1h3dqow\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2030,pixelWidth:2710,sizes:\"330px\",src:\"https://framerusercontent.com/images/PJpOFtZzgiqYJzFCbv34Wo5nhE.png\",srcSet:\"https://framerusercontent.com/images/PJpOFtZzgiqYJzFCbv34Wo5nhE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PJpOFtZzgiqYJzFCbv34Wo5nhE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PJpOFtZzgiqYJzFCbv34Wo5nhE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/PJpOFtZzgiqYJzFCbv34Wo5nhE.png 2710w\"},className:\"framer-zm7l9u\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vu3zr\",\"data-border\":true,\"data-framer-name\":\"Review\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7abcgg\",\"data-styles-preset\":\"RMqVaai1F\",style:{\"--framer-text-alignment\":\"left\"},children:\"Review\"})}),className:\"framer-lg4gf1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",children:\"Get direct approval or comments on your creatives with Ad Layer Review Hub, collect all pending reviews in one view and send feedback direct to the creator.\"})}),className:\"framer-9bsws6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1632,pixelWidth:2388,sizes:\"330px\",src:\"https://framerusercontent.com/images/k2izLAwdVV3qvmnIphpUaLAhYs4.png\",srcSet:\"https://framerusercontent.com/images/k2izLAwdVV3qvmnIphpUaLAhYs4.png?scale-down-to=512 512w,https://framerusercontent.com/images/k2izLAwdVV3qvmnIphpUaLAhYs4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/k2izLAwdVV3qvmnIphpUaLAhYs4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/k2izLAwdVV3qvmnIphpUaLAhYs4.png 2388w\"},className:\"framer-4oh2c5\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c5k864\",\"data-border\":true,\"data-framer-name\":\"Publish\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7abcgg\",\"data-styles-preset\":\"RMqVaai1F\",style:{\"--framer-text-alignment\":\"left\"},children:\"Publish\"})}),className:\"framer-33eq2l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",children:\"Export your creatives with a push of a button, either download the creative or push it directly into the platform of your choice with our powerful suite of APIs.\"})}),className:\"framer-hi19hl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1384,pixelWidth:2436,sizes:\"330px\",src:\"https://framerusercontent.com/images/LqXu38sgyr3AntSlikkHdQ2XcdM.png\",srcSet:\"https://framerusercontent.com/images/LqXu38sgyr3AntSlikkHdQ2XcdM.png?scale-down-to=512 512w,https://framerusercontent.com/images/LqXu38sgyr3AntSlikkHdQ2XcdM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LqXu38sgyr3AntSlikkHdQ2XcdM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LqXu38sgyr3AntSlikkHdQ2XcdM.png 2436w\"},className:\"framer-yf7kuf\"})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{bounce:0,delay:0,duration:1.5,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jsspkr-container hidden-1ubdqy9\",id:\"1jsspkr\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QdkCCe0ha\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{dragControl:true}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-82008375-345c-4b07-af5e-42649ba61d47, rgb(26, 184, 210))\",arrowGap:10,arrowPadding:-17,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:58,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:30,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:.75,effectsPerspective:1100,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:.85,fadeContent:false,fadeInset:0,fadeWidth:22,overflow:true},gap:0,height:\"100%\",id:\"QdkCCe0ha\",intervalControl:6,itemAmount:1,layoutId:\"QdkCCe0ha\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-82008375-345c-4b07-af5e-42649ba61d47, rgb(26, 184, 210))\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:18,dotsInset:-19,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b0t7fg\",\"data-border\":true,\"data-framer-name\":\"Ad Builder\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7abcgg\",\"data-styles-preset\":\"RMqVaai1F\",style:{\"--framer-text-alignment\":\"left\"},children:\"Ad Builder\"})}),className:\"framer-13wzjii\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",children:\"Design freely with drag and drop functions, along with powerful tools for animations and premade guidelines for producing social ads. \"})}),className:\"framer-w70bju\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ad Layer Ad Builder Creative Design Tool\",fit:\"fill\",pixelHeight:997,pixelWidth:1200,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/TijVL9vYgesXMJXKeGTDQdPrics.jpg?scale-down-to=1024\"},className:\"framer-kzj5el\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u91144\",\"data-border\":true,\"data-framer-name\":\"Campaigns\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7abcgg\",\"data-styles-preset\":\"RMqVaai1F\",style:{\"--framer-text-alignment\":\"left\"},children:\"Campaigns\"})}),className:\"framer-4saxru\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",children:\"Scale campaigns with a few clicks. Use the campaign tool to mass produce different messages or languages either manually or fetched from a feed.\"})}),className:\"framer-dcv2aw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"ad layer scale digital advertising\",fit:\"fill\",pixelHeight:2030,pixelWidth:2710,src:\"https://framerusercontent.com/images/PJpOFtZzgiqYJzFCbv34Wo5nhE.png?scale-down-to=1024\"},className:\"framer-vclehd\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i3e66d\",\"data-border\":true,\"data-framer-name\":\"Review\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7abcgg\",\"data-styles-preset\":\"RMqVaai1F\",style:{\"--framer-text-alignment\":\"left\"},children:\"Review\"})}),className:\"framer-zz4qnv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",children:\"Get direct approval or comments on your creatives with Ad Layer Review Hub. Collect all pending reviews in one view and send feedback direct to the creator.\"})}),className:\"framer-buy85p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"ad layer creative management platform review hub\",fit:\"fill\",pixelHeight:1632,pixelWidth:2388,src:\"https://framerusercontent.com/images/k2izLAwdVV3qvmnIphpUaLAhYs4.png?scale-down-to=1024\"},className:\"framer-4ir68s\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1goa1ro\",\"data-border\":true,\"data-framer-name\":\"Publish\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7abcgg\",\"data-styles-preset\":\"RMqVaai1F\",style:{\"--framer-text-alignment\":\"left\"},children:\"Publish\"})}),className:\"framer-1pc5p60\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",children:\"Export your creatives with a push of a button; either download the creative or push it directly into the platform of your choice with our powerful suite of APIs.\"})}),className:\"framer-sctaai\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"ad layer cmp api publish\",fit:\"fill\",pixelHeight:1395,pixelWidth:2064,src:\"https://framerusercontent.com/images/fO8q6qNlaSWySp40MUEpNpmhzGs.png?scale-down-to=1024\"},className:\"framer-1uxznrc\"})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{bounce:0,delay:0,duration:1.5,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ybdw3\",\"data-framer-name\":\"Features Big Day\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-185m556\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7abcgg\",\"data-styles-preset\":\"RMqVaai1F\",children:\"Don\u2019t Waste Time or Talent\"})}),className:\"framer-1pwsxve\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hyz5t5\",\"data-styles-preset\":\"PhMIq4ozm\",children:\"Centralize your entire marketing production workflow with Ad Layer. From design and editing to mass production, approvals, and publishing, it all happens in one streamlined platform.\"})}),className:\"framer-1qfc8k3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hcufb\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1amzfu1\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{background:{alt:\"scale digital ad campaigns effortlessly\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+919.8+0+290.2+0+0+10+0),pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/XcldQJ2P2Ib3oNFutir9oM0xCkI.jpg?scale-down-to=512\"}},VO3UWuvPo:{background:{alt:\"scale digital ad campaigns effortlessly\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+20+276.2+0+10+0),pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/XcldQJ2P2Ib3oNFutir9oM0xCkI.jpg?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"scale digital ad campaigns effortlessly\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+20+290.2+0+20+0),pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/XcldQJ2P2Ib3oNFutir9oM0xCkI.jpg?scale-down-to=512\"},className:\"framer-d7bnft\",\"data-framer-name\":\"cube\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ucoa6c\",\"data-styles-preset\":\"agY2eVhZN\",children:\"Scale Your Creative Production\"})}),className:\"framer-w5gn6a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",children:\"Go from a single format, channel, or message to a complete, multi-market campaign in just a few clicks. Ad Layer empowers designers to create freely, then scale effortlessly across channels, audiences, and markets without compromising on quality or creativity.\"})}),className:\"framer-kgfm35\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-912mlq\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{background:{alt:\"streamline digital advertising workflow with ad layer\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+919.8+0+290.2+0+514.4+10+0),pixelHeight:2200,pixelWidth:2200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SJqpTzkWL0SfAmzeAJEmvrj9dk.png?scale-down-to=512\"}},VO3UWuvPo:{background:{alt:\"streamline digital advertising workflow with ad layer\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+20+276.2+0+10+0),pixelHeight:2200,pixelWidth:2200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SJqpTzkWL0SfAmzeAJEmvrj9dk.png?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"streamline digital advertising workflow with ad layer\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+20+290.2+0+20+0),pixelHeight:2200,pixelWidth:2200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SJqpTzkWL0SfAmzeAJEmvrj9dk.png?scale-down-to=512\"},className:\"framer-16t7h3h\",\"data-framer-name\":\"star\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ucoa6c\",\"data-styles-preset\":\"agY2eVhZN\",children:\"Work Smarter, Not Harder\"})}),className:\"framer-1ubqlkj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",children:\"Cut out the time sinks and focus on what matters. Ad Layer streamlines the entire creative workflow\u2014from removing repetitive tasks like copy-pasting and asset handling to launching campaigns with instant API publishing and a seamless review interface.\"})}),className:\"framer-pvjhxj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1010hw3\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{background:{alt:\"optimize boost campaign efficiency\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+919.8+0+290.2+0+1056.8+10+0),pixelHeight:706,pixelWidth:670,src:\"https://framerusercontent.com/images/cc30OSxl2Et93SVBg3oCJ8UcKQM.png?scale-down-to=512\"}},VO3UWuvPo:{background:{alt:\"optimize boost campaign efficiency\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+20+276.2+0+10+0),pixelHeight:706,pixelWidth:670,src:\"https://framerusercontent.com/images/cc30OSxl2Et93SVBg3oCJ8UcKQM.png?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"optimize boost campaign efficiency\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+20+290.2+0+20+0),pixelHeight:706,pixelWidth:670,src:\"https://framerusercontent.com/images/cc30OSxl2Et93SVBg3oCJ8UcKQM.png?scale-down-to=512\"},className:\"framer-1efi0fr\",\"data-framer-name\":\"cube\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ucoa6c\",\"data-styles-preset\":\"agY2eVhZN\",children:\"Supercharge Your Campaign Performance\"})}),className:\"framer-1nwzcbp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",children:\"Launch faster, communicate more, and optimize continuously. Ad Layer boosts campaign efficiency with shorter time to market and greater creative flexibility, and our experts are ready to help you tailor the setup for your team\u2019s unique workflow.\"})}),className:\"framer-1pfldas\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16lrl6d\",\"data-framer-name\":\"CHANNELS\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1chwxrm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ur6v9c\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7abcgg\",\"data-styles-preset\":\"RMqVaai1F\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Create All Ads - for All Channels\"})})}),className:\"framer-10gzxou\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hyz5t5\",\"data-styles-preset\":\"PhMIq4ozm\",children:[\"Design and scale ads and videos in no time, across all channels and markets \u2013 using a single interface.\",/*#__PURE__*/_jsx(\"br\",{}),\"Create and publish thousands of ads in minutes - automate further using a feed.\"]})}),className:\"framer-1xwdyf5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z684ui\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ht85dd hidden-d3knhe hidden-1ubdqy9\",\"data-framer-name\":\"4 column text block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w4cheu\",\"data-styles-preset\":\"npJOA9tz1\",style:{\"--framer-text-color\":\"var(--token-1037e4b2-ffb3-4db0-b336-ae293ae05f12, rgb(69, 69, 69))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Display\"})})}),className:\"framer-e6mfju\",fonts:[\"Inter\",\"Inter-Bold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"advanced html5 display ads\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1972.2+0+0+10+236+10+40),pixelHeight:300,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JbYnVc84cAoLEJEnks3rdKRi4.png\"},className:\"framer-1qtghcx\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Advanced animated HTML5 ads for all networks with no coding skills needed! (And yes you can still do animated Gifs.)\"})}),className:\"framer-pxh91o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1krjwmm hidden-d3knhe hidden-1ubdqy9\",\"data-framer-name\":\"4 column text block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w4cheu\",\"data-styles-preset\":\"npJOA9tz1\",style:{\"--framer-text-color\":\"var(--token-1037e4b2-ffb3-4db0-b336-ae293ae05f12, rgb(69, 69, 69))\"},children:\"Video\"})}),className:\"framer-3fzklp\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"create video ads for all channels\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1972.2+0+0+10+236+10+50),pixelHeight:300,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Dvo7V6TMnJFuxgdil8dCkSBt06g.png\"},className:\"framer-1154k8j\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Video for all channels. Edit text, images and pro-level animations with instant preview.\"})}),className:\"framer-ln30hv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f6wsr6\",\"data-framer-name\":\"4 column text block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w4cheu\",\"data-styles-preset\":\"npJOA9tz1\",style:{\"--framer-text-color\":\"var(--token-1037e4b2-ffb3-4db0-b336-ae293ae05f12, rgb(69, 69, 69))\"},children:\"Social\"})}),className:\"framer-1vmmwap\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{background:{alt:\"design create scale and publish social ads \",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2718.1905+0+0+10+98.4+10+10+30.8),pixelHeight:300,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7H9q751165NGFFhXXIOpCU1S7Sw.png\"}},VO3UWuvPo:{background:{alt:\"design create scale and publish social ads \",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1883.6+0+0+10+236+10+50),pixelHeight:300,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7H9q751165NGFFhXXIOpCU1S7Sw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"design create scale and publish social ads \",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1972.2+0+0+10+236+10+50),pixelHeight:300,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7H9q751165NGFFhXXIOpCU1S7Sw.png\"},className:\"framer-126xm22\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Easy to create for all social networks with specs, sizes and safe zones. Publish via API in moments.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-7ccx12\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ajr85z\",\"data-framer-name\":\"4 column text block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w4cheu\",\"data-styles-preset\":\"npJOA9tz1\",style:{\"--framer-text-color\":\"var(--token-1037e4b2-ffb3-4db0-b336-ae293ae05f12, rgb(69, 69, 69))\"},children:\"DOOH\"})}),className:\"framer-eg3zg9\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{background:{alt:\"digital out of home dooh adverising\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2718.1905+0+0+10+98.4+10+10+30.8),pixelHeight:300,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ULrylzmEMVixVPySQVXV2xvJfc.png\"}},VO3UWuvPo:{background:{alt:\"digital out of home dooh adverising\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1883.6+0+0+10+236+10+50),pixelHeight:300,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ULrylzmEMVixVPySQVXV2xvJfc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"digital out of home dooh adverising\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1972.2+0+0+10+236+10+50),pixelHeight:300,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ULrylzmEMVixVPySQVXV2xvJfc.png\"},className:\"framer-14yu3q3\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Direct APIs to outdoor screen providers to update the content with a single click.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-21upvi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kbol5u hidden-1xegpgc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fdp97g\",\"data-framer-name\":\"4 column text block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w4cheu\",\"data-styles-preset\":\"npJOA9tz1\",style:{\"--framer-text-color\":\"var(--token-1037e4b2-ffb3-4db0-b336-ae293ae05f12, rgb(69, 69, 69))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Display\"})})}),className:\"framer-jyljly\",fonts:[\"Inter\",\"Inter-Bold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2718.1905+0+0+10+635.2+10+10+49.4),pixelHeight:300,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JbYnVc84cAoLEJEnks3rdKRi4.png\"}},VO3UWuvPo:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1883.6+0+0+10+734+10+40),pixelHeight:300,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JbYnVc84cAoLEJEnks3rdKRi4.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:300,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JbYnVc84cAoLEJEnks3rdKRi4.png\"},className:\"framer-7nfonp\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Advanced animated HTML5 ads for all networks with no coding skills needed! (And yes you can still do animated Gifs.)\"})}),className:\"framer-1cr2ncw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nhwmj1\",\"data-framer-name\":\"4 column text block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w4cheu\",\"data-styles-preset\":\"npJOA9tz1\",style:{\"--framer-text-color\":\"var(--token-1037e4b2-ffb3-4db0-b336-ae293ae05f12, rgb(69, 69, 69))\"},children:\"Video\"})}),className:\"framer-jc6q2z\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-16amab3 hidden-1ubdqy9\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2718.1905+0+0+10+635.2+10+10+30.8),pixelHeight:300,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Dvo7V6TMnJFuxgdil8dCkSBt06g.png\"}},VO3UWuvPo:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1883.6+0+0+10+734+10+50),pixelHeight:300,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Dvo7V6TMnJFuxgdil8dCkSBt06g.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:300,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Dvo7V6TMnJFuxgdil8dCkSBt06g.png\"},className:\"framer-1j3vbkf\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Video for all channels, edit text, images and pro-level animations with instant preview.\"})}),className:\"framer-2ddu9a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ib5azv hidden-d3knhe hidden-1ubdqy9\",\"data-framer-name\":\"4 column text block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w4cheu\",\"data-styles-preset\":\"npJOA9tz1\",style:{\"--framer-text-color\":\"var(--token-1037e4b2-ffb3-4db0-b336-ae293ae05f12, rgb(69, 69, 69))\"},children:\"Social\"})}),className:\"framer-mo8k7x\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:300,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7H9q751165NGFFhXXIOpCU1S7Sw.png\"},className:\"framer-w5cbr4\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Easy to create for all social networks with specs, sizes and safe zones. Publish via API in moments.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-14wiebn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nn1ygi hidden-d3knhe hidden-1ubdqy9\",\"data-framer-name\":\"4 column text block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w4cheu\",\"data-styles-preset\":\"npJOA9tz1\",style:{\"--framer-text-color\":\"var(--token-1037e4b2-ffb3-4db0-b336-ae293ae05f12, rgb(69, 69, 69))\"},children:\"DOOH\"})}),className:\"framer-11z87rr\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:300,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ULrylzmEMVixVPySQVXV2xvJfc.png\"},className:\"framer-10yzs9q\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Direct APIs to outdoor screen providers to update the content with a single click.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1g34qqe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.57,className:\"framer-gqw9ec-container\",isModuleExternal:true,nodeId:\"VZQR8T3Vv\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"VZQR8T3Vv\",layoutId:\"VZQR8T3Vv\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-470cm3\",\"data-framer-name\":\"ticker_publish_logos\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:230,pixelHeight:460,pixelWidth:460,src:\"https://framerusercontent.com/images/EDKHKsiQW4uBEDZ2WHhgKXso.png\"},className:\"framer-10ouo39\",\"data-framer-name\":\"Instagram-png-instagram-png-logo-164886-e1648047738358\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490,intrinsicWidth:490,pixelHeight:980,pixelWidth:980,src:\"https://framerusercontent.com/images/XZUtYHlkycoqgRNwyYYbvjcM.png?scale-down-to=512\"},className:\"framer-w6qbjt\",\"data-framer-name\":\"Linkedin logo\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490,intrinsicWidth:490,pixelHeight:980,pixelWidth:980,src:\"https://framerusercontent.com/images/PejVGtvw7VcPFvjUyTjWb8wi3Yg.png?scale-down-to=512\"},className:\"framer-dxmso7\",\"data-framer-name\":\"Tiktok logo\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:269,intrinsicWidth:640,pixelHeight:538,pixelWidth:1280,src:\"https://framerusercontent.com/images/9Vx18STHnxpqp8BROhVFJiWPFdw.png?scale-down-to=512\"},className:\"framer-12cz4o9\",\"data-framer-name\":\"Logo of_YouTube_(2015-2017).svg\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:140,pixelHeight:300,pixelWidth:280,src:\"https://framerusercontent.com/images/jMXBZzkAOIwoZczOGPaaWMQDs.png\"},className:\"framer-1pfgm2u\",\"data-framer-name\":\"Ocean-outdoor-logo-D7A5FBD945-seeklogo.com\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:45,intrinsicWidth:45,pixelHeight:90,pixelWidth:90,src:\"https://framerusercontent.com/images/X4ojXjcfgmuVNsC6wSewlkJ6s.png\"},className:\"framer-10jquhh\",\"data-framer-name\":\"Logo fb\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,pixelHeight:1080,pixelWidth:1080,src:\"https://framerusercontent.com/images/kLQuyfT0eXcnbgIogxNduI8.png?scale-down-to=512\"},className:\"framer-14c7k20\",\"data-framer-name\":\"Google-logo-png-webinar-optimizing-for-success-google-business-webinar-13\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150.5,intrinsicWidth:300,pixelHeight:301,pixelWidth:600,src:\"https://framerusercontent.com/images/TYC8KjMOfE7ghtmx0Kn7NLmFzKg.png?scale-down-to=512\"},className:\"framer-1cpdxqi\",\"data-framer-name\":\"Iab-logo-0922\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:503,intrinsicWidth:800,pixelHeight:1006,pixelWidth:1600,src:\"https://framerusercontent.com/images/IBWAdBdGkaXUjuEPHYpSb4ChTI.png?scale-down-to=512\"},className:\"framer-17fdwyk\",\"data-framer-name\":\"Adform logo\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:503,intrinsicWidth:800,pixelHeight:300,pixelWidth:611,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KH9BkeXe66OOnYymp5xYwWIOBL0.png?scale-down-to=512\"},className:\"framer-1rwd5f4\",\"data-framer-name\":\"Adform logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024.5,intrinsicWidth:878,pixelHeight:2049,pixelWidth:1756,src:\"https://framerusercontent.com/images/lYnB6NqVAL5ZRKfNTJHzJRFH58.png?scale-down-to=512\"},className:\"framer-v1uabf\",\"data-framer-name\":\"Twitch Glitch_Logo_Purple.svg\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/a1jhpU89eTTDHKp2dqOYSmBjU.png\"},className:\"framer-1u128v6\",\"data-framer-name\":\"Amazon logo\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:2160,pixelWidth:3840,src:\"https://framerusercontent.com/images/UZDeFGXqVhUIsFKMFlxBIqEHzw.png?scale-down-to=512\"},className:\"framer-8zhpb0\",\"data-framer-name\":\"Snapchat-Logo\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:146.5,intrinsicWidth:667,pixelHeight:293,pixelWidth:1334,src:\"https://framerusercontent.com/images/scojSayze7C1NL1MeQz4KlRCPJM.png?scale-down-to=512\"},className:\"framer-fxjbin\",\"data-framer-name\":\"Xandr-logo\",transformTemplate:transformTemplate2})]})],speed:15,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n2s19t\",\"data-framer-name\":\"PRICING\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ktg8zz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7abcgg\",\"data-styles-preset\":\"RMqVaai1F\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Pick the Best Plan for Your Needs\"})})}),className:\"framer-uh449u\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yq8ivm\",\"data-framer-name\":\"3 prices\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ny373r\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w4cheu\",\"data-styles-preset\":\"npJOA9tz1\",children:\"Creative\"})}),className:\"framer-xevamb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"carDcP3mk\"},implicitPathVariables:undefined},{href:{webPageId:\"carDcP3mk\"},implicitPathVariables:undefined},{href:{webPageId:\"carDcP3mk\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 320px) - 20px)`,y:(componentViewport?.y||0)+0+3915.3905+0+127+0+0+10+60.8},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+210+40+60.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(min(max((${componentViewport?.width||\"100vw\"} - 40px) / 3, 1px), 320px) - 80px)`,y:(componentViewport?.y||0)+0+2902.2+0+0+0+210+40+60.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e7wpn8-container\",nodeId:\"v8q7dl3zA\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{X0Ua94cyL:resolvedLinks1[2]},VO3UWuvPo:{X0Ua94cyL:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{gPjCJwvgK:true,height:\"100%\",id:\"v8q7dl3zA\",J9RlbPg2n:\"Get in touch\",layoutId:\"v8q7dl3zA\",style:{width:\"100%\"},variant:\"AZ0Fmbh_2\",width:\"100%\",X0Ua94cyL:resolvedLinks1[0]})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-570k61\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+0+10+138.8+0+0},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+210+40+138.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+210+40+138.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ng2lwe-container\",nodeId:\"K_VAnYtNx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"K_VAnYtNx\",jTcf_EQ_W:\"Up to 5 users included\",layoutId:\"K_VAnYtNx\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+0+10+138.8+0+36},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+210+40+138.8+0+42}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+210+40+138.8+0+42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qbuia6-container\",nodeId:\"s6YgSDH2U\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"s6YgSDH2U\",jTcf_EQ_W:\"Ad Builder\",layoutId:\"s6YgSDH2U\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+0+10+138.8+0+72},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+210+40+138.8+0+84}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+210+40+138.8+0+84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dxc3jm-container\",nodeId:\"VJrfFNo5N\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"VJrfFNo5N\",jTcf_EQ_W:\"Versioning\",layoutId:\"VJrfFNo5N\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+0+10+138.8+0+108},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+210+40+138.8+0+126}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+210+40+138.8+0+126,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n42ipl-container\",nodeId:\"wk9pgTzhN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"wk9pgTzhN\",jTcf_EQ_W:\"Review\",layoutId:\"wk9pgTzhN\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+0+10+138.8+0+144},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+210+40+138.8+0+168}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+210+40+138.8+0+168,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12efxia-container\",nodeId:\"DURdI9Aak\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"DURdI9Aak\",jTcf_EQ_W:\"Publish (Download)\",layoutId:\"DURdI9Aak\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dd0agf\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ymcu3y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w4cheu\",\"data-styles-preset\":\"npJOA9tz1\",style:{\"--framer-text-color\":\"var(--token-2b003587-41db-4832-ad4b-8e899468bd9c, rgb(255, 255, 255))\"},children:\"Core\"})}),className:\"framer-s1pegh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+344.8+40+0+0},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+122.8+40+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+2902.2+0+0+0+122.8+40+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g0z0rq-container\",nodeId:\"VYxA1b4Yq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Tag,{GmAhv_WVa:1,height:\"100%\",hSgW9f2ir:\"Most popular\",id:\"VYxA1b4Yq\",layoutId:\"VYxA1b4Yq\",p2xmGpLux:\"Read more\",ToKaS18SW:false,variant:\"pPug_eVy9\",width:\"100%\",Z69PPXt7v:true})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"carDcP3mk\"},implicitPathVariables:undefined},{href:{webPageId:\"carDcP3mk\"},implicitPathVariables:undefined},{href:{webPageId:\"carDcP3mk\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 320px) - 80px)`,y:(componentViewport?.y||0)+0+3915.3905+0+127+0+344.8+40+64},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+122.8+40+64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(min(max((${componentViewport?.width||\"100vw\"} - 40px) / 3, 1px), 320px) - 80px)`,y:(componentViewport?.y||0)+0+2902.2+0+0+0+122.8+40+64,children:/*#__PURE__*/_jsx(Container,{className:\"framer-110yjm8-container\",nodeId:\"iyGzTob0v\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{X0Ua94cyL:resolvedLinks2[2]},VO3UWuvPo:{X0Ua94cyL:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{gPjCJwvgK:true,height:\"100%\",id:\"iyGzTob0v\",J9RlbPg2n:\"Book a  free demo\",layoutId:\"iyGzTob0v\",style:{width:\"100%\"},variant:\"iwGaVju2u\",width:\"100%\",X0Ua94cyL:resolvedLinks2[0]})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16aoqov\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+344.8+40+142+0+0},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+122.8+40+142+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+122.8+40+142+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n8uwus-container\",nodeId:\"ggttdJmAO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"ggttdJmAO\",jTcf_EQ_W:\"Up to 5 users included\",layoutId:\"ggttdJmAO\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+344.8+40+142+0+36},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+122.8+40+142+0+42}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+122.8+40+142+0+42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rwgg5d-container\",nodeId:\"QGaLjf2e_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"QGaLjf2e_\",jTcf_EQ_W:\"Ad Builder\",layoutId:\"QGaLjf2e_\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+344.8+40+142+0+72},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+122.8+40+142+0+84}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+122.8+40+142+0+84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-blrgvk-container\",nodeId:\"uhRI2afoI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"uhRI2afoI\",jTcf_EQ_W:\"Versioning\",layoutId:\"uhRI2afoI\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+344.8+40+142+0+108},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+122.8+40+142+0+126}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+122.8+40+142+0+126,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j6ot8l-container\",nodeId:\"UHqmW08xx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"UHqmW08xx\",jTcf_EQ_W:\"Review\",layoutId:\"UHqmW08xx\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+344.8+40+142+0+144},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+122.8+40+142+0+168}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+122.8+40+142+0+168,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yo1rva-container\",nodeId:\"u8r6I4RTd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"u8r6I4RTd\",jTcf_EQ_W:\"Publish (API supported)\",layoutId:\"u8r6I4RTd\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+344.8+40+142+0+180},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+122.8+40+142+0+210}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+122.8+40+142+0+210,children:/*#__PURE__*/_jsx(Container,{className:\"framer-21jzw8-container\",nodeId:\"UD51zV_Qe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"UD51zV_Qe\",jTcf_EQ_W:\"Create Advertisers\",layoutId:\"UD51zV_Qe\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+344.8+40+142+0+216},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+122.8+40+142+0+252}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+122.8+40+142+0+252,children:/*#__PURE__*/_jsx(Container,{className:\"framer-188zzun-container\",nodeId:\"bvUvQkC1G\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"bvUvQkC1G\",jTcf_EQ_W:\"Feed connections\",layoutId:\"bvUvQkC1G\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wqt6ro\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w4cheu\",\"data-styles-preset\":\"npJOA9tz1\",children:\"Enterprise\"})}),className:\"framer-jsz5x5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"carDcP3mk\"},implicitPathVariables:undefined},{href:{webPageId:\"carDcP3mk\"},implicitPathVariables:undefined},{href:{webPageId:\"carDcP3mk\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 320px) - 80px)`,y:(componentViewport?.y||0)+0+3915.3905+0+127+0+824.8+40+60.8},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+0+40+60.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(min(max((${componentViewport?.width||\"100vw\"} - 40px) / 3, 1px), 320px) - 80px)`,y:(componentViewport?.y||0)+0+2902.2+0+0+0+0+40+60.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eysjwc-container\",nodeId:\"D2Z8ccvzJ\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{X0Ua94cyL:resolvedLinks3[2]},VO3UWuvPo:{X0Ua94cyL:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button,{gPjCJwvgK:true,height:\"100%\",id:\"D2Z8ccvzJ\",J9RlbPg2n:\"Talk to a sales rep\",layoutId:\"D2Z8ccvzJ\",style:{width:\"100%\"},variant:\"Et3iSTRaG\",width:\"100%\",X0Ua94cyL:resolvedLinks3[0]})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qy9bap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+824.8+40+138.8+0+0},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+0+40+138.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+0+40+138.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e73lxc-container\",nodeId:\"JqnYbgLF4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"JqnYbgLF4\",jTcf_EQ_W:\"Tailor made user package\",layoutId:\"JqnYbgLF4\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+824.8+40+138.8+0+37},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+0+40+138.8+0+42}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+0+40+138.8+0+42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7i5c6l-container\",nodeId:\"m5yRTWLrK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"m5yRTWLrK\",jTcf_EQ_W:\"Ad Builder\",layoutId:\"m5yRTWLrK\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+824.8+40+138.8+0+74},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+0+40+138.8+0+84}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+0+40+138.8+0+84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16kbwiw-container\",nodeId:\"StkWwypNR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"StkWwypNR\",jTcf_EQ_W:\"Versioning & Feeds\",layoutId:\"StkWwypNR\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+824.8+40+138.8+0+111},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+0+40+138.8+0+126}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+0+40+138.8+0+126,children:/*#__PURE__*/_jsx(Container,{className:\"framer-62sq8w-container\",nodeId:\"c30V9yw4J\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"c30V9yw4J\",jTcf_EQ_W:\"Review\",layoutId:\"c30V9yw4J\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+824.8+40+138.8+0+148},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+0+40+138.8+0+168}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+0+40+138.8+0+168,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l89p0g-container\",nodeId:\"EJDzrDI6H\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"EJDzrDI6H\",jTcf_EQ_W:\"Publish (API/DCO)\",layoutId:\"EJDzrDI6H\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+824.8+40+138.8+0+185},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+0+40+138.8+0+210}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+0+40+138.8+0+210,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14254mc-container\",nodeId:\"SvaQc_oYc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"SvaQc_oYc\",jTcf_EQ_W:\"Create advertisers\",layoutId:\"SvaQc_oYc\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+824.8+40+138.8+0+222},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+0+40+138.8+0+252}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+0+40+138.8+0+252,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1khyqi3-container\",nodeId:\"tIO8z45ow\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"tIO8z45ow\",jTcf_EQ_W:\"Feed connections\",layoutId:\"tIO8z45ow\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+824.8+40+138.8+0+259},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+0+40+138.8+0+294}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+0+40+138.8+0+294,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kb5ohq-container\",nodeId:\"VvsPc41xR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"VvsPc41xR\",jTcf_EQ_W:\"Global ads\",layoutId:\"VvsPc41xR\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+824.8+40+138.8+0+296},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+0+40+138.8+0+336}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+0+40+138.8+0+336,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oudiwf-container\",nodeId:\"kokYck5ow\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"kokYck5ow\",jTcf_EQ_W:\"Catalog ads\",layoutId:\"kokYck5ow\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{y:(componentViewport?.y||0)+0+3915.3905+0+127+0+824.8+40+138.8+0+333},VO3UWuvPo:{y:(componentViewport?.y||0)+0+3311.6+0+0+0+0+40+138.8+0+378}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+2902.2+0+0+0+0+40+138.8+0+378,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1muc87k-container\",nodeId:\"dUmb_jHw1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"dUmb_jHw1\",jTcf_EQ_W:\"Expert support\",layoutId:\"dUmb_jHw1\",pbavLymla:\"Check\",T2CsNbFcm:\"var(--token-3fa6589c-bdb3-45d1-ae6e-5fae2edc6497, rgb(0, 0, 0))\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLWl0YWxpYw==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Don't worry about additional costs like CPM or anything based on media spend - we work with fixed fees.\"})}),className:\"framer-1rtp000\",fonts:[\"GF;Mulish-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1thrcol\",\"data-framer-name\":\"Features Big Day\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r6j8o3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7abcgg\",\"data-styles-preset\":\"RMqVaai1F\",style:{\"--framer-text-alignment\":\"center\"},children:\"Listen to Our Clients\"})}),className:\"framer-9a3avu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hyz5t5\",\"data-styles-preset\":\"PhMIq4ozm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Teams like yours are using Ad Layer to make better ads, faster.\"})}),className:\"framer-dw5zf8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17zmzxj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{width:\"250px\",y:(componentViewport?.y||0)+0+5624.9905+16+283.2+0+0},VO3UWuvPo:{width:\"250px\",y:(componentViewport?.y||0)+0+4149.4+16+283.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:321,width:\"340px\",y:(componentViewport?.y||0)+0+3740+16+283.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8j95nl-container\",nodeId:\"cV_8eLPoC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{aY3NDFicr:addImageAlt({pixelHeight:827,pixelWidth:1e3,src:\"https://framerusercontent.com/images/f7l0CngwB3YFI6uaxLR5zF7U4Q.png\",srcSet:\"https://framerusercontent.com/images/f7l0CngwB3YFI6uaxLR5zF7U4Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/f7l0CngwB3YFI6uaxLR5zF7U4Q.png 1000w\"},\"\"),bErIHJkdI:\"With Ad Layer, we\u2019ve reduced costs by up to 70% through automation while ensuring brand consistency across all eleven markets.\",cbUz736fH:true,d_UTY0YE0:\"Stena Line\",height:\"100%\",iblTMwOmJ:\"Group Media Manager\",id:\"cV_8eLPoC\",layoutId:\"cV_8eLPoC\",oVU8J_Br4:\"Fredrik Bayati\",style:{width:\"100%\"},tbHzgMiO7:true,variant:\"jBqPsPKyd\",width:\"100%\",yhkvJJf0e:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{width:\"250px\",y:(componentViewport?.y||0)+0+5624.9905+16+283.2+0+341},VO3UWuvPo:{width:\"250px\",y:(componentViewport?.y||0)+0+4149.4+16+283.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:321,width:\"340px\",y:(componentViewport?.y||0)+0+3740+16+283.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7ntwkn-container\",nodeId:\"cJCNCL1OS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{aY3NDFicr:addImageAlt({pixelHeight:1233,pixelWidth:2e3,src:\"https://framerusercontent.com/images/ajQTnDuQOCN1p9CTA7EizmwPwKI.jpg\",srcSet:\"https://framerusercontent.com/images/ajQTnDuQOCN1p9CTA7EizmwPwKI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ajQTnDuQOCN1p9CTA7EizmwPwKI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ajQTnDuQOCN1p9CTA7EizmwPwKI.jpg 2000w\"},\"Stefan Sj\\xf6blom\"),bErIHJkdI:\"Ad Layer makes it easy for us to manage the entire ad production and distribution process in-house. Their specialists have provided expert support from day one, helping us streamline and improve our processes every step of the way.\",cbUz736fH:true,d_UTY0YE0:\"Volkswagen Financial Services\",height:\"100%\",iblTMwOmJ:\"Advertising Manager\",id:\"cJCNCL1OS\",layoutId:\"cJCNCL1OS\",oVU8J_Br4:\"Stefan Sj\\xf6blom\",style:{width:\"100%\"},tbHzgMiO7:true,variant:\"jBqPsPKyd\",width:\"100%\",yhkvJJf0e:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{width:\"250px\",y:(componentViewport?.y||0)+0+5624.9905+16+283.2+0+682},VO3UWuvPo:{width:\"250px\",y:(componentViewport?.y||0)+0+4149.4+16+283.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:321,width:\"340px\",y:(componentViewport?.y||0)+0+3740+16+283.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zzacu4-container\",nodeId:\"n9EItH2jZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{aY3NDFicr:addImageAlt({pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/HaEdMRr4s31lyjQOs9HNzzxRT1g.png\"},\"\"),bErIHJkdI:\"Ad Layer has made it easier for us to maintain brand consistency and work faster with templates. It also improves collaboration across teams while reducing both time to market and production costs.\",cbUz736fH:true,d_UTY0YE0:\"NORD DDB\",height:\"100%\",iblTMwOmJ:\"Head of Digital Production\",id:\"n9EItH2jZ\",layoutId:\"n9EItH2jZ\",oVU8J_Br4:\"Merwan Maruuf\",style:{width:\"100%\"},tbHzgMiO7:true,variant:\"jBqPsPKyd\",width:\"100%\",yhkvJJf0e:true})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1colxu5\",\"data-framer-name\":\"LOGO TICKER\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-85022w-container\",isModuleExternal:true,nodeId:\"ZhsuSGHLk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"ZhsuSGHLk\",layoutId:\"ZhsuSGHLk\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,width:\"2664px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-167n1j8-container\",inComponentSlot:true,nodeId:\"iQ0jYJCCd\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LOGOS,{height:\"100%\",id:\"iQ0jYJCCd\",layoutId:\"iQ0jYJCCd\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:15,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-170j2mj hidden-1ubdqy9\",\"data-framer-name\":\"Features Grid Day\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ud2na\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7abcgg\",\"data-styles-preset\":\"RMqVaai1F\",children:\"Ad Layer Solves the Production Chain\"})}),className:\"framer-7m5i6i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fqnqa4\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f9mEDwX7g\"},implicitPathVariables:undefined},{href:{webPageId:\"f9mEDwX7g\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 30px) / 3, 200px)`,y:(componentViewport?.y||0)+0+4923.6+16+91.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"240px\",y:(componentViewport?.y||0)+0+4514.2+16+91.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lpzsmy-container\",nodeId:\"sMRhty1EA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{RsSBbXcyG:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(FeatureSimple,{ET3uJSa1F:\"HourglassMedium\",height:\"100%\",id:\"sMRhty1EA\",iHqIagJOF:\"Learn more\",layoutId:\"sMRhty1EA\",Pzs4GcH4x:\"rgb(0, 0, 0)\",RsSBbXcyG:resolvedLinks4[0],style:{width:\"100%\"},width:\"100%\",Z6hiuC6BW:\"70% faster time to market\",ZdZM7np2V:true,ZfP85W1Qa:\"Use Ad Layer as your production and distribution hub to save time.\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f9mEDwX7g\"},implicitPathVariables:undefined},{href:{webPageId:\"f9mEDwX7g\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 30px) / 3, 200px)`,y:(componentViewport?.y||0)+0+4923.6+16+91.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"240px\",y:(componentViewport?.y||0)+0+4514.2+16+91.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q8d2id-container\",nodeId:\"jNMdC_cVg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{RsSBbXcyG:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(FeatureSimple,{ET3uJSa1F:\"MetaLogo\",height:\"100%\",id:\"jNMdC_cVg\",iHqIagJOF:\"Learn more\",layoutId:\"jNMdC_cVg\",Pzs4GcH4x:\"rgb(0, 0, 0)\",RsSBbXcyG:resolvedLinks5[0],style:{width:\"100%\"},width:\"100%\",Z6hiuC6BW:\"Create for all channels\",ZdZM7np2V:true,ZfP85W1Qa:\"Create ads for Meta, TikTok, YouTube, DOOH, and banners in one single interface.\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f9mEDwX7g\"},implicitPathVariables:undefined},{href:{webPageId:\"f9mEDwX7g\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 30px) / 3, 200px)`,y:(componentViewport?.y||0)+0+4923.6+16+91.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"240px\",y:(componentViewport?.y||0)+0+4514.2+16+91.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qgtik0-container\",nodeId:\"XkiVFTGUo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{RsSBbXcyG:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(FeatureSimple,{ET3uJSa1F:\"Stack\",height:\"100%\",id:\"XkiVFTGUo\",iHqIagJOF:\"Learn more\",layoutId:\"XkiVFTGUo\",Pzs4GcH4x:\"rgb(0, 0, 0)\",RsSBbXcyG:resolvedLinks6[0],style:{width:\"100%\"},width:\"100%\",Z6hiuC6BW:\"1000+ ads in minutes\",ZdZM7np2V:true,ZfP85W1Qa:\"Connect a data feed to create thousands of ads, for all channels!\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f9mEDwX7g\"},implicitPathVariables:undefined},{href:{webPageId:\"f9mEDwX7g\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 30px) / 3, 200px)`,y:(componentViewport?.y||0)+0+4923.6+16+91.2+0+225}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"240px\",y:(componentViewport?.y||0)+0+4514.2+16+91.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18ugfqn-container\",nodeId:\"BVf6jXM18\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{RsSBbXcyG:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(FeatureSimple,{ET3uJSa1F:\"Video\",height:\"100%\",id:\"BVf6jXM18\",iHqIagJOF:\"Learn more\",layoutId:\"BVf6jXM18\",Pzs4GcH4x:\"rgb(0, 0, 0)\",RsSBbXcyG:resolvedLinks7[0],style:{width:\"100%\"},width:\"100%\",Z6hiuC6BW:\"Video ads for all platforms\",ZdZM7np2V:true,ZfP85W1Qa:\"Create videos with our powerful Ad Builder.\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f9mEDwX7g\"},implicitPathVariables:undefined},{href:{webPageId:\"f9mEDwX7g\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 30px) / 3, 200px)`,y:(componentViewport?.y||0)+0+4923.6+16+91.2+0+225}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"240px\",y:(componentViewport?.y||0)+0+4514.2+16+91.2+0+250,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sl0dfs-container\",nodeId:\"UUnLTRmzz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{RsSBbXcyG:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(FeatureSimple,{ET3uJSa1F:\"Cursor\",height:\"100%\",id:\"UUnLTRmzz\",iHqIagJOF:\"Learn more\",layoutId:\"UUnLTRmzz\",Pzs4GcH4x:\"rgb(0, 0, 0)\",RsSBbXcyG:resolvedLinks8[0],style:{width:\"100%\"},width:\"100%\",Z6hiuC6BW:\"One-click publishing\",ZdZM7np2V:true,ZfP85W1Qa:\"Use APIs instead of sending material through links and emails.\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f9mEDwX7g\"},implicitPathVariables:undefined},{href:{webPageId:\"f9mEDwX7g\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 30px) / 3, 200px)`,y:(componentViewport?.y||0)+0+4923.6+16+91.2+0+225}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"240px\",y:(componentViewport?.y||0)+0+4514.2+16+91.2+0+250,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uqn3o9-container\",nodeId:\"pJWVGeTOc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{RsSBbXcyG:resolvedLinks9[1]}},children:/*#__PURE__*/_jsx(FeatureSimple,{ET3uJSa1F:\"Users\",height:\"100%\",id:\"pJWVGeTOc\",iHqIagJOF:\"Learn more\",layoutId:\"pJWVGeTOc\",Pzs4GcH4x:\"rgb(0, 0, 0)\",RsSBbXcyG:resolvedLinks9[0],style:{width:\"100%\"},width:\"100%\",Z6hiuC6BW:\"Collaborative workspaces\",ZdZM7np2V:true,ZfP85W1Qa:\"All team members can help and do their job as efficient as possible.\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f9mEDwX7g\"},implicitPathVariables:undefined},{href:{webPageId:\"f9mEDwX7g\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 30px) / 3, 200px)`,y:(componentViewport?.y||0)+0+4923.6+16+91.2+0+450}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"240px\",y:(componentViewport?.y||0)+0+4514.2+16+91.2+0+250,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gsyma-container\",nodeId:\"zgf5WNEqM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{RsSBbXcyG:resolvedLinks10[1]}},children:/*#__PURE__*/_jsx(FeatureSimple,{ET3uJSa1F:\"Pen\",height:\"100%\",id:\"zgf5WNEqM\",iHqIagJOF:\"Learn more\",layoutId:\"zgf5WNEqM\",Pzs4GcH4x:\"rgb(0, 0, 0)\",RsSBbXcyG:resolvedLinks10[0],style:{width:\"100%\"},width:\"100%\",Z6hiuC6BW:\"No creative limits\",ZdZM7np2V:true,ZfP85W1Qa:\"Skip premade templates and create your own with no limits.\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f9mEDwX7g\"},implicitPathVariables:undefined},{href:{webPageId:\"f9mEDwX7g\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 30px) / 3, 200px)`,y:(componentViewport?.y||0)+0+4923.6+16+91.2+0+450}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"240px\",y:(componentViewport?.y||0)+0+4514.2+16+91.2+0+250,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17qbzua-container\",nodeId:\"i0GZEyXL3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VO3UWuvPo:{RsSBbXcyG:resolvedLinks11[1]}},children:/*#__PURE__*/_jsx(FeatureSimple,{ET3uJSa1F:\"Eye\",height:\"100%\",id:\"i0GZEyXL3\",iHqIagJOF:\"Learn more\",layoutId:\"i0GZEyXL3\",Pzs4GcH4x:\"rgb(0, 0, 0)\",RsSBbXcyG:resolvedLinks11[0],style:{width:\"100%\"},width:\"100%\",Z6hiuC6BW:\"Instant client approval \",ZdZM7np2V:true,ZfP85W1Qa:\"Use Review hub isntead of emails to get approval and feedback.\"})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7046.1905},VO3UWuvPo:{height:398,width:\"740px\",y:(componentViewport?.y||0)+0+5751.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,width:\"1160px\",y:(componentViewport?.y||0)+0+5142.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e4l3eg-container\",nodeId:\"UQhS7TNIr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{style:{width:\"100%\"},variant:\"vi9YZJArq\"}},children:/*#__PURE__*/_jsx(GetTheMostBluebox,{height:\"100%\",id:\"UQhS7TNIr\",layoutId:\"UQhS7TNIr\",style:{height:\"100%\",width:\"100%\"},variant:\"j6Myeocts\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kcasxh\",\"data-framer-name\":\"NEWS SECTION\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m9t0dt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7abcgg\",\"data-styles-preset\":\"RMqVaai1F\",children:\"News\"})}),className:\"framer-1wzlxrm\",fonts:[\"Inter\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pnmwhh\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:3,query:{from:{alias:\"O4BeD8JUt\",data:Nyheter,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"O4BeD8JUt\",direction:\"desc\",name:\"GoqqMAJDn\",type:\"Identifier\"}],select:[{collection:\"O4BeD8JUt\",name:\"s752TJ9vC\",type:\"Identifier\"},{collection:\"O4BeD8JUt\",name:\"TWVnzUt6u\",type:\"Identifier\"},{collection:\"O4BeD8JUt\",name:\"GoqqMAJDn\",type:\"Identifier\"},{collection:\"O4BeD8JUt\",name:\"MBpEXgGQl\",type:\"Identifier\"},{collection:\"O4BeD8JUt\",name:\"baQjlBpPb\",type:\"Identifier\"},{collection:\"O4BeD8JUt\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({baQjlBpPb:baQjlBpPbO4BeD8JUt,GoqqMAJDn:GoqqMAJDnO4BeD8JUt,id:idO4BeD8JUt,MBpEXgGQl:MBpEXgGQlO4BeD8JUt,s752TJ9vC:s752TJ9vCO4BeD8JUt,TWVnzUt6u:TWVnzUt6uO4BeD8JUt},index)=>{s752TJ9vCO4BeD8JUt??=\"\";MBpEXgGQlO4BeD8JUt??=\"\";baQjlBpPbO4BeD8JUt??=\"\";const textContent=toDateString(GoqqMAJDnO4BeD8JUt,activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`O4BeD8JUt-${idO4BeD8JUt}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{s752TJ9vC:s752TJ9vCO4BeD8JUt},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x78p0d\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{s752TJ9vC:s752TJ9vCO4BeD8JUt},webPageId:\"rLEVq3acc\"},motionChild:true,nodeId:\"KlcG97nv2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-dfjn19 framer-lux5qc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ox3df\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7389.1905+0+44+0+0+0+0+10+0+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,...toResponsiveImage(TWVnzUt6uO4BeD8JUt)}},VO3UWuvPo:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6194.8+0+44+0+0+0+0+25+0+0),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 3, 50px) - 30px)`,...toResponsiveImage(TWVnzUt6uO4BeD8JUt)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5520.4+0+44+0+0+0+0+33+0+0),sizes:\"247px\",...toResponsiveImage(TWVnzUt6uO4BeD8JUt)},className:\"framer-ilug4b\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Mar 26, 2025\"})}),className:\"framer-9tyiea\",\"data-framer-name\":\"Date\",fonts:[\"GF;Mulish-regular\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1w4cheu\",\"data-styles-preset\":\"npJOA9tz1\",children:\"Innovation and Scalability, Stena Line's Journey\"})}),className:\"framer-1gbnk1e\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:MBpEXgGQlO4BeD8JUt,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qxwexa\",\"data-styles-preset\":\"PhldXxnWn\",children:\"By centralizing and automating their digital marketing, Stena Line has unlocked new levels of efficiency, scalability, and local relevance.\"})}),className:\"framer-kg65on hidden-1ubdqy9\",\"data-framer-name\":\"Preview text\",fonts:[\"Inter\"],text:baQjlBpPbO4BeD8JUt,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zokzbe\",\"data-border\":true,\"data-framer-name\":\"Read more button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLTYwMA==\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21px\",\"--framer-text-alignment\":\"center\"},children:\"Read more\"})}),className:\"framer-1szcc8n\",fonts:[\"GF;Mulish-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})})})},idO4BeD8JUt);})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{height:710,y:(componentViewport?.y||0)+0+7696.1905},VO3UWuvPo:{height:670,y:(componentViewport?.y||0)+0+6802.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:578,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6128.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2pkhyu-container\",nodeId:\"nK8W59G34\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qyoIYLLVM:{variant:\"bBxEshRLk\"},VO3UWuvPo:{variant:\"cSJEtO_j3\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"nK8W59G34\",layoutId:\"nK8W59G34\",style:{height:\"100%\",width:\"100%\"},variant:\"Jb1hCulsY\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dOh44.framer-lux5qc, .framer-dOh44 .framer-lux5qc { display: block; }\",\".framer-dOh44.framer-1xegpgc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-dOh44 .framer-1obm1hv-container { flex: none; height: 82px; position: relative; width: 100%; z-index: 10; }\",\".framer-dOh44 .framer-ot4m1r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 217px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-dOh44 .framer-7ur2qq, .framer-dOh44 .framer-10vecjz { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-dOh44 .framer-rizzzo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 53%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre-wrap; width: 553px; word-break: break-word; word-wrap: break-word; }\",\".framer-dOh44 .framer-1pdahl4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 44%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre-wrap; width: 494px; word-break: break-word; word-wrap: break-word; }\",\".framer-dOh44 .framer-eupjj4-container { bottom: 25px; flex: none; height: auto; left: 298px; position: absolute; width: 185px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-dOh44 .framer-1bgkzuj-container { flex: none; height: 453px; position: relative; width: 389px; }\",\".framer-dOh44 .framer-19y2tn0 { --border-bottom-width: 10px; --border-color: var(--token-2b003587-41db-4832-ad4b-8e899468bd9c, #ffffff); --border-left-width: 10px; --border-right-width: 10px; --border-style: solid; --border-top-width: 10px; align-content: center; align-items: center; background-color: var(--token-040d5e8a-1a2e-4396-b7f3-02808f9466c1, rgba(138, 138, 138, 0.1)); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: 360px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dOh44 .framer-1sfzmkc, .framer-dOh44 .framer-g8qg74, .framer-dOh44 .framer-lg4gf1, .framer-dOh44 .framer-33eq2l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 330px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-dOh44 .framer-1q28bz0, .framer-dOh44 .framer-1h3dqow, .framer-dOh44 .framer-9bsws6, .framer-dOh44 .framer-hi19hl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 330px; position: relative; white-space: pre-wrap; width: 330px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-dOh44 .framer-wlhrid { flex: none; height: 220px; position: relative; width: 100%; z-index: 1; }\",\".framer-dOh44 .framer-om6a5r, .framer-dOh44 .framer-vu3zr, .framer-dOh44 .framer-c5k864 { --border-bottom-width: 10px; --border-color: var(--token-2b003587-41db-4832-ad4b-8e899468bd9c, #ffffff); --border-left-width: 10px; --border-right-width: 10px; --border-style: solid; --border-top-width: 10px; align-content: center; align-items: center; background-color: var(--token-040d5e8a-1a2e-4396-b7f3-02808f9466c1, rgba(138, 138, 138, 0.1)); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-dOh44 .framer-zm7l9u, .framer-dOh44 .framer-4oh2c5, .framer-dOh44 .framer-yf7kuf { align-self: stretch; flex: none; height: 220px; position: relative; width: auto; z-index: 1; }\",\".framer-dOh44 .framer-1jsspkr-container { flex: none; height: 566px; position: relative; width: 617px; }\",\".framer-dOh44 .framer-1b0t7fg { --border-bottom-width: 10px; --border-color: var(--token-2b003587-41db-4832-ad4b-8e899468bd9c, #ffffff); --border-left-width: 10px; --border-right-width: 10px; --border-style: solid; --border-top-width: 10px; align-content: center; align-items: center; background-color: var(--token-040d5e8a-1a2e-4396-b7f3-02808f9466c1, rgba(138, 138, 138, 0.1)); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 534px; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-dOh44 .framer-13wzjii, .framer-dOh44 .framer-4saxru, .framer-dOh44 .framer-zz4qnv, .framer-dOh44 .framer-1pc5p60 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-dOh44 .framer-w70bju, .framer-dOh44 .framer-dcv2aw, .framer-dOh44 .framer-buy85p, .framer-dOh44 .framer-sctaai { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 550px; position: relative; white-space: pre-wrap; width: 550px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-dOh44 .framer-kzj5el, .framer-dOh44 .framer-vclehd, .framer-dOh44 .framer-4ir68s, .framer-dOh44 .framer-1uxznrc { align-self: stretch; flex: none; height: 75%; position: relative; width: auto; z-index: 1; }\",\".framer-dOh44 .framer-1u91144 { --border-bottom-width: 10px; --border-color: var(--token-2b003587-41db-4832-ad4b-8e899468bd9c, #ffffff); --border-left-width: 10px; --border-right-width: 10px; --border-style: solid; --border-top-width: 10px; align-content: center; align-items: center; background-color: var(--token-040d5e8a-1a2e-4396-b7f3-02808f9466c1, rgba(138, 138, 138, 0.1)); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 513px; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-dOh44 .framer-1i3e66d, .framer-dOh44 .framer-1goa1ro { --border-bottom-width: 10px; --border-color: var(--token-2b003587-41db-4832-ad4b-8e899468bd9c, #ffffff); --border-left-width: 10px; --border-right-width: 10px; --border-style: solid; --border-top-width: 10px; align-content: center; align-items: center; background-color: var(--token-040d5e8a-1a2e-4396-b7f3-02808f9466c1, rgba(138, 138, 138, 0.1)); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 540px; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-dOh44 .framer-ybdw3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 40px 20px 40px; position: relative; width: 1160px; }\",\".framer-dOh44 .framer-185m556, .framer-dOh44 .framer-1r6j8o3 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dOh44 .framer-1pwsxve, .framer-dOh44 .framer-1qfc8k3, .framer-dOh44 .framer-9a3avu, .framer-dOh44 .framer-dw5zf8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dOh44 .framer-hcufb, .framer-dOh44 .framer-17zmzxj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dOh44 .framer-1amzfu1, .framer-dOh44 .framer-1010hw3 { --border-bottom-width: 1px; --border-color: var(--token-89b5ae80-f9e5-42d4-b746-a1d2bcad1406, rgba(34, 34, 34, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: 597px; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dOh44 .framer-d7bnft { -webkit-filter: hue-rotate(0deg); aspect-ratio: 1 / 1; border-bottom-left-radius: 35px; border-bottom-right-radius: 100px; border-top-left-radius: 120px; filter: hue-rotate(0deg); flex: none; height: var(--framer-aspect-ratio-supported, 250px); overflow: visible; position: relative; width: 250px; }\",\".framer-dOh44 .framer-w5gn6a, .framer-dOh44 .framer-1ubqlkj, .framer-dOh44 .framer-1nwzcbp, .framer-dOh44 .framer-1xwdyf5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dOh44 .framer-kgfm35, .framer-dOh44 .framer-pvjhxj, .framer-dOh44 .framer-1pfldas { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 300px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dOh44 .framer-912mlq { --border-bottom-width: 1px; --border-color: var(--token-89b5ae80-f9e5-42d4-b746-a1d2bcad1406, rgba(34, 34, 34, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-2b003587-41db-4832-ad4b-8e899468bd9c, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: 597px; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dOh44 .framer-16t7h3h { -webkit-filter: hue-rotate(0deg); align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; filter: hue-rotate(0deg); flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 250px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 250px; }\",\".framer-dOh44 .framer-1efi0fr { -webkit-filter: hue-rotate(0deg); aspect-ratio: 1 / 1; border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; filter: hue-rotate(0deg); flex: none; height: var(--framer-aspect-ratio-supported, 250px); overflow: visible; position: relative; width: 250px; }\",\".framer-dOh44 .framer-16lrl6d { align-content: center; align-items: center; background-color: #ededed; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 1160px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dOh44 .framer-1chwxrm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 103%; }\",\".framer-dOh44 .framer-1ur6v9c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: 100%; }\",\".framer-dOh44 .framer-10gzxou { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 50px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dOh44 .framer-z684ui { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 1072px; }\",\".framer-dOh44 .framer-1ht85dd, .framer-dOh44 .framer-1f6wsr6, .framer-dOh44 .framer-ajr85z, .framer-dOh44 .framer-1fdp97g, .framer-dOh44 .framer-ib5azv, .framer-dOh44 .framer-nn1ygi { align-content: center; align-items: center; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 219px; padding: 234px 0px 234px 0px; position: relative; width: 1px; }\",\".framer-dOh44 .framer-e6mfju, .framer-dOh44 .framer-jyljly { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 43px; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-dOh44 .framer-1qtghcx, .framer-dOh44 .framer-7nfonp { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: 300px; left: 0px; position: absolute; right: 1px; top: 40px; z-index: 1; }\",\".framer-dOh44 .framer-pxh91o, .framer-dOh44 .framer-7ccx12, .framer-dOh44 .framer-21upvi, .framer-dOh44 .framer-1cr2ncw, .framer-dOh44 .framer-14wiebn, .framer-dOh44 .framer-1g34qqe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 5px; position: absolute; right: 5px; top: 350px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-dOh44 .framer-1krjwmm, .framer-dOh44 .framer-nhwmj1 { align-content: center; align-items: center; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 446px; padding: 234px 0px 234px 0px; position: relative; width: 1px; }\",\".framer-dOh44 .framer-3fzklp, .framer-dOh44 .framer-1vmmwap, .framer-dOh44 .framer-eg3zg9, .framer-dOh44 .framer-jc6q2z, .framer-dOh44 .framer-mo8k7x, .framer-dOh44 .framer-11z87rr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-dOh44 .framer-1154k8j, .framer-dOh44 .framer-1j3vbkf { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: 300px; position: absolute; right: -1px; top: 50px; width: 259px; z-index: 1; }\",\".framer-dOh44 .framer-ln30hv, .framer-dOh44 .framer-2ddu9a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 15px; position: absolute; right: -5px; top: 350px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-dOh44 .framer-126xm22, .framer-dOh44 .framer-w5cbr4 { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: 300px; left: 0px; position: absolute; right: 2px; top: 50px; z-index: 1; }\",\".framer-dOh44 .framer-14yu3q3, .framer-dOh44 .framer-10yzs9q { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: 300px; left: 0px; position: absolute; right: 0px; top: 50px; z-index: 1; }\",\".framer-dOh44 .framer-1kbol5u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-dOh44 .framer-16amab3 { flex: none; height: 244px; left: calc(51.055662188099824% - 201px / 2); overflow: hidden; position: absolute; top: 72px; width: 201px; z-index: 1; }\",\".framer-dOh44 .framer-gqw9ec-container { flex: none; height: 96px; opacity: 0.57; position: relative; width: 1199px; }\",\".framer-dOh44 .framer-470cm3 { background-color: #ffffff; height: 63px; overflow: hidden; position: relative; width: 1124px; }\",\".framer-dOh44 .framer-10ouo39 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); left: 79px; overflow: visible; position: absolute; top: 49%; transform: translateY(-50%); width: 36px; }\",\".framer-dOh44 .framer-w6qbjt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 138px; overflow: visible; position: absolute; top: 49%; transform: translateY(-50%); width: 60px; }\",\".framer-dOh44 .framer-dxmso7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 59px); left: 0px; overflow: visible; position: absolute; top: 49%; transform: translateY(-50%); width: 59px; }\",\".framer-dOh44 .framer-12cz4o9 { aspect-ratio: 2.379182156133829 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); left: 271px; overflow: visible; position: absolute; top: 51%; transform: translateY(-50%); width: 85px; }\",\".framer-dOh44 .framer-1pfgm2u { aspect-ratio: 0.9333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); left: 214px; overflow: visible; position: absolute; top: 49%; transform: translateY(-50%); width: 33px; }\",\".framer-dOh44 .framer-10jquhh { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); left: 379px; overflow: visible; position: absolute; top: 51%; transform: translateY(-50%); width: 43px; }\",\".framer-dOh44 .framer-14c7k20 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); left: 442px; overflow: visible; position: absolute; top: 51%; transform: translateY(-50%); width: 43px; }\",\".framer-dOh44 .framer-1cpdxqi { aspect-ratio: 1.9933554817275747 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); left: 633px; overflow: visible; position: absolute; top: 43%; transform: translateY(-50%); width: 77px; }\",\".framer-dOh44 .framer-17fdwyk { aspect-ratio: 1.5904572564612327 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 68px); left: 502px; overflow: visible; position: absolute; top: 51%; transform: translateY(-50%); width: 108px; }\",\".framer-dOh44 .framer-1rwd5f4 { aspect-ratio: 1.5904572564612327 / 1; bottom: 8px; flex: none; left: 785px; overflow: visible; position: absolute; top: 11px; width: var(--framer-aspect-ratio-supported, 70px); }\",\".framer-dOh44 .framer-v1uabf { aspect-ratio: 0.8570034163006345 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); left: 724px; overflow: visible; position: absolute; top: 56%; transform: translateY(-50%); width: 30px; }\",\".framer-dOh44 .framer-1u128v6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: 877px; overflow: visible; position: absolute; top: 52%; transform: translateY(-50%); width: 40px; }\",\".framer-dOh44 .framer-8zhpb0 { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); left: 932px; overflow: visible; position: absolute; top: 54%; transform: translateY(-50%); width: 67px; }\",\".framer-dOh44 .framer-fxjbin { aspect-ratio: 4.552901023890785 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); left: 1013px; overflow: visible; position: absolute; top: 51%; transform: translateY(-50%); width: 105px; }\",\".framer-dOh44 .framer-1n2s19t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dOh44 .framer-1ktg8zz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 32%; overflow: hidden; padding: 11px 0px 11px 0px; position: absolute; top: 0px; transform: translateX(-50%); width: 767px; z-index: 1; }\",\".framer-dOh44 .framer-uh449u { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 583px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-dOh44 .framer-1yq8ivm { 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 0px 30px 0px; position: relative; width: 100%; }\",\".framer-dOh44 .framer-1ny373r, .framer-dOh44 .framer-1wqt6ro { --border-bottom-width: 1px; --border-color: var(--token-c801999b-ebf9-448a-97b5-7c4ffd9b6f48, rgba(34, 34, 34, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 320px; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dOh44 .framer-xevamb, .framer-dOh44 .framer-s1pegh, .framer-dOh44 .framer-jsz5x5, .framer-dOh44 .framer-7m5i6i { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-dOh44 .framer-e7wpn8-container, .framer-dOh44 .framer-110yjm8-container, .framer-dOh44 .framer-1eysjwc-container { flex: none; height: auto; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-dOh44 .framer-570k61, .framer-dOh44 .framer-16aoqov, .framer-dOh44 .framer-1qy9bap { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dOh44 .framer-ng2lwe-container, .framer-dOh44 .framer-1qbuia6-container, .framer-dOh44 .framer-dxc3jm-container, .framer-dOh44 .framer-1n42ipl-container, .framer-dOh44 .framer-12efxia-container, .framer-dOh44 .framer-1g0z0rq-container, .framer-dOh44 .framer-1n8uwus-container, .framer-dOh44 .framer-1rwgg5d-container, .framer-dOh44 .framer-blrgvk-container, .framer-dOh44 .framer-1j6ot8l-container, .framer-dOh44 .framer-yo1rva-container, .framer-dOh44 .framer-21jzw8-container, .framer-dOh44 .framer-188zzun-container, .framer-dOh44 .framer-1e73lxc-container, .framer-dOh44 .framer-7i5c6l-container, .framer-dOh44 .framer-16kbwiw-container, .framer-dOh44 .framer-62sq8w-container, .framer-dOh44 .framer-1l89p0g-container, .framer-dOh44 .framer-14254mc-container, .framer-dOh44 .framer-1khyqi3-container, .framer-dOh44 .framer-kb5ohq-container, .framer-dOh44 .framer-oudiwf-container, .framer-dOh44 .framer-1muc87k-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-dOh44 .framer-dd0agf { --border-bottom-width: 1px; --border-color: var(--token-c801999b-ebf9-448a-97b5-7c4ffd9b6f48, rgba(34, 34, 34, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-82008375-345c-4b07-af5e-42649ba61d47, #1ab8d2); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 320px; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-dOh44 .framer-1ymcu3y { align-content: center; align-items: center; 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-dOh44 .framer-1rtp000 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dOh44 .framer-1thrcol { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 40px 16px 40px; position: relative; width: 1160px; }\",\".framer-dOh44 .framer-8j95nl-container, .framer-dOh44 .framer-7ntwkn-container, .framer-dOh44 .framer-zzacu4-container { flex: none; height: auto; position: relative; width: 340px; }\",\".framer-dOh44 .framer-1colxu5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-dOh44 .framer-85022w-container { flex: none; height: 59px; position: relative; width: 100%; }\",\".framer-dOh44 .framer-167n1j8-container { height: 65px; position: relative; width: 2664px; }\",\".framer-dOh44 .framer-170j2mj { align-content: center; align-items: center; background-color: #ededed; 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: 38px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 40px 16px 40px; position: relative; width: 1160px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dOh44 .framer-2ud2na { 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: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dOh44 .framer-fqnqa4 { display: grid; flex: none; gap: 40px 40px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dOh44 .framer-1lpzsmy-container, .framer-dOh44 .framer-q8d2id-container, .framer-dOh44 .framer-1qgtik0-container, .framer-dOh44 .framer-18ugfqn-container, .framer-dOh44 .framer-1sl0dfs-container, .framer-dOh44 .framer-uqn3o9-container, .framer-dOh44 .framer-1gsyma-container, .framer-dOh44 .framer-17qbzua-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 1fr; }\",\".framer-dOh44 .framer-1e4l3eg-container { flex: none; height: 333px; position: relative; width: 1160px; }\",\".framer-dOh44 .framer-kcasxh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-dOh44 .framer-1m9t0dt { background-color: #ffffff; flex: none; height: 44px; overflow: hidden; position: relative; width: 100%; }\",\".framer-dOh44 .framer-1wzlxrm { -webkit-user-select: none; flex: none; height: auto; left: 30px; pointer-events: auto; position: absolute; top: 50%; transform: translateY(-50%); user-select: none; white-space: pre; width: auto; }\",\".framer-dOh44 .framer-pnmwhh { display: grid; flex: none; gap: 20px; grid-auto-rows: 200px; grid-template-columns: repeat(3, minmax(50px, 1fr)); height: 519px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-dOh44 .framer-1x78p0d { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 1fr; }\",\".framer-dOh44 .framer-dfjn19 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 75px; height: min-content; justify-content: flex-start; padding: 33px 0px 33px 0px; position: relative; text-decoration: none; width: 1140px; }\",\".framer-dOh44 .framer-9ox3df { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-dOh44 .framer-ilug4b { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; gap: 10px; height: 138px; position: relative; width: 247px; z-index: 1; }\",\".framer-dOh44 .framer-9tyiea { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-dOh44 .framer-1gbnk1e, .framer-dOh44 .framer-kg65on { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 320px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-dOh44 .framer-zokzbe { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 12px 24px 12px 24px; position: relative; width: min-content; z-index: 1; }\",\".framer-dOh44 .framer-1szcc8n { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-dOh44 .framer-2pkhyu-container { flex: none; height: 578px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-dOh44[data-border=\"true\"]::after, .framer-dOh44 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-dOh44.framer-1xegpgc { width: 810px; } .framer-dOh44 .framer-1obm1hv-container { order: 0; width: 810px; } .framer-dOh44 .framer-ot4m1r { gap: 37px; order: 1; padding: 10px; width: 100%; } .framer-dOh44 .framer-rizzzo { height: 100%; left: calc(52.94117647058826% - 100% / 2); transform: unset; width: 100%; } .framer-dOh44 .framer-1pdahl4 { height: 108%; left: 0px; transform: unset; width: 100%; } .framer-dOh44 .framer-eupjj4-container { bottom: 0px; left: 66%; transform: translateX(-50%); } .framer-dOh44 .framer-1jsspkr-container { order: 3; } .framer-dOh44 .framer-ybdw3 { gap: 27px; justify-content: flex-start; order: 4; width: 100%; } .framer-dOh44 .framer-1amzfu1, .framer-dOh44 .framer-912mlq, .framer-dOh44 .framer-1010hw3 { height: min-content; padding: 10px; } .framer-dOh44 .framer-d7bnft, .framer-dOh44 .framer-16t7h3h, .framer-dOh44 .framer-1efi0fr { height: var(--framer-aspect-ratio-supported, 200px); width: 200px; } .framer-dOh44 .framer-16lrl6d { order: 5; width: 100%; } .framer-dOh44 .framer-1chwxrm, .framer-dOh44 .framer-9ox3df, .framer-dOh44 .framer-ilug4b { width: 100%; } .framer-dOh44 .framer-z684ui { gap: 0px; width: 100%; } .framer-dOh44 .framer-1j3vbkf { width: 355px; } .framer-dOh44 .framer-gqw9ec-container { order: 6; } .framer-dOh44 .framer-1n2s19t { order: 7; } .framer-dOh44 .framer-1ktg8zz { left: 34%; width: 549px; } .framer-dOh44 .framer-uh449u { width: 473px; } .framer-dOh44 .framer-1thrcol { order: 8; width: 100%; } .framer-dOh44 .framer-17zmzxj { max-width: 810px; width: min-content; } .framer-dOh44 .framer-8j95nl-container, .framer-dOh44 .framer-7ntwkn-container, .framer-dOh44 .framer-zzacu4-container { width: 250px; } .framer-dOh44 .framer-170j2mj { order: 9; width: 100%; } .framer-dOh44 .framer-2ud2na { align-content: center; align-items: center; } .framer-dOh44 .framer-fqnqa4 { gap: 15px 15px; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(3, min-content); } .framer-dOh44 .framer-1e4l3eg-container { height: 398px; order: 10; width: 740px; } .framer-dOh44 .framer-kcasxh { order: 11; width: 100%; } .framer-dOh44 .framer-pnmwhh { gap: 10px 10px; } .framer-dOh44 .framer-1x78p0d { padding: 0px 15px 0px 15px; width: 100%; } .framer-dOh44 .framer-dfjn19 { align-content: flex-start; align-items: flex-start; gap: 0px; max-width: 100%; padding: 25px 0px 25px 0px; width: 100%; } .framer-dOh44 .framer-1gbnk1e, .framer-dOh44 .framer-kg65on { max-width: 100%; width: auto; } .framer-dOh44 .framer-2pkhyu-container { height: 670px; order: 12; }}\",\"@media (max-width: 809px) { .framer-dOh44.framer-1xegpgc { gap: 10px; width: 390px; } .framer-dOh44 .framer-1obm1hv-container { height: 81px; order: 0; } .framer-dOh44 .framer-ot4m1r { flex-direction: column; gap: 11px; height: min-content; order: 1; padding: 0px 10px 0px 10px; width: 100%; } .framer-dOh44 .framer-7ur2qq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-dOh44 .framer-rizzzo { left: unset; position: relative; top: unset; transform: unset; width: 100%; } .framer-dOh44 .framer-10vecjz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; padding: 18px 0px 18px 0px; width: 100%; } .framer-dOh44 .framer-1pdahl4 { left: unset; order: 0; position: relative; top: unset; transform: unset; width: 100%; } .framer-dOh44 .framer-eupjj4-container { bottom: unset; left: unset; order: 1; position: relative; } .framer-dOh44 .framer-1bgkzuj-container { order: 2; } .framer-dOh44 .framer-ybdw3 { order: 4; padding: 0px 40px 20px 40px; width: 100%; } .framer-dOh44 .framer-hcufb { flex-direction: column; } .framer-dOh44 .framer-1amzfu1 { flex: none; gap: 30px; height: min-content; padding: 10px; width: 100%; } .framer-dOh44 .framer-912mlq { flex: none; height: min-content; padding: 10px; width: 100%; } .framer-dOh44 .framer-1010hw3 { flex: none; gap: 38px; height: min-content; padding: 10px; width: 100%; } .framer-dOh44 .framer-1efi0fr { height: var(--framer-aspect-ratio-supported, 169px); width: 169px; } .framer-dOh44 .framer-16lrl6d { gap: 4px; order: 5; padding: 0px 5px 0px 5px; width: 100%; } .framer-dOh44 .framer-1chwxrm, .framer-dOh44 .framer-9ox3df { gap: 0px; width: 100%; } .framer-dOh44 .framer-1ur6v9c { gap: 10px; } .framer-dOh44 .framer-10gzxou { height: auto; max-width: 100%; } .framer-dOh44 .framer-1xwdyf5, .framer-dOh44 .framer-1gbnk1e { max-width: 100%; width: auto; } .framer-dOh44 .framer-z684ui { align-content: flex-start; align-items: flex-start; gap: 0px; width: 100%; } .framer-dOh44 .framer-1f6wsr6, .framer-dOh44 .framer-ajr85z, .framer-dOh44 .framer-nhwmj1 { gap: 0px; min-height: unset; padding: 10px 0px 10px 0px; } .framer-dOh44 .framer-1vmmwap, .framer-dOh44 .framer-eg3zg9 { left: unset; position: relative; top: unset; transform: unset; } .framer-dOh44 .framer-126xm22, .framer-dOh44 .framer-14yu3q3, .framer-dOh44 .framer-7nfonp { height: 190px; left: unset; position: relative; right: unset; top: unset; width: 181px; } .framer-dOh44 .framer-7ccx12, .framer-dOh44 .framer-21upvi, .framer-dOh44 .framer-1cr2ncw { left: unset; position: relative; right: unset; top: unset; width: 170px; } .framer-dOh44 .framer-1kbol5u { align-content: flex-start; align-items: flex-start; } .framer-dOh44 .framer-1fdp97g { gap: 0px; height: 406px; min-height: unset; padding: 10px 0px 10px 0px; } .framer-dOh44 .framer-jyljly { height: auto; left: unset; position: relative; top: unset; transform: unset; } .framer-dOh44 .framer-jc6q2z { left: unset; order: 0; position: relative; top: unset; transform: unset; } .framer-dOh44 .framer-1j3vbkf { height: 190px; order: 1; position: relative; right: unset; top: unset; width: 181px; } .framer-dOh44 .framer-2ddu9a { left: unset; order: 3; position: relative; right: unset; top: unset; width: 170px; } .framer-dOh44 .framer-gqw9ec-container { order: 6; } .framer-dOh44 .framer-1n2s19t { order: 7; } .framer-dOh44 .framer-1ktg8zz { height: 127px; left: unset; padding: 11px 15px 11px 15px; position: relative; top: unset; transform: unset; width: 100%; } .framer-dOh44 .framer-uh449u { flex: 1 0 0px; width: 1px; } .framer-dOh44 .framer-1yq8ivm { align-content: center; align-items: center; flex-direction: column; } .framer-dOh44 .framer-1ny373r { flex: none; padding: 10px; width: 100%; } .framer-dOh44 .framer-570k61, .framer-dOh44 .framer-16aoqov { gap: 14px; } .framer-dOh44 .framer-dd0agf, .framer-dOh44 .framer-1wqt6ro { flex: none; width: 100%; } .framer-dOh44 .framer-1qy9bap { gap: 15px; } .framer-dOh44 .framer-1thrcol { order: 8; width: 100%; } .framer-dOh44 .framer-17zmzxj { flex-direction: column; max-width: 810px; width: min-content; } .framer-dOh44 .framer-8j95nl-container, .framer-dOh44 .framer-7ntwkn-container, .framer-dOh44 .framer-zzacu4-container { width: 250px; } .framer-dOh44 .framer-1e4l3eg-container { height: auto; order: 9; width: 100%; } .framer-dOh44 .framer-kcasxh { order: 11; width: 100%; } .framer-dOh44 .framer-pnmwhh { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; } .framer-dOh44 .framer-1x78p0d { align-content: center; align-items: center; align-self: unset; padding: 0px 15px 0px 15px; width: 100%; } .framer-dOh44 .framer-dfjn19 { flex-direction: column; gap: 0px; max-width: 100%; padding: 10px 0px 10px 0px; width: 100%; } .framer-dOh44 .framer-ilug4b { width: 100%; } .framer-dOh44 .framer-2pkhyu-container { height: 710px; order: 12; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6304\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VO3UWuvPo\":{\"layout\":[\"fixed\",\"auto\"]},\"qyoIYLLVM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-dOh44\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6304,width:1200};addFonts(FrameraugiA20Il,[{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:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Mulish\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSKeOvG547LTZFwA.woff2\",weight:\"400\"},{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaWlGrw-PTY.woff2\",weight:\"400\"},{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaWlGrw-PTY.woff2\",weight:\"600\"}]},...HeaderFonts,...ButtonFonts,...SlideshowFonts,...TickerFonts,...FeatureListFonts,...TagFonts,...TestimonialCardFonts,...LOGOSFonts,...FeatureSimpleFonts,...GetTheMostBlueboxFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"6304\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VO3UWuvPo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qyoIYLLVM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "o", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "amountChildren", "j", "hasChildren", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "index", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "PhosphorFonts", "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", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "bVToBLBTS", "KqeH5xil_", "MJWWsEY26", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerj1KKI8PCr", "withCSS", "j1KKI8PCr_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "CTAFonts", "j1KKI8PCr_default", "PhosphorControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "color", "cTA", "cTA1", "height", "icon", "id", "link", "text", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "Pzs4GcH4x", "ET3uJSa1F", "Z6hiuC6BW", "ZfP85W1Qa", "ZdZM7np2V", "iHqIagJOF", "RsSBbXcyG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Icon", "RichText2", "j1KKI8PCr_default", "css", "FramerD7Cp06g7I", "withCSS", "D7Cp06g7I_default", "addPropertyControls", "ControlType", "PhosphorControls", "addFonts", "PhosphorFonts", "CTAFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "company", "height", "id", "image", "image1", "name1", "quote", "subtitle", "subtitle1", "visible", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "bErIHJkdI", "tbHzgMiO7", "aY3NDFicr", "oVU8J_Br4", "yhkvJJf0e", "iblTMwOmJ", "d_UTY0YE0", "cbUz736fH", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapyrm1mk", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "Framerhq1I4tmsL", "withCSS", "hq1I4tmsL_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CTAFonts", "getFonts", "j1KKI8PCr_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cTA", "cTA1", "height", "id", "rainbow", "title", "titleOpacity", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "GmAhv_WVa", "hSgW9f2ir", "ToKaS18SW", "p2xmGpLux", "Z69PPXt7v", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramermZL7XTwt9", "withCSS", "mZL7XTwt9_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "css", "Framero_S8TyKF5", "withCSS", "o_S8TyKF5_default", "addFonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "color", "height", "icon", "id", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "T2CsNbFcm", "pbavLymla", "jTcf_EQ_W", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Icon", "RichText2", "css", "FramerZKjbJbBS1", "withCSS", "ZKjbJbBS1_default", "addPropertyControls", "ControlType", "PhosphorControls", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "HeaderFonts", "getFonts", "MHHwtatMr_default", "ButtonFonts", "g0qtMSL1z_default", "SlideshowFonts", "Slideshow", "MotionDivWithFX", "withFX", "motion", "TickerFonts", "Ticker", "ContainerWithFX", "Container", "FeatureListFonts", "ZKjbJbBS1_default", "TagFonts", "mZL7XTwt9_default", "TestimonialCardFonts", "hq1I4tmsL_default", "LOGOSFonts", "o_S8TyKF5_default", "FeatureSimpleFonts", "D7Cp06g7I_default", "GetTheMostBlueboxFonts", "F68aRHBUn_default", "FooterFonts", "VeheTyp0u_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "animation", "transition1", "textEffect", "transition2", "animation1", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "animation6", "animation7", "transformTemplate2", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "sharedDateFormatter", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "s752TJ9vCO4BeD8JUt", "TWVnzUt6uO4BeD8JUt", "GoqqMAJDnO4BeD8JUt", "MBpEXgGQlO4BeD8JUt", "baQjlBpPbO4BeD8JUt", "idO4BeD8JUt", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "RichText2", "x", "ResolveLinks", "resolvedLinks", "Image2", "getLoadingLazyAtYPosition", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "ChildrenCanSuspend", "PqPrcRKFo_default", "collection", "l", "index", "textContent", "PathVariablesContext", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
