{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.13.1/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/sK9q20UrvRztdebA5J7g/Ticker.js", "ssg:https://framerusercontent.com/modules/sG1VnOLzIpAflQaK1Xst/jvtnEoRr7bK5qZhSCJpq/aL1M4pcFt.js", "ssg:https://framerusercontent.com/modules/ezJL4aJ9i1u4rU2B3AkE/aOWPmajN9g93vfUHWlzx/BYfjwEyLq.js", "ssg:https://framerusercontent.com/modules/nJfsbs6UNzJk2oziCXcX/SrOiSwJ5hVYjPwWYntnG/ciUsLNX81.js", "ssg:https://framerusercontent.com/modules/swL4mPpxB3iPuHVB459j/NugwQ5cu0qJnccjb12Dk/EJYMli2vh.js", "ssg:https://framerusercontent.com/modules/vxAyyRXDaYUFG63HCSmg/dAeAJFxEYdD9WSVzg8uv/oXth8QW9p.js", "ssg:https://framerusercontent.com/modules/MYNCC5CJewUWvy1XUO4n/iqHaHJUuwgVH8mKONtKU/tUuAzSjlI.js", "ssg:https://framerusercontent.com/modules/VT6rJ22V6SVx2nEWEem3/c0nfItMlBykEt6fJwC4T/iCKNo11IF.js", "ssg:https://framerusercontent.com/modules/xwQyWabNfiBJFRzH5zBg/akaLBGRBLia1voduSxsd/xzSFaubax.js", "ssg:https://framerusercontent.com/modules/u2wJyZHQLHbyimqWsyjE/Inh6TG94DJwquS2e6MMm/ySy1J882M.js", "ssg:https://framerusercontent.com/modules/qSTzF782ryICKubXfOOY/Alk59pXq66dgVBZpmlnB/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,progress as o,isFunction as i,defaults as s,isCubicBezier as r,isEasingGenerator as a,isEasingList as c,isNumber as l,time as f,noop as u,removeItem as d,mix as g,getEasingForSegment as m,isString as h,defaultOffset as p,fillOffset as v,velocityPerSecond as y,interpolate as w}from\"@motionone/utils\";import{Animation as E,getEasingFunction as b}from\"@motionone/animation\";import{__rest as S}from\"tslib\";import{invariant as A}from\"hey-listen\";import{pregenerateKeyframes as O,calcGeneratorVelocity as x,spring as V,glide as z}from\"@motionone/generators\";const W=new WeakMap;function getAnimationData(e){W.has(e)||W.set(e,{transforms:[],values:new Map});return W.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const L=[\"\",\"X\",\"Y\",\"Z\"];const T=[\"translate\",\"scale\",\"rotate\",\"skew\"];const D={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const M={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const k={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:M,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:M};const B=new Map;const asTransformCssVar=e=>`--motion-${e}`;const j=[\"x\",\"y\",\"z\"];T.forEach((e=>{L.forEach((t=>{j.push(e+t);B.set(asTransformCssVar(e+t),k[e])}))}));const compareTransformOrder=(e,t)=>j.indexOf(e)-j.indexOf(t);const P=new Set(j);const isTransform=e=>P.has(e);const addTransformToElement=(e,t)=>{D[t]&&(t=D[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const $=new Set;function registerCssVariable(e){if(!$.has(e)){$.add(e);try{const{syntax:t,initialValue:n}=B.has(e)?B.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const testAnimation=(e,t)=>document.createElement(\"div\").animate(e,t);const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]},{duration:.001}).finished),linearEasing:()=>{try{testAnimation({opacity:0},{easing:\"linear(0, 1)\"})}catch(e){return false}return true}};const R={};const H={};for(const e in C)H[e]=()=>{void 0===R[e]&&(R[e]=C[e]());return R[e]};const I=.015;const generateLinearEasingPoints=(e,t)=>{let n=\"\";const i=Math.round(t/I);for(let t=0;t<i;t++)n+=e(o(0,i-1,t))+\", \";return n.substring(0,n.length-2)};const convertEasing=(e,t)=>i(e)?H.linearEasing()?`linear(${generateLinearEasingPoints(e,t)})`:s.easing:r(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){D[e]&&(e=D[e]);return isTransform(e)?asTransformCssVar(e):e}const N={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=B.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const r=getDevToolsRecord();const d=false!==o.record&&r;let g;let{duration:m=s.duration,delay:h=s.delay,endDelay:p=s.endDelay,repeat:v=s.repeat,easing:y=s.easing,direction:w,offset:b,allowWebkitAcceleration:S=false}=o;const A=getAnimationData(e);const O=isTransform(t);let x=H.waapi();O&&addTransformToElement(e,t);const V=getStyleName(t);const z=getMotionValue(A.values,V);const W=B.get(V);stopAnimation(z.animation,!(a(y)&&z.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=N.get(e,V))&&void 0!==t?t:null===W||void 0===W?void 0:W.initialValue)&&void 0!==n?n:0};let s=hydrateKeyframes(keyframesList(n),readInitialValue);if(a(y)){const e=y.createAnimation(s,readInitialValue,O,V,z);y=e.easing;void 0!==e.keyframes&&(s=e.keyframes);void 0!==e.duration&&(m=e.duration)}isCssVar(V)&&(H.cssRegisterProperty()?registerCssVariable(V):x=false);O&&!H.linearEasing()&&(i(y)||c(y)&&y.some(i))&&(x=false);if(x){W&&(s=s.map((e=>l(e)?W.toDefaultUnit(e):e)));1!==s.length||H.partialKeyframes()&&!d||s.unshift(readInitialValue());const t={delay:f.ms(h),duration:f.ms(m),endDelay:f.ms(p),easing:c(y)?void 0:convertEasing(y,m),direction:w,iterations:v+1,fill:\"both\"};g=e.animate({[V]:s,offset:b,easing:c(y)?y.map((e=>convertEasing(e,m))):void 0},t);g.finished||(g.finished=new Promise(((e,t)=>{g.onfinish=e;g.oncancel=t})));const n=s[s.length-1];g.finished.then((()=>{N.set(e,V,n);g.cancel()})).catch(u);S||(g.playbackRate=1.000001)}else if(O){s=s.map((e=>\"string\"===typeof e?parseFloat(e):e));1===s.length&&s.unshift(parseFloat(readInitialValue()));const render=t=>{W&&(t=W.toDefaultUnit(t));N.set(e,V,t)};g=new E(render,s,Object.assign(Object.assign({},o),{duration:m,easing:y}))}else{const t=s[s.length-1];N.set(e,V,W&&l(t)?W.toDefaultUnit(t):t)}d&&r(e,t,s,{duration:m,delay:h,easing:y,repeat:v,offset:b},\"motion-one\");z.setAnimation(g);return g}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=s.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},F);const getActiveAnimation=e=>e.animations[0];const F={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return f.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(u));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=f.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const r=l(n)?n:getFromIndex(n,s);const a=Math.abs(r-i);let c=e*a;if(o){const t=s*e;const n=b(o);c=n(c/t)*t}return t+c}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return i(e)?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return l(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){d(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:g(i,s,o[r]),easing:m(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,i=S(t,[\"defaultOptions\"]);const r=[];const c=new Map;const l={};const f=new Map;let u=0;let d=0;let g=0;for(let t=0;t<e.length;t++){const o=e[t];if(h(o)){f.set(o,d);continue}if(!Array.isArray(o)){f.set(o.name,calcNextTime(d,o.at,u,f));continue}const[i,r,m={}]=o;void 0!==m.at&&(d=calcNextTime(d,m.at,u,f));let y=0;const w=resolveElements(i,l);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,c);for(const t in r){const i=getValueSequence(t,o);let c=keyframesList(r[t]);const l=getOptions(m,t);let{duration:f=n.duration||s.duration,easing:u=n.easing||s.easing}=l;if(a(u)){const e=isTransform(t);A(2===c.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=u.createAnimation(c,(()=>\"0\"),e);u=n.easing;void 0!==n.keyframes&&(c=n.keyframes);void 0!==n.duration&&(f=n.duration)}const h=resolveOption(m.delay,e,E)||0;const w=d+h;const b=w+f;let{offset:S=p(c.length)}=l;1===S.length&&0===S[0]&&(S[1]=1);const O=length-c.length;O>0&&v(S,O);1===c.length&&c.unshift(null);addKeyframes(i,c,u,S,w,b);y=Math.max(h+f,y);g=Math.max(b,g)}}u=d;d+=y}c.forEach(((e,t)=>{for(const a in e){const c=e[a];c.sort(compareByTime);const l=[];const f=[];const u=[];for(let e=0;e<c.length;e++){const{at:t,value:n,easing:i}=c[e];l.push(n);f.push(o(0,g,t));u.push(i||s.easing)}if(0!==f[0]){f.unshift(0);l.unshift(l[0]);u.unshift(\"linear\")}if(1!==f[f.length-1]){f.push(1);l.push(null)}r.push([t,a,l,Object.assign(Object.assign(Object.assign({},n),{duration:g,easing:u,offset:f}),i)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,O(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=x((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const U=createGeneratorEasing(V);const q=createGeneratorEasing(z);const K={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:s=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const r=resolveElements(e);const a=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=a.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);i(n)?a.set(e.target,n):c.unobserve(e.target)}else if(n){n(e);a.delete(e.target)}}))};const c=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof s?s:K[s]});r.forEach((e=>c.observe(e)));return()=>c.disconnect()}const G=new WeakMap;let _;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=G.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(_=new ResizeObserver(notifyAll))}function resizeElement(e,t){_||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=G.get(e);if(!n){n=new Set;G.set(e,n)}n.add(t);null===_||void 0===_?void 0:_.observe(e)}));return()=>{n.forEach((e=>{const n=G.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===_||void 0===_?void 0:_.unobserve(e))}))}}const Z=new Set;let X;function createWindowResizeHandler(){X=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};Z.forEach((e=>e(t)))};window.addEventListener(\"resize\",X)}function resizeWindow(e){Z.add(e);X||createWindowResizeHandler();return()=>{Z.delete(e);!Z.size&&X&&(X=void 0)}}function resize(e,t){return i(e)?resizeWindow(e):resizeElement(e,t)}const Y=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const J={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,i){const s=n[t];const{length:r,position:a}=J[t];const c=s.current;const l=n.time;s.current=e[\"scroll\"+a];s.scrollLength=e[\"scroll\"+r]-e[\"client\"+r];s.offset.length=0;s.offset[0]=0;s.offset[1]=s.scrollLength;s.progress=o(0,s.scrollLength,s.current);const f=i-l;s.velocity=f>Y?0:y(s.current-c,f)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Q={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const ee={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==ee[e]&&(e=ee[e]);if(h(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}l(e)&&(o=t*e);return n+o}const te=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:te;let s=0;let r=0;if(l(e))i=[e,e];else if(h(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,ee[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);r=resolveEdge(i[1],t);return s-r}const ne={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Q.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ne;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=w(p(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const s=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:i(t)?()=>t(n):scrubAnimation(t,n[s])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const oe=new WeakMap;const ie=new WeakMap;const se=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=S(t,[\"container\"]);let i=se.get(n);if(!i){i=new Set;se.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!oe.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};oe.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ie.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=oe.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=se.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=oe.get(n);oe.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ie.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let re;function processScheduledAnimations(){if(!re)return;const e=re.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);re=void 0}function scheduleAnimation(e){if(re)n(re,e);else{re=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){re&&d(re,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const ae={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=S(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const ce={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const le={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const fe={inView:ae,hover:ce,press:le};const ue=[\"initial\",\"animate\",...Object.keys(fe),\"exit\"];const de=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of ue)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},l=S(c,[\"transition\"]);const f=Object.assign({},l);function*animateUpdates(){var t,o;const s=l;l={};const r={};for(const n of ue){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){l[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(l),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===l[e]&&(l[e]=f[e]);if(hasChanged(s[e],l[e])){null!==(t=f[e])&&void 0!==t?t:f[e]=N.get(n,e);c.push(animateStyle(n,e,l[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=l;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(u)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in fe){const o=fe[t].isActive(e);const i=s[t];if(o&&!i)s[t]=fe[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>l,getOptions:()=>e,getContext:()=>r,mount:e=>{A(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;de.set(n,d);updateGestureSubscriptions();return()=>{de.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){D[o]&&(o=D[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const r=B.get(o);r&&(s=l(i)?r.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Q as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,q as glide,inView$1 as inView,de as mountedStates,resize,scroll,U as spring,stagger,N as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (2add0ca)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={l4RLHSA6V:{hover:true}};const cycleOrder=[\"l4RLHSA6V\",\"Mt0Mip0FK\"];const variantClassNames={l4RLHSA6V:\"framer-v-13iksw3\",Mt0Mip0FK:\"framer-v-1gfu0n0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={Image:\"l4RLHSA6V\",Text:\"Mt0Mip0FK\"};const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"l4RLHSA6V\",image:shYZ8xZ6P,textBG:HJYYGhJC3=\"rgb(218, 225, 25)\",b4EsfMO6DwoijqL5Mw,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"l4RLHSA6V\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const isDisplayed=()=>{if(baseVariant===\"Mt0Mip0FK\")return true;return false;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-F5C7j\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-13iksw3\",className),\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"l4RLHSA6V\",ref:ref,style:{...style},...addPropertyOverrides({\"l4RLHSA6V-hover\":{\"data-framer-name\":undefined},Mt0Mip0FK:{\"data-framer-name\":\"Text\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"40px\",...toResponsiveImage(shYZ8xZ6P)},className:\"framer-4rceim\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"FKFFQcwvq\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":'var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255)) /* {\"name\":\"UI/White\"} */',\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99},variants:{Mt0Mip0FK:{backgroundColor:HJYYGhJC3}},...addPropertyOverrides({Mt0Mip0FK:{background:undefined}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"+1k\"})}),className:\"framer-1f7j4lv\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"Kg1ynTzIM\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-b4EsfMO6D-woijqL5Mw)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-b4EsfMO6D-woijqL5Mw\":b4EsfMO6DwoijqL5Mw},transformTemplate:transformTemplate,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=['.framer-F5C7j [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-F5C7j .framer-31hwom { display: block; }\",\".framer-F5C7j .framer-13iksw3 { height: 40px; overflow: visible; position: relative; width: 28px; }\",\".framer-F5C7j .framer-4rceim { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 40px); z-index: 1; }\",\".framer-F5C7j .framer-1f7j4lv { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; z-index: 1; }\",\".framer-F5C7j .framer-v-13iksw3 .framer-13iksw3 { cursor: pointer; }\",\".framer-F5C7j.framer-v-13iksw3.hover .framer-4rceim { bottom: 10px; top: -10px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 28\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Mt0Mip0FK\":{\"layout\":[\"fixed\",\"fixed\"]},\"CXZuSKHYI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"shYZ8xZ6P\":\"image\",\"HJYYGhJC3\":\"textBG\"}\n */ const FrameraL1M4pcFt=withCSS(Component,css,\"framer-F5C7j\");export default FrameraL1M4pcFt;FrameraL1M4pcFt.displayName=\"Avatar\";FrameraL1M4pcFt.defaultProps={height:40,width:28};addPropertyControls(FrameraL1M4pcFt,{variant:{options:[\"l4RLHSA6V\",\"Mt0Mip0FK\"],optionTitles:[\"Image\",\"Text\"],title:\"Variant\",type:ControlType.Enum},shYZ8xZ6P:{title:\"Image\",type:ControlType.ResponsiveImage},HJYYGhJC3:{defaultValue:\"rgb(218, 225, 25)\",title:\"Text BG\",type:ControlType.Color}});addFonts(FrameraL1M4pcFt,[{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/aL1M4pcFt:default\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\",weight:\"600\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraL1M4pcFt\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Mt0Mip0FK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CXZuSKHYI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"shYZ8xZ6P\\\":\\\"image\\\",\\\"HJYYGhJC3\\\":\\\"textBG\\\"}\",\"framerIntrinsicWidth\":\"28\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aL1M4pcFt.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"l_tIJr8HQ\"];const serializationHash=\"framer-zMRBn\";const variantClassNames={l_tIJr8HQ:\"framer-v-ugokga\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"l_tIJr8HQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ugokga\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"l_tIJr8HQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:340,pixelHeight:108,pixelWidth:340,src:\"https://framerusercontent.com/images/M59tUczzJmuxcgI4VPoIiiQlfA0.png\"},className:\"framer-133l3gp\",\"data-framer-name\":\"tef\",layoutDependency:layoutDependency,layoutId:\"BPmSXsmE3\",transformTemplate:transformTemplate1})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zMRBn.framer-ekx7ll, .framer-zMRBn .framer-ekx7ll { display: block; }\",\".framer-zMRBn.framer-ugokga { height: 74px; overflow: hidden; position: relative; width: 301px; }\",\".framer-zMRBn .framer-133l3gp { aspect-ratio: 3.1481481481481484 / 1; bottom: -6px; flex: none; left: 50%; overflow: visible; position: absolute; top: -6px; width: var(--framer-aspect-ratio-supported, 271px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 74\n * @framerIntrinsicWidth 301\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBYfjwEyLq=withCSS(Component,css,\"framer-zMRBn\");export default FramerBYfjwEyLq;FramerBYfjwEyLq.displayName=\"Telefonica\";FramerBYfjwEyLq.defaultProps={height:74,width:301};addFonts(FramerBYfjwEyLq,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBYfjwEyLq\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"301\",\"framerIntrinsicHeight\":\"74\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BYfjwEyLq.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"dr8XT7KN9\"];const serializationHash=\"framer-GmP7Q\";const variantClassNames={dr8XT7KN9:\"framer-v-u861g4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dr8XT7KN9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-u861g4\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"dr8XT7KN9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:340,pixelHeight:108,pixelWidth:340,src:\"https://framerusercontent.com/images/6tBdUMPUmofV7f9hBrMhzRjI.png\"},className:\"framer-1mpbdrs\",\"data-framer-name\":\"hopman\",layoutDependency:layoutDependency,layoutId:\"PHnc2XvjA\",transformTemplate:transformTemplate1})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GmP7Q.framer-sr8x01, .framer-GmP7Q .framer-sr8x01 { display: block; }\",\".framer-GmP7Q.framer-u861g4 { height: 94px; overflow: hidden; position: relative; width: 299px; }\",\".framer-GmP7Q .framer-1mpbdrs { aspect-ratio: 3.1481481481481484 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 138px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 94\n * @framerIntrinsicWidth 299\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerciUsLNX81=withCSS(Component,css,\"framer-GmP7Q\");export default FramerciUsLNX81;FramerciUsLNX81.displayName=\"Hopman\";FramerciUsLNX81.defaultProps={height:94,width:299};addFonts(FramerciUsLNX81,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerciUsLNX81\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"94\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"299\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ciUsLNX81.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"KrJPGNiTm\"];const serializationHash=\"framer-IDnxA\";const variantClassNames={KrJPGNiTm:\"framer-v-1ode962\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KrJPGNiTm\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ode962\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"KrJPGNiTm\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:340,pixelHeight:108,pixelWidth:340,src:\"https://framerusercontent.com/images/ybxvAjvxPbmgJd3Rwx3nHdoV1LI.png\"},className:\"framer-ht4sxn\",\"data-framer-name\":\"win_sports\",layoutDependency:layoutDependency,layoutId:\"h1dLJfeRR\",transformTemplate:transformTemplate1})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IDnxA.framer-1cuner7, .framer-IDnxA .framer-1cuner7 { display: block; }\",\".framer-IDnxA.framer-1ode962 { height: 83px; overflow: hidden; position: relative; width: 299px; }\",\".framer-IDnxA .framer-ht4sxn { aspect-ratio: 3.1481481481481484 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); left: 50%; overflow: visible; position: absolute; top: 51%; width: 123px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 83\n * @framerIntrinsicWidth 299\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEJYMli2vh=withCSS(Component,css,\"framer-IDnxA\");export default FramerEJYMli2vh;FramerEJYMli2vh.displayName=\"Win Sports\";FramerEJYMli2vh.defaultProps={height:83,width:299};addFonts(FramerEJYMli2vh,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEJYMli2vh\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"83\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"299\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EJYMli2vh.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"UvmBGrUVd\"];const serializationHash=\"framer-UmJeH\";const variantClassNames={UvmBGrUVd:\"framer-v-qbgs39\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UvmBGrUVd\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-qbgs39\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"UvmBGrUVd\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:340,pixelHeight:108,pixelWidth:340,src:\"https://framerusercontent.com/images/W3Ed9jjbZa8uciRmFkaAQyRMLSM.png\"},className:\"framer-1gt9lwp\",\"data-framer-name\":\"ausopen\",layoutDependency:layoutDependency,layoutId:\"lyTzdSP3V\",transformTemplate:transformTemplate1})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UmJeH.framer-uybtfq, .framer-UmJeH .framer-uybtfq { display: block; }\",\".framer-UmJeH.framer-qbgs39 { height: 78px; overflow: hidden; position: relative; width: 300px; }\",\".framer-UmJeH .framer-1gt9lwp { aspect-ratio: 3.1481481481481484 / 1; bottom: 0px; flex: none; left: 50%; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 246px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 78\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroXth8QW9p=withCSS(Component,css,\"framer-UmJeH\");export default FrameroXth8QW9p;FrameroXth8QW9p.displayName=\"Aus Open\";FrameroXth8QW9p.defaultProps={height:78,width:300};addFonts(FrameroXth8QW9p,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroXth8QW9p\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"300\",\"framerIntrinsicHeight\":\"78\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oXth8QW9p.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"i1730Tr_X\"];const serializationHash=\"framer-rRHZF\";const variantClassNames={i1730Tr_X:\"framer-v-1mp0d8i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"i1730Tr_X\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1mp0d8i\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"i1730Tr_X\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:340,pixelHeight:108,pixelWidth:340,src:\"https://framerusercontent.com/images/hhYHhMrJkq7ThLT0eYCsoAoVBVc.png\"},className:\"framer-fwbd71\",\"data-framer-name\":\"liga_f\",layoutDependency:layoutDependency,layoutId:\"iKaTHb2ql\",transformTemplate:transformTemplate1})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rRHZF.framer-1phqcbm, .framer-rRHZF .framer-1phqcbm { display: block; }\",\".framer-rRHZF.framer-1mp0d8i { height: 91px; overflow: hidden; position: relative; width: 300px; }\",\".framer-rRHZF .framer-fwbd71 { aspect-ratio: 3.1481481481481484 / 1; bottom: 0px; flex: none; left: 50%; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 286px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 91\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertUuAzSjlI=withCSS(Component,css,\"framer-rRHZF\");export default FramertUuAzSjlI;FramertUuAzSjlI.displayName=\"Liga F\";FramertUuAzSjlI.defaultProps={height:91,width:300};addFonts(FramertUuAzSjlI,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertUuAzSjlI\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"91\",\"framerIntrinsicWidth\":\"300\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tUuAzSjlI.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Poppins-500\"]);export const fonts=[{family:\"Poppins\",moduleAsset:{localModuleIdentifier:\"local-module:css/iCKNo11IF:default\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\",weight:\"500\"}];export const css=['.framer-hvzBO .framer-styles-preset-15cenuq:not(.rich-text-wrapper), .framer-hvzBO .framer-styles-preset-15cenuq.rich-text-wrapper p { --framer-font-family: \"Poppins\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -1px; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, #573cff); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-hvzBO .framer-styles-preset-15cenuq:not(.rich-text-wrapper), .framer-hvzBO .framer-styles-preset-15cenuq.rich-text-wrapper p { --framer-font-family: \"Poppins\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -1px; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, #573cff); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-hvzBO .framer-styles-preset-15cenuq:not(.rich-text-wrapper), .framer-hvzBO .framer-styles-preset-15cenuq.rich-text-wrapper p { --framer-font-family: \"Poppins\", sans-serif; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -1px; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, #573cff); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-hvzBO\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (214386f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/VT6rJ22V6SVx2nEWEem3/c0nfItMlBykEt6fJwC4T/iCKNo11IF.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/5OIa20nq9G65YXJHut6E/n04S9WVCsxUxLcwzRqdR/tmzBJW82u.js\";const cycleOrder=[\"jmu0jInww\",\"sp3HzmGhH\"];const variantClassNames={jmu0jInww:\"framer-v-1f517x4\",sp3HzmGhH:\"framer-v-1r5gh24\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={Desktop:\"jmu0jInww\",Mobile:\"sp3HzmGhH\"};const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"jmu0jInww\",testimonial:TPEHsZWqf={src:new URL(\"assets/DKtc1XRFArZuoKs5gtB861dHRe4.png\",\"https://framerusercontent.com/modules/xwQyWabNfiBJFRzH5zBg/akaLBGRBLia1voduSxsd/xzSFaubax.js\").href,srcSet:`${new URL(\"assets/512/DKtc1XRFArZuoKs5gtB861dHRe4.png\",\"https://framerusercontent.com/modules/xwQyWabNfiBJFRzH5zBg/akaLBGRBLia1voduSxsd/xzSFaubax.js\").href} 339w, ${new URL(\"assets/DKtc1XRFArZuoKs5gtB861dHRe4.png\",\"https://framerusercontent.com/modules/xwQyWabNfiBJFRzH5zBg/akaLBGRBLia1voduSxsd/xzSFaubax.js\").href} 400w`},background:lxoksPKf0='var(--token-bd09f862-3d36-40c1-a67e-253cf9f8a0b7, rgb(236, 229, 255)) /* {\"name\":\"Secondary/Lavender\"} */',text:Jxq2GRK7M=\"\u201CWe are really enjoying using Prolific. It has been so much better for us than MTurk.\u201D\",nameRole:A86LixV0U=\"Mike Hinds,Green Market Mechanism Designs\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"jmu0jInww\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-gwECS\",sharedStyle.className,sharedStyle1.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-1f517x4\",className),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"jmu0jInww\",ref:ref,style:{backgroundColor:lxoksPKf0,borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({sp3HzmGhH:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-15cenuq\",\"data-styles-preset\":\"iCKNo11IF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"\u201CWe are really enjoying using Prolific. It has been so much better for us than MTurk.\u201D\"})}),className:\"framer-mpx15t\",\"data-framer-name\":\"\u201CWe are really enjoying using Prolific. It has been so much better for us than MTurk.\u201D\",layoutDependency:layoutDependency,layoutId:\"rklwf0M6S\",style:{\"--extracted-r6o4lv\":\"var(--token-ceb7286c-2aa9-42d4-b0e1-16afc3498e42, rgb(3, 59, 172)) \",\"--framer-paragraph-spacing\":\"0px\"},text:Jxq2GRK7M,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1ubamdy\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"ULDi1aFZI\",children:[/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"64px\",...toResponsiveImage(TPEHsZWqf)},className:\"framer-1vne8am\",\"data-framer-name\":\"Ellipse 6191\",layoutDependency:layoutDependency,layoutId:\"dkFsNZ8IE\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsxs(motion.p,{className:\"framer-styles-preset-3vmsnd\",\"data-styles-preset\":\"tmzBJW82u\",children:[/*#__PURE__*/ _jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f)\"},children:\"Mike Hinds,\"}),/*#__PURE__*/ _jsx(motion.br,{}),/*#__PURE__*/ _jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-c9yw3e)\"},children:\"Green Market Mechanism Designs\"})]})}),className:\"framer-1nhyqrc\",\"data-framer-name\":\"Mike Hinds,\\u2028Green Market Mechanism Designs\",layoutDependency:layoutDependency,layoutId:\"AHplzPbJs\",style:{\"--extracted-1w3ko1f\":\"var(--token-ceb7286c-2aa9-42d4-b0e1-16afc3498e42, rgb(3, 59, 172)) \",\"--extracted-c9yw3e\":\"var(--token-ceb7286c-2aa9-42d4-b0e1-16afc3498e42, rgb(3, 59, 172)) \",\"--framer-paragraph-spacing\":\"30px\"},text:A86LixV0U,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=['.framer-gwECS [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gwECS .framer-1gt7guu { display: block; }\",\".framer-gwECS .framer-1f517x4 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: 450px; justify-content: space-between; overflow: visible; padding: 40px 40px 40px 40px; position: relative; width: 668px; }\",\".framer-gwECS .framer-mpx15t { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gwECS .framer-1ubamdy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-gwECS .framer-1vne8am { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); position: relative; width: 64px; }\",\".framer-gwECS .framer-1nhyqrc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 508px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gwECS .framer-1ubamdy { gap: 0px; } .framer-gwECS .framer-1ubamdy > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-gwECS .framer-1ubamdy > :first-child { margin-left: 0px; } .framer-gwECS .framer-1ubamdy > :last-child { margin-right: 0px; } }\",\".framer-gwECS.framer-v-1r5gh24 .framer-1f517x4 { gap: 40px; height: min-content; justify-content: center; padding: 25px 25px 25px 25px; }\",\".framer-gwECS.framer-v-1r5gh24 .framer-1nhyqrc { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gwECS.framer-v-1r5gh24 .framer-1f517x4 { gap: 0px; } .framer-gwECS.framer-v-1r5gh24 .framer-1f517x4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-gwECS.framer-v-1r5gh24 .framer-1f517x4 > :first-child { margin-top: 0px; } .framer-gwECS.framer-v-1r5gh24 .framer-1f517x4 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 450\n * @framerIntrinsicWidth 668\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"sp3HzmGhH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"TPEHsZWqf\":\"testimonial\",\"lxoksPKf0\":\"background\",\"Jxq2GRK7M\":\"text\",\"A86LixV0U\":\"nameRole\"}\n */ const FramerxzSFaubax=withCSS(Component,css,\"framer-gwECS\");export default FramerxzSFaubax;FramerxzSFaubax.displayName=\"Testimonial\";FramerxzSFaubax.defaultProps={height:450,width:668};addPropertyControls(FramerxzSFaubax,{variant:{options:[\"jmu0jInww\",\"sp3HzmGhH\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},TPEHsZWqf:{__defaultAssetReference:\"data:framer/asset-reference,DKtc1XRFArZuoKs5gtB861dHRe4.png?originalFilename=Ellipse+6191.png&preferredSize=auto\",title:\"Testimonial\",type:ControlType.ResponsiveImage},lxoksPKf0:{defaultValue:'var(--token-bd09f862-3d36-40c1-a67e-253cf9f8a0b7, rgb(236, 229, 255)) /* {\"name\":\"Secondary/Lavender\"} */',title:\"Background\",type:ControlType.Color},Jxq2GRK7M:{defaultValue:\"\u201CWe are really enjoying using Prolific. It has been so much better for us than MTurk.\u201D\",displayTextArea:false,title:\"Text\",type:ControlType.String},A86LixV0U:{defaultValue:\"Mike Hinds,Green Market Mechanism Designs\",displayTextArea:false,title:\"Name + Role\",type:ControlType.String}});addFonts(FramerxzSFaubax,[...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxzSFaubax\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"450\",\"framerVariables\":\"{\\\"TPEHsZWqf\\\":\\\"testimonial\\\",\\\"lxoksPKf0\\\":\\\"background\\\",\\\"Jxq2GRK7M\\\":\\\"text\\\",\\\"A86LixV0U\\\":\\\"nameRole\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sp3HzmGhH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"668\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"qIHFZPawr\"];const serializationHash=\"framer-Hbl5a\";const variantClassNames={qIHFZPawr:\"framer-v-cyqfwy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qIHFZPawr\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-cyqfwy\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"qIHFZPawr\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:340,pixelHeight:108,pixelWidth:340,src:\"https://framerusercontent.com/images/QKASrBJuC5OqsXAxNyoPQWF73o.png\"},className:\"framer-1g2ixgm\",\"data-framer-name\":\"Ateresmedia\",layoutDependency:layoutDependency,layoutId:\"go2MOVs2h\",transformTemplate:transformTemplate1})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Hbl5a.framer-1vdlfmy, .framer-Hbl5a .framer-1vdlfmy { display: block; }\",\".framer-Hbl5a.framer-cyqfwy { height: 85px; overflow: hidden; position: relative; width: 326px; }\",\".framer-Hbl5a .framer-1g2ixgm { aspect-ratio: 3.1481481481481484 / 1; bottom: -1px; flex: none; left: 50%; overflow: visible; position: absolute; top: -1px; width: var(--framer-aspect-ratio-supported, 274px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 85\n * @framerIntrinsicWidth 326\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerySy1J882M=withCSS(Component,css,\"framer-Hbl5a\");export default FramerySy1J882M;FramerySy1J882M.displayName=\"Atresmedia\";FramerySy1J882M.defaultProps={height:85,width:326};addFonts(FramerySy1J882M,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerySy1J882M\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"85\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"326\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ySy1J882M.map", "// Generated by Framer (78454af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,LazyValue,Link,optimizeAppear,optimizeAppearTransformTemplate,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/sK9q20UrvRztdebA5J7g/Ticker.js\";import Avatar from\"#framer/local/canvasComponent/aL1M4pcFt/aL1M4pcFt.js\";import Telefonica from\"#framer/local/canvasComponent/BYfjwEyLq/BYfjwEyLq.js\";import Hopman from\"#framer/local/canvasComponent/ciUsLNX81/ciUsLNX81.js\";import WinSports from\"#framer/local/canvasComponent/EJYMli2vh/EJYMli2vh.js\";import CTALaunch from\"#framer/local/canvasComponent/gCkrcTKxp/gCkrcTKxp.js\";import FeatureSection from\"#framer/local/canvasComponent/L8yk06JFc/L8yk06JFc.js\";import AusOpen from\"#framer/local/canvasComponent/oXth8QW9p/oXth8QW9p.js\";import Footer from\"#framer/local/canvasComponent/qZ_XI3P7P/qZ_XI3P7P.js\";import Navigation from\"#framer/local/canvasComponent/RG7yJog90/RG7yJog90.js\";import Badge from\"#framer/local/canvasComponent/SXR9yB_tn/SXR9yB_tn.js\";import LigaF from\"#framer/local/canvasComponent/tUuAzSjlI/tUuAzSjlI.js\";import Testimonial from\"#framer/local/canvasComponent/xzSFaubax/xzSFaubax.js\";import Buttons from\"#framer/local/canvasComponent/yORaTwldW/yORaTwldW.js\";import Atresmedia from\"#framer/local/canvasComponent/ySy1J882M/ySy1J882M.js\";import ScrollToTopButton from\"#framer/local/codeFile/UmZQLNT/ScrollToTopButton.js\";import*as sharedStyle from\"#framer/local/css/bocXxd6oj/bocXxd6oj.js\";import*as sharedStyle4 from\"#framer/local/css/MOhTEatyY/MOhTEatyY.js\";import*as sharedStyle2 from\"#framer/local/css/rHs4MAikW/rHs4MAikW.js\";import*as sharedStyle1 from\"#framer/local/css/W5729J3pQ/W5729J3pQ.js\";import*as sharedStyle3 from\"#framer/local/css/XuM03kBo3/XuM03kBo3.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const NavigationWithVariantAppearEffect=withVariantAppearEffect(Navigation);const AvatarFonts=getFonts(Avatar);const ButtonsFonts=getFonts(Buttons);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const ScrollToTopButtonFonts=getFonts(ScrollToTopButton);const AtresmediaFonts=getFonts(Atresmedia);const AusOpenFonts=getFonts(AusOpen);const WinSportsFonts=getFonts(WinSports);const TelefonicaFonts=getFonts(Telefonica);const LigaFFonts=getFonts(LigaF);const HopmanFonts=getFonts(Hopman);const TickerFonts=getFonts(Ticker);const MotionSectionWithFX=withFX(motion.section);const BadgeFonts=getFonts(Badge);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const FeatureSectionFonts=getFonts(FeatureSection);const TestimonialFonts=getFonts(Testimonial);const CTALaunchFonts=getFonts(CTALaunch);const FooterFonts=getFonts(Footer);const cycleOrder=[\"WQLkyLRf1\",\"PqpaQgc5e\",\"J3uB7PlJN\",\"WpCIbgkLd\"];const breakpoints={J3uB7PlJN:\"(max-width: 575px)\",PqpaQgc5e:\"(min-width: 992px) and (max-width: 1279px)\",WpCIbgkLd:\"(min-width: 576px) and (max-width: 991px)\",WQLkyLRf1:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-jCSP5\";const variantClassNames={J3uB7PlJN:\"framer-v-ujtbii\",PqpaQgc5e:\"framer-v-1uu7l1z\",WpCIbgkLd:\"framer-v-qqyzon\",WQLkyLRf1:\"framer-v-72rtr7\"};const valuesByLocaleId={feBhNComS:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};const preloadLocalizedValues=locale=>{const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise){promises.push(promise);}}locale=locale.fallback;}if(promises.length>0){return Promise.all(promises);}};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value){return value;}}locale=locale.fallback;}};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-70};const transition2={damping:40,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={damping:30,delay:.2,mass:1,stiffness:180,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition4={delay:0,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition5={delay:.2,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={delay:.3,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition7={damping:50,delay:.4,mass:1,stiffness:150,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition8={damping:40,delay:.2,mass:1,stiffness:180,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const animation12={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition9={damping:30,delay:.3,mass:1,stiffness:180,type:\"spring\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const transition10={damping:40,delay:.3,mass:1,stiffness:180,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const transition11={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition11};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition12={delay:.2,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const transition13={delay:.3,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const transition14={damping:40,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition15={delay:.4,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition16={damping:40,delay:.2,mass:1,stiffness:160,type:\"spring\"};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition17={damping:20,delay:.15,mass:1,stiffness:400,type:\"spring\"};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition17,x:0,y:0};const transition18={damping:20,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition18,x:0,y:0};const transition19={damping:40,delay:.1,mass:1,stiffness:160,type:\"spring\"};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop L\":\"WQLkyLRf1\",Desktop:\"PqpaQgc5e\",Phone:\"J3uB7PlJN\",Tablet:\"WpCIbgkLd\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-jCSP5`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-jCSP5`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const preloadPromise=preloadLocalizedValues(activeLocale);if(preloadPromise)throw preloadPromise;const ref1=React.useRef(null);const id=useRouteElementId(\"tws5NSJQ1\");const ref2=React.useRef(null);const ref3=React.useRef(null);const id1=useRouteElementId(\"jv_QmIFgl\");const ref4=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"J3uB7PlJN\",\"WpCIbgkLd\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"WpCIbgkLd\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"J3uB7PlJN\")return false;return true;};const id2=useRouteElementId(\"zgsSv6D90\");const id3=useRouteElementId(\"SqZiK_A17\");const ref5=React.useRef(null);const id4=useRouteElementId(\"VoZuv6REF\");const ref6=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23,_getLocalizedValue24,_getLocalizedValue25,_getLocalizedValue26,_getLocalizedValue27,_getLocalizedValue28,_getLocalizedValue29,_getLocalizedValue30,_getLocalizedValue31,_getLocalizedValue32,_getLocalizedValue33,_getLocalizedValue34,_getLocalizedValue35;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{animate:undefined,initial:undefined,style:{},transformTemplate:transformTemplate1},PqpaQgc5e:{\"data-framer-appear-id\":\"1civuzz\",animate:optimizeAppear(\"animate\",\"1civuzz\",animation,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"1civuzz\",animation1,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"1civuzz\",transformTemplate1)},WpCIbgkLd:{\"data-framer-appear-id\":\"lxr2z0\",animate:optimizeAppear(\"animate\",\"lxr2z0\",animation,\"qqyzon\"),initial:optimizeAppear(\"initial\",\"lxr2z0\",animation1,\"qqyzon\"),transformTemplate:optimizeAppearTransformTemplate(\"lxr2z0\",transformTemplate1)}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"wde3po\",animation,\"72rtr7\"),className:\"framer-wde3po-container\",\"data-framer-appear-id\":\"wde3po\",id:id,initial:optimizeAppear(\"initial\",\"wde3po\",animation1,\"72rtr7\"),layoutScroll:true,ref:ref3,style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"wde3po\",transformTemplate1),children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__variantAppearEffectEnabled:undefined,variant:\"CGsXOuuLs\"},WpCIbgkLd:{__framer__variantAppearEffectEnabled:undefined,variant:\"CGsXOuuLs\"}},children:/*#__PURE__*/_jsx(NavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"TU_nbc0Zt\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"tws5NSJQ1\",layoutId:\"tws5NSJQ1\",style:{width:\"100%\"},variant:\"KrPPG9bp_\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1yp8xwc\",\"data-framer-name\":\"Hero\",id:id1,name:\"Hero\",ref:ref4,children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{\"data-framer-appear-id\":\"1japjq4\",animate:optimizeAppear(\"animate\",\"1japjq4\",animation2,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"1japjq4\",animation3,\"1uu7l1z\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"aeug7n\",animation2,\"72rtr7\"),className:\"framer-aeug7n hidden-ujtbii hidden-qqyzon\",\"data-framer-appear-id\":\"aeug7n\",\"data-framer-name\":\"gradient-top-right\",initial:optimizeAppear(\"initial\",\"aeug7n\",animation3,\"72rtr7\"),name:\"gradient-top-right\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xze9nt\",\"data-framer-name\":\"blue\",name:\"blue\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j0lqfi\",\"data-framer-name\":\"blue-2\",name:\"blue-2\"})]})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{\"data-framer-appear-id\":\"hoeh11\",animate:optimizeAppear(\"animate\",\"hoeh11\",animation2,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"hoeh11\",animation3,\"1uu7l1z\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"1d13stc\",animation2,\"72rtr7\"),className:\"framer-1d13stc hidden-ujtbii hidden-qqyzon\",\"data-framer-appear-id\":\"1d13stc\",\"data-framer-name\":\"gradient-top-left\",initial:optimizeAppear(\"initial\",\"1d13stc\",animation3,\"72rtr7\"),name:\"gradient-top-left\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k27plj\",\"data-framer-name\":\"yellow\",name:\"yellow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-184ujgq\",\"data-framer-name\":\"green\",name:\"green\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17lqxjv\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9o2owm\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ng0tkn\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"j_G9_ASf0\"},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{\"data-border\":true,\"data-framer-appear-id\":\"fcpbv0\",animate:optimizeAppear(\"animate\",\"fcpbv0\",animation4,\"ujtbii\"),initial:optimizeAppear(\"initial\",\"fcpbv0\",animation5,\"ujtbii\")},PqpaQgc5e:{\"data-framer-appear-id\":\"uueoue\",animate:optimizeAppear(\"animate\",\"uueoue\",animation4,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"uueoue\",animation5,\"1uu7l1z\")},WpCIbgkLd:{\"data-border\":true,\"data-framer-appear-id\":\"1nlozj\",animate:optimizeAppear(\"animate\",\"1nlozj\",animation4,\"qqyzon\"),initial:optimizeAppear(\"initial\",\"1nlozj\",animation5,\"qqyzon\")}},children:/*#__PURE__*/_jsxs(motion.a,{animate:optimizeAppear(\"animate\",\"psoogj\",animation4,\"72rtr7\"),className:\"framer-psoogj framer-lux5qc\",\"data-framer-appear-id\":\"psoogj\",\"data-framer-name\":\"Badge\",initial:optimizeAppear(\"initial\",\"psoogj\",animation5,\"72rtr7\"),name:\"Badge\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gdfu8x\",\"data-framer-name\":\"Left\",name:\"Left\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\"',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.14px\",\"--framer-text-color\":\"rgba(87, 60, 255, 1)\"},children:\"New\"})})}),className:\"framer-902rk0\",\"data-framer-name\":\"Text\",fonts:[\"GF;Be Vietnam Pro-500\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4jdy0o\",\"data-framer-name\":\"Right\",name:\"Right\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.14px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(87, 60, 255)\"},children:\"Text-to-video AI\"})}),className:\"framer-j9rgpq\",\"data-framer-name\":\"Message\",fonts:[\"GF;Be Vietnam Pro-500\"],name:\"Message\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1048hid\",\"data-framer-name\":\"arrow-right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,name:\"arrow-right\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.33333 8.00016H12.6667M12.6667 8.00016L8 3.3335M12.6667 8.00016L8 12.6668\" stroke=\"#1C44ED\" stroke-width=\"1.3333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{\"data-framer-appear-id\":\"dsdzqq\",animate:optimizeAppear(\"animate\",\"dsdzqq\",animation6,\"ujtbii\"),initial:optimizeAppear(\"initial\",\"dsdzqq\",animation7,\"ujtbii\")},PqpaQgc5e:{\"data-framer-appear-id\":\"1gciv65\",animate:optimizeAppear(\"animate\",\"1gciv65\",animation6,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"1gciv65\",animation7,\"1uu7l1z\")},WpCIbgkLd:{\"data-framer-appear-id\":\"1eolrsa\",animate:optimizeAppear(\"animate\",\"1eolrsa\",animation6,\"qqyzon\"),initial:optimizeAppear(\"initial\",\"1eolrsa\",animation7,\"qqyzon\")}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:optimizeAppear(\"animate\",\"1uywckh\",animation6,\"72rtr7\"),children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1l15rv8\",\"data-styles-preset\":\"bocXxd6oj\",style:{\"--framer-text-alignment\":\"center\"},children:\"Real-time sports highlights\"})}),className:\"framer-1uywckh\",\"data-framer-appear-id\":\"1uywckh\",\"data-framer-name\":\"Main Title\",fonts:[\"Inter\"],initial:optimizeAppear(\"initial\",\"1uywckh\",animation7,\"72rtr7\"),name:\"Main Title\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{\"data-framer-appear-id\":\"94duza\",animate:optimizeAppear(\"animate\",\"94duza\",animation8,\"ujtbii\"),initial:optimizeAppear(\"initial\",\"94duza\",animation7,\"ujtbii\")},PqpaQgc5e:{\"data-framer-appear-id\":\"cmxbkt\",animate:optimizeAppear(\"animate\",\"cmxbkt\",animation8,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"cmxbkt\",animation7,\"1uu7l1z\")},WpCIbgkLd:{\"data-framer-appear-id\":\"cw0e74\",animate:optimizeAppear(\"animate\",\"cw0e74\",animation8,\"qqyzon\"),initial:optimizeAppear(\"initial\",\"cw0e74\",animation7,\"qqyzon\")}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:optimizeAppear(\"animate\",\"u9emc7\",animation8,\"72rtr7\"),children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Pendular generates AI-driven sports content for leagues, broadcasters, federations and clubs.\"})}),className:\"framer-u9emc7\",\"data-framer-appear-id\":\"u9emc7\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],initial:optimizeAppear(\"initial\",\"u9emc7\",animation7,\"72rtr7\"),name:\"Supporting text\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{\"data-framer-appear-id\":\"c1gzxx\",animate:optimizeAppear(\"animate\",\"c1gzxx\",animation9,\"ujtbii\"),initial:optimizeAppear(\"initial\",\"c1gzxx\",animation7,\"ujtbii\")},PqpaQgc5e:{\"data-framer-appear-id\":\"s08go\",animate:optimizeAppear(\"animate\",\"s08go\",animation9,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"s08go\",animation7,\"1uu7l1z\")},WpCIbgkLd:{\"data-framer-appear-id\":\"9hsixn\",animate:optimizeAppear(\"animate\",\"9hsixn\",animation9,\"qqyzon\"),initial:optimizeAppear(\"initial\",\"9hsixn\",animation7,\"qqyzon\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"1yt86wi\",animation9,\"72rtr7\"),className:\"framer-1yt86wi\",\"data-framer-appear-id\":\"1yt86wi\",\"data-framer-name\":\"Social Trust\",initial:optimizeAppear(\"initial\",\"1yt86wi\",animation7,\"72rtr7\"),name:\"Social Trust\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u1w5f8\",\"data-framer-name\":\"Stacked Avatars\",name:\"Stacked Avatars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-e3ehre-container\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",id:\"aEiuqGpXR\",image:addImageAlt({src:\"https://framerusercontent.com/images/3e3Te5NEXxOrXB47K6pTzE4iSfE.jpg\",srcSet:\"https://framerusercontent.com/images/3e3Te5NEXxOrXB47K6pTzE4iSfE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3e3Te5NEXxOrXB47K6pTzE4iSfE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3e3Te5NEXxOrXB47K6pTzE4iSfE.jpg 1080w\"},\"\"),layoutId:\"aEiuqGpXR\",style:{height:\"100%\",width:\"100%\"},textBG:\"rgb(218, 225, 25)\",variant:\"l4RLHSA6V\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-38qvku-container\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",id:\"hCOJepZ1f\",image:addImageAlt({src:\"https://framerusercontent.com/images/09xmqwTkbokFMTDZLGuBDYXQWkU.jpg\"},\"\"),layoutId:\"hCOJepZ1f\",style:{height:\"100%\",width:\"100%\"},textBG:\"rgb(218, 225, 25)\",variant:\"l4RLHSA6V\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ucnd8i-container\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",id:\"IfK7zrems\",image:addImageAlt({src:\"https://framerusercontent.com/images/4o9EUJWtmCoQAMHTOpc14omrYE.jpg\",srcSet:\"https://framerusercontent.com/images/4o9EUJWtmCoQAMHTOpc14omrYE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4o9EUJWtmCoQAMHTOpc14omrYE.jpg 900w\"},\"\"),layoutId:\"IfK7zrems\",style:{height:\"100%\",width:\"100%\"},textBG:\"rgb(218, 225, 25)\",variant:\"l4RLHSA6V\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9a9af9-container\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",id:\"fox3PiEcJ\",image:addImageAlt({src:\"https://framerusercontent.com/images/GKePC6WCVQjw7IiNuAu10ZTyus.png\",srcSet:\"https://framerusercontent.com/images/GKePC6WCVQjw7IiNuAu10ZTyus.png?scale-down-to=512 512w,https://framerusercontent.com/images/GKePC6WCVQjw7IiNuAu10ZTyus.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GKePC6WCVQjw7IiNuAu10ZTyus.png 2048w\"},\"\"),layoutId:\"fox3PiEcJ\",style:{height:\"100%\",width:\"100%\"},textBG:\"rgb(218, 225, 25)\",variant:\"l4RLHSA6V\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d78lqw\",\"data-styles-preset\":\"rHs4MAikW\",style:{\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Trusted by top rights-holders\"})}),className:\"framer-18v5tzb\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-225hdf\",\"data-framer-name\":\"Actions\",name:\"Actions\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined},{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined},{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined},{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:\"calc(100vw - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{\"data-framer-appear-id\":\"potf2q\",animate:optimizeAppear(\"animate\",\"potf2q\",animation10,\"ujtbii\"),initial:optimizeAppear(\"initial\",\"potf2q\",animation3,\"ujtbii\")},PqpaQgc5e:{\"data-framer-appear-id\":\"1ajyulr\",animate:optimizeAppear(\"animate\",\"1ajyulr\",animation10,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"1ajyulr\",animation3,\"1uu7l1z\")},WpCIbgkLd:{\"data-framer-appear-id\":\"ewsz8v\",animate:optimizeAppear(\"animate\",\"ewsz8v\",animation10,\"qqyzon\"),initial:optimizeAppear(\"initial\",\"ewsz8v\",animation3,\"qqyzon\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"1rzjr3l\",animation10,\"72rtr7\"),className:\"framer-1rzjr3l-container\",\"data-framer-appear-id\":\"1rzjr3l\",\"data-framer-name\":\"Button Primary\",initial:optimizeAppear(\"initial\",\"1rzjr3l\",animation3,\"72rtr7\"),name:\"Button Primary\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{width:\"100%\"},vjZWklrqI:resolvedLinks[2]},PqpaQgc5e:{vjZWklrqI:resolvedLinks[1]},WpCIbgkLd:{vjZWklrqI:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowUpRight\",height:\"100%\",id:\"mQvQzX_fK\",layoutId:\"mQvQzX_fK\",name:\"Button Primary\",style:{height:\"100%\"},variant:\"mQ3MdL6TJ\",vjZWklrqI:resolvedLinks[0],width:\"100%\",xEfGs_njT:(_getLocalizedValue=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Request Demo\"})})})})})});}})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-112xx8p\",\"data-framer-name\":\"Main-visual\",name:\"Main-visual\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1050,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bvspiv\",\"data-framer-name\":\"Container\",name:\"Container\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__parallaxTransformEnabled:undefined},WpCIbgkLd:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:105,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:201,intrinsicWidth:232,pixelHeight:402,pixelWidth:464,src:\"https://framerusercontent.com/images/3qm60Bn7e2tg1Nx9roO4oxhvwhY.jpg\"},className:\"framer-96y6ty\",\"data-framer-name\":\"widget_0_2x\",name:\"widget_0_2x\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__parallaxTransformEnabled:undefined,\"data-framer-appear-id\":\"1qr4pms\",animate:optimizeAppear(\"animate\",\"1qr4pms\",animation11,\"ujtbii\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:189,intrinsicWidth:186,pixelHeight:536,pixelWidth:471,sizes:\"176px\",src:\"https://framerusercontent.com/images/17hMzzdegtEZvB8mFWgeXf2gpB8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/17hMzzdegtEZvB8mFWgeXf2gpB8.png 471w\"},initial:optimizeAppear(\"initial\",\"1qr4pms\",animation12,\"ujtbii\"),transformTemplate:optimizeAppearTransformTemplate(\"1qr4pms\",transformTemplate2)},PqpaQgc5e:{\"data-framer-appear-id\":\"abzn1l\",animate:optimizeAppear(\"animate\",\"abzn1l\",animation11,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"abzn1l\",animation12,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"abzn1l\",transformTemplate2)},WpCIbgkLd:{\"data-framer-appear-id\":\"jge1i2\",animate:optimizeAppear(\"animate\",\"jge1i2\",animation11,\"qqyzon\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:189,intrinsicWidth:186,pixelHeight:536,pixelWidth:471,sizes:\"160px\",src:\"https://framerusercontent.com/images/17hMzzdegtEZvB8mFWgeXf2gpB8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/17hMzzdegtEZvB8mFWgeXf2gpB8.png 471w\"},initial:optimizeAppear(\"initial\",\"jge1i2\",animation12,\"qqyzon\"),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"uxx9lr\",animation11,\"72rtr7\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:189,intrinsicWidth:186,pixelHeight:536,pixelWidth:471,sizes:\"186px\",src:\"https://framerusercontent.com/images/17hMzzdegtEZvB8mFWgeXf2gpB8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/17hMzzdegtEZvB8mFWgeXf2gpB8.png 471w\"},className:\"framer-uxx9lr\",\"data-framer-appear-id\":\"uxx9lr\",\"data-framer-name\":\"widget_1_2x\",initial:optimizeAppear(\"initial\",\"uxx9lr\",animation12,\"72rtr7\"),name:\"widget_1_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"uxx9lr\",transformTemplate2)})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__parallaxTransformEnabled:undefined,\"data-framer-appear-id\":\"cih89k\",animate:optimizeAppear(\"animate\",\"cih89k\",animation4,\"ujtbii\"),background:{alt:\"Sports video of Rafa Nadal with Artificial Intelligence\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,pixelHeight:1080,pixelWidth:1799,sizes:\"174.5px\",src:\"https://framerusercontent.com/images/zDKWiBsD56LvcpPQ2KSXAnlb9kk.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zDKWiBsD56LvcpPQ2KSXAnlb9kk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zDKWiBsD56LvcpPQ2KSXAnlb9kk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zDKWiBsD56LvcpPQ2KSXAnlb9kk.jpg 1799w\"},initial:optimizeAppear(\"initial\",\"cih89k\",animation12,\"ujtbii\"),transformTemplate:optimizeAppearTransformTemplate(\"cih89k\",transformTemplate2)},PqpaQgc5e:{\"data-framer-appear-id\":\"1razzah\",animate:optimizeAppear(\"animate\",\"1razzah\",animation4,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"1razzah\",animation12,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"1razzah\",transformTemplate2)},WpCIbgkLd:{\"data-framer-appear-id\":\"1mfjupb\",animate:optimizeAppear(\"animate\",\"1mfjupb\",animation4,\"qqyzon\"),background:{alt:\"Sports video of Rafa Nadal with Artificial Intelligence\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,pixelHeight:1080,pixelWidth:1799,sizes:\"158px\",src:\"https://framerusercontent.com/images/zDKWiBsD56LvcpPQ2KSXAnlb9kk.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zDKWiBsD56LvcpPQ2KSXAnlb9kk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zDKWiBsD56LvcpPQ2KSXAnlb9kk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zDKWiBsD56LvcpPQ2KSXAnlb9kk.jpg 1799w\"},initial:optimizeAppear(\"initial\",\"1mfjupb\",animation12,\"qqyzon\"),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:106,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1ur4w9m\",animation4,\"72rtr7\"),background:{alt:\"Sports video of Rafa Nadal with Artificial Intelligence\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,pixelHeight:1080,pixelWidth:1799,sizes:\"211px\",src:\"https://framerusercontent.com/images/zDKWiBsD56LvcpPQ2KSXAnlb9kk.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zDKWiBsD56LvcpPQ2KSXAnlb9kk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zDKWiBsD56LvcpPQ2KSXAnlb9kk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zDKWiBsD56LvcpPQ2KSXAnlb9kk.jpg 1799w\"},className:\"framer-1ur4w9m\",\"data-framer-appear-id\":\"1ur4w9m\",\"data-framer-name\":\"widget_2_2x\",initial:optimizeAppear(\"initial\",\"1ur4w9m\",animation12,\"72rtr7\"),name:\"widget_2_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"1ur4w9m\",transformTemplate2)})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__parallaxTransformEnabled:undefined,\"data-framer-appear-id\":\"2feuab\",animate:optimizeAppear(\"animate\",\"2feuab\",animation13,\"ujtbii\"),background:{alt:\"automated highlight of zidane volley\",fit:\"fill\",intrinsicHeight:255.5,intrinsicWidth:299,pixelHeight:630,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"209.5px\",src:\"https://framerusercontent.com/images/Ph8YKFLsWybfw8a0SbhOO82LefU.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Ph8YKFLsWybfw8a0SbhOO82LefU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Ph8YKFLsWybfw8a0SbhOO82LefU.webp 800w\"},initial:optimizeAppear(\"initial\",\"2feuab\",animation12,\"ujtbii\"),transformTemplate:optimizeAppearTransformTemplate(\"2feuab\",transformTemplate2)},PqpaQgc5e:{\"data-framer-appear-id\":\"9lkow8\",animate:optimizeAppear(\"animate\",\"9lkow8\",animation13,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"9lkow8\",animation12,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"9lkow8\",transformTemplate2)}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1k1vbbk\",animation13,\"72rtr7\"),background:{alt:\"automated highlight of zidane volley\",fit:\"fill\",intrinsicHeight:255.5,intrinsicWidth:299,pixelHeight:630,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/Ph8YKFLsWybfw8a0SbhOO82LefU.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Ph8YKFLsWybfw8a0SbhOO82LefU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Ph8YKFLsWybfw8a0SbhOO82LefU.webp 800w\"},className:\"framer-1k1vbbk hidden-qqyzon\",\"data-framer-appear-id\":\"1k1vbbk\",\"data-framer-name\":\"widget_3_2x\",initial:optimizeAppear(\"initial\",\"1k1vbbk\",animation12,\"72rtr7\"),name:\"widget_3_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"1k1vbbk\",transformTemplate2)})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__parallaxTransformEnabled:undefined,\"data-framer-appear-id\":\"8l5420\",animate:optimizeAppear(\"animate\",\"8l5420\",animation11,\"ujtbii\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:536,pixelWidth:471,sizes:\"155.5px\",src:\"https://framerusercontent.com/images/MgxI1CtfsOThqiCefmQVw0ArF38.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/MgxI1CtfsOThqiCefmQVw0ArF38.png 471w\"},initial:optimizeAppear(\"initial\",\"8l5420\",animation12,\"ujtbii\"),transformTemplate:optimizeAppearTransformTemplate(\"8l5420\",transformTemplate2)},PqpaQgc5e:{\"data-framer-appear-id\":\"sxwfy7\",animate:optimizeAppear(\"animate\",\"sxwfy7\",animation11,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"sxwfy7\",animation12,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"sxwfy7\",transformTemplate2)},WpCIbgkLd:{\"data-framer-appear-id\":\"1k6oq5e\",animate:optimizeAppear(\"animate\",\"1k6oq5e\",animation11,\"qqyzon\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:536,pixelWidth:471,sizes:\"142px\",src:\"https://framerusercontent.com/images/MgxI1CtfsOThqiCefmQVw0ArF38.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/MgxI1CtfsOThqiCefmQVw0ArF38.png 471w\"},initial:optimizeAppear(\"initial\",\"1k6oq5e\",animation12,\"qqyzon\"),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"yf7dwg\",animation11,\"72rtr7\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:536,pixelWidth:471,sizes:\"174px\",src:\"https://framerusercontent.com/images/MgxI1CtfsOThqiCefmQVw0ArF38.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/MgxI1CtfsOThqiCefmQVw0ArF38.png 471w\"},className:\"framer-yf7dwg\",\"data-framer-appear-id\":\"yf7dwg\",\"data-framer-name\":\"widget_4_2x\",initial:optimizeAppear(\"initial\",\"yf7dwg\",animation12,\"72rtr7\"),name:\"widget_4_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"yf7dwg\",transformTemplate2)})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__parallaxTransformEnabled:undefined,\"data-framer-appear-id\":\"1ehpg5o\",animate:optimizeAppear(\"animate\",\"1ehpg5o\",animation14,\"ujtbii\"),background:{alt:\"AI-generated clip of Michael Jordan\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,pixelHeight:1196,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"175.5px\",src:\"https://framerusercontent.com/images/Jouinbx9GOCE35ias6gacvw.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Jouinbx9GOCE35ias6gacvw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Jouinbx9GOCE35ias6gacvw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jouinbx9GOCE35ias6gacvw.jpg 1200w\"},initial:optimizeAppear(\"initial\",\"1ehpg5o\",animation12,\"ujtbii\"),transformTemplate:optimizeAppearTransformTemplate(\"1ehpg5o\",transformTemplate2)},PqpaQgc5e:{\"data-framer-appear-id\":\"133cehr\",animate:optimizeAppear(\"animate\",\"133cehr\",animation14,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"133cehr\",animation12,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"133cehr\",transformTemplate2)},WpCIbgkLd:{\"data-framer-appear-id\":\"ethy9h\",animate:optimizeAppear(\"animate\",\"ethy9h\",animation14,\"qqyzon\"),background:{alt:\"AI-generated clip of Michael Jordan\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,pixelHeight:1196,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"160px\",src:\"https://framerusercontent.com/images/Jouinbx9GOCE35ias6gacvw.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Jouinbx9GOCE35ias6gacvw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Jouinbx9GOCE35ias6gacvw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jouinbx9GOCE35ias6gacvw.jpg 1200w\"},initial:optimizeAppear(\"initial\",\"ethy9h\",animation12,\"qqyzon\"),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:106,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"6nh1qo\",animation14,\"72rtr7\"),background:{alt:\"AI-generated clip of Michael Jordan\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,pixelHeight:1196,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"211px\",src:\"https://framerusercontent.com/images/Jouinbx9GOCE35ias6gacvw.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Jouinbx9GOCE35ias6gacvw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Jouinbx9GOCE35ias6gacvw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jouinbx9GOCE35ias6gacvw.jpg 1200w\"},className:\"framer-6nh1qo\",\"data-framer-appear-id\":\"6nh1qo\",\"data-framer-name\":\"widget_6_2x\",initial:optimizeAppear(\"initial\",\"6nh1qo\",animation12,\"72rtr7\"),name:\"widget_6_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"6nh1qo\",transformTemplate2)})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__parallaxTransformEnabled:undefined,\"data-framer-appear-id\":\"fy6kp7\",animate:optimizeAppear(\"animate\",\"fy6kp7\",animation14,\"ujtbii\"),background:{alt:(_getLocalizedValue5=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:\"Ai-generated sport highlight of Messi in the World Cup\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:243.5,pixelHeight:1893,pixelWidth:1960,sizes:\"158px\",src:\"https://framerusercontent.com/images/EIKdZXAPbJplVNIKnzQMENQOow.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/EIKdZXAPbJplVNIKnzQMENQOow.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EIKdZXAPbJplVNIKnzQMENQOow.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EIKdZXAPbJplVNIKnzQMENQOow.jpg 1960w\"},initial:optimizeAppear(\"initial\",\"fy6kp7\",animation12,\"ujtbii\"),transformTemplate:optimizeAppearTransformTemplate(\"fy6kp7\",transformTemplate2)},PqpaQgc5e:{\"data-framer-appear-id\":\"1sxf16s\",animate:optimizeAppear(\"animate\",\"1sxf16s\",animation14,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"1sxf16s\",animation12,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"1sxf16s\",transformTemplate2)},WpCIbgkLd:{\"data-framer-appear-id\":\"1bs1x30\",animate:optimizeAppear(\"animate\",\"1bs1x30\",animation14,\"qqyzon\"),background:{alt:(_getLocalizedValue6=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:\"Ai-generated sport highlight of Messi in the World Cup\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:243.5,pixelHeight:1893,pixelWidth:1960,sizes:\"168px\",src:\"https://framerusercontent.com/images/EIKdZXAPbJplVNIKnzQMENQOow.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/EIKdZXAPbJplVNIKnzQMENQOow.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EIKdZXAPbJplVNIKnzQMENQOow.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EIKdZXAPbJplVNIKnzQMENQOow.jpg 1960w\"},initial:optimizeAppear(\"initial\",\"1bs1x30\",animation12,\"qqyzon\"),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:104,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1w2lmz4\",animation14,\"72rtr7\"),background:{alt:(_getLocalizedValue7=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:\"Ai-generated sport highlight of Messi in the World Cup\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:243.5,pixelHeight:1893,pixelWidth:1960,sizes:\"244px\",src:\"https://framerusercontent.com/images/EIKdZXAPbJplVNIKnzQMENQOow.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/EIKdZXAPbJplVNIKnzQMENQOow.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EIKdZXAPbJplVNIKnzQMENQOow.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EIKdZXAPbJplVNIKnzQMENQOow.jpg 1960w\"},className:\"framer-1w2lmz4\",\"data-framer-appear-id\":\"1w2lmz4\",\"data-framer-name\":\"widget_7_2x\",initial:optimizeAppear(\"initial\",\"1w2lmz4\",animation12,\"72rtr7\"),name:\"widget_7_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"1w2lmz4\",transformTemplate2)})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__parallaxTransformEnabled:undefined,\"data-framer-appear-id\":\"zdx2gs\",animate:optimizeAppear(\"animate\",\"zdx2gs\",animation,\"ujtbii\"),background:{alt:\"automated highlight of zidane volley\",fit:\"fill\",intrinsicHeight:143.5,intrinsicWidth:299.5,pixelHeight:630,pixelWidth:950,positionX:\"left\",positionY:\"center\",sizes:\"calc(100vw - 990px)\",src:\"https://framerusercontent.com/images/Dwwc9OCd438uYntFK11is8OK9s.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Dwwc9OCd438uYntFK11is8OK9s.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Dwwc9OCd438uYntFK11is8OK9s.webp 950w\"},initial:optimizeAppear(\"initial\",\"zdx2gs\",animation12,\"ujtbii\"),transformTemplate:optimizeAppearTransformTemplate(\"zdx2gs\",transformTemplate2)},PqpaQgc5e:{\"data-framer-appear-id\":\"9t9942\",animate:optimizeAppear(\"animate\",\"9t9942\",animation,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"9t9942\",animation12,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"9t9942\",transformTemplate2)}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:106,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1hdye1v\",animation,\"72rtr7\"),background:{alt:\"automated highlight of zidane volley\",fit:\"fill\",intrinsicHeight:143.5,intrinsicWidth:299.5,pixelHeight:630,pixelWidth:950,positionX:\"left\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/Dwwc9OCd438uYntFK11is8OK9s.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Dwwc9OCd438uYntFK11is8OK9s.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Dwwc9OCd438uYntFK11is8OK9s.webp 950w\"},className:\"framer-1hdye1v hidden-qqyzon\",\"data-framer-appear-id\":\"1hdye1v\",\"data-framer-name\":\"widget_8_2x\",initial:optimizeAppear(\"initial\",\"1hdye1v\",animation12,\"72rtr7\"),name:\"widget_8_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"1hdye1v\",transformTemplate2)})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__parallaxTransformEnabled:undefined,\"data-framer-appear-id\":\"rl63oz\",animate:optimizeAppear(\"animate\",\"rl63oz\",animation11,\"ujtbii\"),background:{alt:\"Real-time video of Tiger Woods generated by Pendular\",fit:\"fill\",intrinsicHeight:206,intrinsicWidth:186,pixelHeight:810,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"161.5px\",src:\"https://framerusercontent.com/images/HT6Dp9HxVP1n5BxYDnuqvXcBMQ.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/HT6Dp9HxVP1n5BxYDnuqvXcBMQ.jpg 600w\"},initial:optimizeAppear(\"initial\",\"rl63oz\",animation12,\"ujtbii\"),transformTemplate:optimizeAppearTransformTemplate(\"rl63oz\",transformTemplate2)},PqpaQgc5e:{\"data-framer-appear-id\":\"7u6cyj\",animate:optimizeAppear(\"animate\",\"7u6cyj\",animation11,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"7u6cyj\",animation12,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"7u6cyj\",transformTemplate2)},WpCIbgkLd:{\"data-framer-appear-id\":\"y4fb27\",animate:optimizeAppear(\"animate\",\"y4fb27\",animation11,\"qqyzon\"),background:{alt:\"Real-time video of Tiger Woods generated by Pendular\",fit:\"fill\",intrinsicHeight:206,intrinsicWidth:186,pixelHeight:810,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"146px\",src:\"https://framerusercontent.com/images/HT6Dp9HxVP1n5BxYDnuqvXcBMQ.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/HT6Dp9HxVP1n5BxYDnuqvXcBMQ.jpg 600w\"},initial:optimizeAppear(\"initial\",\"y4fb27\",animation12,\"qqyzon\"),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:92,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"j4jga\",animation11,\"72rtr7\"),background:{alt:\"Real-time video of Tiger Woods generated by Pendular\",fit:\"fill\",intrinsicHeight:206,intrinsicWidth:186,pixelHeight:810,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"186px\",src:\"https://framerusercontent.com/images/HT6Dp9HxVP1n5BxYDnuqvXcBMQ.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/HT6Dp9HxVP1n5BxYDnuqvXcBMQ.jpg 600w\"},className:\"framer-j4jga\",\"data-framer-appear-id\":\"j4jga\",\"data-framer-name\":\"widget_5_2x\",initial:optimizeAppear(\"initial\",\"j4jga\",animation12,\"72rtr7\"),name:\"widget_5_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"j4jga\",transformTemplate2)})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__parallaxTransformEnabled:undefined,\"data-framer-appear-id\":\"n4fspf\",animate:optimizeAppear(\"animate\",\"n4fspf\",animation14,\"ujtbii\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:202.5,intrinsicWidth:163,pixelHeight:536,pixelWidth:471,sizes:\"144px\",src:\"https://framerusercontent.com/images/SgzXXkbUbn0Q0biVRs6iXld9l8s.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SgzXXkbUbn0Q0biVRs6iXld9l8s.png 471w\"},initial:optimizeAppear(\"initial\",\"n4fspf\",animation12,\"ujtbii\"),transformTemplate:optimizeAppearTransformTemplate(\"n4fspf\",transformTemplate2)},PqpaQgc5e:{\"data-framer-appear-id\":\"9ytiaq\",animate:optimizeAppear(\"animate\",\"9ytiaq\",animation14,\"1uu7l1z\"),initial:optimizeAppear(\"initial\",\"9ytiaq\",animation12,\"1uu7l1z\"),transformTemplate:optimizeAppearTransformTemplate(\"9ytiaq\",transformTemplate2)},WpCIbgkLd:{\"data-framer-appear-id\":\"1cg4rep\",animate:optimizeAppear(\"animate\",\"1cg4rep\",animation14,\"qqyzon\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:202.5,intrinsicWidth:163,pixelHeight:536,pixelWidth:471,sizes:\"131px\",src:\"https://framerusercontent.com/images/SgzXXkbUbn0Q0biVRs6iXld9l8s.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SgzXXkbUbn0Q0biVRs6iXld9l8s.png 471w\"},initial:optimizeAppear(\"initial\",\"1cg4rep\",animation12,\"qqyzon\"),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:97,__perspectiveFX:false,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1121up6\",animation14,\"72rtr7\"),background:{alt:\"\",fit:\"fill\",intrinsicHeight:202.5,intrinsicWidth:163,pixelHeight:536,pixelWidth:471,sizes:\"147px\",src:\"https://framerusercontent.com/images/SgzXXkbUbn0Q0biVRs6iXld9l8s.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SgzXXkbUbn0Q0biVRs6iXld9l8s.png 471w\"},className:\"framer-1121up6\",\"data-framer-appear-id\":\"1121up6\",\"data-framer-name\":\"widget_9_2x\",initial:optimizeAppear(\"initial\",\"1121up6\",animation12,\"72rtr7\"),name:\"widget_9_2x\",style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"1121up6\",transformTemplate2)})})]})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19vndmf-container hidden-ujtbii hidden-qqyzon\",layoutScroll:true,children:/*#__PURE__*/_jsx(ScrollToTopButton,{buttonType:\"default\",custom:[],effects:{hoverScale:1.1,pressScale:.9,transition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}},fill:\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(236, 241, 247))\",height:\"100%\",icon:{color:\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\",size:30,stroke:2},id:\"FejEQVibc\",layoutId:\"FejEQVibc\",radius:50,radiusBottomLeft:50,radiusIsMixed:false,radiusottomRight:50,radiusTopLeft:50,radiusTopRight:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:\"#hero\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-p9zqaz hidden-ujtbii framer-lux5qc\",\"data-framer-name\":\"Back-to-Top\",name:\"Back-to-Top\",whileTap:animation15})}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1j4nrae\",\"data-framer-name\":\"Brands\",id:id2,name:\"Brands\",ref:ref2,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xo0xl9\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:(_getLocalizedValue8=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"Trusted by\"})})},PqpaQgc5e:{children:(_getLocalizedValue9=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"Trusted by\"})})},WpCIbgkLd:{children:(_getLocalizedValue10=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"Trusted by\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue11=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"Trusted by\"})}),className:\"framer-2a8b7p\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yuhlz0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:30},PqpaQgc5e:{gap:60},WpCIbgkLd:{gap:60}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:5,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:.5,id:\"XNtA_NGyt\",layoutId:\"XNtA_NGyt\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1limjit-container\",children:/*#__PURE__*/_jsx(Atresmedia,{height:\"100%\",id:\"t_4kzfHaA\",layoutId:\"t_4kzfHaA\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xnp448-container\",children:/*#__PURE__*/_jsx(AusOpen,{height:\"100%\",id:\"AlzSJghrD\",layoutId:\"AlzSJghrD\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"118.8795px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-y4objz-container\",children:/*#__PURE__*/_jsx(WinSports,{height:\"100%\",id:\"sTOSiVwZZ\",layoutId:\"sTOSiVwZZ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bcwbrm-container\",children:/*#__PURE__*/_jsx(Telefonica,{height:\"100%\",id:\"azpH2nALU\",layoutId:\"azpH2nALU\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dlvwqj-container\",children:/*#__PURE__*/_jsx(LigaF,{height:\"100%\",id:\"LCddUYaWb\",layoutId:\"LCddUYaWb\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-u964l4-container\",children:/*#__PURE__*/_jsx(Hopman,{height:\"100%\",id:\"MG7NI1dFj\",layoutId:\"MG7NI1dFj\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1t5bw2x\",\"data-framer-name\":\"How It Works\",id:id3,name:\"How It Works\",ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-crvn2r\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tml69f\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xjmeho\",\"data-framer-name\":\"Row\",name:\"Row\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:80,ref:ref5,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fl3pqc-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{blogBG:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\",blogCategory:(_getLocalizedValue12=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:\"CATEGORY-NAME\",height:\"100%\",id:\"c_N8gQCAM\",layoutId:\"c_N8gQCAM\",priceBG:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",pricePlan:(_getLocalizedValue13=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:\"PLAN\",sectionBG:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",sectionName:(_getLocalizedValue14=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:\"HOW IT WORKS\",textColor:\"var(--token-b988d70e-4e2a-47cf-8199-0fece17bfdfe, rgb(0, 0, 254))\",textColor1:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",variant:\"A1hLNSIZ_\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:80,ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:(_getLocalizedValue15=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g567mr\",\"data-styles-preset\":\"XuM03kBo3\",children:\" AI-driven, high-quality content\"})}),className:\"framer-1fvuriy\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:80,ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:(_getLocalizedValue16=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Cutting-edge, user-friendly AI tool\"})}),className:\"framer-zw4c9c\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],name:\"Supporting text\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q2olwh-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"pRL4OWPK5\"},WpCIbgkLd:{variant:\"Lc1zdY1RM\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"wcIcKWlxW\",layoutId:\"wcIcKWlxW\",MyzOwQ53a:(_getLocalizedValue17=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:\"Transform your clips with Pendular's dynamic cropping technology. Whether 16:9, 9:16, 1:1, or 4:5, Pendular has you covered.\",NacojSf_1:addImageAlt({src:\"https://framerusercontent.com/images/EFCcr0SI4AH8wlxtW9UsNykNLY.jpg\",srcSet:\"https://framerusercontent.com/images/EFCcr0SI4AH8wlxtW9UsNykNLY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EFCcr0SI4AH8wlxtW9UsNykNLY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EFCcr0SI4AH8wlxtW9UsNykNLY.jpg 1920w\"},(_getLocalizedValue18=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:\"Pendular ISO - Dynamic cropping technology\"),Pn08AubqI:(_getLocalizedValue19=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:\"Highlights in any format\",style:{width:\"100%\"},variant:\"vlKoatX9W\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c45g1f-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"GL12cUzwk\"},WpCIbgkLd:{variant:\"IX9Nedfcw\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"b3QdyhuiE\",layoutId:\"b3QdyhuiE\",MyzOwQ53a:(_getLocalizedValue20=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:\"Type any video request and watch Pendular work its magic.\",NacojSf_1:addImageAlt({src:\"https://framerusercontent.com/images/Tc3AbYmQk3gp8uwzsAAPzFWIaYc.jpg\",srcSet:\"https://framerusercontent.com/images/Tc3AbYmQk3gp8uwzsAAPzFWIaYc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Tc3AbYmQk3gp8uwzsAAPzFWIaYc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tc3AbYmQk3gp8uwzsAAPzFWIaYc.jpg 1920w\"},\"\"),Pn08AubqI:(_getLocalizedValue21=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:\"Text-to-video AI\",style:{width:\"100%\"},variant:\"M2SieRvQ3\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cumeb4-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"pRL4OWPK5\"},WpCIbgkLd:{variant:\"Lc1zdY1RM\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"DDFT3dPjG\",layoutId:\"DDFT3dPjG\",MyzOwQ53a:(_getLocalizedValue22=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:\"Set up as many rules as needed to have Pendular automatically generate videos and distribute them to your teammates and media partners.\",NacojSf_1:addImageAlt({src:\"https://framerusercontent.com/images/bhSn6aubbR3tz96iUpLNFRB9o.webp\",srcSet:\"https://framerusercontent.com/images/bhSn6aubbR3tz96iUpLNFRB9o.webp?scale-down-to=512 512w,https://framerusercontent.com/images/bhSn6aubbR3tz96iUpLNFRB9o.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/bhSn6aubbR3tz96iUpLNFRB9o.webp 1400w\"},(_getLocalizedValue23=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:\"Automated highlights during a tennis match\"),Pn08AubqI:(_getLocalizedValue24=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue24!==void 0?_getLocalizedValue24:\"Automated distribution\",style:{width:\"100%\"},variant:\"vlKoatX9W\",width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"header\",{className:\"framer-5m3ghz hidden-ujtbii hidden-qqyzon\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18zilsm\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rypnb2\",style:{rotate:-3},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1411,pixelWidth:795,sizes:\"225px\",src:\"https://framerusercontent.com/images/qq9xfjLmaRjpyOxBQOw08as.jpg\",srcSet:\"https://framerusercontent.com/images/qq9xfjLmaRjpyOxBQOw08as.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/qq9xfjLmaRjpyOxBQOw08as.jpg 795w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1411,pixelWidth:795,sizes:\"235px\",src:\"https://framerusercontent.com/images/qq9xfjLmaRjpyOxBQOw08as.jpg\",srcSet:\"https://framerusercontent.com/images/qq9xfjLmaRjpyOxBQOw08as.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/qq9xfjLmaRjpyOxBQOw08as.jpg 795w\"},className:\"framer-5snlte\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12y423h\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{children:(_getLocalizedValue25=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue25!==void 0?_getLocalizedValue25:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 1, 90)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"72px\"},children:\"Best-in-class\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"72px\"},children:\"Google\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"72px\"},children:\"Web Stories\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:(_getLocalizedValue26=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue26!==void 0?_getLocalizedValue26:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 1, 90)\"},children:[\"Best-in-class\",/*#__PURE__*/_jsx(\"br\",{}),\"Google\",/*#__PURE__*/_jsx(\"br\",{}),\"Web Stories\"]})}),className:\"framer-g8vh3l\",fonts:[\"GF;Inter-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{children:(_getLocalizedValue27=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue27!==void 0?_getLocalizedValue27:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Pendular creates and publishes Web Stories to Google OneBox automatically, helping you reach more fans.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:(_getLocalizedValue28=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue28!==void 0?_getLocalizedValue28:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Pendular creates and publishes Web Stories to Google OneBox automatically, helping you reach more fans.\"})}),className:\"framer-kv1l66\",fonts:[\"GF;Inter-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4q0rf7\"})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-18fn4o8\",\"data-framer-name\":\"Testmonials\",id:id4,name:\"Testmonials\",ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lilnrz\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w1gje9-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{blogBG:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\",blogCategory:(_getLocalizedValue29=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue29!==void 0?_getLocalizedValue29:\"CATEGORY-NAME\",height:\"100%\",id:\"syBm8yUkv\",layoutId:\"syBm8yUkv\",priceBG:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",pricePlan:(_getLocalizedValue30=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue30!==void 0?_getLocalizedValue30:\"PLAN\",sectionBG:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",sectionName:(_getLocalizedValue31=getLocalizedValue(\"v26\",activeLocale))!==null&&_getLocalizedValue31!==void 0?_getLocalizedValue31:\"TESTIMONIALS\",textColor:\"var(--token-b988d70e-4e2a-47cf-8199-0fece17bfdfe, rgb(0, 0, 254))\",textColor1:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",variant:\"A1hLNSIZ_\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:(_getLocalizedValue32=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue32!==void 0?_getLocalizedValue32:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g567mr\",\"data-styles-preset\":\"XuM03kBo3\",children:\"Don\u2019t take our word for it\"})}),className:\"framer-ee8yod\",\"data-framer-name\":\"Don\u2019t take our word for it\",fonts:[\"Inter\"],name:\"Don\u2019t take our word for it\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j7cmiz\",\"data-framer-name\":\"Rows\",name:\"Rows\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-112tijh\",\"data-framer-name\":\"Row\",name:\"Row\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__styleTransformEffectEnabled:undefined,style:{}},WpCIbgkLd:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-974,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p1oidp-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{width:\"100%\"},variant:\"sp3HzmGhH\"},WpCIbgkLd:{style:{width:\"100%\"},variant:\"sp3HzmGhH\"}},children:/*#__PURE__*/_jsx(Testimonial,{background:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\",height:\"100%\",id:\"vZ1fkST8a\",layoutId:\"vZ1fkST8a\",nameRole:\"\",style:{height:\"100%\",width:\"100%\"},testimonial:addImageAlt({src:\"https://framerusercontent.com/images/5V4pC4ZRtYEn0YuoB4mPC77OOQ.jpg\",srcSet:\"https://framerusercontent.com/images/5V4pC4ZRtYEn0YuoB4mPC77OOQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5V4pC4ZRtYEn0YuoB4mPC77OOQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5V4pC4ZRtYEn0YuoB4mPC77OOQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5V4pC4ZRtYEn0YuoB4mPC77OOQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/5V4pC4ZRtYEn0YuoB4mPC77OOQ.jpg 6240w\"},\"\"),text:(_getLocalizedValue33=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue33!==void 0?_getLocalizedValue33:'\"We were really impressed with Pendular\\'s content generation technology and its ability to automatically add scoreboards, sponsored overlays, and more.\"',variant:\"jmu0jInww\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__styleTransformEffectEnabled:undefined,style:{}},WpCIbgkLd:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-984,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-b627dl-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{width:\"100%\"},variant:\"sp3HzmGhH\"},WpCIbgkLd:{style:{width:\"100%\"},variant:\"sp3HzmGhH\"}},children:/*#__PURE__*/_jsx(Testimonial,{background:\"var(--token-369bc1bd-97b2-4771-a553-64253b756551, rgb(217, 255, 216))\",height:\"100%\",id:\"Q8lEBTu0k\",layoutId:\"Q8lEBTu0k\",nameRole:\"\",style:{height:\"100%\",width:\"100%\"},testimonial:addImageAlt({src:\"https://framerusercontent.com/images/hLwgxfF6ijZWi8PNrBSDopQI.jpg\",srcSet:\"https://framerusercontent.com/images/hLwgxfF6ijZWi8PNrBSDopQI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hLwgxfF6ijZWi8PNrBSDopQI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hLwgxfF6ijZWi8PNrBSDopQI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hLwgxfF6ijZWi8PNrBSDopQI.jpg 3000w\"},\"\"),text:(_getLocalizedValue34=getLocalizedValue(\"v29\",activeLocale))!==null&&_getLocalizedValue34!==void 0?_getLocalizedValue34:'\"We needed an efficient way to capture sports highlights and viral moments at scale. This AI tool exceeded our expectations.\"',variant:\"jmu0jInww\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__styleTransformEffectEnabled:undefined,style:{}},WpCIbgkLd:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-997,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-k30bep-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{width:\"100%\"},variant:\"sp3HzmGhH\"},WpCIbgkLd:{style:{width:\"100%\"},variant:\"sp3HzmGhH\"}},children:/*#__PURE__*/_jsx(Testimonial,{background:\"var(--token-8232da7d-fb98-4f3b-b0eb-71dfd0237a0b, rgb(251, 247, 184))\",height:\"100%\",id:\"wfHYW6JcL\",layoutId:\"wfHYW6JcL\",nameRole:\"\",style:{height:\"100%\",width:\"100%\"},testimonial:addImageAlt({src:\"https://framerusercontent.com/images/19EO1qfY400YUQBS9uwpUaASAZY.jpg\",srcSet:\"https://framerusercontent.com/images/19EO1qfY400YUQBS9uwpUaASAZY.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/19EO1qfY400YUQBS9uwpUaASAZY.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/19EO1qfY400YUQBS9uwpUaASAZY.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/19EO1qfY400YUQBS9uwpUaASAZY.jpg 4000w\"},\"\"),text:(_getLocalizedValue35=getLocalizedValue(\"v30\",activeLocale))!==null&&_getLocalizedValue35!==void 0?_getLocalizedValue35:'\"The platform\\'s emphasis on automation impressed me, enabling us to create Google Web Stories, summaries, and compilations in seconds.\"',variant:\"jmu0jInww\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined},{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined},{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined},{href:{webPageId:\"j_G9_ASf0\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uy3wq4-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{vjZWklrqI:resolvedLinks1[2]},PqpaQgc5e:{vjZWklrqI:resolvedLinks1[1]},WpCIbgkLd:{vjZWklrqI:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowRight\",height:\"100%\",id:\"g3MfhyNok\",layoutId:\"g3MfhyNok\",variant:\"JiPCvmJb6\",vjZWklrqI:resolvedLinks1[0],width:\"100%\",xEfGs_njT:(_getLocalizedValue=getLocalizedValue(\"v31\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"More stories\"})})})});}})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16qlq98-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"dDfMYNgad\"},WpCIbgkLd:{variant:\"orCSEo06g\"}},children:/*#__PURE__*/_jsx(CTALaunch,{height:\"100%\",id:\"wxTKsF2d5\",layoutId:\"wxTKsF2d5\",style:{width:\"100%\"},variant:\"mFnVyQAza\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t267rc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"IFm_nl1xI\"},WpCIbgkLd:{variant:\"kQqvilYYp\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"UdEOtZZh7\",layoutId:\"UdEOtZZh7\",style:{width:\"100%\"},variant:\"o7RQfo0Of\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-jCSP5 { background: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255)) /* {\"name\":\"UI/White\"} */; }`,\".framer-jCSP5.framer-lux5qc, .framer-jCSP5 .framer-lux5qc { display: block; }\",\".framer-jCSP5.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-jCSP5 .framer-wde3po-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-jCSP5 .framer-1yp8xwc { align-content: center; align-items: center; background-color: var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, #f3f7fb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 180px 0px 80px 0px; position: relative; scroll-margin-top: 10px; width: 100%; }\",\".framer-jCSP5 .framer-aeug7n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 670px; justify-content: center; left: calc(69.84375000000003% - 772px / 2); overflow: visible; padding: 0px; position: absolute; top: -400px; width: 772px; z-index: 0; }\",\".framer-jCSP5 .framer-1xze9nt { -webkit-filter: blur(90px); background-color: #66d98e; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(90px); flex: none; height: 618px; position: absolute; right: -283px; top: 0px; width: 838px; z-index: 1; }\",\".framer-jCSP5 .framer-1j0lqfi { -webkit-filter: blur(82px); background-color: #563feb; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; filter: blur(82px); flex: none; height: 514px; left: -310px; position: absolute; top: 31px; width: 791px; z-index: 1; }\",\".framer-jCSP5 .framer-1d13stc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 670px; justify-content: center; left: calc(18.046875000000025% - 772px / 2); overflow: visible; padding: 0px; position: absolute; top: -400px; width: 772px; z-index: 0; }\",\".framer-jCSP5 .framer-1k27plj { -webkit-filter: blur(76px); background-color: #f5f5f5; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(76px); flex: none; height: 523px; position: absolute; right: 268px; top: 119px; width: 536px; z-index: 1; }\",\".framer-jCSP5 .framer-184ujgq { -webkit-filter: blur(95px); background-color: #02ed2a; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(95px); flex: none; height: 345px; overflow: hidden; position: absolute; right: 62px; top: 123px; width: 345px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-jCSP5 .framer-17lqxjv, .framer-jCSP5 .framer-crvn2r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-jCSP5 .framer-9o2owm, .framer-jCSP5 .framer-tml69f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jCSP5 .framer-1ng0tkn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 220px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jCSP5 .framer-psoogj { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.4); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 12px 6px 8px; position: relative; text-decoration: none; width: min-content; }\",\".framer-jCSP5 .framer-gdfu8x { align-content: center; align-items: center; background-color: #eaf2ff; 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: 4px 12px 4px 12px; position: relative; width: min-content; }\",\".framer-jCSP5 .framer-902rk0, .framer-jCSP5 .framer-j9rgpq, .framer-jCSP5 .framer-2a8b7p { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jCSP5 .framer-4jdy0o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jCSP5 .framer-1048hid { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-jCSP5 .framer-1uywckh { flex: none; height: 176px; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-jCSP5 .framer-u9emc7 { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-jCSP5 .framer-1yt86wi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jCSP5 .framer-u1w5f8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jCSP5 .framer-e3ehre-container { aspect-ratio: 0.7 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 25px; }\",\".framer-jCSP5 .framer-38qvku-container, .framer-jCSP5 .framer-ucnd8i-container, .framer-jCSP5 .framer-9a9af9-container { aspect-ratio: 0.6944444444444444 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 25px; }\",\".framer-jCSP5 .framer-18v5tzb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jCSP5 .framer-225hdf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jCSP5 .framer-1rzjr3l-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; }\",\".framer-jCSP5 .framer-112xx8p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-jCSP5 .framer-1bvspiv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 325px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jCSP5 .framer-96y6ty { aspect-ratio: 1.154228855721393 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 201px); left: -357px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 232px; z-index: 1; }\",\".framer-jCSP5 .framer-uxx9lr { aspect-ratio: 0.9841269841269841 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 189px); left: -70px; overflow: visible; position: absolute; top: 49%; transform: translateY(-50%); width: 186px; z-index: 1; }\",\".framer-jCSP5 .framer-1ur4w9m { aspect-ratio: 0.9768518518518519 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 216px); left: 65px; overflow: visible; position: absolute; top: 50%; transform: translateY(-50%); width: 211px; z-index: 1; }\",\".framer-jCSP5 .framer-1k1vbbk { aspect-ratio: 1.171875 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 256px); left: 1344px; overflow: visible; position: absolute; top: 50%; transform: translateY(-50%); width: 300px; z-index: 1; }\",\".framer-jCSP5 .framer-yf7dwg { aspect-ratio: 0.87 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: 300px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 174px; z-index: 1; }\",\".framer-jCSP5 .framer-6nh1qo { aspect-ratio: 0.9813953488372092 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 215px); left: 1054px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 211px; z-index: 1; }\",\".framer-jCSP5 .framer-1w2lmz4 { aspect-ratio: 0.8840579710144928 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 276px); left: 492px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 244px; z-index: 1; }\",\".framer-jCSP5 .framer-1hdye1v { aspect-ratio: 2.0833333333333335 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 144px); overflow: visible; position: absolute; right: -714px; top: 47%; transform: translateY(-50%); width: 300px; z-index: 1; }\",\".framer-jCSP5 .framer-j4jga { aspect-ratio: 0.9029126213592233 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 206px); left: 741px; overflow: visible; position: absolute; top: 49%; transform: translateY(-50%); width: 186px; z-index: 1; }\",\".framer-jCSP5 .framer-1121up6 { aspect-ratio: 0.8054794520547945 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 183px); left: 938px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 147px; z-index: 1; }\",\".framer-jCSP5 .framer-19vndmf-container { bottom: 30px; flex: none; height: 50px; position: fixed; right: 60px; width: 50px; z-index: 1; }\",\".framer-jCSP5 .framer-p9zqaz { align-content: center; align-items: center; background-color: rgba(244, 247, 250, 0.1); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: fixed; right: 40px; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-jCSP5 .framer-1j4nrae { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-jCSP5 .framer-xo0xl9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1180px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jCSP5 .framer-yuhlz0-container { flex: none; height: 107px; position: relative; width: 100%; }\",\".framer-jCSP5 .framer-1limjit-container { aspect-ratio: 4.123287671232877 / 1; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 120px; }\",\".framer-jCSP5 .framer-xnp448-container { aspect-ratio: 3.8461538461538463 / 1; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 120px; }\",\".framer-jCSP5 .framer-y4objz-container { aspect-ratio: 3.602409638554217 / 1; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 120px; }\",\".framer-jCSP5 .framer-bcwbrm-container { aspect-ratio: 4.0675675675675675 / 1; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 120px; }\",\".framer-jCSP5 .framer-dlvwqj-container { aspect-ratio: 3.2967032967032965 / 1; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 120px; }\",\".framer-jCSP5 .framer-u964l4-container { aspect-ratio: 3.1808510638297873 / 1; height: var(--framer-aspect-ratio-supported, 38px); position: relative; width: 120px; }\",\".framer-jCSP5 .framer-1t5bw2x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 0px 0px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-jCSP5 .framer-xjmeho { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-jCSP5 .framer-1fl3pqc-container, .framer-jCSP5 .framer-1w1gje9-container, .framer-jCSP5 .framer-1uy3wq4-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-jCSP5 .framer-1fvuriy, .framer-jCSP5 .framer-ee8yod { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-jCSP5 .framer-zw4c9c { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\".framer-jCSP5 .framer-q2olwh-container, .framer-jCSP5 .framer-1c45g1f-container, .framer-jCSP5 .framer-cumeb4-container, .framer-jCSP5 .framer-16qlq98-container, .framer-jCSP5 .framer-1t267rc-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-jCSP5 .framer-5m3ghz { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1200px; }\",\".framer-jCSP5 .framer-18zilsm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: 350px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jCSP5 .framer-rypnb2 { align-content: center; align-items: center; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; box-shadow: 0px 0.6021873017743928px 3.010936508871964px -0.3333333333333333px rgba(0, 0, 0, 0.02), 0px 2.288533303243457px 11.442666516217285px -0.6666666666666666px rgba(0, 0, 0, 0.03373), 0px 10px 50px -1px rgba(0, 0, 0, 0.08); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 444px; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 275px; }\",\".framer-jCSP5 .framer-5snlte { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jCSP5 .framer-12y423h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 39px 0px 39px 0px; position: relative; width: 427px; }\",\".framer-jCSP5 .framer-g8vh3l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-jCSP5 .framer-kv1l66 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 400px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jCSP5 .framer-4q0rf7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; min-height: 40px; min-width: 108px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",'.framer-jCSP5 .framer-18fn4o8 { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, #ecf1f7) /* {\"name\":\"UI/Gray-200\"} */ 0%, rgba(243, 247, 251, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 60px 80px 60px; position: relative; width: 100%; z-index: 1; }',\".framer-jCSP5 .framer-1lilnrz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jCSP5 .framer-1j7cmiz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 71%; }\",\".framer-jCSP5 .framer-112tijh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jCSP5 .framer-1p1oidp-container, .framer-jCSP5 .framer-b627dl-container, .framer-jCSP5 .framer-k30bep-container { flex: none; height: 442px; position: relative; width: 668px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jCSP5.framer-72rtr7, .framer-jCSP5 .framer-1yp8xwc, .framer-jCSP5 .framer-aeug7n, .framer-jCSP5 .framer-1d13stc, .framer-jCSP5 .framer-17lqxjv, .framer-jCSP5 .framer-9o2owm, .framer-jCSP5 .framer-1ng0tkn, .framer-jCSP5 .framer-psoogj, .framer-jCSP5 .framer-gdfu8x, .framer-jCSP5 .framer-4jdy0o, .framer-jCSP5 .framer-1yt86wi, .framer-jCSP5 .framer-u1w5f8, .framer-jCSP5 .framer-225hdf, .framer-jCSP5 .framer-112xx8p, .framer-jCSP5 .framer-1bvspiv, .framer-jCSP5 .framer-p9zqaz, .framer-jCSP5 .framer-1j4nrae, .framer-jCSP5 .framer-xo0xl9, .framer-jCSP5 .framer-1t5bw2x, .framer-jCSP5 .framer-crvn2r, .framer-jCSP5 .framer-tml69f, .framer-jCSP5 .framer-xjmeho, .framer-jCSP5 .framer-5m3ghz, .framer-jCSP5 .framer-18zilsm, .framer-jCSP5 .framer-rypnb2, .framer-jCSP5 .framer-12y423h, .framer-jCSP5 .framer-4q0rf7, .framer-jCSP5 .framer-18fn4o8, .framer-jCSP5 .framer-1lilnrz, .framer-jCSP5 .framer-1j7cmiz, .framer-jCSP5 .framer-112tijh { gap: 0px; } .framer-jCSP5.framer-72rtr7 > *, .framer-jCSP5 .framer-1j4nrae > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jCSP5.framer-72rtr7 > :first-child, .framer-jCSP5 .framer-1yp8xwc > :first-child, .framer-jCSP5 .framer-17lqxjv > :first-child, .framer-jCSP5 .framer-9o2owm > :first-child, .framer-jCSP5 .framer-1ng0tkn > :first-child, .framer-jCSP5 .framer-1j4nrae > :first-child, .framer-jCSP5 .framer-xo0xl9 > :first-child, .framer-jCSP5 .framer-1t5bw2x > :first-child, .framer-jCSP5 .framer-crvn2r > :first-child, .framer-jCSP5 .framer-tml69f > :first-child, .framer-jCSP5 .framer-xjmeho > :first-child, .framer-jCSP5 .framer-5m3ghz > :first-child, .framer-jCSP5 .framer-12y423h > :first-child, .framer-jCSP5 .framer-18fn4o8 > :first-child, .framer-jCSP5 .framer-1lilnrz > :first-child, .framer-jCSP5 .framer-1j7cmiz > :first-child { margin-top: 0px; } .framer-jCSP5.framer-72rtr7 > :last-child, .framer-jCSP5 .framer-1yp8xwc > :last-child, .framer-jCSP5 .framer-17lqxjv > :last-child, .framer-jCSP5 .framer-9o2owm > :last-child, .framer-jCSP5 .framer-1ng0tkn > :last-child, .framer-jCSP5 .framer-1j4nrae > :last-child, .framer-jCSP5 .framer-xo0xl9 > :last-child, .framer-jCSP5 .framer-1t5bw2x > :last-child, .framer-jCSP5 .framer-crvn2r > :last-child, .framer-jCSP5 .framer-tml69f > :last-child, .framer-jCSP5 .framer-xjmeho > :last-child, .framer-jCSP5 .framer-5m3ghz > :last-child, .framer-jCSP5 .framer-12y423h > :last-child, .framer-jCSP5 .framer-18fn4o8 > :last-child, .framer-jCSP5 .framer-1lilnrz > :last-child, .framer-jCSP5 .framer-1j7cmiz > :last-child { margin-bottom: 0px; } .framer-jCSP5 .framer-1yp8xwc > *, .framer-jCSP5 .framer-18fn4o8 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-jCSP5 .framer-aeug7n > *, .framer-jCSP5 .framer-1d13stc > *, .framer-jCSP5 .framer-112xx8p > *, .framer-jCSP5 .framer-1bvspiv > *, .framer-jCSP5 .framer-p9zqaz > *, .framer-jCSP5 .framer-rypnb2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jCSP5 .framer-aeug7n > :first-child, .framer-jCSP5 .framer-1d13stc > :first-child, .framer-jCSP5 .framer-psoogj > :first-child, .framer-jCSP5 .framer-gdfu8x > :first-child, .framer-jCSP5 .framer-4jdy0o > :first-child, .framer-jCSP5 .framer-1yt86wi > :first-child, .framer-jCSP5 .framer-u1w5f8 > :first-child, .framer-jCSP5 .framer-225hdf > :first-child, .framer-jCSP5 .framer-112xx8p > :first-child, .framer-jCSP5 .framer-1bvspiv > :first-child, .framer-jCSP5 .framer-p9zqaz > :first-child, .framer-jCSP5 .framer-18zilsm > :first-child, .framer-jCSP5 .framer-rypnb2 > :first-child, .framer-jCSP5 .framer-4q0rf7 > :first-child, .framer-jCSP5 .framer-112tijh > :first-child { margin-left: 0px; } .framer-jCSP5 .framer-aeug7n > :last-child, .framer-jCSP5 .framer-1d13stc > :last-child, .framer-jCSP5 .framer-psoogj > :last-child, .framer-jCSP5 .framer-gdfu8x > :last-child, .framer-jCSP5 .framer-4jdy0o > :last-child, .framer-jCSP5 .framer-1yt86wi > :last-child, .framer-jCSP5 .framer-u1w5f8 > :last-child, .framer-jCSP5 .framer-225hdf > :last-child, .framer-jCSP5 .framer-112xx8p > :last-child, .framer-jCSP5 .framer-1bvspiv > :last-child, .framer-jCSP5 .framer-p9zqaz > :last-child, .framer-jCSP5 .framer-18zilsm > :last-child, .framer-jCSP5 .framer-rypnb2 > :last-child, .framer-jCSP5 .framer-4q0rf7 > :last-child, .framer-jCSP5 .framer-112tijh > :last-child { margin-right: 0px; } .framer-jCSP5 .framer-17lqxjv > *, .framer-jCSP5 .framer-crvn2r > *, .framer-jCSP5 .framer-1j7cmiz > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-jCSP5 .framer-9o2owm > *, .framer-jCSP5 .framer-tml69f > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-jCSP5 .framer-1ng0tkn > *, .framer-jCSP5 .framer-xjmeho > *, .framer-jCSP5 .framer-1lilnrz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-jCSP5 .framer-psoogj > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-jCSP5 .framer-gdfu8x > *, .framer-jCSP5 .framer-u1w5f8 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-jCSP5 .framer-4jdy0o > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-jCSP5 .framer-1yt86wi > *, .framer-jCSP5 .framer-225hdf > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-jCSP5 .framer-xo0xl9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jCSP5 .framer-1t5bw2x > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-jCSP5 .framer-5m3ghz > *, .framer-jCSP5 .framer-12y423h > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-jCSP5 .framer-18zilsm > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-jCSP5 .framer-4q0rf7 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-jCSP5 .framer-112tijh > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",\"@media (min-width: 1280px) { .framer-jCSP5 .hidden-72rtr7 { display: none !important; } }\",`@media (min-width: 992px) and (max-width: 1279px) { .framer-jCSP5 .hidden-1uu7l1z { display: none !important; } .${metadata.bodyClassName}-framer-jCSP5 { background: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255)) /* {\"name\":\"UI/White\"} */; } .framer-jCSP5.framer-72rtr7 { width: 992px; } .framer-jCSP5 .framer-1yp8xwc { gap: 50px; padding: 180px 40px 80px 40px; } .framer-jCSP5 .framer-17lqxjv, .framer-jCSP5 .framer-112xx8p { padding: 0px; } .framer-jCSP5 .framer-9o2owm { gap: 32px; } .framer-jCSP5 .framer-1uywckh, .framer-jCSP5 .framer-u9emc7, .framer-jCSP5 .framer-1fvuriy { width: 80%; } .framer-jCSP5 .framer-1bvspiv { height: 368px; } .framer-jCSP5 .framer-1j4nrae { padding: 60px 40px 0px 40px; } .framer-jCSP5 .framer-yuhlz0-container { height: 100px; } .framer-jCSP5 .framer-crvn2r { padding: 0px 40px 0px 40px; } .framer-jCSP5 .framer-zw4c9c, .framer-jCSP5 .framer-1j7cmiz { width: 70%; } .framer-jCSP5 .framer-5m3ghz { width: 977px; } .framer-jCSP5 .framer-18zilsm { gap: 50px; height: min-content; } .framer-jCSP5 .framer-rypnb2 { height: 374px; order: 0; width: 265px; } .framer-jCSP5 .framer-12y423h { align-content: center; align-items: center; order: 1; width: 510px; } .framer-jCSP5 .framer-g8vh3l { order: 0; } .framer-jCSP5 .framer-kv1l66 { order: 1; } .framer-jCSP5 .framer-18fn4o8 { padding: 60px 40px 60px 40px; } .framer-jCSP5 .framer-ee8yod { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jCSP5 .framer-1yp8xwc, .framer-jCSP5 .framer-9o2owm, .framer-jCSP5 .framer-18zilsm { gap: 0px; } .framer-jCSP5 .framer-1yp8xwc > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-jCSP5 .framer-1yp8xwc > :first-child, .framer-jCSP5 .framer-9o2owm > :first-child { margin-top: 0px; } .framer-jCSP5 .framer-1yp8xwc > :last-child, .framer-jCSP5 .framer-9o2owm > :last-child { margin-bottom: 0px; } .framer-jCSP5 .framer-9o2owm > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-jCSP5 .framer-18zilsm > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-jCSP5 .framer-18zilsm > :first-child { margin-left: 0px; } .framer-jCSP5 .framer-18zilsm > :last-child { margin-right: 0px; } }}`,`@media (max-width: 575px) { .framer-jCSP5 .hidden-ujtbii { display: none !important; } .${metadata.bodyClassName}-framer-jCSP5 { background: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255)) /* {\"name\":\"UI/White\"} */; } .framer-jCSP5.framer-72rtr7 { width: 390px; } .framer-jCSP5 .framer-1yp8xwc { gap: 40px; padding: 160px 20px 40px 20px; } .framer-jCSP5 .framer-17lqxjv { gap: 32px; padding: 0px; } .framer-jCSP5 .framer-9o2owm { gap: 40px; } .framer-jCSP5 .framer-1ng0tkn { gap: 24px; } .framer-jCSP5 .framer-psoogj { --border-bottom-width: 1px; --border-color: rgba(185, 190, 209, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; } .framer-jCSP5 .framer-1uywckh, .framer-jCSP5 .framer-u9emc7, .framer-jCSP5 .framer-1fvuriy, .framer-jCSP5 .framer-zw4c9c, .framer-jCSP5 .framer-1j7cmiz { width: 100%; } .framer-jCSP5 .framer-225hdf { flex-direction: column; width: 100%; } .framer-jCSP5 .framer-1rzjr3l-container { align-self: unset; width: 100%; } .framer-jCSP5 .framer-112xx8p { flex-direction: column; padding: 0px; } .framer-jCSP5 .framer-1bvspiv { height: 251px; } .framer-jCSP5 .framer-96y6ty { aspect-ratio: 1.1568627450980393 / 1; height: var(--framer-aspect-ratio-supported, 179px); left: -356px; width: 207px; } .framer-jCSP5 .framer-uxx9lr { aspect-ratio: 0.9859943977591037 / 1; height: var(--framer-aspect-ratio-supported, 179px); left: -130px; top: 45%; width: 176px; } .framer-jCSP5 .framer-1ur4w9m { aspect-ratio: 0.9775910364145658 / 1; height: var(--framer-aspect-ratio-supported, 179px); left: 66px; top: 50%; width: 175px; } .framer-jCSP5 .framer-1k1vbbk { aspect-ratio: 1.173669467787115 / 1; height: var(--framer-aspect-ratio-supported, 179px); width: 210px; } .framer-jCSP5 .framer-yf7dwg { aspect-ratio: 0.8711484593837535 / 1; height: var(--framer-aspect-ratio-supported, 179px); left: 260px; top: 46%; width: 156px; } .framer-jCSP5 .framer-6nh1qo { aspect-ratio: 0.9831932773109243 / 1; height: var(--framer-aspect-ratio-supported, 179px); left: 1080px; width: 176px; } .framer-jCSP5 .framer-1w2lmz4 { aspect-ratio: 0.8851540616246498 / 1; height: var(--framer-aspect-ratio-supported, 179px); left: 435px; top: 43%; width: 158px; } .framer-jCSP5 .framer-1hdye1v { aspect-ratio: 2.0868347338935576 / 1; height: var(--framer-aspect-ratio-supported, 179px); left: 1664px; width: unset; } .framer-jCSP5 .framer-j4jga { aspect-ratio: 0.9047619047619048 / 1; height: var(--framer-aspect-ratio-supported, 179px); left: 613px; top: 43%; width: 162px; } .framer-jCSP5 .framer-1121up6 { aspect-ratio: 0.8067226890756303 / 1; height: var(--framer-aspect-ratio-supported, 179px); width: 144px; } .framer-jCSP5 .framer-1j4nrae { padding: 60px 20px 0px 20px; } .framer-jCSP5 .framer-xo0xl9 { gap: 16px; order: 0; } .framer-jCSP5 .framer-2a8b7p { white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; } .framer-jCSP5 .framer-yuhlz0-container { height: 80px; } .framer-jCSP5 .framer-1t5bw2x { gap: 20px; } .framer-jCSP5 .framer-crvn2r { padding: 0px 20px 40px 20px; } .framer-jCSP5 .framer-18fn4o8 { gap: 60px; padding: 40px 20px 40px 20px; } .framer-jCSP5 .framer-ee8yod { width: 90%; } .framer-jCSP5 .framer-112tijh { flex-direction: column; gap: 24px; } .framer-jCSP5 .framer-1p1oidp-container, .framer-jCSP5 .framer-b627dl-container, .framer-jCSP5 .framer-k30bep-container { height: auto; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jCSP5 .framer-1yp8xwc, .framer-jCSP5 .framer-17lqxjv, .framer-jCSP5 .framer-9o2owm, .framer-jCSP5 .framer-1ng0tkn, .framer-jCSP5 .framer-225hdf, .framer-jCSP5 .framer-112xx8p, .framer-jCSP5 .framer-xo0xl9, .framer-jCSP5 .framer-1t5bw2x, .framer-jCSP5 .framer-18fn4o8, .framer-jCSP5 .framer-112tijh { gap: 0px; } .framer-jCSP5 .framer-1yp8xwc > *, .framer-jCSP5 .framer-9o2owm > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-jCSP5 .framer-1yp8xwc > :first-child, .framer-jCSP5 .framer-17lqxjv > :first-child, .framer-jCSP5 .framer-9o2owm > :first-child, .framer-jCSP5 .framer-1ng0tkn > :first-child, .framer-jCSP5 .framer-225hdf > :first-child, .framer-jCSP5 .framer-112xx8p > :first-child, .framer-jCSP5 .framer-xo0xl9 > :first-child, .framer-jCSP5 .framer-1t5bw2x > :first-child, .framer-jCSP5 .framer-18fn4o8 > :first-child, .framer-jCSP5 .framer-112tijh > :first-child { margin-top: 0px; } .framer-jCSP5 .framer-1yp8xwc > :last-child, .framer-jCSP5 .framer-17lqxjv > :last-child, .framer-jCSP5 .framer-9o2owm > :last-child, .framer-jCSP5 .framer-1ng0tkn > :last-child, .framer-jCSP5 .framer-225hdf > :last-child, .framer-jCSP5 .framer-112xx8p > :last-child, .framer-jCSP5 .framer-xo0xl9 > :last-child, .framer-jCSP5 .framer-1t5bw2x > :last-child, .framer-jCSP5 .framer-18fn4o8 > :last-child, .framer-jCSP5 .framer-112tijh > :last-child { margin-bottom: 0px; } .framer-jCSP5 .framer-17lqxjv > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-jCSP5 .framer-1ng0tkn > *, .framer-jCSP5 .framer-112tijh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-jCSP5 .framer-225hdf > *, .framer-jCSP5 .framer-xo0xl9 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-jCSP5 .framer-112xx8p > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jCSP5 .framer-1t5bw2x > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-jCSP5 .framer-18fn4o8 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`,`@media (min-width: 576px) and (max-width: 991px) { .framer-jCSP5 .hidden-qqyzon { display: none !important; } .${metadata.bodyClassName}-framer-jCSP5 { background: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255)) /* {\"name\":\"UI/White\"} */; } .framer-jCSP5.framer-72rtr7 { width: 576px; } .framer-jCSP5 .framer-1yp8xwc { gap: 40px; padding: 160px 20px 60px 20px; } .framer-jCSP5 .framer-17lqxjv { gap: 40px; padding: 0px; } .framer-jCSP5 .framer-psoogj { --border-bottom-width: 1px; --border-color: rgba(185, 190, 209, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; } .framer-jCSP5 .framer-1uywckh, .framer-jCSP5 .framer-u9emc7, .framer-jCSP5 .framer-ee8yod { width: 80%; } .framer-jCSP5 .framer-112xx8p { padding: 0px; } .framer-jCSP5 .framer-1bvspiv { gap: 20px; height: 247px; } .framer-jCSP5 .framer-96y6ty { aspect-ratio: unset; height: 163px; left: -209px; top: calc(49.79757085020245% - 163px / 2); transform: unset; width: 187px; } .framer-jCSP5 .framer-uxx9lr { aspect-ratio: unset; height: 163px; left: -93px; top: calc(49.79757085020245% - 163px / 2); transform: unset; width: 160px; } .framer-jCSP5 .framer-1ur4w9m { aspect-ratio: unset; height: 163px; left: 87px; top: calc(49.79757085020245% - 163px / 2); transform: unset; width: 158px; } .framer-jCSP5 .framer-yf7dwg { aspect-ratio: unset; height: 163px; left: 265px; top: calc(49.79757085020245% - 163px / 2); transform: unset; width: 142px; } .framer-jCSP5 .framer-6nh1qo { aspect-ratio: unset; height: 163px; left: 932px; top: calc(50.20242914979759% - 163px / 2); transform: unset; width: 160px; } .framer-jCSP5 .framer-1w2lmz4 { aspect-ratio: unset; height: 190px; left: 427px; top: calc(49.79757085020245% - 190px / 2); transform: unset; width: 168px; } .framer-jCSP5 .framer-j4jga { aspect-ratio: unset; height: 163px; left: 615px; top: calc(49.79757085020245% - 163px / 2); transform: unset; width: 146px; } .framer-jCSP5 .framer-1121up6 { aspect-ratio: unset; height: 163px; left: 781px; top: calc(50.20242914979759% - 163px / 2); transform: unset; width: 131px; } .framer-jCSP5 .framer-p9zqaz { left: 0px; right: unset; } .framer-jCSP5 .framer-1j4nrae { padding: 60px 20px 0px 20px; } .framer-jCSP5 .framer-xo0xl9 { gap: 16px; } .framer-jCSP5 .framer-2a8b7p { white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; } .framer-jCSP5 .framer-yuhlz0-container { height: 100px; } .framer-jCSP5 .framer-crvn2r { padding: 0px 20px 0px 20px; } .framer-jCSP5 .framer-1fvuriy, .framer-jCSP5 .framer-zw4c9c, .framer-jCSP5 .framer-1j7cmiz { width: 100%; } .framer-jCSP5 .framer-18fn4o8 { gap: 60px; padding: 60px 20px 60px 20px; } .framer-jCSP5 .framer-112tijh { flex-direction: column; gap: 24px; } .framer-jCSP5 .framer-1p1oidp-container, .framer-jCSP5 .framer-b627dl-container, .framer-jCSP5 .framer-k30bep-container { height: auto; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jCSP5 .framer-1yp8xwc, .framer-jCSP5 .framer-17lqxjv, .framer-jCSP5 .framer-1bvspiv, .framer-jCSP5 .framer-xo0xl9, .framer-jCSP5 .framer-18fn4o8, .framer-jCSP5 .framer-112tijh { gap: 0px; } .framer-jCSP5 .framer-1yp8xwc > *, .framer-jCSP5 .framer-17lqxjv > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-jCSP5 .framer-1yp8xwc > :first-child, .framer-jCSP5 .framer-17lqxjv > :first-child, .framer-jCSP5 .framer-xo0xl9 > :first-child, .framer-jCSP5 .framer-18fn4o8 > :first-child, .framer-jCSP5 .framer-112tijh > :first-child { margin-top: 0px; } .framer-jCSP5 .framer-1yp8xwc > :last-child, .framer-jCSP5 .framer-17lqxjv > :last-child, .framer-jCSP5 .framer-xo0xl9 > :last-child, .framer-jCSP5 .framer-18fn4o8 > :last-child, .framer-jCSP5 .framer-112tijh > :last-child { margin-bottom: 0px; } .framer-jCSP5 .framer-1bvspiv > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-jCSP5 .framer-1bvspiv > :first-child { margin-left: 0px; } .framer-jCSP5 .framer-1bvspiv > :last-child { margin-right: 0px; } .framer-jCSP5 .framer-xo0xl9 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-jCSP5 .framer-18fn4o8 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-jCSP5 .framer-112tijh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-jCSP5[data-border=\"true\"]::after, .framer-jCSP5 [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 5659\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PqpaQgc5e\":{\"layout\":[\"fixed\",\"auto\"]},\"J3uB7PlJN\":{\"layout\":[\"fixed\",\"auto\"]},\"WpCIbgkLd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-jCSP5\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5659,width:1280};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Be Vietnam Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl83T7wrcwap.woff2\",weight:\"500\"},{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...NavigationFonts,...AvatarFonts,...ButtonsFonts,...ScrollToTopButtonFonts,...AtresmediaFonts,...AusOpenFonts,...WinSportsFonts,...TelefonicaFonts,...LigaFFonts,...HopmanFonts,...TickerFonts,...BadgeFonts,...FeatureSectionFonts,...TestimonialFonts,...CTALaunchFonts,...FooterFonts,...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\":{\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"5659\",\"framerIntrinsicWidth\":\"1280\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PqpaQgc5e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J3uB7PlJN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WpCIbgkLd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "isFunction", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "t", "r", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "hasReachedTarget", "spring", "c", "i", "h", "e", "u", "d", "f", "l", "g", "glide", "o", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "L", "T", "M", "k", "noopReturn", "B", "asTransformCssVar", "j", "T", "L", "t", "P", "j", "testAnimation", "t", "C", "R", "H", "resolveElements", "t", "n", "createGeneratorEasing", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "e", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "U", "spring", "q", "glide", "K", "inView$1", "resolveElements", "onIntersectionChange", "isFunction", "G", "_", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "Z", "X", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "t", "n", "dispatchViewEvent", "ae", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "ce", "le", "onPointerUp", "window", "onPointerDown", "fe", "ue", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "toResponsiveImage", "value", "transformTemplate", "_", "t", "Transition", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "shYZ8xZ6P", "HJYYGhJC3", "b4EsfMO6DwoijqL5Mw", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "isDisplayed", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "Image2", "RichText2", "x", "css", "FrameraL1M4pcFt", "withCSS", "aL1M4pcFt_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "css", "FramerBYfjwEyLq", "withCSS", "BYfjwEyLq_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "css", "FramerciUsLNX81", "withCSS", "ciUsLNX81_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "css", "FramerEJYMli2vh", "withCSS", "EJYMli2vh_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "css", "FrameroXth8QW9p", "withCSS", "oXth8QW9p_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "css", "FramertUuAzSjlI", "withCSS", "tUuAzSjlI_default", "addFonts", "fontStore", "fonts", "css", "className", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "TPEHsZWqf", "lxoksPKf0", "Jxq2GRK7M", "A86LixV0U", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "Image2", "css", "FramerxzSFaubax", "withCSS", "xzSFaubax_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "css", "FramerySy1J882M", "withCSS", "ySy1J882M_default", "addFonts", "NavigationFonts", "getFonts", "RG7yJog90_default", "NavigationWithVariantAppearEffect", "withVariantAppearEffect", "AvatarFonts", "aL1M4pcFt_default", "ButtonsFonts", "yORaTwldW_default", "ImageWithFX", "withFX", "Image2", "MotionDivWithFX", "motion", "ScrollToTopButtonFonts", "ScrollToTopButton", "AtresmediaFonts", "ySy1J882M_default", "AusOpenFonts", "oXth8QW9p_default", "WinSportsFonts", "EJYMli2vh_default", "TelefonicaFonts", "BYfjwEyLq_default", "LigaFFonts", "tUuAzSjlI_default", "HopmanFonts", "ciUsLNX81_default", "TickerFonts", "Ticker", "MotionSectionWithFX", "BadgeFonts", "SXR9yB_tn_default", "ContainerWithFX", "Container", "RichTextWithFX", "RichText2", "FeatureSectionFonts", "L8yk06JFc_default", "TestimonialFonts", "xzSFaubax_default", "CTALaunchFonts", "gCkrcTKxp_default", "FooterFonts", "qZ_XI3P7P_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "valuesByLocaleId", "LazyValue", "preloadLocalizedValues", "locale", "promises", "values", "promise", "getLocalizedValue", "key", "value", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "transition5", "animation8", "transition6", "animation9", "addImageAlt", "image", "alt", "transition7", "animation10", "transformTemplate2", "transition8", "animation11", "animation12", "transition9", "animation13", "transition10", "animation14", "transition11", "animation15", "animation16", "transition12", "transition13", "animation17", "transition14", "animation18", "transition15", "animation19", "transition16", "animation20", "transition17", "animation21", "transition18", "animation22", "transition19", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "robotsTag", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "preloadPromise", "ref1", "pe", "useRouteElementId", "ref2", "ref3", "id1", "ref4", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "id2", "id3", "ref5", "id4", "ref6", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "_getLocalizedValue24", "_getLocalizedValue25", "_getLocalizedValue26", "_getLocalizedValue27", "_getLocalizedValue28", "_getLocalizedValue29", "_getLocalizedValue30", "_getLocalizedValue31", "_getLocalizedValue32", "_getLocalizedValue33", "_getLocalizedValue34", "_getLocalizedValue35", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "PropertyOverrides2", "optimizeAppear", "optimizeAppearTransformTemplate", "Container", "NavigationWithVariantAppearEffect", "Link", "RichText2", "x", "SVG", "aL1M4pcFt_default", "ResolveLinks", "resolvedLinks", "yORaTwldW_default", "MotionDivWithFX", "ImageWithFX", "ScrollToTopButton", "MotionSectionWithFX", "Ticker", "ySy1J882M_default", "oXth8QW9p_default", "EJYMli2vh_default", "BYfjwEyLq_default", "tUuAzSjlI_default", "ciUsLNX81_default", "ContainerWithFX", "SXR9yB_tn_default", "RichTextWithFX", "L8yk06JFc_default", "Image2", "xzSFaubax_default", "resolvedLinks1", "gCkrcTKxp_default", "qZ_XI3P7P_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavigationFonts", "AvatarFonts", "ButtonsFonts", "ScrollToTopButtonFonts", "AtresmediaFonts", "AusOpenFonts", "WinSportsFonts", "TelefonicaFonts", "LigaFFonts", "HopmanFonts", "TickerFonts", "BadgeFonts", "FeatureSectionFonts", "TestimonialFonts", "CTALaunchFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
