{
  "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/nLBA6W6ulPU7Wc050o00/cli4aOW3qTU2b5Y4stuz/A88el8sWh.js", "ssg:https://framerusercontent.com/modules/gKUSELZukFhpmSpihSJr/ySQAWi8qwkzq6PD1dgtB/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", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/PwkabPbHeA14rgLJbVdQ/XgXeY8kKY3nLFGDBPcBQ/buEUAkVr6.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/kLEIfJrRyefJd3Eju9Hv/yfHUb1SA4MOtJTv4ipVr/Qm1G9Oia1.js\";import LearnMore from\"https://framerusercontent.com/modules/q5Dypxr0MtNgc04xYs9t/fFGl9atO5XkjHpDoKL0P/xvzHEmk6z.js\";const LearnMoreFonts=getFonts(LearnMore);const enabledGestures={b8291eYPy:{hover:true},p0wzd5DZ_:{hover:true},vJRbopz87:{hover:true}};const cycleOrder=[\"vJRbopz87\",\"b8291eYPy\",\"p0wzd5DZ_\"];const serializationHash=\"framer-4lHIQ\";const variantClassNames={b8291eYPy:\"framer-v-1ju4btb\",p0wzd5DZ_:\"framer-v-44hyfv\",vJRbopz87:\"framer-v-o86fuo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.3,type:\"spring\"};const transition2={damping:18,delay:0,mass:1,stiffness:250,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 1\":\"vJRbopz87\",\"Desktop 2\":\"b8291eYPy\",\"Desktop 3\":\"p0wzd5DZ_\"};const getProps=({buttonText,description,height,id,link,newTab,title,width,...props})=>{return{...props,c_euwVzQA:buttonText??props.c_euwVzQA??\"Learn more\",kXusyM01h:description??props.kXusyM01h??\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros element.\",n3f_U1TIm:title??props.n3f_U1TIm??\"Medium length section heading\",variant:humanReadableVariantMap[props.variant]??props.variant??\"vJRbopz87\",xGyApAtu0:link??props.xGyApAtu0,ZGo1bpNEA:newTab??props.ZGo1bpNEA};};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,xGyApAtu0,ZGo1bpNEA,n3f_U1TIm,kXusyM01h,c_euwVzQA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vJRbopz87\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"b8291eYPy-hover\",\"p0wzd5DZ_-hover\"].includes(gestureVariant))return false;if([\"b8291eYPy\",\"p0wzd5DZ_\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"b8291eYPy-hover\")return true;if(baseVariant===\"b8291eYPy\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"p0wzd5DZ_-hover\")return true;if(baseVariant===\"p0wzd5DZ_\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({p0wzd5DZ_:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:xGyApAtu0,motionChild:true,nodeId:\"vJRbopz87\",openInNewTab:ZGo1bpNEA,scopeId:\"A88el8sWh\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-o86fuo\",className,classNames)} framer-n0mdn`,\"data-border\":true,\"data-framer-name\":\"Desktop 1\",layoutDependency:layoutDependency,layoutId:\"vJRbopz87\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-eeb5e4e5-ada7-4df7-90aa-32989f3c856c, rgba(255, 255, 255, 0.08))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-d077af01-4799-412e-882e-8ed5ac75c8c7, rgba(235, 235, 235, 0.02))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"b8291eYPy-hover\":{\"--border-color\":\"rgba(255, 255, 255, 0.2)\",backgroundColor:\"rgba(235, 235, 235, 0.06)\"},\"p0wzd5DZ_-hover\":{\"--border-color\":\"rgba(255, 255, 255, 0.2)\",backgroundColor:\"rgba(235, 235, 235, 0.06)\"},\"vJRbopz87-hover\":{\"--border-color\":\"rgba(255, 255, 255, 0.2)\",backgroundColor:\"rgba(235, 235, 235, 0.06)\"}},...addPropertyOverrides({\"b8291eYPy-hover\":{\"data-framer-name\":undefined},\"p0wzd5DZ_-hover\":{\"data-framer-name\":undefined},\"vJRbopz87-hover\":{\"data-framer-name\":undefined},b8291eYPy:{\"data-framer-name\":\"Desktop 2\"},p0wzd5DZ_:{\"data-framer-name\":\"Desktop 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+0),pixelHeight:1500,pixelWidth:2e3,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/kJ3JIkVv3ca51AzHa6i6Gk46WA.webp\",srcSet:\"https://framerusercontent.com/images/kJ3JIkVv3ca51AzHa6i6Gk46WA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/kJ3JIkVv3ca51AzHa6i6Gk46WA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/kJ3JIkVv3ca51AzHa6i6Gk46WA.webp 2000w\"},className:\"framer-x6z539\",layoutDependency:layoutDependency,layoutId:\"HT5swDeqv\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({b8291eYPy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+0),pixelHeight:1125,pixelWidth:2e3,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/J6st9jvuzD5gbbsKiRflCWmYSU.webp\",srcSet:\"https://framerusercontent.com/images/J6st9jvuzD5gbbsKiRflCWmYSU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/J6st9jvuzD5gbbsKiRflCWmYSU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/J6st9jvuzD5gbbsKiRflCWmYSU.webp 2000w\"}},p0wzd5DZ_:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+0),pixelHeight:1125,pixelWidth:2e3,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/tBngjkNeCqc1m907kY8BkX1SVSQ.webp\",srcSet:\"https://framerusercontent.com/images/tBngjkNeCqc1m907kY8BkX1SVSQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/tBngjkNeCqc1m907kY8BkX1SVSQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/tBngjkNeCqc1m907kY8BkX1SVSQ.webp 2000w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pb7luu\",\"data-framer-name\":\"content wrap\",layoutDependency:layoutDependency,layoutId:\"m0sFOJ3Q4\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jm99lz\",\"data-framer-name\":\"text wrap\",layoutDependency:layoutDependency,layoutId:\"EU7oXCGU_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v8xrda\",\"data-framer-name\":\"title wrap\",layoutDependency:layoutDependency,layoutId:\"dmQ2jvEm8\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-14dn3jk\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:28,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"n3Uhmouvg\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"#F39C18\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-monitor-play\"><path d=\"M10 7.75a.75.75 0 0 1 1.142-.638l3.664 2.249a.75.75 0 0 1 0 1.278l-3.664 2.25a.75.75 0 0 1-1.142-.64zM12 17v4m-4 0h8\"/><rect x=\"2\" y=\"3\" width=\"20\" height=\"14\" rx=\"2\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-18d38d8\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:28,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"PUc4EjbqL\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"#F39C18\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-clapperboard\"><path d=\"M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3Zm-14-.7 3.1 3.9m3.1-5.8 3.1 4M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z\"/></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-pp9rs8\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:28,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"UbVI8WHgW\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"#F39C18\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-paintbrush\"><path d=\"m14.622 17.897-10.68-2.913M18.376 2.622a1 1 0 1 1 3.002 3.002L17.36 9.643a.5.5 0 0 0 0 .707l.944.944a2.41 2.41 0 0 1 0 3.408l-.944.944a.5.5 0 0 1-.707 0L8.354 7.348a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.408 0l.944.944a.5.5 0 0 0 .707 0zM9 8c-1.804 2.71-3.97 3.46-6.583 3.948a.507.507 0 0 0-.302.819l7.32 8.883a1 1 0 0 0 1.185.204C12.735 20.405 16 16.792 16 15\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-arteti\",\"data-styles-preset\":\"buEUAkVr6\",children:\"Medium length section heading\"})}),className:\"framer-18uqcef\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YpKeWEcDz\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:n3f_U1TIm,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fh1vb0\",\"data-styles-preset\":\"Qm1G9Oia1\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe2ca345-647e-418b-8cf9-6dcf663b2b5e, rgb(144, 153, 163)))\"},children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros element.\"})}),className:\"framer-tkqnyo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bhP7lBQlR\",style:{\"--extracted-r6o4lv\":\"var(--token-fe2ca345-647e-418b-8cf9-6dcf663b2b5e, rgb(144, 153, 163))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:kXusyM01h,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+(componentViewport?.height||439.5)-44,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fzrkwy-container\",layoutDependency:layoutDependency,layoutId:\"hFUW_iyaE-container\",nodeId:\"hFUW_iyaE\",rendersWithMotion:true,scopeId:\"A88el8sWh\",children:/*#__PURE__*/_jsx(LearnMore,{height:\"100%\",id:\"hFUW_iyaE\",KWKxTUlFe:c_euwVzQA,layoutId:\"hFUW_iyaE\",variant:\"npvrV6LNX\",width:\"100%\",...addPropertyOverrides({\"b8291eYPy-hover\":{variant:\"n50PONQd2\"},\"p0wzd5DZ_-hover\":{variant:\"n50PONQd2\"},\"vJRbopz87-hover\":{variant:\"n50PONQd2\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4lHIQ.framer-n0mdn, .framer-4lHIQ .framer-n0mdn { display: block; }\",\".framer-4lHIQ.framer-o86fuo { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; text-decoration: none; width: 340px; will-change: var(--framer-will-change-override, transform); }\",\".framer-4lHIQ .framer-x6z539 { aspect-ratio: 1.6222222222222222 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 185px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-4lHIQ .framer-1pb7luu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4lHIQ .framer-1jm99lz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 44px 0px; position: relative; width: 100%; }\",\".framer-4lHIQ .framer-v8xrda { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4lHIQ .framer-14dn3jk, .framer-4lHIQ .framer-18d38d8, .framer-4lHIQ .framer-pp9rs8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-4lHIQ .framer-18uqcef { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-4lHIQ .framer-tkqnyo { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4lHIQ .framer-fzrkwy-container { bottom: 20px; flex: none; height: auto; left: 20px; position: absolute; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4lHIQ.framer-o86fuo, .framer-4lHIQ .framer-1pb7luu, .framer-4lHIQ .framer-1jm99lz, .framer-4lHIQ .framer-v8xrda { gap: 0px; } .framer-4lHIQ.framer-o86fuo > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-4lHIQ.framer-o86fuo > :first-child, .framer-4lHIQ .framer-1pb7luu > :first-child, .framer-4lHIQ .framer-1jm99lz > :first-child { margin-top: 0px; } .framer-4lHIQ.framer-o86fuo > :last-child, .framer-4lHIQ .framer-1pb7luu > :last-child, .framer-4lHIQ .framer-1jm99lz > :last-child { margin-bottom: 0px; } .framer-4lHIQ .framer-1pb7luu > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-4lHIQ .framer-1jm99lz > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-4lHIQ .framer-v8xrda > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } .framer-4lHIQ .framer-v8xrda > :first-child { margin-left: 0px; } .framer-4lHIQ .framer-v8xrda > :last-child { margin-right: 0px; } }\",\".framer-4lHIQ.framer-v-1ju4btb .framer-x6z539, .framer-4lHIQ.framer-v-44hyfv .framer-x6z539 { order: 0; }\",\".framer-4lHIQ.framer-v-1ju4btb .framer-1pb7luu, .framer-4lHIQ.framer-v-44hyfv .framer-1pb7luu { order: 1; }\",\".framer-4lHIQ.framer-v-1ju4btb .framer-fzrkwy-container, .framer-4lHIQ.framer-v-44hyfv .framer-fzrkwy-container { order: 2; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-4lHIQ[data-border=\"true\"]::after, .framer-4lHIQ [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 439.5\n * @framerIntrinsicWidth 340\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"b8291eYPy\":{\"layout\":[\"fixed\",\"auto\"]},\"p0wzd5DZ_\":{\"layout\":[\"fixed\",\"auto\"]},\"Qw14IfXw9\":{\"layout\":[\"fixed\",\"auto\"]},\"Yp5nWnW7E\":{\"layout\":[\"fixed\",\"auto\"]},\"GnEmnyM8G\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"xGyApAtu0\":\"link\",\"ZGo1bpNEA\":\"newTab\",\"n3f_U1TIm\":\"title\",\"kXusyM01h\":\"description\",\"c_euwVzQA\":\"buttonText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerA88el8sWh=withCSS(Component,css,\"framer-4lHIQ\");export default FramerA88el8sWh;FramerA88el8sWh.displayName=\"home page cards\";FramerA88el8sWh.defaultProps={height:439.5,width:340};addPropertyControls(FramerA88el8sWh,{variant:{options:[\"vJRbopz87\",\"b8291eYPy\",\"p0wzd5DZ_\"],optionTitles:[\"Desktop 1\",\"Desktop 2\",\"Desktop 3\"],title:\"Variant\",type:ControlType.Enum},xGyApAtu0:{title:\"Link\",type:ControlType.Link},ZGo1bpNEA:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},n3f_U1TIm:{defaultValue:\"Medium length section heading\",displayTextArea:true,title:\"Title\",type:ControlType.String},kXusyM01h:{defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros element.\",description:\"\",displayTextArea:true,title:\"Description\",type:ControlType.String},c_euwVzQA:{defaultValue:\"Learn more\",displayTextArea:false,title:\"Button text\",type:ControlType.String}});addFonts(FramerA88el8sWh,[{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\"}]},...LearnMoreFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerA88el8sWh\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"340\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"b8291eYPy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p0wzd5DZ_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Qw14IfXw9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Yp5nWnW7E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GnEmnyM8G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"xGyApAtu0\\\":\\\"link\\\",\\\"ZGo1bpNEA\\\":\\\"newTab\\\",\\\"n3f_U1TIm\\\":\\\"title\\\",\\\"kXusyM01h\\\":\\\"description\\\",\\\"c_euwVzQA\\\":\\\"buttonText\\\"}\",\"framerIntrinsicHeight\":\"439.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\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,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import HomePageCards from\"#framer/local/canvasComponent/A88el8sWh/A88el8sWh.js\";import BlogCard from\"#framer/local/canvasComponent/CIv0e5vII/CIv0e5vII.js\";import Footer from\"#framer/local/canvasComponent/dZcuWgY6K/dZcuWgY6K.js\";import LearnMoreWithLink from\"#framer/local/canvasComponent/r7M0JSe_H/r7M0JSe_H.js\";import Tag from\"#framer/local/canvasComponent/UuhoBFD4W/UuhoBFD4W.js\";import Primary from\"#framer/local/canvasComponent/x0LZ3vScn/x0LZ3vScn.js\";import NewsletterOverlay from\"#framer/local/canvasComponent/XUTkCWS4R/XUTkCWS4R.js\";import Authors from\"#framer/local/collection/H0LWy6cSe/H0LWy6cSe.js\";import Blog,{enumToDisplayNameFunctions}from\"#framer/local/collection/Yb8__Qz9L/Yb8__Qz9L.js\";import*as sharedStyle3 from\"#framer/local/css/Qm1G9Oia1/Qm1G9Oia1.js\";import*as sharedStyle4 from\"#framer/local/css/rT7URgRmS/rT7URgRmS.js\";import*as sharedStyle from\"#framer/local/css/ScZ6TjnNy/ScZ6TjnNy.js\";import*as sharedStyle1 from\"#framer/local/css/VN3Mc_Q7g/VN3Mc_Q7g.js\";import*as sharedStyle2 from\"#framer/local/css/yemYXfOrG/yemYXfOrG.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const PrimaryFonts=getFonts(Primary);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const TagFonts=getFonts(Tag);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const VideoFonts=getFonts(Video);const TickerFonts=getFonts(Ticker);const HomePageCardsFonts=getFonts(HomePageCards);const LearnMoreWithLinkFonts=getFonts(LearnMoreWithLink);const BlogCardFonts=getFonts(BlogCard);const FooterFonts=getFonts(Footer);const NewsletterOverlayFonts=getFonts(NewsletterOverlay);const breakpoints={eJ4YlWdPQ:\"(max-width: 809px)\",NK8Bm3bfJ:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-1k2sE\";const variantClassNames={eJ4YlWdPQ:\"framer-v-15r0pyk\",NK8Bm3bfJ:\"framer-v-3slvr8\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={bounce:0,delay:.15,duration:.5,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:16};const transition2={bounce:0,delay:.25,duration:.5,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={bounce:0,delay:.35,duration:.5,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={bounce:0,delay:.45,duration:.5,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={bounce:0,delay:.55,duration:.5,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"eJ4YlWdPQ\",Tablet:\"NK8Bm3bfJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,EMB3LXBc8vPj1aMO5G,gnqc2lHWrvPj1aMO5G,dWF7ZX5jbvPj1aMO5G,bU0uSeg50vPj1aMO5G,pih_Md_FBvPj1aMO5G,YoXo9P8If_j8dCE0PmkvPj1aMO5G,YoXo9P8If_SOJ823UxFvPj1aMO5G,jLL7geCvQvPj1aMO5G,idvPj1aMO5G,EMB3LXBc8HhWj93Bd6,gnqc2lHWrHhWj93Bd6,dWF7ZX5jbHhWj93Bd6,bU0uSeg50HhWj93Bd6,pih_Md_FBHhWj93Bd6,YoXo9P8If_j8dCE0PmkHhWj93Bd6,YoXo9P8If_SOJ823UxFHhWj93Bd6,jLL7geCvQHhWj93Bd6,idHhWj93Bd6,EMB3LXBc8B4P6y4tWg,gnqc2lHWrB4P6y4tWg,dWF7ZX5jbB4P6y4tWg,bU0uSeg50B4P6y4tWg,pih_Md_FBB4P6y4tWg,YoXo9P8If_j8dCE0PmkB4P6y4tWg,YoXo9P8If_SOJ823UxFB4P6y4tWg,jLL7geCvQB4P6y4tWg,idB4P6y4tWg,...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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const rasB4INaW3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const ICfk651c_1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-c557e892-c207-43a0-bdd5-8f4ce9b6b6c6, rgb(31, 33, 40)); }\"}),/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1eoqwjz\",\"data-framer-name\":\"main\",children:[/*#__PURE__*/_jsx(\"header\",{className:\"framer-1q4hwkl\",\"data-framer-name\":\"hero\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0),pixelHeight:1071,pixelWidth:2e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/FsQDF7Gty7bOHhwnKK6liWzcOUg.webp\",srcSet:\"https://framerusercontent.com/images/FsQDF7Gty7bOHhwnKK6liWzcOUg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/FsQDF7Gty7bOHhwnKK6liWzcOUg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/FsQDF7Gty7bOHhwnKK6liWzcOUg.webp 2000w\"},className:\"framer-ojnjhj\",\"data-framer-name\":\"Image wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tcb66m\",\"data-framer-name\":\"gradient\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n7wg6f\",\"data-framer-name\":\"header wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-qkomyy\",\"data-styles-preset\":\"ScZ6TjnNy\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Viewers deserve the best \",/*#__PURE__*/_jsx(\"br\",{}),\"possible experience\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-qkomyy\",\"data-styles-preset\":\"ScZ6TjnNy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Viewers deserve the best \",/*#__PURE__*/_jsx(\"br\",{}),\"possible experience\"]})}),className:\"framer-1omknz9\",\"data-framer-appear-id\":\"1omknz9\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tg9454\",\"data-styles-preset\":\"VN3Mc_Q7g\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(143, 152, 163)\"},children:[\"Pixop partners with broadcasters, media companies, and technology providers to \",/*#__PURE__*/_jsx(\"strong\",{children:\"seamlessly enhance video quality with AI\"}),\". Our solutions integrate directly into existing workflows, \",/*#__PURE__*/_jsx(\"strong\",{children:\"delivering UHD HDR from HD pipelines \u2014without costly infrastructure upgrades\"}),\".\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tg9454\",\"data-styles-preset\":\"VN3Mc_Q7g\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 152, 163)\"},children:[\"Pixop partners with broadcasters, media companies, and technology providers to \",/*#__PURE__*/_jsx(\"strong\",{children:\"seamlessly enhance video quality with AI\"}),\". Our solutions integrate directly into existing workflows, \",/*#__PURE__*/_jsx(\"strong\",{children:\"delivering UHD HDR from HD pipelines \u2014without costly infrastructure upgrades\"}),\".\"]})}),className:\"framer-ot1f2t\",\"data-framer-appear-id\":\"ot1f2t\",fonts:[\"Inter\",\"Inter-Bold\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{y:(componentViewport?.y||0)+0+0+0+0+0+0+144+0+243.2},NK8Bm3bfJ:{y:(componentViewport?.y||0)+0+0+0+0+0+0+193.4+0+243.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,y:(componentViewport?.y||0)+0+0+0+0+0+0+263.4+0+243.2,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-slp30p-container\",\"data-framer-appear-id\":\"slp30p\",\"data-framer-name\":\"cta\",initial:animation1,name:\"cta\",nodeId:\"dnc8cZGYQ\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Primary,{DNm4X5eHp:\"demo@pixop.com\",GMZZ3qyb7:\"Book Demo\",height:\"100%\",id:\"dnc8cZGYQ\",layoutId:\"dnc8cZGYQ\",name:\"cta\",sMEn53ucS:false,variant:\"Wow91wlt0\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-w50vj2\",\"data-framer-name\":\"video\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-mno44o\",\"data-framer-appear-id\":\"mno44o\",\"data-framer-name\":\"title wrap\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{y:(componentViewport?.y||0)+0+0+0+505.2+80+0+0+0},NK8Bm3bfJ:{y:(componentViewport?.y||0)+0+0+0+600+100+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+740+120+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rdfbuh-container\",nodeId:\"N6oEn6RPB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"N6oEn6RPB\",layoutId:\"N6oEn6RPB\",URzX8HV92:\"INNOVATION\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nitu3j\",\"data-styles-preset\":\"yemYXfOrG\",style:{\"--framer-text-alignment\":\"left\"},children:\"AI-Powered Video Conversion\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nitu3j\",\"data-styles-preset\":\"yemYXfOrG\",children:\"AI-Powered Video Conversion\"})}),className:\"framer-1rtvy1n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1fh1vb0\",\"data-styles-preset\":\"Qm1G9Oia1\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe2ca345-647e-418b-8cf9-6dcf663b2b5e, rgb(144, 153, 163))\"},children:[\"Leverage AI-driven \",/*#__PURE__*/_jsx(\"strong\",{children:\"upscaling, restoration, and optimization\"}),\" for seamless video enhancement. Designed for \",/*#__PURE__*/_jsx(\"strong\",{children:\"broadcasters, content owners, and media workflows\"}),\", Pixop delivers \",/*#__PURE__*/_jsx(\"strong\",{children:\"superior quality with precision and efficiency\"}),\".\"]})})},NK8Bm3bfJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tg9454\",\"data-styles-preset\":\"VN3Mc_Q7g\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fe2ca345-647e-418b-8cf9-6dcf663b2b5e, rgb(144, 153, 163))\"},children:\"Experience the power of AI-driven video enhancement with seamless upscaling, restoration, and optimization  designed to deliver exceptional quality for broadcasters, content owners, and media workflows.\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tg9454\",\"data-styles-preset\":\"VN3Mc_Q7g\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fe2ca345-647e-418b-8cf9-6dcf663b2b5e, rgb(144, 153, 163))\"},children:[\"Leverage AI-driven \",/*#__PURE__*/_jsx(\"strong\",{children:\"upscaling, restoration, and optimization\"}),\" for seamless video enhancement. Designed for \",/*#__PURE__*/_jsx(\"strong\",{children:\"broadcasters, content owners, and media workflows\"}),\", Pixop delivers \",/*#__PURE__*/_jsx(\"strong\",{children:\"superior quality with precision and efficiency\"}),\".\"]})}),className:\"framer-dgeycy\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-onaz2u\",\"data-framer-appear-id\":\"onaz2u\",\"data-framer-name\":\"video wrap\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12pe4yo\",\"data-border\":true,\"data-framer-name\":\"vide border\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zt7s1-container\",\"data-framer-name\":\"video\",isAuthoredByUser:true,isModuleExternal:true,name:\"video\",nodeId:\"JC7tZJ4fB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,controls:false,height:\"100%\",id:\"JC7tZJ4fB\",isMixedBorderRadius:false,layoutId:\"JC7tZJ4fB\",loop:true,muted:true,name:\"video\",objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://static.pixop.com/videos/ci5_website.mov\",startTime:0,style:{width:\"100%\"},topLeftRadius:16,topRightRadius:16,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9vnvyi-container\",\"data-framer-name\":\"ticker\",id:\"9vnvyi\",isAuthoredByUser:true,isModuleExternal:true,name:\"ticker\",nodeId:\"xIxxl8Ken\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:false},gap:32,height:\"100%\",hoverFactor:1,id:\"xIxxl8Ken\",layoutId:\"xIxxl8Ken\",name:\"ticker\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:101.5,intrinsicWidth:613.5,pixelHeight:203,pixelWidth:1227,sizes:\"212px\",src:\"https://framerusercontent.com/images/ntQEQQqzIopAF9qomhFdgEFfCd8.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ntQEQQqzIopAF9qomhFdgEFfCd8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ntQEQQqzIopAF9qomhFdgEFfCd8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ntQEQQqzIopAF9qomhFdgEFfCd8.webp 1227w\"},className:\"framer-1g99ktk\",\"data-framer-name\":\"BMM logo\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tk58wy\",\"data-framer-name\":\"scanbox logo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:15.5,intrinsicWidth:71,pixelHeight:31,pixelWidth:142,src:\"https://framerusercontent.com/images/YLN3Q4hdQ7TZTuChDjbnewukro.webp\"},className:\"framer-1ijrga7\",\"data-framer-name\":\"Iddk9Ji7LB 1742379579510\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:120,pixelHeight:240,pixelWidth:240,src:\"https://framerusercontent.com/images/Y8z9v8YJam6CxGPjKIaoQp9aG0.webp\"},className:\"framer-8dwp01\",\"data-framer-name\":\"TV2 logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:94.5,intrinsicWidth:800,pixelHeight:189,pixelWidth:1600,sizes:\"203px\",src:\"https://framerusercontent.com/images/mfAloOjdhn2KqGWhZANwf0xPAZs.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mfAloOjdhn2KqGWhZANwf0xPAZs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/mfAloOjdhn2KqGWhZANwf0xPAZs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/mfAloOjdhn2KqGWhZANwf0xPAZs.webp 1600w\"},className:\"framer-11suhr\",\"data-framer-name\":\"screenbound logo\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n90ycy\",\"data-framer-name\":\"Nulight studios logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 68 24\"><path d=\"M 49.256 21.757 C 49.256 21.595 49.456 21.47 49.725 21.47 C 49.994 21.47 50.237 21.595 50.237 21.775 L 51.012 21.775 C 51.012 21.115 50.462 20.754 49.737 20.754 C 49.012 20.754 48.443 21.146 48.443 21.694 C 48.443 22.928 50.287 22.43 50.287 22.946 C 50.287 23.108 50.112 23.245 49.774 23.245 C 49.437 23.245 49.187 23.108 49.187 22.909 L 48.411 22.909 C 48.411 23.606 49.055 23.967 49.755 23.967 C 50.518 23.967 51.106 23.662 51.099 22.965 C 51.087 21.788 49.256 22.205 49.256 21.757 Z M 52.519 19.564 L 51.706 19.564 L 51.706 20.804 L 51.244 20.804 L 51.244 21.595 L 51.706 21.595 L 51.706 22.448 C 51.706 23.494 52.282 23.937 53.082 23.937 L 53.082 23.146 C 52.682 23.146 52.519 22.946 52.519 22.448 L 52.519 21.595 L 53.082 21.595 L 53.082 20.804 L 52.519 20.804 Z M 55.439 22.442 C 55.439 22.94 55.277 23.177 54.876 23.177 C 54.476 23.177 54.314 22.941 54.314 22.442 L 54.314 20.804 L 53.501 20.804 L 53.501 22.442 C 53.501 23.488 54.076 23.968 54.876 23.968 C 55.677 23.968 56.252 23.488 56.252 22.442 L 56.252 20.804 L 55.439 20.804 Z M 59.04 20.991 C 58.822 20.835 58.571 20.754 58.253 20.754 C 57.362 20.754 56.64 21.474 56.64 22.361 C 56.64 23.248 57.362 23.968 58.253 23.968 C 58.68 23.968 59.089 23.798 59.391 23.497 C 59.692 23.195 59.861 22.787 59.859 22.361 L 59.859 19.558 L 59.04 19.558 Z M 58.246 23.177 C 57.784 23.177 57.453 22.822 57.453 22.361 C 57.453 21.9 57.784 21.545 58.246 21.545 C 58.709 21.545 59.053 21.9 59.053 22.361 C 59.053 22.822 58.709 23.177 58.246 23.177 Z M 60.485 20.804 L 61.298 20.804 L 61.298 23.918 L 60.485 23.918 Z M 60.891 19.508 C 60.616 19.508 60.403 19.72 60.403 19.988 C 60.403 20.262 60.616 20.474 60.891 20.474 C 61.16 20.474 61.373 20.262 61.373 19.988 C 61.373 19.86 61.323 19.738 61.233 19.648 C 61.142 19.557 61.019 19.507 60.891 19.508 Z M 63.373 20.754 C 62.479 20.754 61.76 21.47 61.76 22.361 C 61.76 23.251 62.479 23.967 63.373 23.967 C 64.267 23.967 64.986 23.251 64.986 22.361 C 64.986 21.47 64.267 20.754 63.373 20.754 Z M 63.38 23.177 C 62.917 23.177 62.573 22.822 62.573 22.361 C 62.573 21.9 62.917 21.545 63.38 21.545 C 63.842 21.545 64.173 21.9 64.173 22.361 C 64.173 22.822 63.842 23.177 63.38 23.177 Z M 66.155 21.757 C 66.155 21.595 66.356 21.47 66.624 21.47 C 66.893 21.47 67.137 21.595 67.137 21.775 L 67.912 21.775 C 67.912 21.115 67.362 20.754 66.637 20.754 C 65.911 20.754 65.343 21.146 65.343 21.694 C 65.343 22.928 67.187 22.43 67.187 22.946 C 67.187 23.108 67.011 23.245 66.674 23.245 C 66.337 23.245 66.086 23.108 66.086 22.909 L 65.311 22.909 C 65.311 23.606 65.955 23.967 66.655 23.967 C 67.418 23.967 68.005 23.662 67.999 22.965 C 67.988 21.788 66.155 22.205 66.155 21.757 Z M 24.935 0 C 24.588 0 24.255 0.137 24.009 0.382 C 23.763 0.627 23.625 0.959 23.626 1.305 L 23.626 17.337 C 23.626 18.057 24.212 18.641 24.935 18.641 C 25.659 18.641 26.245 18.057 26.245 17.337 L 26.245 1.305 C 26.245 0.959 26.107 0.627 25.862 0.382 C 25.616 0.137 25.283 0 24.935 0 Z M 29.986 5.326 L 29.935 5.326 C 29.226 5.326 28.651 5.899 28.651 6.605 L 28.651 17.362 C 28.651 18.068 29.226 18.641 29.935 18.641 L 29.986 18.641 C 30.695 18.641 31.27 18.068 31.27 17.362 L 31.27 6.606 C 31.27 5.899 30.695 5.326 29.986 5.326 Z M 37.753 5.425 C 35.608 6.058 33.93 7.73 33.294 9.867 C 31.897 14.589 35.366 18.855 39.878 18.855 C 41.336 18.855 42.654 18.336 43.658 17.505 C 43.738 17.437 43.85 17.422 43.945 17.466 C 44.04 17.51 44.101 17.605 44.101 17.709 C 44.101 19.946 42.177 21.438 39.878 21.438 C 38.767 21.438 37.817 20.999 37.062 20.225 C 36.821 19.979 36.49 19.84 36.145 19.84 L 35.991 19.84 C 34.84 19.84 34.267 21.236 35.092 22.034 C 36.879 23.763 39.593 24.518 42.386 23.524 C 44.814 22.659 46.775 19.78 46.775 17.211 L 46.775 11.984 C 46.775 7.49 42.493 4.034 37.753 5.425 Z M 43.994 13.256 C 43.631 14.703 42.487 15.849 41.029 16.191 C 38.073 16.887 35.601 14.77 35.601 11.984 C 35.601 9.56 37.445 7.643 39.905 7.643 C 42.782 7.643 44.744 10.267 43.994 13.256 Z M 54.233 5.113 C 53.382 5.113 52.62 5.259 51.957 5.654 C 51.523 5.913 50.972 5.618 50.972 5.114 L 50.972 1.305 C 50.972 0.584 50.385 0 49.662 0 C 48.938 0 48.352 0.584 48.352 1.305 L 48.352 17.337 C 48.352 18.057 48.938 18.641 49.662 18.641 C 50.385 18.641 50.972 18.057 50.972 17.337 L 50.972 11.584 C 50.972 8.921 52.148 7.643 54.233 7.643 C 56.318 7.643 57.494 8.921 57.494 11.638 L 57.494 17.337 C 57.494 18.057 58.081 18.641 58.804 18.641 C 59.527 18.641 60.114 18.057 60.114 17.337 L 60.114 11.638 C 60.114 7.164 57.655 5.113 54.233 5.113 Z M 67.095 16.015 C 65.789 15.585 65.113 14.421 65.113 12.33 L 65.113 8.496 C 65.113 8.143 65.4 7.856 65.755 7.856 L 66.716 7.856 C 67.425 7.856 68 7.283 68 6.577 C 68 5.886 67.438 5.326 66.745 5.326 L 65.755 5.326 C 65.4 5.326 65.113 5.04 65.113 4.687 L 65.113 1.839 C 65.113 1.132 64.538 0.559 63.829 0.559 L 63.777 0.559 C 63.068 0.559 62.493 1.132 62.493 1.839 L 62.493 4.687 C 62.493 5.04 62.206 5.326 61.851 5.326 L 61.77 5.326 C 61.077 5.326 60.515 5.886 60.515 6.577 C 60.517 7.283 61.091 7.854 61.799 7.856 L 61.851 7.856 C 62.206 7.856 62.493 8.143 62.493 8.496 L 62.493 12.357 C 62.515 15.871 64.045 17.81 66.363 18.47 C 67.183 18.703 68 18.088 68 17.238 L 68 17.237 C 68 16.676 67.629 16.191 67.095 16.015 Z M 19.817 4.964 C 19.085 4.964 18.492 5.555 18.492 6.283 L 18.492 12.047 C 18.492 14.794 17.303 16.087 15.194 16.087 C 13.085 16.087 11.896 14.794 11.896 12.047 L 11.896 6.284 C 11.896 6.228 11.891 6.174 11.884 6.12 C 11.713 1.931 9.283 0.003 5.947 0.003 C 2.487 0.003 0 2.078 0 6.602 L 0 12.365 C 0 13.094 0.593 13.685 1.325 13.685 C 2.056 13.685 2.649 13.094 2.649 12.365 L 2.649 6.602 C 2.649 3.855 3.839 2.562 5.947 2.562 C 8.056 2.562 9.246 3.855 9.246 6.602 L 9.246 12.365 C 9.246 12.421 9.25 12.476 9.257 12.53 C 9.429 16.719 11.859 18.645 15.194 18.645 C 18.654 18.645 21.141 16.572 21.141 12.047 L 21.141 6.284 C 21.141 5.934 21.002 5.598 20.753 5.35 C 20.505 5.103 20.168 4.964 19.817 4.964 Z M 29.96 0.279 C 29.446 0.28 28.963 0.524 28.66 0.938 C 28.357 1.351 28.27 1.884 28.426 2.372 C 28.624 3.03 29.221 3.489 29.961 3.489 C 30.184 3.489 30.394 3.444 30.585 3.363 C 30.623 3.348 30.658 3.33 30.694 3.312 C 30.702 3.307 30.71 3.304 30.718 3.3 C 31.372 2.955 31.705 2.21 31.526 1.494 C 31.346 0.779 30.7 0.278 29.96 0.279 Z\" fill=\"var(--token-7b6131ac-1ce9-4419-929c-e3b78a25b1dd, rgb(245, 245, 245)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9842163564,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:506,intrinsicWidth:530,pixelHeight:1012,pixelWidth:1060,sizes:\"28.2806px\",src:\"https://framerusercontent.com/images/IBdEzHZW9JCucGglByx6n8LvpPs.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/IBdEzHZW9JCucGglByx6n8LvpPs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/IBdEzHZW9JCucGglByx6n8LvpPs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/IBdEzHZW9JCucGglByx6n8LvpPs.webp 1060w\"},className:\"framer-1s9vyo6\",\"data-framer-name\":\"Made in Copenhagen\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:232.5,intrinsicWidth:772.5,pixelHeight:465,pixelWidth:1545,sizes:\"96.3548px\",src:\"https://framerusercontent.com/images/8LhHkb3lZRth1x0mRzNtn45I7Y.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8LhHkb3lZRth1x0mRzNtn45I7Y.webp?scale-down-to=512 512w,https://framerusercontent.com/images/8LhHkb3lZRth1x0mRzNtn45I7Y.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/8LhHkb3lZRth1x0mRzNtn45I7Y.webp 1545w\"},className:\"framer-1j0h2gk\",\"data-framer-name\":\"harmonic logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42.5,intrinsicWidth:200,pixelHeight:85,pixelWidth:400,src:\"https://framerusercontent.com/images/hm2BkHm2Xam5sFN7ULWZTDRK0U.webp\"},className:\"framer-1m8qyxt\",\"data-framer-name\":\"Bitmovin-seeklogo\"})],speed:18,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-14kiair\",\"data-framer-name\":\"The Problem\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-t2cywt\",\"data-framer-name\":\"wrap\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12smh0e\",\"data-framer-name\":\"title wrap\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zmkbuu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{y:(componentViewport?.y||0)+0+0+0+1141.4+80+0+0+0+0+0+0+0},NK8Bm3bfJ:{y:(componentViewport?.y||0)+0+0+0+1300.2+100+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+1480.2+120+0+0+0+40+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nui84w-container\",nodeId:\"riOmK8CNr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"riOmK8CNr\",layoutId:\"riOmK8CNr\",URzX8HV92:\"THE PROBLEM\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-nitu3j\",\"data-styles-preset\":\"yemYXfOrG\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7b6131ac-1ce9-4419-929c-e3b78a25b1dd, rgb(255, 255, 255))\"},children:[\"For too long,\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2018good enough\u2019 has been the standard.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-1fca0eec-2d6b-4a8d-9b87-8306e7b9432c, rgb(243, 156, 24))\"},children:\"Pixop\"}),\" challenges this - viewers deserve the best.\"]})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-13ikroc\",\"data-styles-preset\":\"rT7URgRmS\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7b6131ac-1ce9-4419-929c-e3b78a25b1dd, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"For too long, \u2018good enough\u2019 has\"})}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7b6131ac-1ce9-4419-929c-e3b78a25b1dd, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"been the standard. \"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-1fca0eec-2d6b-4a8d-9b87-8306e7b9432c, rgb(243, 156, 24))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Pixop\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7b6131ac-1ce9-4419-929c-e3b78a25b1dd, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" challenges\"})}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7b6131ac-1ce9-4419-929c-e3b78a25b1dd, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"this - viewers deserve the best.\"})})]})}),className:\"framer-18tok6n\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-btwn4h\",\"data-framer-name\":\"solutions\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zxxwbd\",\"data-framer-name\":\"wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yymzsn\",\"data-framer-name\":\"title wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{y:(componentViewport?.y||0)+0+0+0+1401.6+80+0+0+0+0+0},NK8Bm3bfJ:{y:(componentViewport?.y||0)+0+0+0+1594.6+100+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+1894.6+120+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wpd75l-container\",nodeId:\"RBDQkpCKa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"RBDQkpCKa\",layoutId:\"RBDQkpCKa\",URzX8HV92:\"SOLUTIONS\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nitu3j\",\"data-styles-preset\":\"yemYXfOrG\",style:{\"--framer-text-alignment\":\"left\"},children:\"What we offer\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nitu3j\",\"data-styles-preset\":\"yemYXfOrG\",children:\"What we offer\"})}),className:\"framer-r6bvd9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fh1vb0\",\"data-styles-preset\":\"Qm1G9Oia1\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe2ca345-647e-418b-8cf9-6dcf663b2b5e, rgb(144, 153, 163))\"},children:\"AI-powered video solutions for live, archive, and studio workflows - seamlessly enhancing quality while integrating into your existing setup.\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1tg9454\",\"data-styles-preset\":\"VN3Mc_Q7g\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fe2ca345-647e-418b-8cf9-6dcf663b2b5e, rgb(144, 153, 163))\"},children:[\"AI-powered video solutions for \",/*#__PURE__*/_jsx(\"strong\",{children:\"live, archive, and studio workflows\"}),\" - seamlessly enhancing quality while integrating into your existing setup.\"]})}),className:\"framer-8wxzas\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rx527p\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pLBZrxa1d\"},implicitPathVariables:undefined},{href:{webPageId:\"pLBZrxa1d\"},implicitPathVariables:undefined},{href:{webPageId:\"pLBZrxa1d\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px), 50px)`,y:(componentViewport?.y||0)+0+0+0+1401.6+80+0+0+292.2+0+0},NK8Bm3bfJ:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1100px) - 40px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+1594.6+100+0+0+316.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1100px) - 40px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+1894.6+120+0+0+316.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wa515x-container\",nodeId:\"iBlb_bzAM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{xGyApAtu0:resolvedLinks[2]},NK8Bm3bfJ:{xGyApAtu0:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(HomePageCards,{c_euwVzQA:\"Learn more\",height:\"100%\",id:\"iBlb_bzAM\",kXusyM01h:\"Deliver real-time, AI-enhanced live video for sports, news, and events.\\nPixop\u2019s Live Converter upgrades HD SDR to UHD HDR with ultra-low latency. Seamlessly integrates before delivery encoding  - no changes to your pipeline needed.\",layoutId:\"iBlb_bzAM\",n3f_U1TIm:\"Live Stream Conversion\",style:{height:\"100%\",width:\"100%\"},variant:\"vJRbopz87\",width:\"100%\",xGyApAtu0:resolvedLinks[0],ZGo1bpNEA:false})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kIC_nvkT9\"},implicitPathVariables:undefined},{href:{webPageId:\"kIC_nvkT9\"},implicitPathVariables:undefined},{href:{webPageId:\"kIC_nvkT9\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px), 50px)`,y:(componentViewport?.y||0)+0+0+0+1401.6+80+0+0+292.2+0+459},NK8Bm3bfJ:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1100px) - 40px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+1594.6+100+0+0+316.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1100px) - 40px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+1894.6+120+0+0+316.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3woq5s-container\",nodeId:\"J95UW_sKs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{xGyApAtu0:resolvedLinks1[2]},NK8Bm3bfJ:{xGyApAtu0:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(HomePageCards,{c_euwVzQA:\"Learn more\",height:\"100%\",id:\"J95UW_sKs\",kXusyM01h:\"Monetize and remaster VOD archives with AI upscaling and restoration.\\nPixop\u2019s VOD Converter runs via REST API on AWS, delivering scalable, UHD-quality results - without infrastructure upgrades.\",layoutId:\"J95UW_sKs\",n3f_U1TIm:\"Archive Conversion\",style:{height:\"100%\",width:\"100%\"},variant:\"b8291eYPy\",width:\"100%\",xGyApAtu0:resolvedLinks1[0],ZGo1bpNEA:false})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"z19bqHWp7\"},implicitPathVariables:undefined},{href:{webPageId:\"z19bqHWp7\"},implicitPathVariables:undefined},{href:{webPageId:\"z19bqHWp7\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px), 50px)`,y:(componentViewport?.y||0)+0+0+0+1401.6+80+0+0+292.2+0+918},NK8Bm3bfJ:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1100px) - 40px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+1594.6+100+0+0+316.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1100px) - 40px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+1894.6+120+0+0+316.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18xl4en-container\",nodeId:\"GY7VjifsH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{xGyApAtu0:resolvedLinks2[2]},NK8Bm3bfJ:{xGyApAtu0:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(HomePageCards,{c_euwVzQA:\"Learn more\",height:\"100%\",id:\"GY7VjifsH\",kXusyM01h:\"A cloud platform for fast, flexible video enhancement.\\nUse our browser-based app to apply AI filters like deinterlacing, denoising, and upscaling to 4K - no hardware or technical expertise needed.\",layoutId:\"GY7VjifsH\",n3f_U1TIm:\"Pixop Studio\",style:{height:\"100%\",width:\"100%\"},variant:\"p0wzd5DZ_\",width:\"100%\",xGyApAtu0:resolvedLinks2[0],ZGo1bpNEA:false})})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-wfq9rv\",\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d40dk8\",\"data-framer-name\":\"wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ok90m1\",\"data-framer-name\":\"title wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{y:(componentViewport?.y||0)+0+0+0+3210.8+80+0+0+0+0+0},NK8Bm3bfJ:{y:(componentViewport?.y||0)+0+0+0+2549.8+100+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+2889.8+120+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vrbapb-container\",nodeId:\"selQ5JTZz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"selQ5JTZz\",layoutId:\"selQ5JTZz\",URzX8HV92:\"Blog\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nitu3j\",\"data-styles-preset\":\"yemYXfOrG\",style:{\"--framer-text-alignment\":\"left\"},children:\"From the Pixop Blog\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nitu3j\",\"data-styles-preset\":\"yemYXfOrG\",children:\"From the Pixop Blog\"})}),className:\"framer-190ga2q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tg9454\",\"data-styles-preset\":\"VN3Mc_Q7g\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe2ca345-647e-418b-8cf9-6dcf663b2b5e, rgb(144, 153, 163))\"},children:\"Catch up on insights, news, and real-world use cases from the frontlines of AI-powered video enhancement. Stay informed on how Pixop is adding value to broadcast and VOD workflows - helping media professionals elevate quality without changing their infrastructure.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tg9454\",\"data-styles-preset\":\"VN3Mc_Q7g\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fe2ca345-647e-418b-8cf9-6dcf663b2b5e, rgb(144, 153, 163))\"},children:\"Catch up on insights, news, and real-world use cases from the frontlines of AI-powered video enhancement. Stay informed on how Pixop is adding value to broadcast and VOD workflows - helping media professionals elevate quality without changing their infrastructure.\"})}),className:\"framer-yc33gb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ZtYl3FItA\"},implicitPathVariables:undefined},{href:{webPageId:\"ZtYl3FItA\"},implicitPathVariables:undefined},{href:{webPageId:\"ZtYl3FItA\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{y:(componentViewport?.y||0)+0+0+0+3210.8+80+0+0+0+0+268.2},NK8Bm3bfJ:{y:(componentViewport?.y||0)+0+0+0+2549.8+100+0+0+0+0+268.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,y:(componentViewport?.y||0)+0+0+0+2889.8+120+0+0+0+0+268.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cfpo4e-container\",nodeId:\"Nk4aEeF6m\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{N92Vv39P8:resolvedLinks3[2]},NK8Bm3bfJ:{N92Vv39P8:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(LearnMoreWithLink,{height:\"100%\",id:\"Nk4aEeF6m\",KWKxTUlFe:\"View blog\",layoutId:\"Nk4aEeF6m\",MpIfbDHYE:false,N92Vv39P8:resolvedLinks3[0],variant:\"puyXLbGYb\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16hb372\",\"data-framer-name\":\"blog wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jssu4f\",\"data-framer-name\":\"left wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n7ux98\",\"data-framer-name\":\"blog post 1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{constraint:{left:{collection:\"vPj1aMO5G\",name:\"YoXo9P8If\",type:\"Identifier\"},operator:\"==\",right:{collection:\"YoXo9P8If\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"vPj1aMO5G\",data:Blog,type:\"Collection\"},right:{alias:\"YoXo9P8If\",data:Authors,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"vPj1aMO5G\",name:\"EMB3LXBc8\",type:\"Identifier\"},{collection:\"vPj1aMO5G\",name:\"gnqc2lHWr\",type:\"Identifier\"},{collection:\"vPj1aMO5G\",name:\"dWF7ZX5jb\",type:\"Identifier\"},{collection:\"vPj1aMO5G\",name:\"bU0uSeg50\",type:\"Identifier\"},{collection:\"vPj1aMO5G\",name:\"pih_Md_FB\",type:\"Identifier\"},{alias:\"YoXo9P8If.j8dCE0Pmk\",collection:\"YoXo9P8If\",name:\"j8dCE0Pmk\",type:\"Identifier\"},{alias:\"YoXo9P8If.SOJ823UxF\",collection:\"YoXo9P8If\",name:\"SOJ823UxF\",type:\"Identifier\"},{collection:\"vPj1aMO5G\",name:\"jLL7geCvQ\",type:\"Identifier\"},{collection:\"vPj1aMO5G\",name:\"id\",type:\"Identifier\"}],where:{collection:\"vPj1aMO5G\",name:\"hHZ31v2bQ\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({\"YoXo9P8If.j8dCE0Pmk\":YoXo9P8If_j8dCE0PmkvPj1aMO5G,\"YoXo9P8If.SOJ823UxF\":YoXo9P8If_SOJ823UxFvPj1aMO5G,bU0uSeg50:bU0uSeg50vPj1aMO5G,dWF7ZX5jb:dWF7ZX5jbvPj1aMO5G,EMB3LXBc8:EMB3LXBc8vPj1aMO5G,gnqc2lHWr:gnqc2lHWrvPj1aMO5G,id:idvPj1aMO5G,jLL7geCvQ:jLL7geCvQvPj1aMO5G,pih_Md_FB:pih_Md_FBvPj1aMO5G},index)=>{bU0uSeg50vPj1aMO5G??=\"\";pih_Md_FBvPj1aMO5G??=\"\";YoXo9P8If_SOJ823UxFvPj1aMO5G??=\"\";jLL7geCvQvPj1aMO5G??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vPj1aMO5G-${idvPj1aMO5G}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{jLL7geCvQ:jLL7geCvQvPj1aMO5G},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{jLL7geCvQ:jLL7geCvQvPj1aMO5G},webPageId:\"N0_335rFd\"},implicitPathVariables:undefined},{href:{pathVariables:{jLL7geCvQ:jLL7geCvQvPj1aMO5G},webPageId:\"N0_335rFd\"},implicitPathVariables:undefined},{href:{pathVariables:{jLL7geCvQ:jLL7geCvQvPj1aMO5G},webPageId:\"N0_335rFd\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px), 1px)`,y:(componentViewport?.y||0)+0+0+0+3210.8+80+0+0+354.2+0+0+0+0+0},NK8Bm3bfJ:{width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1100px) * 0.6, 1px)`,y:(componentViewport?.y||0)+0+0+0+2549.8+100+0+0+370.2+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1100px) * 0.6, 1px)`,y:(componentViewport?.y||0)+0+0+0+2889.8+120+0+0+370.2+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13woe3g-container\",nodeId:\"fjvKIeZaS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{variant:\"hQIUGG29Y\",xvABy3pYv:resolvedLinks4[2]},NK8Bm3bfJ:{xvABy3pYv:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(BlogCard,{BvQ5IdlzG:pih_Md_FBvPj1aMO5G,By_qecoqD:bU0uSeg50vPj1aMO5G,FTyRE5VwM:enumToDisplayNameFunctions[\"gnqc2lHWr\"]?.(gnqc2lHWrvPj1aMO5G,activeLocale),hdtb9JHl1:dWF7ZX5jbvPj1aMO5G,height:\"100%\",id:\"fjvKIeZaS\",layoutId:\"fjvKIeZaS\",M5XuSFz7a:toResponsiveImage(YoXo9P8If_j8dCE0PmkvPj1aMO5G),Pgh62H17_:YoXo9P8If_SOJ823UxFvPj1aMO5G,style:{width:\"100%\"},variant:\"D7VSKYtAR\",width:\"100%\",xvABy3pYv:resolvedLinks4[0],z19xF58FV:toResponsiveImage(EMB3LXBc8vPj1aMO5G)})})})})})})})},idvPj1aMO5G);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wg5gee\",\"data-framer-name\":\"blog post 2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{constraint:{left:{collection:\"HhWj93Bd6\",name:\"YoXo9P8If\",type:\"Identifier\"},operator:\"==\",right:{collection:\"YoXo9P8If\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"HhWj93Bd6\",data:Blog,type:\"Collection\"},right:{alias:\"YoXo9P8If\",data:Authors,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"HhWj93Bd6\",name:\"EMB3LXBc8\",type:\"Identifier\"},{collection:\"HhWj93Bd6\",name:\"gnqc2lHWr\",type:\"Identifier\"},{collection:\"HhWj93Bd6\",name:\"dWF7ZX5jb\",type:\"Identifier\"},{collection:\"HhWj93Bd6\",name:\"bU0uSeg50\",type:\"Identifier\"},{collection:\"HhWj93Bd6\",name:\"pih_Md_FB\",type:\"Identifier\"},{alias:\"YoXo9P8If.j8dCE0Pmk\",collection:\"YoXo9P8If\",name:\"j8dCE0Pmk\",type:\"Identifier\"},{alias:\"YoXo9P8If.SOJ823UxF\",collection:\"YoXo9P8If\",name:\"SOJ823UxF\",type:\"Identifier\"},{collection:\"HhWj93Bd6\",name:\"jLL7geCvQ\",type:\"Identifier\"},{collection:\"HhWj93Bd6\",name:\"id\",type:\"Identifier\"}],where:{collection:\"HhWj93Bd6\",name:\"hHZ31v2bQ\",type:\"Identifier\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({\"YoXo9P8If.j8dCE0Pmk\":YoXo9P8If_j8dCE0PmkHhWj93Bd6,\"YoXo9P8If.SOJ823UxF\":YoXo9P8If_SOJ823UxFHhWj93Bd6,bU0uSeg50:bU0uSeg50HhWj93Bd6,dWF7ZX5jb:dWF7ZX5jbHhWj93Bd6,EMB3LXBc8:EMB3LXBc8HhWj93Bd6,gnqc2lHWr:gnqc2lHWrHhWj93Bd6,id:idHhWj93Bd6,jLL7geCvQ:jLL7geCvQHhWj93Bd6,pih_Md_FB:pih_Md_FBHhWj93Bd6},index1)=>{bU0uSeg50HhWj93Bd6??=\"\";pih_Md_FBHhWj93Bd6??=\"\";YoXo9P8If_SOJ823UxFHhWj93Bd6??=\"\";jLL7geCvQHhWj93Bd6??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`HhWj93Bd6-${idHhWj93Bd6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{jLL7geCvQ:jLL7geCvQHhWj93Bd6},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{jLL7geCvQ:jLL7geCvQHhWj93Bd6},webPageId:\"N0_335rFd\"},implicitPathVariables:undefined},{href:{pathVariables:{jLL7geCvQ:jLL7geCvQHhWj93Bd6},webPageId:\"N0_335rFd\"},implicitPathVariables:undefined},{href:{pathVariables:{jLL7geCvQ:jLL7geCvQHhWj93Bd6},webPageId:\"N0_335rFd\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px), 1px)`,y:(componentViewport?.y||0)+0+0+0+3210.8+80+0+0+354.2+0+0+0+499+0},NK8Bm3bfJ:{width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1100px) * 0.6, 1px)`,y:(componentViewport?.y||0)+0+0+0+2549.8+100+0+0+370.2+0+0+499+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1100px) * 0.6, 1px)`,y:(componentViewport?.y||0)+0+0+0+2889.8+120+0+0+370.2+0+0+499+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l142w-container\",nodeId:\"P6UXvbUVW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{variant:\"hQIUGG29Y\",xvABy3pYv:resolvedLinks5[2]},NK8Bm3bfJ:{xvABy3pYv:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(BlogCard,{BvQ5IdlzG:pih_Md_FBHhWj93Bd6,By_qecoqD:bU0uSeg50HhWj93Bd6,FTyRE5VwM:enumToDisplayNameFunctions[\"gnqc2lHWr\"]?.(gnqc2lHWrHhWj93Bd6,activeLocale),hdtb9JHl1:dWF7ZX5jbHhWj93Bd6,height:\"100%\",id:\"P6UXvbUVW\",layoutId:\"P6UXvbUVW\",M5XuSFz7a:toResponsiveImage(YoXo9P8If_j8dCE0PmkHhWj93Bd6),Pgh62H17_:YoXo9P8If_SOJ823UxFHhWj93Bd6,style:{width:\"100%\"},variant:\"D7VSKYtAR\",width:\"100%\",xvABy3pYv:resolvedLinks5[0],z19xF58FV:toResponsiveImage(EMB3LXBc8HhWj93Bd6)})})})})})})})},idHhWj93Bd6);})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14x175j\",\"data-framer-name\":\"blog post 3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{constraint:{left:{collection:\"B4P6y4tWg\",name:\"YoXo9P8If\",type:\"Identifier\"},operator:\"==\",right:{collection:\"YoXo9P8If\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"B4P6y4tWg\",data:Blog,type:\"Collection\"},right:{alias:\"YoXo9P8If\",data:Authors,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"B4P6y4tWg\",name:\"EMB3LXBc8\",type:\"Identifier\"},{collection:\"B4P6y4tWg\",name:\"gnqc2lHWr\",type:\"Identifier\"},{collection:\"B4P6y4tWg\",name:\"dWF7ZX5jb\",type:\"Identifier\"},{collection:\"B4P6y4tWg\",name:\"bU0uSeg50\",type:\"Identifier\"},{collection:\"B4P6y4tWg\",name:\"pih_Md_FB\",type:\"Identifier\"},{alias:\"YoXo9P8If.j8dCE0Pmk\",collection:\"YoXo9P8If\",name:\"j8dCE0Pmk\",type:\"Identifier\"},{alias:\"YoXo9P8If.SOJ823UxF\",collection:\"YoXo9P8If\",name:\"SOJ823UxF\",type:\"Identifier\"},{collection:\"B4P6y4tWg\",name:\"jLL7geCvQ\",type:\"Identifier\"},{collection:\"B4P6y4tWg\",name:\"id\",type:\"Identifier\"}],where:{collection:\"B4P6y4tWg\",name:\"hHZ31v2bQ\",type:\"Identifier\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({\"YoXo9P8If.j8dCE0Pmk\":YoXo9P8If_j8dCE0PmkB4P6y4tWg,\"YoXo9P8If.SOJ823UxF\":YoXo9P8If_SOJ823UxFB4P6y4tWg,bU0uSeg50:bU0uSeg50B4P6y4tWg,dWF7ZX5jb:dWF7ZX5jbB4P6y4tWg,EMB3LXBc8:EMB3LXBc8B4P6y4tWg,gnqc2lHWr:gnqc2lHWrB4P6y4tWg,id:idB4P6y4tWg,jLL7geCvQ:jLL7geCvQB4P6y4tWg,pih_Md_FB:pih_Md_FBB4P6y4tWg},index2)=>{bU0uSeg50B4P6y4tWg??=\"\";pih_Md_FBB4P6y4tWg??=\"\";YoXo9P8If_SOJ823UxFB4P6y4tWg??=\"\";jLL7geCvQB4P6y4tWg??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`B4P6y4tWg-${idB4P6y4tWg}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{jLL7geCvQ:jLL7geCvQB4P6y4tWg},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{jLL7geCvQ:jLL7geCvQB4P6y4tWg},webPageId:\"N0_335rFd\"},implicitPathVariables:undefined},{href:{pathVariables:{jLL7geCvQ:jLL7geCvQB4P6y4tWg},webPageId:\"N0_335rFd\"},implicitPathVariables:undefined},{href:{pathVariables:{jLL7geCvQ:jLL7geCvQB4P6y4tWg},webPageId:\"N0_335rFd\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{height:479,width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px), 1px)`,y:(componentViewport?.y||0)+0+0+0+3210.8+80+0+0+354.2+0+998+0},NK8Bm3bfJ:{width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1100px) * 0.4 - 20px, 1px)`,y:(componentViewport?.y||0)+0+0+0+2549.8+100+0+0+370.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:978,width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1100px) * 0.4 - 20px, 1px)`,y:(componentViewport?.y||0)+0+0+0+2889.8+120+0+0+370.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gdy8c4-container\",nodeId:\"CocWZnf1p\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{style:{width:\"100%\"},variant:\"hQIUGG29Y\",xvABy3pYv:resolvedLinks6[2]},NK8Bm3bfJ:{xvABy3pYv:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(BlogCard,{BvQ5IdlzG:pih_Md_FBB4P6y4tWg,By_qecoqD:bU0uSeg50B4P6y4tWg,FTyRE5VwM:enumToDisplayNameFunctions[\"gnqc2lHWr\"]?.(gnqc2lHWrB4P6y4tWg,activeLocale),hdtb9JHl1:dWF7ZX5jbB4P6y4tWg,height:\"100%\",id:\"CocWZnf1p\",layoutId:\"CocWZnf1p\",M5XuSFz7a:toResponsiveImage(YoXo9P8If_j8dCE0PmkB4P6y4tWg),Pgh62H17_:YoXo9P8If_SOJ823UxFB4P6y4tWg,style:{height:\"100%\",width:\"100%\"},variant:\"pNaXuCnfl\",width:\"100%\",xvABy3pYv:resolvedLinks6[0],z19xF58FV:toResponsiveImage(EMB3LXBc8B4P6y4tWg)})})})})})})})},idB4P6y4tWg);})})})})})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1jqosbg\",\"data-framer-name\":\"Stay in the Loop\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jx8uk5\",draggable:\"false\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jss6xi\",\"data-framer-name\":\"wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u1zhum\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x1u8at\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nitu3j\",\"data-styles-preset\":\"yemYXfOrG\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-16d1ce2b-0263-419f-b4eb-07dd9d029c53, rgb(15, 17, 21))\"},children:\"Stay in the Loop\"})}),className:\"framer-cntkdn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fh1vb0\",\"data-styles-preset\":\"Qm1G9Oia1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-16d1ce2b-0263-419f-b4eb-07dd9d029c53, rgb(15, 17, 21))\"},children:\"Get the latest news, insights, and updates on AI-powered video enhancement.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fh1vb0\",\"data-styles-preset\":\"Qm1G9Oia1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-16d1ce2b-0263-419f-b4eb-07dd9d029c53, rgb(15, 17, 21))\"},children:\"Subscribe for updates on Live and Archive Conversion - plus Pixop news, product releases, and industry insights delivered straight to your inbox.\"})}),className:\"framer-1cbqc7g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{y:(componentViewport?.y||0)+0+0+0+5202+0+0+60+215.2},NK8Bm3bfJ:{y:(componentViewport?.y||0)+0+0+0+4098+0+0+60+215.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,y:(componentViewport?.y||0)+0+0+0+4478+0+0+60+215.2,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-3xkhj1-container\",id:\"3xkhj1\",nodeId:\"IQIJCwJuX\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(Footer,{GMZZ3qyb7:\"Sign up\",height:\"100%\",id:\"IQIJCwJuX\",layoutId:\"IQIJCwJuX\",rasB4INaW:rasB4INaW3bnx0g({overlay}),width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{bounce:0,delay:0,duration:.35,type:\"spring\"}},className:cx(scopingClassNames,\"framer-lmtvd\"),\"data-framer-portal-id\":\"3xkhj1\",exit:{opacity:0,transition:{bounce:0,delay:.35,duration:.35,type:\"spring\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"Vb0DpQn8P\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation2,className:cx(scopingClassNames,\"framer-1mxu7vz-container\"),\"data-framer-portal-id\":\"3xkhj1\",exit:animation6,inComponentSlot:true,initial:animation7,nodeId:\"BiOd0EoHm\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ4YlWdPQ:{variant:\"wzw88ofj8\"},NK8Bm3bfJ:{variant:\"tt4vB5idw\"}},children:/*#__PURE__*/_jsx(NewsletterOverlay,{height:\"100%\",ICfk651c_:ICfk651c_1wnntms({overlay}),id:\"BiOd0EoHm\",layoutId:\"BiOd0EoHm\",style:{height:\"100%\",width:\"100%\"},variant:\"sjMrssNGF\",width:\"100%\"})})})})]}),getContainer())})})]})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1k2sE.framer-lux5qc, .framer-1k2sE .framer-lux5qc { display: block; }\",\".framer-1k2sE.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-c557e892-c207-43a0-bdd5-8f4ce9b6b6c6, #1f2128); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-1k2sE .framer-1eoqwjz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1k2sE .framer-1q4hwkl { align-content: center; align-items: center; background-color: var(--token-c557e892-c207-43a0-bdd5-8f4ce9b6b6c6, #1f2128); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1k2sE .framer-ojnjhj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 74vh; justify-content: center; max-height: 840px; overflow: hidden; padding: 68px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-1k2sE .framer-1tcb66m { -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.85) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-1k2sE .framer-n7wg6f { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 1px; }\",\".framer-1k2sE .framer-1omknz9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-1k2sE .framer-ot1f2t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 576px; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-1k2sE .framer-slp30p-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",'.framer-1k2sE .framer-w50vj2, .framer-1k2sE .framer-14kiair, .framer-1k2sE .framer-btwn4h, .framer-1k2sE .framer-wfq9rv { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-c557e892-c207-43a0-bdd5-8f4ce9b6b6c6, #2b2f38) /* {\"name\":\"Grey 300\"} */ 0%, rgb(18, 19, 28) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 60px 120px 60px; position: relative; width: 100%; }',\".framer-1k2sE .framer-mno44o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1k2sE .framer-1rdfbuh-container, .framer-1k2sE .framer-nui84w-container, .framer-1k2sE .framer-1wpd75l-container, .framer-1k2sE .framer-1vrbapb-container, .framer-1k2sE .framer-cfpo4e-container, .framer-1k2sE .framer-3xkhj1-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-1k2sE .framer-1rtvy1n, .framer-1k2sE .framer-18tok6n, .framer-1k2sE .framer-r6bvd9, .framer-1k2sE .framer-190ga2q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-1k2sE .framer-dgeycy, .framer-1k2sE .framer-8wxzas { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 680px; position: relative; width: 100%; }\",\".framer-1k2sE .framer-onaz2u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1k2sE .framer-12pe4yo { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.12); --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: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1k2sE .framer-zt7s1-container, .framer-1k2sE .framer-13woe3g-container, .framer-1k2sE .framer-1l142w-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-1k2sE .framer-9vnvyi-container { flex: none; height: 40px; max-width: 1180px; position: relative; width: 100%; }\",\".framer-1k2sE .framer-1g99ktk { aspect-ratio: 6.044334975369458 / 1; height: var(--framer-aspect-ratio-supported, 35px); overflow: visible; position: relative; width: 212px; }\",\".framer-1k2sE .framer-tk58wy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-1k2sE .framer-1ijrga7 { aspect-ratio: 4.580645161290323 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); overflow: visible; position: relative; width: 96px; }\",\".framer-1k2sE .framer-8dwp01 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 26px; }\",\".framer-1k2sE .framer-11suhr { aspect-ratio: 8.465608465608465 / 1; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 203px; }\",\".framer-1k2sE .framer-1n90ycy { height: 24px; position: relative; width: 68px; }\",\".framer-1k2sE .framer-1s9vyo6 { aspect-ratio: 1.0474308300395256 / 1; height: var(--framer-aspect-ratio-supported, 27px); overflow: visible; position: relative; width: 28px; }\",\".framer-1k2sE .framer-1j0h2gk { aspect-ratio: 3.3225806451612905 / 1; height: var(--framer-aspect-ratio-supported, 29px); overflow: visible; position: relative; width: 96px; }\",\".framer-1k2sE .framer-1m8qyxt { aspect-ratio: 4.705882352941177 / 1; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 123px; }\",\".framer-1k2sE .framer-t2cywt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1k2sE .framer-12smh0e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-1k2sE .framer-zmkbuu, .framer-1k2sE .framer-yymzsn, .framer-1k2sE .framer-ok90m1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1k2sE .framer-zxxwbd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1k2sE .framer-1rx527p { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1k2sE .framer-1wa515x-container, .framer-1k2sE .framer-3woq5s-container, .framer-1k2sE .framer-18xl4en-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-1k2sE .framer-1d40dk8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1k2sE .framer-yc33gb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 612px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1k2sE .framer-16hb372 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1k2sE .framer-jssu4f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 60%; }\",\".framer-1k2sE .framer-1n7ux98, .framer-1k2sE .framer-wg5gee { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-1k2sE .framer-14x175j { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-1k2sE .framer-gdy8c4-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-1k2sE .framer-1jqosbg { align-content: center; align-items: center; background-color: #12131c; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-1k2sE .framer-jx8uk5 { -webkit-user-select: none; background-color: var(--token-c557e892-c207-43a0-bdd5-8f4ce9b6b6c6, #1f2129); bottom: 0px; flex: none; height: 60%; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; user-select: none; z-index: 0; }\",'.framer-1k2sE .framer-1jss6xi { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-1fca0eec-2d6b-4a8d-9b87-8306e7b9432c, #f39c18) /* {\"name\":\"Orange\"} */ 0%, rgb(194, 120, 10) 100%); 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: 20px; height: min-content; justify-content: center; max-width: 840px; overflow: hidden; padding: 60px 24px 60px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }',\".framer-1k2sE .framer-u1zhum { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1k2sE .framer-1x1u8at { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1k2sE .framer-cntkdn { --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-1k2sE .framer-1cbqc7g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 660px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1k2sE.framer-lmtvd { background-color: rgba(0, 0, 0, 0.7); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-1k2sE.framer-1mxu7vz-container { bottom: 0px; flex: none; left: 0px; pointer-events: none; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1k2sE.framer-72rtr7, .framer-1k2sE .framer-1eoqwjz, .framer-1k2sE .framer-1q4hwkl, .framer-1k2sE .framer-ojnjhj, .framer-1k2sE .framer-n7wg6f, .framer-1k2sE .framer-w50vj2, .framer-1k2sE .framer-mno44o, .framer-1k2sE .framer-onaz2u, .framer-1k2sE .framer-12pe4yo, .framer-1k2sE .framer-tk58wy, .framer-1k2sE .framer-14kiair, .framer-1k2sE .framer-t2cywt, .framer-1k2sE .framer-12smh0e, .framer-1k2sE .framer-zmkbuu, .framer-1k2sE .framer-btwn4h, .framer-1k2sE .framer-zxxwbd, .framer-1k2sE .framer-yymzsn, .framer-1k2sE .framer-wfq9rv, .framer-1k2sE .framer-1d40dk8, .framer-1k2sE .framer-ok90m1, .framer-1k2sE .framer-16hb372, .framer-1k2sE .framer-jssu4f, .framer-1k2sE .framer-1n7ux98, .framer-1k2sE .framer-wg5gee, .framer-1k2sE .framer-14x175j, .framer-1k2sE .framer-1jqosbg, .framer-1k2sE .framer-1jss6xi, .framer-1k2sE .framer-u1zhum, .framer-1k2sE .framer-1x1u8at { gap: 0px; } .framer-1k2sE.framer-72rtr7 > *, .framer-1k2sE .framer-1eoqwjz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1k2sE.framer-72rtr7 > :first-child, .framer-1k2sE .framer-1eoqwjz > :first-child, .framer-1k2sE .framer-1q4hwkl > :first-child, .framer-1k2sE .framer-n7wg6f > :first-child, .framer-1k2sE .framer-w50vj2 > :first-child, .framer-1k2sE .framer-mno44o > :first-child, .framer-1k2sE .framer-onaz2u > :first-child, .framer-1k2sE .framer-14kiair > :first-child, .framer-1k2sE .framer-t2cywt > :first-child, .framer-1k2sE .framer-12smh0e > :first-child, .framer-1k2sE .framer-zmkbuu > :first-child, .framer-1k2sE .framer-btwn4h > :first-child, .framer-1k2sE .framer-zxxwbd > :first-child, .framer-1k2sE .framer-yymzsn > :first-child, .framer-1k2sE .framer-wfq9rv > :first-child, .framer-1k2sE .framer-1d40dk8 > :first-child, .framer-1k2sE .framer-ok90m1 > :first-child, .framer-1k2sE .framer-jssu4f > :first-child, .framer-1k2sE .framer-1jqosbg > :first-child, .framer-1k2sE .framer-1jss6xi > :first-child, .framer-1k2sE .framer-u1zhum > :first-child, .framer-1k2sE .framer-1x1u8at > :first-child { margin-top: 0px; } .framer-1k2sE.framer-72rtr7 > :last-child, .framer-1k2sE .framer-1eoqwjz > :last-child, .framer-1k2sE .framer-1q4hwkl > :last-child, .framer-1k2sE .framer-n7wg6f > :last-child, .framer-1k2sE .framer-w50vj2 > :last-child, .framer-1k2sE .framer-mno44o > :last-child, .framer-1k2sE .framer-onaz2u > :last-child, .framer-1k2sE .framer-14kiair > :last-child, .framer-1k2sE .framer-t2cywt > :last-child, .framer-1k2sE .framer-12smh0e > :last-child, .framer-1k2sE .framer-zmkbuu > :last-child, .framer-1k2sE .framer-btwn4h > :last-child, .framer-1k2sE .framer-zxxwbd > :last-child, .framer-1k2sE .framer-yymzsn > :last-child, .framer-1k2sE .framer-wfq9rv > :last-child, .framer-1k2sE .framer-1d40dk8 > :last-child, .framer-1k2sE .framer-ok90m1 > :last-child, .framer-1k2sE .framer-jssu4f > :last-child, .framer-1k2sE .framer-1jqosbg > :last-child, .framer-1k2sE .framer-1jss6xi > :last-child, .framer-1k2sE .framer-u1zhum > :last-child, .framer-1k2sE .framer-1x1u8at > :last-child { margin-bottom: 0px; } .framer-1k2sE .framer-1q4hwkl > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-1k2sE .framer-ojnjhj > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-1k2sE .framer-ojnjhj > :first-child, .framer-1k2sE .framer-12pe4yo > :first-child, .framer-1k2sE .framer-tk58wy > :first-child, .framer-1k2sE .framer-16hb372 > :first-child, .framer-1k2sE .framer-1n7ux98 > :first-child, .framer-1k2sE .framer-wg5gee > :first-child, .framer-1k2sE .framer-14x175j > :first-child { margin-left: 0px; } .framer-1k2sE .framer-ojnjhj > :last-child, .framer-1k2sE .framer-12pe4yo > :last-child, .framer-1k2sE .framer-tk58wy > :last-child, .framer-1k2sE .framer-16hb372 > :last-child, .framer-1k2sE .framer-1n7ux98 > :last-child, .framer-1k2sE .framer-wg5gee > :last-child, .framer-1k2sE .framer-14x175j > :last-child { margin-right: 0px; } .framer-1k2sE .framer-n7wg6f > *, .framer-1k2sE .framer-jssu4f > *, .framer-1k2sE .framer-1jss6xi > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-1k2sE .framer-w50vj2 > *, .framer-1k2sE .framer-14kiair > *, .framer-1k2sE .framer-btwn4h > *, .framer-1k2sE .framer-zxxwbd > *, .framer-1k2sE .framer-wfq9rv > *, .framer-1k2sE .framer-1d40dk8 > *, .framer-1k2sE .framer-1jqosbg > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-1k2sE .framer-mno44o > *, .framer-1k2sE .framer-12smh0e > *, .framer-1k2sE .framer-zmkbuu > *, .framer-1k2sE .framer-yymzsn > *, .framer-1k2sE .framer-ok90m1 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-1k2sE .framer-onaz2u > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-1k2sE .framer-12pe4yo > *, .framer-1k2sE .framer-tk58wy > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-1k2sE .framer-t2cywt > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-1k2sE .framer-16hb372 > *, .framer-1k2sE .framer-1n7ux98 > *, .framer-1k2sE .framer-wg5gee > *, .framer-1k2sE .framer-14x175j > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-1k2sE .framer-u1zhum > *, .framer-1k2sE .framer-1x1u8at > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-1k2sE[data-border=\"true\"]::after, .framer-1k2sE [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-1k2sE.framer-72rtr7 { width: 810px; } .framer-1k2sE .framer-1q4hwkl { gap: 80px; } .framer-1k2sE .framer-ojnjhj { height: 60vh; } .framer-1k2sE .framer-n7wg6f, .framer-1k2sE .framer-1jqosbg { padding: 0px 40px 0px 40px; } .framer-1k2sE .framer-w50vj2, .framer-1k2sE .framer-14kiair, .framer-1k2sE .framer-btwn4h, .framer-1k2sE .framer-wfq9rv { padding: 100px 40px 100px 40px; } .framer-1k2sE .framer-12smh0e { padding: 0px; } .framer-1k2sE .framer-18tok6n { --framer-text-wrap-override: balance; width: 100%; } .framer-1k2sE .framer-1jss6xi { max-width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1k2sE .framer-1q4hwkl { gap: 0px; } .framer-1k2sE .framer-1q4hwkl > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-1k2sE .framer-1q4hwkl > :first-child { margin-top: 0px; } .framer-1k2sE .framer-1q4hwkl > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-1k2sE.framer-72rtr7 { width: 390px; } .framer-1k2sE .framer-1q4hwkl { gap: 40px; } .framer-1k2sE .framer-ojnjhj { height: min-content; max-height: unset; padding: 144px 0px 80px 0px; } .framer-1k2sE .framer-n7wg6f { align-content: flex-start; align-items: flex-start; padding: 0px 24px 0px 24px; } .framer-1k2sE .framer-1omknz9 { --framer-text-wrap-override: balance; } .framer-1k2sE .framer-w50vj2 { gap: 48px; padding: 80px 24px 80px 24px; } .framer-1k2sE .framer-mno44o, .framer-1k2sE .framer-zmkbuu, .framer-1k2sE .framer-yymzsn, .framer-1k2sE .framer-ok90m1 { align-content: flex-start; align-items: flex-start; } .framer-1k2sE .framer-1rtvy1n, .framer-1k2sE .framer-18tok6n, .framer-1k2sE .framer-r6bvd9, .framer-1k2sE .framer-190ga2q { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-1k2sE .framer-dgeycy, .framer-1k2sE .framer-8wxzas { --framer-text-wrap-override: none; } .framer-1k2sE .framer-14kiair, .framer-1k2sE .framer-btwn4h, .framer-1k2sE .framer-wfq9rv { padding: 80px 24px 80px 24px; } .framer-1k2sE .framer-12smh0e { padding: 0px; } .framer-1k2sE .framer-zxxwbd, .framer-1k2sE .framer-1d40dk8 { gap: 48px; } .framer-1k2sE .framer-1rx527p { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-1k2sE .framer-16hb372 { flex-direction: column; } .framer-1k2sE .framer-jssu4f { width: 100%; } .framer-1k2sE .framer-14x175j { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-1k2sE .framer-gdy8c4-container { height: auto; } .framer-1k2sE .framer-1jqosbg { padding: 0px 24px 0px 24px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1k2sE .framer-1q4hwkl, .framer-1k2sE .framer-w50vj2, .framer-1k2sE .framer-zxxwbd, .framer-1k2sE .framer-1d40dk8, .framer-1k2sE .framer-16hb372 { gap: 0px; } .framer-1k2sE .framer-1q4hwkl > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-1k2sE .framer-1q4hwkl > :first-child, .framer-1k2sE .framer-w50vj2 > :first-child, .framer-1k2sE .framer-zxxwbd > :first-child, .framer-1k2sE .framer-1d40dk8 > :first-child, .framer-1k2sE .framer-16hb372 > :first-child { margin-top: 0px; } .framer-1k2sE .framer-1q4hwkl > :last-child, .framer-1k2sE .framer-w50vj2 > :last-child, .framer-1k2sE .framer-zxxwbd > :last-child, .framer-1k2sE .framer-1d40dk8 > :last-child, .framer-1k2sE .framer-16hb372 > :last-child { margin-bottom: 0px; } .framer-1k2sE .framer-w50vj2 > *, .framer-1k2sE .framer-zxxwbd > *, .framer-1k2sE .framer-1d40dk8 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-1k2sE .framer-16hb372 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5146.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NK8Bm3bfJ\":{\"layout\":[\"fixed\",\"auto\"]},\"eJ4YlWdPQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-1k2sE\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5146.5,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\"}]},...PrimaryFonts,...TagFonts,...VideoFonts,...TickerFonts,...HomePageCardsFonts,...LearnMoreWithLinkFonts,...BlogCardFonts,...FooterFonts,...NewsletterOverlayFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NK8Bm3bfJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eJ4YlWdPQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"5146.5\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"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", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "a", "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", "__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", "LearnMoreFonts", "getFonts", "xvzHEmk6z_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonText", "description", "height", "id", "link", "newTab", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "xGyApAtu0", "ZGo1bpNEA", "n3f_U1TIm", "kXusyM01h", "c_euwVzQA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "SVG", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerA88el8sWh", "withCSS", "A88el8sWh_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "PrimaryFonts", "getFonts", "x0LZ3vScn_default", "ContainerWithOptimizedAppearEffect", "Container", "TagFonts", "UuhoBFD4W_default", "MotionDivWithOptimizedAppearEffect", "motion", "VideoFonts", "Video", "TickerFonts", "Ticker", "HomePageCardsFonts", "A88el8sWh_default", "LearnMoreWithLinkFonts", "r7M0JSe_H_default", "BlogCardFonts", "CIv0e5vII_default", "FooterFonts", "dZcuWgY6K_default", "NewsletterOverlayFonts", "XUTkCWS4R_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation6", "animation7", "getContainer", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "EMB3LXBc8vPj1aMO5G", "gnqc2lHWrvPj1aMO5G", "dWF7ZX5jbvPj1aMO5G", "bU0uSeg50vPj1aMO5G", "pih_Md_FBvPj1aMO5G", "YoXo9P8If_j8dCE0PmkvPj1aMO5G", "YoXo9P8If_SOJ823UxFvPj1aMO5G", "jLL7geCvQvPj1aMO5G", "idvPj1aMO5G", "EMB3LXBc8HhWj93Bd6", "gnqc2lHWrHhWj93Bd6", "dWF7ZX5jbHhWj93Bd6", "bU0uSeg50HhWj93Bd6", "pih_Md_FBHhWj93Bd6", "YoXo9P8If_j8dCE0PmkHhWj93Bd6", "YoXo9P8If_SOJ823UxFHhWj93Bd6", "jLL7geCvQHhWj93Bd6", "idHhWj93Bd6", "EMB3LXBc8B4P6y4tWg", "gnqc2lHWrB4P6y4tWg", "dWF7ZX5jbB4P6y4tWg", "bU0uSeg50B4P6y4tWg", "pih_Md_FBB4P6y4tWg", "YoXo9P8If_j8dCE0PmkB4P6y4tWg", "YoXo9P8If_SOJ823UxFB4P6y4tWg", "jLL7geCvQB4P6y4tWg", "idB4P6y4tWg", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "rasB4INaW3bnx0g", "overlay", "loadMore", "args", "ICfk651c_1wnntms", "scopingClassNames", "cx", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "Image2", "getLoadingLazyAtYPosition", "PropertyOverrides2", "x", "RichTextWithOptimizedAppearEffect", "ComponentViewportProvider", "ContainerWithOptimizedAppearEffect", "x0LZ3vScn_default", "MotionDivWithOptimizedAppearEffect", "Container", "UuhoBFD4W_default", "RichText2", "Video", "Ticker", "SVG", "ResolveLinks", "resolvedLinks", "A88el8sWh_default", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "r7M0JSe_H_default", "ChildrenCanSuspend", "Yb8_Qz9L_default", "H0LWy6cSe_default", "collection", "paginationInfo", "l", "index", "PathVariablesContext", "resolvedLinks4", "CIv0e5vII_default", "enumToDisplayNameFunctions", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks5", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks6", "dZcuWgY6K_default", "AnimatePresence", "Ga", "XUTkCWS4R_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "PrimaryFonts", "TagFonts", "VideoFonts", "TickerFonts", "HomePageCardsFonts", "LearnMoreWithLinkFonts", "BlogCardFonts", "FooterFonts", "NewsletterOverlayFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
