{
  "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/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bJnHw5VokAqNKlg6Rp7L/SlideShow.js", "ssg:https://framerusercontent.com/modules/7Q195pi8cxMB3GriDDaw/lxwFpvnNxEuwaE3XuoGo/QLWSC5PrS.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{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,memo,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];// when the slots change, generate new array\n},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].current;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const[firstChild,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(index===0){if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/memo(/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;const fallbackRef=useRef();/**\n         * Unique offsets + scroll range [0, 1, 1, 0]\n         */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n         * Effects\n         */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{const node=ref?.current??fallbackRef.current;node?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined})})});}));const Dot=/*#__PURE__*/memo(function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});});/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bJnHw5VokAqNKlg6Rp7L/SlideShow.js\";import PrimaryButton from\"https://framerusercontent.com/modules/VA8WtrWMiyfILerVZa2k/ZhaNDwEGKoVG7GfEBJot/PrimaryButton.js\";import*as componentPresets from\"https://framerusercontent.com/modules/FiXXa66XVZT2uLWRjUUr/kQ5t2Xmk6prfLwVzQD1G/componentPresets.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/wcjFTpDn6vFtbPUKOPwH/jpD1gKnXdK1HGhETGj4h/AV0m6_j__.js\";import*as sharedStyle13 from\"https://framerusercontent.com/modules/4njWCq7RknBEctyQiKom/GfMicFMBQSV0PbkU6Bdk/BWyEimors.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/8Ya4LxGvo3sNOzmXfO67/Rxr8mzuBmXS7KJqLbGxL/EnLmzLn4c.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/Gu07DyofuI23vpPcELyr/ziNfEKB9CMY0v0Cj1eWG/gIQn0G4go.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/sKo6pvXHLUQ4swntC7Bb/2F3GfOUXpaUFZMwhXUeZ/gWJZwWo6j.js\";import*as sharedStyle11 from\"https://framerusercontent.com/modules/GqrNwjGwGiupzbEy7WEp/UUp2KEyTzZxuTaTQOFvl/k46wbp8kG.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/glZTT0WVOXl8ISK0MBNp/j2jh7w7p2dfRBRFIu8T4/sYeO0733B.js\";import*as sharedStyle14 from\"https://framerusercontent.com/modules/NSSO9yitsjQdHsjuG61t/X0EegrogMDhVGsg3kmTd/tpzJIO0vn.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/E1A9QARf9tR2X609zfKL/D08HwAaAaIqtPx5ffwkp/U3kBRxw6L.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/mR8gAOm4UjsS8C60WnCR/On6oil5WSm70U8tqn3KR/ubBryCvj5.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/egZCKjRz1Q0ogaqY1iPg/FEWy5ObScCkQeU8Pbbj8/uQnbj655J.js\";import*as sharedStyle12 from\"https://framerusercontent.com/modules/B71pjshsYAgmR24p6Z68/lVhBbXZKCTdsfmpmiqYq/VaK32JbGm.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/zFQisbNkozQ0XN7Ssutg/AFOGgYyMic7qM2AGWrlV/vbDwXr6aJ.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/eWxYx3H0GaI1xBoyElF6/BUXVWRYhol0TMlu9jy7C/wP3JIXK44.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/jsZiHVGBKAbiZYNDm6uZ/wbnWLYHqGD1IjgMgS03h/XCvHYB0sp.js\";const VideoFonts=getFonts(Video);const PrimaryButtonFonts=getFonts(PrimaryButton);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"JRe_v9RrL\",\"fjMTTctjt\",\"pYiKVwPva\"];const serializationHash=\"framer-8oTGX\";const variantClassNames={fjMTTctjt:\"framer-v-15koec8\",JRe_v9RrL:\"framer-v-lopsev\",pYiKVwPva:\"framer-v-pcw1mb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"JRe_v9RrL\",Phone:\"pYiKVwPva\",Tablet:\"fjMTTctjt\"};const getProps=({communityDescription,communityTitle,courseAdvancedBlues,courseAdvancedDrumNBass,courseAdvancedFundamentals,courseAdvancedFunk,courseAdvancedJazz,courseBeginnerAbsoluteBeginner,courseBeginnerFundamentals,courseBeginnerHipHop,courseBeginnerJazz,courseBeginnerPop,courseBeginnerRock,courseBeginnerSingerSongwriter,courseBeginnerSoul,courseIntermediateAlternative,courseIntermediateBlues,courseIntermediateFundamentals,courseIntermediateJazz,courseIntermediateKPop,courseIntermediateRock,coursesAdvanced,coursesBeginner,coursesDescription,coursesIntermediate,coursesTitle,ekitDescription,ekitTitle,feature1Description,feature1Title,feature2Description,feature2Title,feature3Description,feature3Title,feature4Description,feature4Header,feature4Title,feature5Description,feature5Header,feature5Title,fingerDrummingDescription,fingerDrummingTitle,footerCtaButton,footerCtaDescription,footerCtaTitle,height,heroCta,heroDescription,heroTitle,id,reasonDescription,reasonTitle,sectionIntroDescription,sectionIntroTitle,slideshowFeatures1,slideshowFeatures2,slideshowFeatures3,testimonial1Body,testimonial2Body,testimonial3Body,width,...props})=>{return{...props,ABsutsTgv:feature1Description??props.ABsutsTgv??\"Level up your drumming skills with our engaging gamified approach! Hit the notes as they flow down and receive instant feedback on your performance.\",B3T597XQ5:courseBeginnerSingerSongwriter??props.B3T597XQ5??\"Beginner: Singer-Songwriter\",dlayhliFq:courseBeginnerFundamentals??props.dlayhliFq??\"Beginner: Fundamentals\",dLpExZqGw:courseIntermediateRock??props.dLpExZqGw??\"Intermediate: Rock\",EbsyIRGiB:feature4Title??props.EbsyIRGiB??\"Compete with drummers worldwide\",FcBaMAH8S:coursesDescription??props.FcBaMAH8S??\"Dive into a diverse selection of courses created by professional drummers across various music genres. From rock to jazz, hip-hop to blues, our expert-curated lessons cater to drummers of all tastes and skill levels.\",fjFvjPmLa:courseBeginnerJazz??props.fjFvjPmLa??\"Beginner: Jazz\",FkcSTAbBg:coursesBeginner??props.FkcSTAbBg??\"BEGINNER\",FsRfqDTKX:footerCtaTitle??props.FsRfqDTKX??\"Ready to play some drums?\",FXinI5m8W:heroDescription??props.FXinI5m8W??\"Learn to play the drums with our fun and exciting learning solution.\",hFCMtlZ5Z:reasonDescription??props.hFCMtlZ5Z??\"Discover the flexibility of our app! Seamlessly switch between your computer and mobile devices with ease. Whether you\u2019re a Windows, macOS, iOS, or Android user, we\u2019ve got you covered.\",Hlj0_UYTh:slideshowFeatures1??props.Hlj0_UYTh??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.h2,{children:\"Instant Feedback - Track Your Progress\"}),/*#__PURE__*/_jsx(motion.h2,{children:\"Share With Your Friends\"})]}),HY4USG7c9:courseAdvancedFunk??props.HY4USG7c9??\"Advanced: Funk\",I_WJ7uyo6:heroTitle??props.I_WJ7uyo6??\"Boost Your Drumming Game with Beatlii\",iBHfhGqbo:courseIntermediateAlternative??props.iBHfhGqbo??\"Intermediate: Alternative\",IPyGkv4Vo:courseAdvancedBlues??props.IPyGkv4Vo??\"Advanced: Blues\",j0q6uBt82:sectionIntroDescription??props.j0q6uBt82??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{children:\"Beatlii offers an exciting way to learn how to play the drums. Simply connect your electronic drum kit and receive instant feedback on your performance. \"}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{children:\"Whether you\u2019re a beginner or a seasoned drummer, our app provides a dynamic and enjoyable learning experience designed just for you.\"})]}),JzDXczXLi:courseBeginnerSoul??props.JzDXczXLi??\"Beginner: Soul\",l5oN9PKoH:footerCtaButton??props.l5oN9PKoH??\"Start Your 7-Day Trial\",lLgj_2Dmy:courseIntermediateJazz??props.lLgj_2Dmy??\"Intermediate: Jazz\",lrYdpLf_H:feature5Header??props.lrYdpLf_H??\"FRIENDS\",LtK03naV9:slideshowFeatures3??props.LtK03naV9??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.h2,{children:\"Drumming Lessons\"}),/*#__PURE__*/_jsx(motion.h2,{children:\"Created by Professional Drummers\"})]}),LXtGcJda2:feature2Description??props.LXtGcJda2??\"For those who prefer a more traditional learning experience, this feature allows you to play all the songs using traditional music notation.\",LZU3pApDZ:heroCta??props.LZU3pApDZ??\"Get Started\",MCHF3xgMy:ekitDescription??props.MCHF3xgMy??\"BEATLII SEAMLESS CONNECTION PROCESS MAKES IT EASY TO CONNECT TO YOUR ELECTRONIC DRUM KIT\",MChWxu5QN:feature2Title??props.MChWxu5QN??\"Sheet Music\",mESojEfdP:testimonial2Body??props.mESojEfdP??\"Beatlii is perfect for newbies like me. The note highway helps me learn, and after a couple of lessons in the absolute beginners' course, I already noticed a difference. Looking forward to starting the next course.\",MStDol66i:feature4Description??props.MStDol66i??\"Compete, climb, and conquer! Challenge yourself and other users to reach the top of the rankings.\",nVp6LX6O4:feature4Header??props.nVp6LX6O4??\"LEADERBOARDS\",OC2tGKWi3:coursesTitle??props.OC2tGKWi3??\"Courses For All Skill Levels\",oENRa5y2U:courseBeginnerAbsoluteBeginner??props.oENRa5y2U??\"Absolute Beginners\",pfxolJcrs:courseAdvancedDrumNBass??props.pfxolJcrs??\"Advanced: Drum n Bass\",PGGEzkEEh:feature5Description??props.PGGEzkEEh??\"Connect with your friends and favorite drummers, discover the songs they\u2019re jamming to, and explore the achievements they\u2019ve unlocked.\",PGQHZE5GL:feature5Title??props.PGQHZE5GL??\"Connect with your friends and favourite drummers\",plMgxyw5p:fingerDrummingDescription??props.plMgxyw5p??\"WITH OUR FINGER DRUMMING FEATURE, YOU CAN PRACTICE OUR COURSES ANYTIME, ANYWHERE\",qCjJN3fZC:communityTitle??props.qCjJN3fZC??\"Discover Our Exciting New Community Features\",Qji0tXukv:courseBeginnerRock??props.Qji0tXukv??\"Beginner: Rock\",QmE2wyAO2:slideshowFeatures2??props.QmE2wyAO2??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.h2,{children:\"Over 100+ Songs 60+ \"}),/*#__PURE__*/_jsx(motion.h2,{children:\"Courses from Rock to Jazz\"})]}),R9_vdye_b:feature1Title??props.R9_vdye_b??\"Note Highway\",REKaNhOiF:sectionIntroTitle??props.REKaNhOiF??\"A new way to learn, have fun, and keep your groove in drumming\",RGZ5IxUJ6:testimonial3Body??props.RGZ5IxUJ6??\"Staying motivated is easy with Beatlii. It tracks my drumming days, and the app tells me how I progress, making practice time super enjoyable.\",RIkZGe2ka:coursesIntermediate??props.RIkZGe2ka??\"INTERMEDIATE\",rktDESxpo:footerCtaDescription??props.rktDESxpo??\"Discover the new app that instantly transforms your electronic drum kit into a powerful music teacher.\",rUsKieCIS:courseAdvancedJazz??props.rUsKieCIS??\"Advanced: Jazz\",rWYZeBBY3:communityDescription??props.rWYZeBBY3??\"Immerse yourself in Beatlii\u2019s vibrant drumming community! Climb the leaderboard, connect with friends, and proudly share your drumming achievements. Engage in friendly competition with drummers from around the globe.\",RyKcN0HKc:coursesAdvanced??props.RyKcN0HKc??\"ADVANCED\",RZrtU2yB9:fingerDrummingTitle??props.RZrtU2yB9??\"Create Beats Right at Your Fingertips\",s1p7HN7wF:courseIntermediateFundamentals??props.s1p7HN7wF??\"Intermediate: Fundamentals\",scGpDmdNM:testimonial1Body??props.scGpDmdNM??\"Ever since my 8-year-old son started playing with Beatlii, I don\u2019t have to encourage him anymore to go and practice. For him, it\u2019s like playing a game, which is very good for him. It's a lot of fun!\",uG2bDhp9z:feature3Title??props.uG2bDhp9z??\"Activity\",UkQkN24gD:reasonTitle??props.UkQkN24gD??\"Why Beatlii?\",uwqicX4UW:ekitTitle??props.uwqicX4UW??\"Compatible with any Electronic Drum Kit\",V9u5rq9N4:courseBeginnerHipHop??props.V9u5rq9N4??\"Beginner: Hip-Hop\",variant:humanReadableVariantMap[props.variant]??props.variant??\"JRe_v9RrL\",xktYW38Nl:courseIntermediateBlues??props.xktYW38Nl??\"Intermediate: Blues\",XTiH3EAGb:courseAdvancedFundamentals??props.XTiH3EAGb??\"Advanced: Fundamentals\",y9mcDpie0:courseIntermediateKPop??props.y9mcDpie0??\"Intermediate: K-Pop\",yewNjXgqK:courseBeginnerPop??props.yewNjXgqK??\"Beginner: Pop\",yLZeCWgQY:feature3Description??props.yLZeCWgQY??\"The app takes care of all the heavy lifting and provides you with a summary of your progress over time.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,I_WJ7uyo6,FXinI5m8W,LZU3pApDZ,scGpDmdNM,mESojEfdP,RGZ5IxUJ6,REKaNhOiF,j0q6uBt82,Hlj0_UYTh,QmE2wyAO2,LtK03naV9,UkQkN24gD,hFCMtlZ5Z,R9_vdye_b,ABsutsTgv,MChWxu5QN,LXtGcJda2,uG2bDhp9z,yLZeCWgQY,uwqicX4UW,MCHF3xgMy,qCjJN3fZC,rWYZeBBY3,nVp6LX6O4,EbsyIRGiB,MStDol66i,lrYdpLf_H,PGQHZE5GL,PGGEzkEEh,RZrtU2yB9,plMgxyw5p,OC2tGKWi3,FcBaMAH8S,FkcSTAbBg,RIkZGe2ka,RyKcN0HKc,FsRfqDTKX,rktDESxpo,l5oN9PKoH,oENRa5y2U,B3T597XQ5,V9u5rq9N4,yewNjXgqK,JzDXczXLi,Qji0tXukv,fjFvjPmLa,dlayhliFq,s1p7HN7wF,xktYW38Nl,lLgj_2Dmy,y9mcDpie0,dLpExZqGw,iBHfhGqbo,HY4USG7c9,pfxolJcrs,IPyGkv4Vo,rUsKieCIS,XTiH3EAGb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JRe_v9RrL\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-lopsev\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"JRe_v9RrL\",ref:refBinding,style:{backgroundColor:\"var(--token-d807fdf2-eef6-4b08-86dc-027450f81e02, rgb(247, 242, 235))\",...style},...addPropertyOverrides({fjMTTctjt:{\"data-framer-name\":\"Tablet\"},pYiKVwPva:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7dfy5g\",layoutDependency:layoutDependency,layoutId:\"T3idNovIT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ig9yao\",layoutDependency:layoutDependency,layoutId:\"d8VmAfvIs\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-di13h2\",layoutDependency:layoutDependency,layoutId:\"d0NWKtRmz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eygtk5\",layoutDependency:layoutDependency,layoutId:\"pqe8TD0lL\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10t5ux7\",layoutDependency:layoutDependency,layoutId:\"Q4mmEMabr\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1aca90q-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JoRll9EFk-container\",nodeId:\"JoRll9EFk\",rendersWithMotion:true,scopeId:\"QLWSC5PrS\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"JoRll9EFk\",isMixedBorderRadius:false,layoutId:\"JoRll9EFk\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/yUDg0pCGsuikumTogk9oUpPLZ8.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b1axos\",layoutDependency:layoutDependency,layoutId:\"gwNJ0Q8XL\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gwjrg2\",layoutDependency:layoutDependency,layoutId:\"lcq_XSXlf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1sgunh0\",\"data-styles-preset\":\"sYeO0733B\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Boost Your Drumming Game with Beatlii\"})}),className:\"framer-ncynb8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"f9W_9RzTJ\",style:{\"--extracted-gdpscs\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:I_WJ7uyo6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16haf1f\",\"data-styles-preset\":\"AV0m6_j__\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Learn to play the drums with our fun and exciting learning solution.\"})}),className:\"framer-1vt53n4\",\"data-framer-name\":\"IN A NEW AND FUN WAY\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eRMohv7aJ\",style:{\"--extracted-r6o4lv\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:FXinI5m8W,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xaoyz5-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"nx4_FfyVm-container\",nodeId:\"nx4_FfyVm\",rendersWithMotion:true,scopeId:\"QLWSC5PrS\",children:/*#__PURE__*/_jsx(PrimaryButton,{buttonText:LZU3pApDZ,duration:\"annual\",height:\"100%\",id:\"nx4_FfyVm\",invertStyle:false,isSubscribeCTA:true,layoutId:\"nx4_FfyVm\",price:\"\",promo_code:\"\",trialDays:\"trial\",width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n90fuu\",\"data-framer-name\":\"Testimonials\",layoutDependency:layoutDependency,layoutId:\"eGWHAxobX\",style:{backgroundColor:\"var(--token-d807fdf2-eef6-4b08-86dc-027450f81e02, rgb(247, 242, 235))\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e44hfa\",layoutDependency:layoutDependency,layoutId:\"svmbFJfXj\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wd0tdv\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"LxG0m46SF\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bxm9wf\",layoutDependency:layoutDependency,layoutId:\"eAZmL931r\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8ekw4q\",layoutDependency:layoutDependency,layoutId:\"HjIlU4XLh\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-cho3i2\",\"data-framer-name\":\"Star 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RKb4o1if9\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 0 L 12.245 6.91 L 19.511 6.91 L 13.633 11.18 L 15.878 18.09 L 10 13.82 L 4.122 18.09 L 6.367 11.18 L 0.489 6.91 L 7.755 6.91 Z\" fill=\"var(--token-d2279c33-a629-45ae-b674-e02c9d4533ac, rgb(27, 133, 128)) /* {&quot;name&quot;:&quot;Tertiary Color&quot;} */\"></path></svg>',svgContentId:11040871005,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-sa4r0z\",\"data-framer-name\":\"Star 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"J30fmdsLY\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 0 L 12.245 6.91 L 19.511 6.91 L 13.633 11.18 L 15.878 18.09 L 10 13.82 L 4.122 18.09 L 6.367 11.18 L 0.489 6.91 L 7.755 6.91 Z\" fill=\"var(--token-d2279c33-a629-45ae-b674-e02c9d4533ac, rgb(27, 133, 128)) /* {&quot;name&quot;:&quot;Tertiary Color&quot;} */\"></path></svg>',svgContentId:11040871005,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5z7wtd\",\"data-framer-name\":\"Star 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"LJbE3wBDL\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 0 L 12.245 6.91 L 19.511 6.91 L 13.633 11.18 L 15.878 18.09 L 10 13.82 L 4.122 18.09 L 6.367 11.18 L 0.489 6.91 L 7.755 6.91 Z\" fill=\"var(--token-d2279c33-a629-45ae-b674-e02c9d4533ac, rgb(27, 133, 128)) /* {&quot;name&quot;:&quot;Tertiary Color&quot;} */\"></path></svg>',svgContentId:11040871005,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yko38a\",\"data-framer-name\":\"Star 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Nvgz1ElRt\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 0 L 12.245 6.91 L 19.511 6.91 L 13.633 11.18 L 15.878 18.09 L 10 13.82 L 4.122 18.09 L 6.367 11.18 L 0.489 6.91 L 7.755 6.91 Z\" fill=\"var(--token-d2279c33-a629-45ae-b674-e02c9d4533ac, rgb(27, 133, 128)) /* {&quot;name&quot;:&quot;Tertiary Color&quot;} */\"></path></svg>',svgContentId:11040871005,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r96s18\",\"data-framer-name\":\"Star 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UCRG266_x\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 0 L 12.245 6.91 L 19.511 6.91 L 13.633 11.18 L 15.878 18.09 L 10 13.82 L 4.122 18.09 L 6.367 11.18 L 0.489 6.91 L 7.755 6.91 Z\" fill=\"var(--token-d2279c33-a629-45ae-b674-e02c9d4533ac, rgb(27, 133, 128)) /* {&quot;name&quot;:&quot;Tertiary Color&quot;} */\"></path></svg>',svgContentId:11040871005,withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pxpq6q\",\"data-styles-preset\":\"U3kBRxw6L\",style:{\"--framer-text-alignment\":\"center\"},children:\"Ever since my 8-year-old son started playing with Beatlii, I don\u2019t have to encourage him anymore to go and practice. For him, it\u2019s like playing a game, which is very good for him. It's a lot of fun!\"})}),className:\"framer-1na1lp3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Wnui7Gq8k\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:scGpDmdNM,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"28.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7f2fd5af-5001-44a0-b2a1-b5bfedcb8b8d, rgb(33, 33, 33)))\"},children:\"Olivia L.\"})}),className:\"framer-18lf632\",fonts:[\"FS;Work Sans-semibold\"],layoutDependency:layoutDependency,layoutId:\"Z0Buza7fl\",style:{\"--extracted-r6o4lv\":\"var(--token-7f2fd5af-5001-44a0-b2a1-b5bfedcb8b8d, rgb(33, 33, 33))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4ftin9\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"sRHGaZOsL\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gxhups\",layoutDependency:layoutDependency,layoutId:\"QNrwT_eMD\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n9t5z7\",layoutDependency:layoutDependency,layoutId:\"Uc6jIWU2G\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-cvnbhp\",\"data-framer-name\":\"Star 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"sDSJaaN7Y\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 0 L 12.245 6.91 L 19.511 6.91 L 13.633 11.18 L 15.878 18.09 L 10 13.82 L 4.122 18.09 L 6.367 11.18 L 0.489 6.91 L 7.755 6.91 Z\" fill=\"var(--token-d2279c33-a629-45ae-b674-e02c9d4533ac, rgb(27, 133, 128)) /* {&quot;name&quot;:&quot;Tertiary Color&quot;} */\"></path></svg>',svgContentId:11040871005,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ttnoex\",\"data-framer-name\":\"Star 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"OOIYl5i59\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 0 L 12.245 6.91 L 19.511 6.91 L 13.633 11.18 L 15.878 18.09 L 10 13.82 L 4.122 18.09 L 6.367 11.18 L 0.489 6.91 L 7.755 6.91 Z\" fill=\"var(--token-d2279c33-a629-45ae-b674-e02c9d4533ac, rgb(27, 133, 128)) /* {&quot;name&quot;:&quot;Tertiary Color&quot;} */\"></path></svg>',svgContentId:11040871005,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ofisxt\",\"data-framer-name\":\"Star 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"V6ZtjTBlS\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 0 L 12.245 6.91 L 19.511 6.91 L 13.633 11.18 L 15.878 18.09 L 10 13.82 L 4.122 18.09 L 6.367 11.18 L 0.489 6.91 L 7.755 6.91 Z\" fill=\"var(--token-d2279c33-a629-45ae-b674-e02c9d4533ac, rgb(27, 133, 128)) /* {&quot;name&quot;:&quot;Tertiary Color&quot;} */\"></path></svg>',svgContentId:11040871005,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12plq2w\",\"data-framer-name\":\"Star 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"T656bb6kH\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 0 L 12.245 6.91 L 19.511 6.91 L 13.633 11.18 L 15.878 18.09 L 10 13.82 L 4.122 18.09 L 6.367 11.18 L 0.489 6.91 L 7.755 6.91 Z\" fill=\"var(--token-d2279c33-a629-45ae-b674-e02c9d4533ac, rgb(27, 133, 128)) /* {&quot;name&quot;:&quot;Tertiary Color&quot;} */\"></path></svg>',svgContentId:11040871005,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jidnd\",\"data-framer-name\":\"Star 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"HKAtWexRa\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 0 L 12.245 6.91 L 19.511 6.91 L 13.633 11.18 L 15.878 18.09 L 10 13.82 L 4.122 18.09 L 6.367 11.18 L 0.489 6.91 L 7.755 6.91 Z\" fill=\"var(--token-d2279c33-a629-45ae-b674-e02c9d4533ac, rgb(27, 133, 128)) /* {&quot;name&quot;:&quot;Tertiary Color&quot;} */\"></path></svg>',svgContentId:11040871005,withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pxpq6q\",\"data-styles-preset\":\"U3kBRxw6L\",style:{\"--framer-text-alignment\":\"center\"},children:\"Beatlii is perfect for newbies like me. The note highway helps me learn, and after a couple of lessons in the absolute beginners' course, I already noticed a difference. Looking forward to starting the next course.\"})}),className:\"framer-1b8b2zk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TKTzdayQb\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:mESojEfdP,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"28.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7f2fd5af-5001-44a0-b2a1-b5bfedcb8b8d, rgb(33, 33, 33)))\"},children:\"Daniel W.\"})}),className:\"framer-6h9606\",fonts:[\"FS;Work Sans-semibold\"],layoutDependency:layoutDependency,layoutId:\"aVb6ZBcLd\",style:{\"--extracted-r6o4lv\":\"var(--token-7f2fd5af-5001-44a0-b2a1-b5bfedcb8b8d, rgb(33, 33, 33))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oulr0w\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"A6Vd8F3sJ\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13niuco\",layoutDependency:layoutDependency,layoutId:\"cQUwGKHUp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uqg8gr\",layoutDependency:layoutDependency,layoutId:\"wU6m0xNuO\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-t34zjs\",\"data-framer-name\":\"Star 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"q2ak8ZbeC\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 0 L 12.245 6.91 L 19.511 6.91 L 13.633 11.18 L 15.878 18.09 L 10 13.82 L 4.122 18.09 L 6.367 11.18 L 0.489 6.91 L 7.755 6.91 Z\" fill=\"var(--token-d2279c33-a629-45ae-b674-e02c9d4533ac, rgb(27, 133, 128)) /* {&quot;name&quot;:&quot;Tertiary Color&quot;} */\"></path></svg>',svgContentId:11040871005,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ua912k\",\"data-framer-name\":\"Star 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"i2EVuTPMH\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 0 L 12.245 6.91 L 19.511 6.91 L 13.633 11.18 L 15.878 18.09 L 10 13.82 L 4.122 18.09 L 6.367 11.18 L 0.489 6.91 L 7.755 6.91 Z\" fill=\"var(--token-d2279c33-a629-45ae-b674-e02c9d4533ac, rgb(27, 133, 128)) /* {&quot;name&quot;:&quot;Tertiary Color&quot;} */\"></path></svg>',svgContentId:11040871005,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r2r340\",\"data-framer-name\":\"Star 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"NZMcplXgP\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 0 L 12.245 6.91 L 19.511 6.91 L 13.633 11.18 L 15.878 18.09 L 10 13.82 L 4.122 18.09 L 6.367 11.18 L 0.489 6.91 L 7.755 6.91 Z\" fill=\"var(--token-d2279c33-a629-45ae-b674-e02c9d4533ac, rgb(27, 133, 128)) /* {&quot;name&quot;:&quot;Tertiary Color&quot;} */\"></path></svg>',svgContentId:11040871005,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14lbnl9\",\"data-framer-name\":\"Star 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"XydCIVE4z\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 0 L 12.245 6.91 L 19.511 6.91 L 13.633 11.18 L 15.878 18.09 L 10 13.82 L 4.122 18.09 L 6.367 11.18 L 0.489 6.91 L 7.755 6.91 Z\" fill=\"var(--token-d2279c33-a629-45ae-b674-e02c9d4533ac, rgb(27, 133, 128)) /* {&quot;name&quot;:&quot;Tertiary Color&quot;} */\"></path></svg>',svgContentId:11040871005,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rxjvtx\",\"data-framer-name\":\"Star 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nvjy8G5TR\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 0 L 12.245 6.91 L 19.511 6.91 L 13.633 11.18 L 15.878 18.09 L 10 13.82 L 4.122 18.09 L 6.367 11.18 L 0.489 6.91 L 7.755 6.91 Z\" fill=\"var(--token-d2279c33-a629-45ae-b674-e02c9d4533ac, rgb(27, 133, 128)) /* {&quot;name&quot;:&quot;Tertiary Color&quot;} */\"></path></svg>',svgContentId:11040871005,withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pxpq6q\",\"data-styles-preset\":\"U3kBRxw6L\",style:{\"--framer-text-alignment\":\"center\"},children:\"Staying motivated is easy with Beatlii. It tracks my drumming days, and the app tells me how I progress, making practice time super enjoyable.\"})}),className:\"framer-wddps5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BoSUZk9Af\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:RGZ5IxUJ6,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"28.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7f2fd5af-5001-44a0-b2a1-b5bfedcb8b8d, rgb(33, 33, 33)))\"},children:\"Lisa H.\"})}),className:\"framer-1in7bsp\",fonts:[\"FS;Work Sans-semibold\"],layoutDependency:layoutDependency,layoutId:\"ihUNyL8yu\",style:{\"--extracted-r6o4lv\":\"var(--token-7f2fd5af-5001-44a0-b2a1-b5bfedcb8b8d, rgb(33, 33, 33))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lhcdkn\",layoutDependency:layoutDependency,layoutId:\"W_xExBcvU\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1400,pixelWidth:1400,sizes:\"400px\",src:\"https://framerusercontent.com/images/WHdHxhJspv6ZF95uiTE9qhxIC1Q.png\",srcSet:\"https://framerusercontent.com/images/WHdHxhJspv6ZF95uiTE9qhxIC1Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/WHdHxhJspv6ZF95uiTE9qhxIC1Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WHdHxhJspv6ZF95uiTE9qhxIC1Q.png 1400w\"},className:\"framer-1iczuyw\",layoutDependency:layoutDependency,layoutId:\"DJuljfc4_\",transformTemplate:transformTemplate1,...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+0+0)+324+-.5),pixelHeight:1400,pixelWidth:1400,sizes:\"400px\",src:\"https://framerusercontent.com/images/WHdHxhJspv6ZF95uiTE9qhxIC1Q.png\",srcSet:\"https://framerusercontent.com/images/WHdHxhJspv6ZF95uiTE9qhxIC1Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/WHdHxhJspv6ZF95uiTE9qhxIC1Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WHdHxhJspv6ZF95uiTE9qhxIC1Q.png 1400w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x34e2j-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"cYAOiidmD-container\",nodeId:\"cYAOiidmD\",rendersWithMotion:true,scopeId:\"QLWSC5PrS\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"cYAOiidmD\",isMixedBorderRadius:false,layoutId:\"cYAOiidmD\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/hs3AykQzx2clrFmMUCR2gbuqMY.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1400,pixelWidth:1400,sizes:\"400px\",src:\"https://framerusercontent.com/images/hGOCJdBnrnnh3XXb5gflIM23H20.png\",srcSet:\"https://framerusercontent.com/images/hGOCJdBnrnnh3XXb5gflIM23H20.png?scale-down-to=512 512w,https://framerusercontent.com/images/hGOCJdBnrnnh3XXb5gflIM23H20.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hGOCJdBnrnnh3XXb5gflIM23H20.png 1400w\"},className:\"framer-1mrc5zx\",layoutDependency:layoutDependency,layoutId:\"pP3lnOZUA\",transformTemplate:transformTemplate1,...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+0+0)+324+4.5),pixelHeight:1400,pixelWidth:1400,sizes:\"400px\",src:\"https://framerusercontent.com/images/hGOCJdBnrnnh3XXb5gflIM23H20.png\",srcSet:\"https://framerusercontent.com/images/hGOCJdBnrnnh3XXb5gflIM23H20.png?scale-down-to=512 512w,https://framerusercontent.com/images/hGOCJdBnrnnh3XXb5gflIM23H20.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hGOCJdBnrnnh3XXb5gflIM23H20.png 1400w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1400,pixelWidth:1400,sizes:\"400px\",src:\"https://framerusercontent.com/images/0ocVLpQvTtqZjEEneryRjRBC7I.png\",srcSet:\"https://framerusercontent.com/images/0ocVLpQvTtqZjEEneryRjRBC7I.png?scale-down-to=512 512w,https://framerusercontent.com/images/0ocVLpQvTtqZjEEneryRjRBC7I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ocVLpQvTtqZjEEneryRjRBC7I.png 1400w\"},className:\"framer-2rotjr\",layoutDependency:layoutDependency,layoutId:\"oynKgbI6T\",transformTemplate:transformTemplate1,...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+0+0)+324+-4.25),pixelHeight:1400,pixelWidth:1400,sizes:\"400px\",src:\"https://framerusercontent.com/images/0ocVLpQvTtqZjEEneryRjRBC7I.png\",srcSet:\"https://framerusercontent.com/images/0ocVLpQvTtqZjEEneryRjRBC7I.png?scale-down-to=512 512w,https://framerusercontent.com/images/0ocVLpQvTtqZjEEneryRjRBC7I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ocVLpQvTtqZjEEneryRjRBC7I.png 1400w\"}}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18irmya\",\"data-framer-name\":\"2 Columns Text Image\",layoutDependency:layoutDependency,layoutId:\"zGQ_DMlRY\",style:{backgroundColor:\"var(--token-d807fdf2-eef6-4b08-86dc-027450f81e02, rgb(247, 242, 235))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mjrxfs\",layoutDependency:layoutDependency,layoutId:\"RE62lkohh\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g3d5fr\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"rvTQ3Brcu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-pkldml\",\"data-styles-preset\":\"gWJZwWo6j\",children:\"Beatlii\"})}),className:\"framer-1vdw6aw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WPW2C9TJt\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-alignment\":\"left\"},children:\"A new way to learn, have fun, and keep your groove in drumming\"})}),className:\"framer-f3n880\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q0XofeBNp\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:REKaNhOiF,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"T3VIVtZcw\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"oDaoFOLRB\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:j0q6uBt82,className:\"framer-19uuvgo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IgGwj8fde\",style:{\"--framer-paragraph-spacing\":\"0px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-gwo5vs\",blockquote:\"framer-styles-preset-12x1o3b\",code:\"framer-styles-preset-17mbrvo\",h1:\"framer-styles-preset-1sgunh0\",h2:\"framer-styles-preset-impiae\",h3:\"framer-styles-preset-utr0yk\",h4:\"framer-styles-preset-1tihccy\",h5:\"framer-styles-preset-jejlvs\",h6:\"framer-styles-preset-9ikdyf\",img:\"framer-styles-preset-47hmai\",p:\"framer-styles-preset-16haf1f\",table:\"framer-styles-preset-13khwz7\"},verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1npafs1\",layoutDependency:layoutDependency,layoutId:\"Sm2HjoKJc\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:4240,pixelWidth:2832,positionX:\"center\",positionY:\"center\",sizes:\"339px\",src:\"https://framerusercontent.com/images/ulYtDD0JiJOUrQ6c97NkSNKxg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ulYtDD0JiJOUrQ6c97NkSNKxg.png?scale-down-to=1024 683w,https://framerusercontent.com/images/ulYtDD0JiJOUrQ6c97NkSNKxg.png?scale-down-to=2048 1367w,https://framerusercontent.com/images/ulYtDD0JiJOUrQ6c97NkSNKxg.png?scale-down-to=4096 2735w,https://framerusercontent.com/images/ulYtDD0JiJOUrQ6c97NkSNKxg.png 2832w\"},className:\"framer-1qpzc8\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hJep5bADS\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+1944+50)+0+440.8+0),pixelHeight:4240,pixelWidth:2832,positionX:\"center\",positionY:\"center\",sizes:\"339px\",src:\"https://framerusercontent.com/images/ulYtDD0JiJOUrQ6c97NkSNKxg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ulYtDD0JiJOUrQ6c97NkSNKxg.png?scale-down-to=1024 683w,https://framerusercontent.com/images/ulYtDD0JiJOUrQ6c97NkSNKxg.png?scale-down-to=2048 1367w,https://framerusercontent.com/images/ulYtDD0JiJOUrQ6c97NkSNKxg.png?scale-down-to=4096 2735w,https://framerusercontent.com/images/ulYtDD0JiJOUrQ6c97NkSNKxg.png 2832w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-d1ie8-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FwJNJXbad-container\",nodeId:\"FwJNJXbad\",rendersWithMotion:true,scopeId:\"QLWSC5PrS\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"bottom\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"FwJNJXbad\",intervalControl:3,itemAmount:1,layoutId:\"FwJNJXbad\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1868,intrinsicWidth:4483,pixelHeight:1868,pixelWidth:4483,sizes:\"1200px\",src:\"https://framerusercontent.com/images/WCxuKFvb4Z5W6XGn0HDfzbdcN4.jpg\",srcSet:\"https://framerusercontent.com/images/WCxuKFvb4Z5W6XGn0HDfzbdcN4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WCxuKFvb4Z5W6XGn0HDfzbdcN4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WCxuKFvb4Z5W6XGn0HDfzbdcN4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WCxuKFvb4Z5W6XGn0HDfzbdcN4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/WCxuKFvb4Z5W6XGn0HDfzbdcN4.jpg 4483w\"},className:\"framer-xo3aev\",\"data-framer-name\":\"Free Course\",layoutDependency:layoutDependency,layoutId:\"cXUzeFeNE\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-szx6vs\",layoutDependency:layoutDependency,layoutId:\"gwQrhF0Jv\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"T3VIVtZcw\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"oDaoFOLRB\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:LtK03naV9,className:\"framer-b80v1s\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"ureXkyzcu\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},stylesPresetsClassNames:{a:\"framer-styles-preset-gwo5vs\",blockquote:\"framer-styles-preset-12x1o3b\",code:\"framer-styles-preset-17mbrvo\",h1:\"framer-styles-preset-1sgunh0\",h2:\"framer-styles-preset-6e2xng\",h3:\"framer-styles-preset-utr0yk\",h4:\"framer-styles-preset-1tihccy\",h5:\"framer-styles-preset-jejlvs\",h6:\"framer-styles-preset-9ikdyf\",img:\"framer-styles-preset-47hmai\",p:\"framer-styles-preset-1pxpq6q\",table:\"framer-styles-preset-13khwz7\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1868,intrinsicWidth:4483,pixelHeight:1868,pixelWidth:4483,sizes:\"1200px\",src:\"https://framerusercontent.com/images/L1eI6a4QJjyklttjZ5n2naPkfU.jpg\",srcSet:\"https://framerusercontent.com/images/L1eI6a4QJjyklttjZ5n2naPkfU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/L1eI6a4QJjyklttjZ5n2naPkfU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/L1eI6a4QJjyklttjZ5n2naPkfU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/L1eI6a4QJjyklttjZ5n2naPkfU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/L1eI6a4QJjyklttjZ5n2naPkfU.jpg 4483w\"},className:\"framer-9f5bd1\",\"data-framer-name\":\"Jazz Course\",layoutDependency:layoutDependency,layoutId:\"p34Gx4MEg\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-b2cmce\",layoutDependency:layoutDependency,layoutId:\"HYq9oLbdx\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"T3VIVtZcw\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"oDaoFOLRB\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:QmE2wyAO2,className:\"framer-mc0rc8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kuHcuKZV7\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},stylesPresetsClassNames:{a:\"framer-styles-preset-gwo5vs\",blockquote:\"framer-styles-preset-12x1o3b\",code:\"framer-styles-preset-17mbrvo\",h1:\"framer-styles-preset-1sgunh0\",h2:\"framer-styles-preset-6e2xng\",h3:\"framer-styles-preset-utr0yk\",h4:\"framer-styles-preset-1tihccy\",h5:\"framer-styles-preset-jejlvs\",h6:\"framer-styles-preset-9ikdyf\",img:\"framer-styles-preset-47hmai\",p:\"framer-styles-preset-1pxpq6q\",table:\"framer-styles-preset-13khwz7\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1868,intrinsicWidth:4483,pixelHeight:1868,pixelWidth:4483,sizes:\"1200px\",src:\"https://framerusercontent.com/images/TgQrbe18cWWCt6Gn5BkFhexemj8.jpg\",srcSet:\"https://framerusercontent.com/images/TgQrbe18cWWCt6Gn5BkFhexemj8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TgQrbe18cWWCt6Gn5BkFhexemj8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TgQrbe18cWWCt6Gn5BkFhexemj8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TgQrbe18cWWCt6Gn5BkFhexemj8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/TgQrbe18cWWCt6Gn5BkFhexemj8.jpg 4483w\"},className:\"framer-zvwf5y\",\"data-framer-name\":\"Singersongwriter Course\",layoutDependency:layoutDependency,layoutId:\"zVl6V5x_4\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ou84z\",layoutDependency:layoutDependency,layoutId:\"QKDa4r1Fh\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"T3VIVtZcw\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"oDaoFOLRB\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Hlj0_UYTh,className:\"framer-1vye4k3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cVnkHVeXF\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},stylesPresetsClassNames:{a:\"framer-styles-preset-gwo5vs\",blockquote:\"framer-styles-preset-12x1o3b\",code:\"framer-styles-preset-17mbrvo\",h1:\"framer-styles-preset-1sgunh0\",h2:\"framer-styles-preset-6e2xng\",h4:\"framer-styles-preset-1tihccy\",h5:\"framer-styles-preset-jejlvs\",h6:\"framer-styles-preset-9ikdyf\",img:\"framer-styles-preset-47hmai\",p:\"framer-styles-preset-1pxpq6q\",table:\"framer-styles-preset-13khwz7\"},verticalAlignment:\"top\",withExternalLayout:true})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{bounce:.2,delay:0,duration:1,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16s3zhg\",\"data-framer-name\":\"Grid 1\",layoutDependency:layoutDependency,layoutId:\"nZoajO9RR\",style:{backgroundColor:\"var(--token-d807fdf2-eef6-4b08-86dc-027450f81e02, rgb(247, 242, 235))\"},children:[/*#__PURE__*/_jsxs(motion.header,{className:\"framer-1vzzral\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"fmWjYaVGX\",style:{backgroundColor:\"var(--token-d807fdf2-eef6-4b08-86dc-027450f81e02, rgb(247, 242, 235))\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1sgunh0\",\"data-styles-preset\":\"sYeO0733B\",children:\"Why Beatlii?\"})}),className:\"framer-9b8l6d\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zphH0zRBy\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:UkQkN24gD,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pxpq6q\",\"data-styles-preset\":\"U3kBRxw6L\",style:{\"--framer-text-alignment\":\"center\"},children:\"Discover the flexibility of our app! Seamlessly switch between your computer and mobile devices with ease. Whether you\u2019re a Windows, macOS, iOS, or Android user, we\u2019ve got you covered.\"})}),className:\"framer-pczn8j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"r7IRe6TSc\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:hFCMtlZ5Z,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hl32ea\",layoutDependency:layoutDependency,layoutId:\"QI0Wo7UsE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y1mbzd\",layoutDependency:layoutDependency,layoutId:\"LUsPn9TR1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1334,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"600px\",src:\"https://framerusercontent.com/images/DUciIs6ciUAEx8kigO1fRAcTwM.png\",srcSet:\"https://framerusercontent.com/images/DUciIs6ciUAEx8kigO1fRAcTwM.png?scale-down-to=1024 767w,https://framerusercontent.com/images/DUciIs6ciUAEx8kigO1fRAcTwM.png 1000w\"},className:\"framer-cv0kt5\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"VB5ZjmDuY\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({fjMTTctjt:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1334,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/DUciIs6ciUAEx8kigO1fRAcTwM.png\",srcSet:\"https://framerusercontent.com/images/DUciIs6ciUAEx8kigO1fRAcTwM.png?scale-down-to=1024 767w,https://framerusercontent.com/images/DUciIs6ciUAEx8kigO1fRAcTwM.png 1000w\"}},pYiKVwPva:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+3491.8+150)+20+338.4+0+0+0+0),pixelHeight:1334,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:`max(min(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 200px), 500px), 300px)`,src:\"https://framerusercontent.com/images/DUciIs6ciUAEx8kigO1fRAcTwM.png\",srcSet:\"https://framerusercontent.com/images/DUciIs6ciUAEx8kigO1fRAcTwM.png?scale-down-to=1024 767w,https://framerusercontent.com/images/DUciIs6ciUAEx8kigO1fRAcTwM.png 1000w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7vb2pj\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"gR3TU1MfQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",children:\"Note Highway\"})}),className:\"framer-6f46g7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RM87qpNlA\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:R9_vdye_b,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pxpq6q\",\"data-styles-preset\":\"U3kBRxw6L\",style:{\"--framer-text-alignment\":\"center\"},children:\"Level up your drumming skills with our engaging gamified approach! Hit the notes as they flow down and receive instant feedback on your performance.\"})}),className:\"framer-1gb7i7o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"k0lfSjD2f\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ABsutsTgv,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-39ynni\",layoutDependency:layoutDependency,layoutId:\"jgBpQQjnq\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1334,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"600px\",src:\"https://framerusercontent.com/images/OZVnpTkFExufIYDnH4xm66qiCI.png\",srcSet:\"https://framerusercontent.com/images/OZVnpTkFExufIYDnH4xm66qiCI.png?scale-down-to=1024 767w,https://framerusercontent.com/images/OZVnpTkFExufIYDnH4xm66qiCI.png 1000w\"},className:\"framer-rt0yzx\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Rt9trqU7f\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({fjMTTctjt:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1334,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/OZVnpTkFExufIYDnH4xm66qiCI.png\",srcSet:\"https://framerusercontent.com/images/OZVnpTkFExufIYDnH4xm66qiCI.png?scale-down-to=1024 767w,https://framerusercontent.com/images/OZVnpTkFExufIYDnH4xm66qiCI.png 1000w\"}},pYiKVwPva:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+3491.8+150)+20+338.4+0+580.8+0+0),pixelHeight:1334,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:`max(min(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 200px), 500px), 300px)`,src:\"https://framerusercontent.com/images/OZVnpTkFExufIYDnH4xm66qiCI.png\",srcSet:\"https://framerusercontent.com/images/OZVnpTkFExufIYDnH4xm66qiCI.png?scale-down-to=1024 767w,https://framerusercontent.com/images/OZVnpTkFExufIYDnH4xm66qiCI.png 1000w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rumfmp\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"oYyvBblxE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",children:\"Sheet Music\"})}),className:\"framer-1phu0c4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IQTZ6nXAD\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:MChWxu5QN,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pxpq6q\",\"data-styles-preset\":\"U3kBRxw6L\",style:{\"--framer-text-alignment\":\"center\"},children:\"For those who prefer a more traditional learning experience, this feature allows you to play all the songs using traditional music notation.\"})}),className:\"framer-1pgo538\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Oh_Nr0ZSA\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:LXtGcJda2,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11bien3\",layoutDependency:layoutDependency,layoutId:\"vyodU6L6G\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1334,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"600px\",src:\"https://framerusercontent.com/images/xLxW3qQov3XMGxBowVulhOEF4Q.png\",srcSet:\"https://framerusercontent.com/images/xLxW3qQov3XMGxBowVulhOEF4Q.png?scale-down-to=1024 767w,https://framerusercontent.com/images/xLxW3qQov3XMGxBowVulhOEF4Q.png 1000w\"},className:\"framer-8ljn1z\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"TfLgm5d4x\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({fjMTTctjt:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1334,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/xLxW3qQov3XMGxBowVulhOEF4Q.png\",srcSet:\"https://framerusercontent.com/images/xLxW3qQov3XMGxBowVulhOEF4Q.png?scale-down-to=1024 767w,https://framerusercontent.com/images/xLxW3qQov3XMGxBowVulhOEF4Q.png 1000w\"}},pYiKVwPva:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+3491.8+150)+20+338.4+0+1161.6+0+0),pixelHeight:1334,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:`max(min(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 200px), 500px), 300px)`,src:\"https://framerusercontent.com/images/xLxW3qQov3XMGxBowVulhOEF4Q.png\",srcSet:\"https://framerusercontent.com/images/xLxW3qQov3XMGxBowVulhOEF4Q.png?scale-down-to=1024 767w,https://framerusercontent.com/images/xLxW3qQov3XMGxBowVulhOEF4Q.png 1000w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c9f944\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"m7xUvay82\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",children:\"Activity\"})}),className:\"framer-1b3vrjb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oXPZPOyMp\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:uG2bDhp9z,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pxpq6q\",\"data-styles-preset\":\"U3kBRxw6L\",style:{\"--framer-text-alignment\":\"center\"},children:\"The app takes care of all the heavy lifting and provides you with a summary of your progress over time.\"})}),className:\"framer-1s0cqaj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qFLat2S79\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:yLZeCWgQY,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:570,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/HRvdFFI4CwGEVDvrGYWR2I1GkY.png\",srcSet:\"https://framerusercontent.com/images/HRvdFFI4CwGEVDvrGYWR2I1GkY.png?scale-down-to=512 512w,https://framerusercontent.com/images/HRvdFFI4CwGEVDvrGYWR2I1GkY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HRvdFFI4CwGEVDvrGYWR2I1GkY.png 1920w\"},className:\"framer-5c2yb0\",layoutDependency:layoutDependency,layoutId:\"HnlhPGOR1\",...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+5564.6+200)),pixelHeight:570,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/HRvdFFI4CwGEVDvrGYWR2I1GkY.png\",srcSet:\"https://framerusercontent.com/images/HRvdFFI4CwGEVDvrGYWR2I1GkY.png?scale-down-to=512 512w,https://framerusercontent.com/images/HRvdFFI4CwGEVDvrGYWR2I1GkY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HRvdFFI4CwGEVDvrGYWR2I1GkY.png 1920w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-m8l8fm\",layoutDependency:layoutDependency,layoutId:\"zNACMxyYZ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13jajj\",layoutDependency:layoutDependency,layoutId:\"qUju0IEDZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Compatible with any Electronic Drum Kit\"})}),className:\"framer-m05en2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IWuEoBC06\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:uwqicX4UW,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pxpq6q\",\"data-styles-preset\":\"U3kBRxw6L\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"BEATLII SEAMLESS CONNECTION PROCESS MAKES IT EASY TO CONNECT TO YOUR ELECTRONIC DRUM KIT\"})}),className:\"framer-120t029\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jsr6VMtc7\",style:{\"--extracted-r6o4lv\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:MCHF3xgMy,verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(motion.header,{className:\"framer-4w87w2\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"Ubd4DDECk\",style:{backgroundColor:\"var(--token-d807fdf2-eef6-4b08-86dc-027450f81e02, rgb(247, 242, 235))\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1sgunh0\",\"data-styles-preset\":\"sYeO0733B\",children:\"Discover Our Exciting New Community Features\"})}),className:\"framer-15ngzy8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UjMEjOzgv\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:qCjJN3fZC,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pxpq6q\",\"data-styles-preset\":\"U3kBRxw6L\",style:{\"--framer-text-alignment\":\"center\"},children:\"Immerse yourself in Beatlii\u2019s vibrant drumming community! Climb the leaderboard, connect with friends, and proudly share your drumming achievements. Engage in friendly competition with drummers from around the globe.\"})}),className:\"framer-kdes6g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pkq3BVm3R\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:rWYZeBBY3,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n5opi8\",\"data-framer-name\":\"2 Columns Text Image\",layoutDependency:layoutDependency,layoutId:\"dNB794ujS\",style:{backgroundColor:\"var(--token-d807fdf2-eef6-4b08-86dc-027450f81e02, rgb(247, 242, 235))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gco9wf\",layoutDependency:layoutDependency,layoutId:\"DutYVr32l\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:4240,pixelWidth:2832,positionX:\"center\",positionY:\"center\",sizes:\"339px\",src:\"https://framerusercontent.com/images/t77eRf9vzdsK1ZF3Qpf7tCcArb4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/t77eRf9vzdsK1ZF3Qpf7tCcArb4.png?scale-down-to=1024 683w,https://framerusercontent.com/images/t77eRf9vzdsK1ZF3Qpf7tCcArb4.png?scale-down-to=2048 1367w,https://framerusercontent.com/images/t77eRf9vzdsK1ZF3Qpf7tCcArb4.png?scale-down-to=4096 2735w,https://framerusercontent.com/images/t77eRf9vzdsK1ZF3Qpf7tCcArb4.png 2832w\"},className:\"framer-1y2l5vw\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"whspB4YUR\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({fjMTTctjt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:4240,pixelWidth:2832,sizes:\"339px\",src:\"https://framerusercontent.com/images/t77eRf9vzdsK1ZF3Qpf7tCcArb4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/t77eRf9vzdsK1ZF3Qpf7tCcArb4.png?scale-down-to=1024 683w,https://framerusercontent.com/images/t77eRf9vzdsK1ZF3Qpf7tCcArb4.png?scale-down-to=2048 1367w,https://framerusercontent.com/images/t77eRf9vzdsK1ZF3Qpf7tCcArb4.png?scale-down-to=4096 2735w,https://framerusercontent.com/images/t77eRf9vzdsK1ZF3Qpf7tCcArb4.png 2832w\"}},pYiKVwPva:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+6367+300)+0+0+0),pixelHeight:4240,pixelWidth:2832,positionX:\"center\",positionY:\"center\",sizes:\"225.3314px\",src:\"https://framerusercontent.com/images/t77eRf9vzdsK1ZF3Qpf7tCcArb4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/t77eRf9vzdsK1ZF3Qpf7tCcArb4.png?scale-down-to=1024 683w,https://framerusercontent.com/images/t77eRf9vzdsK1ZF3Qpf7tCcArb4.png?scale-down-to=2048 1367w,https://framerusercontent.com/images/t77eRf9vzdsK1ZF3Qpf7tCcArb4.png?scale-down-to=4096 2735w,https://framerusercontent.com/images/t77eRf9vzdsK1ZF3Qpf7tCcArb4.png 2832w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i9d7rq\",layoutDependency:layoutDependency,layoutId:\"yb4DhlfC3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m040dd\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"YUILeIL9a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-pkldml\",\"data-styles-preset\":\"gWJZwWo6j\",children:\"LEADERBOARDS\"})}),className:\"framer-1hl1f9y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jpOcvQtfL\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:nVp6LX6O4,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-alignment\":\"left\"},children:\"Compete with drummers worldwide\"})}),className:\"framer-wcc14v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MWOVgBNAg\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:EbsyIRGiB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16haf1f\",\"data-styles-preset\":\"AV0m6_j__\",children:\"Compete, climb, and conquer! Challenge yourself and other users to reach the top of the rankings.\"})}),className:\"framer-17008yl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wNQDyT5t_\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:MStDol66i,verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c4qb65\",\"data-framer-name\":\"2 Columns Text Image\",layoutDependency:layoutDependency,layoutId:\"VjpnIRRmP\",style:{backgroundColor:\"var(--token-d807fdf2-eef6-4b08-86dc-027450f81e02, rgb(247, 242, 235))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16l3jws\",layoutDependency:layoutDependency,layoutId:\"Ms0TvvHFK\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t4174n\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"QeTWvSMRx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-pkldml\",\"data-styles-preset\":\"gWJZwWo6j\",children:\"FRIENDS\"})}),className:\"framer-14w7ol5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XLvWtCXas\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:lrYdpLf_H,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-alignment\":\"left\"},children:\"Connect with your friends and favourite drummers\"})}),className:\"framer-1od3ggw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NXcVIP2sG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:PGQHZE5GL,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16haf1f\",\"data-styles-preset\":\"AV0m6_j__\",children:\"Connect with your friends and favorite drummers, discover the songs they\u2019re jamming to, and explore the achievements they\u2019ve unlocked.\"})}),className:\"framer-bfmyzg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Wsg4WKJS4\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:PGGEzkEEh,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c96icl\",layoutDependency:layoutDependency,layoutId:\"ihSCd89U2\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:4240,pixelWidth:2832,positionX:\"center\",positionY:\"center\",sizes:\"339px\",src:\"https://framerusercontent.com/images/qrf5kXxAunY5Y73Iz2j2dT3gg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qrf5kXxAunY5Y73Iz2j2dT3gg.png?scale-down-to=1024 683w,https://framerusercontent.com/images/qrf5kXxAunY5Y73Iz2j2dT3gg.png?scale-down-to=2048 1367w,https://framerusercontent.com/images/qrf5kXxAunY5Y73Iz2j2dT3gg.png?scale-down-to=4096 2735w,https://framerusercontent.com/images/qrf5kXxAunY5Y73Iz2j2dT3gg.png 2832w\"},className:\"framer-8a713m\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"O9f0JPFal\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({fjMTTctjt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:4240,pixelWidth:2832,sizes:\"339px\",src:\"https://framerusercontent.com/images/qrf5kXxAunY5Y73Iz2j2dT3gg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qrf5kXxAunY5Y73Iz2j2dT3gg.png?scale-down-to=1024 683w,https://framerusercontent.com/images/qrf5kXxAunY5Y73Iz2j2dT3gg.png?scale-down-to=2048 1367w,https://framerusercontent.com/images/qrf5kXxAunY5Y73Iz2j2dT3gg.png?scale-down-to=4096 2735w,https://framerusercontent.com/images/qrf5kXxAunY5Y73Iz2j2dT3gg.png 2832w\"}},pYiKVwPva:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+7016.8+350)+0+0+0),pixelHeight:4240,pixelWidth:2832,positionX:\"center\",positionY:\"center\",sizes:\"226px\",src:\"https://framerusercontent.com/images/qrf5kXxAunY5Y73Iz2j2dT3gg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qrf5kXxAunY5Y73Iz2j2dT3gg.png?scale-down-to=1024 683w,https://framerusercontent.com/images/qrf5kXxAunY5Y73Iz2j2dT3gg.png?scale-down-to=2048 1367w,https://framerusercontent.com/images/qrf5kXxAunY5Y73Iz2j2dT3gg.png?scale-down-to=4096 2735w,https://framerusercontent.com/images/qrf5kXxAunY5Y73Iz2j2dT3gg.png 2832w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:800,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/YcDW4wA9ZnCVRgAk6k3cpta03c8.png\",srcSet:\"https://framerusercontent.com/images/YcDW4wA9ZnCVRgAk6k3cpta03c8.png?scale-down-to=512 512w,https://framerusercontent.com/images/YcDW4wA9ZnCVRgAk6k3cpta03c8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YcDW4wA9ZnCVRgAk6k3cpta03c8.png 1920w\"},className:\"framer-s4uzyq\",layoutDependency:layoutDependency,layoutId:\"uy0a_IwbF\",...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+7716.6+400)),pixelHeight:800,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/YcDW4wA9ZnCVRgAk6k3cpta03c8.png\",srcSet:\"https://framerusercontent.com/images/YcDW4wA9ZnCVRgAk6k3cpta03c8.png?scale-down-to=512 512w,https://framerusercontent.com/images/YcDW4wA9ZnCVRgAk6k3cpta03c8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YcDW4wA9ZnCVRgAk6k3cpta03c8.png 1920w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5wroi8\",layoutDependency:layoutDependency,layoutId:\"vjbCCZqDW\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s134l5\",layoutDependency:layoutDependency,layoutId:\"rbjx2K5hx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Create Beats Right at Your Fingertips\"})}),className:\"framer-1bcenau\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aHygchnEV\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:RZrtU2yB9,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-1pxpq6q\",\"data-styles-preset\":\"U3kBRxw6L\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"WITH OUR FINGER DRUMMING FEATURE, YOU CAN PRACTICE OUR COURSES ANYTIME, ANYWHERE\"})}),className:\"framer-11lug10\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sqQE6IPN7\",style:{\"--extracted-tcooor\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:plMgxyw5p,verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6crp57\",layoutDependency:layoutDependency,layoutId:\"VWgLgcF1Q\",children:[/*#__PURE__*/_jsxs(motion.header,{className:\"framer-bazypd\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"vWA8q9RwM\",style:{backgroundColor:\"var(--token-d807fdf2-eef6-4b08-86dc-027450f81e02, rgb(247, 242, 235))\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1sgunh0\",\"data-styles-preset\":\"sYeO0733B\",children:\"Courses For All Skill Levels\"})}),className:\"framer-1yvo7p\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SwFq8B2BA\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:OC2tGKWi3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pxpq6q\",\"data-styles-preset\":\"U3kBRxw6L\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dive into a diverse selection of courses created by professional drummers across various music genres. From rock to jazz, hip-hop to blues, our expert-curated lessons cater to drummers of all tastes and skill levels.\"})}),className:\"framer-1vo3ylq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bGeEIoelE\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:FcBaMAH8S,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-pkldml\",\"data-styles-preset\":\"gWJZwWo6j\",children:\"BEGINNER\"})}),className:\"framer-1cdoxjh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"G83nxdD46\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:FkcSTAbBg,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3gsaqy\",layoutDependency:layoutDependency,layoutId:\"IhPEBDrxe\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/AX3VMMwn87IVUPXNL9sVp2bRX8.jpg\",srcSet:\"https://framerusercontent.com/images/AX3VMMwn87IVUPXNL9sVp2bRX8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AX3VMMwn87IVUPXNL9sVp2bRX8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AX3VMMwn87IVUPXNL9sVp2bRX8.jpg 1032w\"},className:\"framer-brpzx5\",layoutDependency:layoutDependency,layoutId:\"p2RblGFXK\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+386.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/AX3VMMwn87IVUPXNL9sVp2bRX8.jpg\",srcSet:\"https://framerusercontent.com/images/AX3VMMwn87IVUPXNL9sVp2bRX8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AX3VMMwn87IVUPXNL9sVp2bRX8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AX3VMMwn87IVUPXNL9sVp2bRX8.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Absolute Beginners\"})}),className:\"framer-1jr5hd7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gc48S_Ab1\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:oENRa5y2U,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/x5VBz4KmoUFURfDf3Euw2R51T4.jpg\",srcSet:\"https://framerusercontent.com/images/x5VBz4KmoUFURfDf3Euw2R51T4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/x5VBz4KmoUFURfDf3Euw2R51T4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/x5VBz4KmoUFURfDf3Euw2R51T4.jpg 1032w\"},className:\"framer-q2b6zj\",layoutDependency:layoutDependency,layoutId:\"eT7kNgmQg\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+386.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/x5VBz4KmoUFURfDf3Euw2R51T4.jpg\",srcSet:\"https://framerusercontent.com/images/x5VBz4KmoUFURfDf3Euw2R51T4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/x5VBz4KmoUFURfDf3Euw2R51T4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/x5VBz4KmoUFURfDf3Euw2R51T4.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Beginner: Singer-Songwriter\"})}),className:\"framer-tf6513\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Rxn1JX_zr\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:B3T597XQ5,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/v8zdK4nkwqyUxbY7wfGnY.jpg\",srcSet:\"https://framerusercontent.com/images/v8zdK4nkwqyUxbY7wfGnY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/v8zdK4nkwqyUxbY7wfGnY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/v8zdK4nkwqyUxbY7wfGnY.jpg 1032w\"},className:\"framer-pm23o2\",layoutDependency:layoutDependency,layoutId:\"WwxxbcLOp\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+386.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/v8zdK4nkwqyUxbY7wfGnY.jpg\",srcSet:\"https://framerusercontent.com/images/v8zdK4nkwqyUxbY7wfGnY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/v8zdK4nkwqyUxbY7wfGnY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/v8zdK4nkwqyUxbY7wfGnY.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Beginner: Hip-Hop\"})}),className:\"framer-9dr33b\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QZJOu0QjM\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:V9u5rq9N4,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/d8hTms3Ge8BnVkkrwg0KHIkVw.jpg\",srcSet:\"https://framerusercontent.com/images/d8hTms3Ge8BnVkkrwg0KHIkVw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/d8hTms3Ge8BnVkkrwg0KHIkVw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/d8hTms3Ge8BnVkkrwg0KHIkVw.jpg 1032w\"},className:\"framer-bghvu0\",layoutDependency:layoutDependency,layoutId:\"lhqIrRSV7\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+386.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/d8hTms3Ge8BnVkkrwg0KHIkVw.jpg\",srcSet:\"https://framerusercontent.com/images/d8hTms3Ge8BnVkkrwg0KHIkVw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/d8hTms3Ge8BnVkkrwg0KHIkVw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/d8hTms3Ge8BnVkkrwg0KHIkVw.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Beginner: Pop\"})}),className:\"framer-1ovaa3i\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pAjYgAvSF\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:yewNjXgqK,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/3cjG5wjJPvyI1uKKHa71gWCzVc.png\",srcSet:\"https://framerusercontent.com/images/3cjG5wjJPvyI1uKKHa71gWCzVc.png?scale-down-to=512 512w,https://framerusercontent.com/images/3cjG5wjJPvyI1uKKHa71gWCzVc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3cjG5wjJPvyI1uKKHa71gWCzVc.png 1032w\"},className:\"framer-sw0zoo\",layoutDependency:layoutDependency,layoutId:\"gNx_ywgUL\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+386.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/3cjG5wjJPvyI1uKKHa71gWCzVc.png\",srcSet:\"https://framerusercontent.com/images/3cjG5wjJPvyI1uKKHa71gWCzVc.png?scale-down-to=512 512w,https://framerusercontent.com/images/3cjG5wjJPvyI1uKKHa71gWCzVc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3cjG5wjJPvyI1uKKHa71gWCzVc.png 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Beginner: Soul\"})}),className:\"framer-1tddwvs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AeR0zVPaQ\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:JzDXczXLi,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/RRMlZqf6ps3j3peA15iKhIIWvE.jpg\",srcSet:\"https://framerusercontent.com/images/RRMlZqf6ps3j3peA15iKhIIWvE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RRMlZqf6ps3j3peA15iKhIIWvE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RRMlZqf6ps3j3peA15iKhIIWvE.jpg 1032w\"},className:\"framer-1epvs2z\",layoutDependency:layoutDependency,layoutId:\"TykHzBZ4A\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+386.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/RRMlZqf6ps3j3peA15iKhIIWvE.jpg\",srcSet:\"https://framerusercontent.com/images/RRMlZqf6ps3j3peA15iKhIIWvE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RRMlZqf6ps3j3peA15iKhIIWvE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RRMlZqf6ps3j3peA15iKhIIWvE.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Beginner: Rock\"})}),className:\"framer-1yhqs4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"k78NEXhkL\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:Qji0tXukv,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg\",srcSet:\"https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg 1032w\"},className:\"framer-1iuk07i\",layoutDependency:layoutDependency,layoutId:\"N98yMPdfI\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+386.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg\",srcSet:\"https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Beginner: Jazz\"})}),className:\"framer-1l8weac\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sE2fOJsOB\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:fjFvjPmLa,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg\",srcSet:\"https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg 1032w\"},className:\"framer-14y9x7q\",layoutDependency:layoutDependency,layoutId:\"HQ9aXHT8p\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+386.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg\",srcSet:\"https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Beginner: Fundamentals\"})}),className:\"framer-kxy4lw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"isusFxUv3\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:dlayhliFq,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-158vle3\",layoutDependency:layoutDependency,layoutId:\"B0v4fmpcn\",style:{opacity:0}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-pkldml\",\"data-styles-preset\":\"gWJZwWo6j\",children:\"INTERMEDIATE\"})}),className:\"framer-1tjbxi9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XsIMOMX9x\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:RIkZGe2ka,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i4vlq0\",layoutDependency:layoutDependency,layoutId:\"PAWjb5mhn\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/RRMlZqf6ps3j3peA15iKhIIWvE.jpg\",srcSet:\"https://framerusercontent.com/images/RRMlZqf6ps3j3peA15iKhIIWvE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RRMlZqf6ps3j3peA15iKhIIWvE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RRMlZqf6ps3j3peA15iKhIIWvE.jpg 1032w\"},className:\"framer-1toyxxr\",layoutDependency:layoutDependency,layoutId:\"vUZcJfx6Q\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+655.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/RRMlZqf6ps3j3peA15iKhIIWvE.jpg\",srcSet:\"https://framerusercontent.com/images/RRMlZqf6ps3j3peA15iKhIIWvE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RRMlZqf6ps3j3peA15iKhIIWvE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RRMlZqf6ps3j3peA15iKhIIWvE.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Intermediate: Rock\"})}),className:\"framer-111aytq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"id8ACzYjm\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:dLpExZqGw,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg\",srcSet:\"https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg 1032w\"},className:\"framer-1oponop\",layoutDependency:layoutDependency,layoutId:\"neG0zllQV\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+655.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg\",srcSet:\"https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Intermediate: Jazz\"})}),className:\"framer-1e1wwcp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"c75VVC7Bp\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:lLgj_2Dmy,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/KgAztrYEoaTJVVonODCDtB1zUE.jpg\",srcSet:\"https://framerusercontent.com/images/KgAztrYEoaTJVVonODCDtB1zUE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KgAztrYEoaTJVVonODCDtB1zUE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KgAztrYEoaTJVVonODCDtB1zUE.jpg 1032w\"},className:\"framer-6skbkc\",layoutDependency:layoutDependency,layoutId:\"yXuAmu55j\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+655.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/KgAztrYEoaTJVVonODCDtB1zUE.jpg\",srcSet:\"https://framerusercontent.com/images/KgAztrYEoaTJVVonODCDtB1zUE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KgAztrYEoaTJVVonODCDtB1zUE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KgAztrYEoaTJVVonODCDtB1zUE.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Intermediate: Alternative\"})}),className:\"framer-133zycd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eFI8saGkY\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:iBHfhGqbo,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/ETMmhOSZzVJdlfWznKlKQdsKD0.jpg\",srcSet:\"https://framerusercontent.com/images/ETMmhOSZzVJdlfWznKlKQdsKD0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ETMmhOSZzVJdlfWznKlKQdsKD0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ETMmhOSZzVJdlfWznKlKQdsKD0.jpg 1032w\"},className:\"framer-vdehj0\",layoutDependency:layoutDependency,layoutId:\"DIhL9rTDG\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+655.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/ETMmhOSZzVJdlfWznKlKQdsKD0.jpg\",srcSet:\"https://framerusercontent.com/images/ETMmhOSZzVJdlfWznKlKQdsKD0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ETMmhOSZzVJdlfWznKlKQdsKD0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ETMmhOSZzVJdlfWznKlKQdsKD0.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Intermediate: Blues\"})}),className:\"framer-8rmaoo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DjogFV1Yi\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:xktYW38Nl,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/hnTWdzF5i9FzdMEf3TugjMCMk.jpg\",srcSet:\"https://framerusercontent.com/images/hnTWdzF5i9FzdMEf3TugjMCMk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hnTWdzF5i9FzdMEf3TugjMCMk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hnTWdzF5i9FzdMEf3TugjMCMk.jpg 1032w\"},className:\"framer-1kxe503\",layoutDependency:layoutDependency,layoutId:\"R47C_WbX_\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+655.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/hnTWdzF5i9FzdMEf3TugjMCMk.jpg\",srcSet:\"https://framerusercontent.com/images/hnTWdzF5i9FzdMEf3TugjMCMk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hnTWdzF5i9FzdMEf3TugjMCMk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hnTWdzF5i9FzdMEf3TugjMCMk.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Intermediate: K-Pop\"})}),className:\"framer-1d5gzyf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J_5Z821dt\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:y9mcDpie0,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg\",srcSet:\"https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg 1032w\"},className:\"framer-7kdfe1\",layoutDependency:layoutDependency,layoutId:\"gsG4vfVfW\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+655.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg\",srcSet:\"https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Intermediate: Fundamentals\"})}),className:\"framer-1eecnd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"t_AYkc0Jd\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:s1p7HN7wF,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aui8lc\",layoutDependency:layoutDependency,layoutId:\"WJ55D7FpV\",style:{opacity:0}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-pkldml\",\"data-styles-preset\":\"gWJZwWo6j\",children:\"ADVANCED\"})}),className:\"framer-1kvuj4m\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bx6evsNH_\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:RyKcN0HKc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ys3vxi\",layoutDependency:layoutDependency,layoutId:\"VZrudMfWd\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/v5315UvxmGKToeeskxolKrmXq9E.jpg\",srcSet:\"https://framerusercontent.com/images/v5315UvxmGKToeeskxolKrmXq9E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/v5315UvxmGKToeeskxolKrmXq9E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/v5315UvxmGKToeeskxolKrmXq9E.jpg 1032w\"},className:\"framer-fjw3fp\",layoutDependency:layoutDependency,layoutId:\"cgiVdxvy9\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+924.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/v5315UvxmGKToeeskxolKrmXq9E.jpg\",srcSet:\"https://framerusercontent.com/images/v5315UvxmGKToeeskxolKrmXq9E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/v5315UvxmGKToeeskxolKrmXq9E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/v5315UvxmGKToeeskxolKrmXq9E.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Advanced: Funk\"})}),className:\"framer-1mdzv5k\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Rmrul_yGL\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:HY4USG7c9,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/M9vvETnMj0gzJf4O7vMrS5XjM.jpg\",srcSet:\"https://framerusercontent.com/images/M9vvETnMj0gzJf4O7vMrS5XjM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/M9vvETnMj0gzJf4O7vMrS5XjM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/M9vvETnMj0gzJf4O7vMrS5XjM.jpg 1032w\"},className:\"framer-jpa0yz\",layoutDependency:layoutDependency,layoutId:\"s0u0Od_cB\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+924.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/M9vvETnMj0gzJf4O7vMrS5XjM.jpg\",srcSet:\"https://framerusercontent.com/images/M9vvETnMj0gzJf4O7vMrS5XjM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/M9vvETnMj0gzJf4O7vMrS5XjM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/M9vvETnMj0gzJf4O7vMrS5XjM.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Advanced: Drum n Bass\"})}),className:\"framer-zwqoiw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lkYV22U1t\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:pfxolJcrs,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/ETMmhOSZzVJdlfWznKlKQdsKD0.jpg\",srcSet:\"https://framerusercontent.com/images/ETMmhOSZzVJdlfWznKlKQdsKD0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ETMmhOSZzVJdlfWznKlKQdsKD0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ETMmhOSZzVJdlfWznKlKQdsKD0.jpg 1032w\"},className:\"framer-k7nfp\",layoutDependency:layoutDependency,layoutId:\"hVRoUpuNf\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+924.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/ETMmhOSZzVJdlfWznKlKQdsKD0.jpg\",srcSet:\"https://framerusercontent.com/images/ETMmhOSZzVJdlfWznKlKQdsKD0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ETMmhOSZzVJdlfWznKlKQdsKD0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ETMmhOSZzVJdlfWznKlKQdsKD0.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Advanced: Blues\"})}),className:\"framer-1k4ylj6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rMkHTLEWQ\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:IPyGkv4Vo,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg\",srcSet:\"https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg 1032w\"},className:\"framer-4ufecy\",layoutDependency:layoutDependency,layoutId:\"J7m_REK8l\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+924.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg\",srcSet:\"https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Yli5Zcqr0unZHKLsbXmjAj5GE.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Advanced: Jazz\"})}),className:\"framer-1syq7cv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"t2G9OQOcm\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:rUsKieCIS,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg\",srcSet:\"https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg 1032w\"},className:\"framer-1g5fbqe\",layoutDependency:layoutDependency,layoutId:\"t3HpenjVS\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({pYiKVwPva:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+8216.6+450)+0+924.4+0),pixelHeight:432,pixelWidth:1032,sizes:\"455px\",src:\"https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg\",srcSet:\"https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nfjDEfWsqdKqykDQqxODtV94FN4.jpg 1032w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255)))\"},children:\"Advanced: Fundamentals\"})}),className:\"framer-zg15az\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oPzRCYKnR\",style:{\"--extracted-1of0zx5\":\"var(--token-650610f6-af3e-41dd-95be-c0e74267b262, rgb(255, 255, 255))\"},text:XTiH3EAGb,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t72foo\",layoutDependency:layoutDependency,layoutId:\"iAYci7gK9\",style:{backgroundColor:\"var(--token-d807fdf2-eef6-4b08-86dc-027450f81e02, rgb(247, 242, 235))\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gafboy\",\"data-framer-name\":\"2 Columns Text Image\",layoutDependency:layoutDependency,layoutId:\"OUs4uJ2hE\",style:{backgroundColor:\"var(--token-d807fdf2-eef6-4b08-86dc-027450f81e02, rgb(247, 242, 235))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fodcc1\",layoutDependency:layoutDependency,layoutId:\"DMHcQTbtJ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vhnc5b\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"rsHM8x16W\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-pkldml\",\"data-styles-preset\":\"gWJZwWo6j\",children:\"Beatlii\"})}),className:\"framer-w4m2vv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SA6hZZCuP\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-impiae\",\"data-styles-preset\":\"gIQn0G4go\",style:{\"--framer-text-alignment\":\"left\"},children:\"Ready to play some drums?\"})}),className:\"framer-tzb5cl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kE3Psh99G\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:FsRfqDTKX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16haf1f\",\"data-styles-preset\":\"AV0m6_j__\",children:\"Discover the new app that instantly transforms your electronic drum kit into a powerful music teacher.\"})}),className:\"framer-1y5u3ya\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"k2Igyagou\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:rktDESxpo,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x412kx-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"Tb2uNhOvB-container\",nodeId:\"Tb2uNhOvB\",rendersWithMotion:true,scopeId:\"QLWSC5PrS\",children:/*#__PURE__*/_jsx(PrimaryButton,{buttonText:l5oN9PKoH,duration:\"annual\",height:\"100%\",id:\"Tb2uNhOvB\",invertStyle:false,isSubscribeCTA:true,layoutId:\"Tb2uNhOvB\",price:\"\",promo_code:\"\",trialDays:\"trial\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cdz55\",layoutDependency:layoutDependency,layoutId:\"qeYB0gnqq\",style:{backgroundColor:\"var(--token-d807fdf2-eef6-4b08-86dc-027450f81e02, rgb(247, 242, 235))\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:750,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 40px) / 2, 1px) + 360px)`,src:\"https://framerusercontent.com/images/PikqMYpnm1PVjIPg5cTY029Bijg.gif?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PikqMYpnm1PVjIPg5cTY029Bijg.gif?scale-down-to=512 512w,https://framerusercontent.com/images/PikqMYpnm1PVjIPg5cTY029Bijg.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/PikqMYpnm1PVjIPg5cTY029Bijg.gif 1200w\"},className:\"framer-17kydlj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ejIsTxn_x\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({fjMTTctjt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:750,pixelWidth:1200,sizes:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 40px) / 2, 1px) + 360px)`,src:\"https://framerusercontent.com/images/PikqMYpnm1PVjIPg5cTY029Bijg.gif?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PikqMYpnm1PVjIPg5cTY029Bijg.gif?scale-down-to=512 512w,https://framerusercontent.com/images/PikqMYpnm1PVjIPg5cTY029Bijg.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/PikqMYpnm1PVjIPg5cTY029Bijg.gif 1200w\"}},pYiKVwPva:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||10389)-0-10734.8)/2+9332+500)+50+20+462.8+-150),pixelHeight:750,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) + 320px)`,src:\"https://framerusercontent.com/images/PikqMYpnm1PVjIPg5cTY029Bijg.gif?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PikqMYpnm1PVjIPg5cTY029Bijg.gif?scale-down-to=512 512w,https://framerusercontent.com/images/PikqMYpnm1PVjIPg5cTY029Bijg.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/PikqMYpnm1PVjIPg5cTY029Bijg.gif 1200w\"}}},baseVariant,gestureVariant)})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8oTGX.framer-17jiug2, .framer-8oTGX .framer-17jiug2 { display: block; }\",\".framer-8oTGX.framer-lopsev { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-8oTGX .framer-7dfy5g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-1ig9yao { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-di13h2 { flex: none; height: 500px; overflow: hidden; position: relative; width: 100%; }\",\".framer-8oTGX .framer-eygtk5 { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-8oTGX .framer-10t5ux7 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 50%; z-index: 1; }\",\".framer-8oTGX .framer-1aca90q-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-8oTGX .framer-1b1axos { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: flex-start; left: calc(50.00000000000002% - min(1200px, 100%) / 2); max-width: 1200px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-8oTGX .framer-1gwjrg2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 50%; overflow: hidden; padding: 20px; position: relative; width: 600px; z-index: 1; }\",\".framer-8oTGX .framer-ncynb8 { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 565px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-8oTGX .framer-1vt53n4 { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 565px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-8oTGX .framer-xaoyz5-container, .framer-8oTGX .framer-1x412kx-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-8oTGX .framer-n90fuu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 20px 100px 20px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-e44hfa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 1160px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-wd0tdv, .framer-8oTGX .framer-1oulr0w { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; padding: 30px; position: relative; width: 1px; }\",\".framer-8oTGX .framer-1bxm9wf, .framer-8oTGX .framer-1gxhups, .framer-8oTGX .framer-13niuco { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-8ekw4q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 260px; }\",\".framer-8oTGX .framer-cho3i2, .framer-8oTGX .framer-sa4r0z, .framer-8oTGX .framer-5z7wtd, .framer-8oTGX .framer-1yko38a, .framer-8oTGX .framer-r96s18, .framer-8oTGX .framer-cvnbhp, .framer-8oTGX .framer-ttnoex, .framer-8oTGX .framer-ofisxt, .framer-8oTGX .framer-12plq2w, .framer-8oTGX .framer-1jidnd, .framer-8oTGX .framer-t34zjs, .framer-8oTGX .framer-1ua912k, .framer-8oTGX .framer-1r2r340, .framer-8oTGX .framer-14lbnl9, .framer-8oTGX .framer-rxjvtx { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-8oTGX .framer-1na1lp3, .framer-8oTGX .framer-18lf632, .framer-8oTGX .framer-1b8b2zk, .framer-8oTGX .framer-6h9606, .framer-8oTGX .framer-wddps5, .framer-8oTGX .framer-1in7bsp, .framer-8oTGX .framer-1vdw6aw, .framer-8oTGX .framer-f3n880, .framer-8oTGX .framer-19uuvgo, .framer-8oTGX .framer-6f46g7, .framer-8oTGX .framer-1gb7i7o, .framer-8oTGX .framer-1phu0c4, .framer-8oTGX .framer-1pgo538, .framer-8oTGX .framer-1b3vrjb, .framer-8oTGX .framer-1s0cqaj, .framer-8oTGX .framer-1hl1f9y, .framer-8oTGX .framer-wcc14v, .framer-8oTGX .framer-17008yl, .framer-8oTGX .framer-14w7ol5, .framer-8oTGX .framer-1od3ggw, .framer-8oTGX .framer-bfmyzg, .framer-8oTGX .framer-1cdoxjh, .framer-8oTGX .framer-1tjbxi9, .framer-8oTGX .framer-1kvuj4m, .framer-8oTGX .framer-w4m2vv, .framer-8oTGX .framer-tzb5cl, .framer-8oTGX .framer-1y5u3ya { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8oTGX .framer-4ftin9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; padding: 30px; position: relative; width: 1px; }\",\".framer-8oTGX .framer-n9t5z7, .framer-8oTGX .framer-1uqg8gr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-lhcdkn { flex: none; height: 351px; left: calc(50.00000000000002% - 400px / 2); overflow: hidden; position: absolute; top: 324px; width: 400px; z-index: 1; }\",\".framer-8oTGX .framer-1iczuyw { aspect-ratio: 1.141025641025641 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 351px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 400px; z-index: 1; }\",\".framer-8oTGX .framer-1x34e2j-container { aspect-ratio: 1.6 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 163px); left: 50%; position: absolute; top: 49%; width: 260px; z-index: 1; }\",\".framer-8oTGX .framer-1mrc5zx, .framer-8oTGX .framer-2rotjr { aspect-ratio: 1.141025641025641 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 350px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 400px; z-index: 1; }\",\".framer-8oTGX .framer-18irmya { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 20px 100px 20px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-mjrxfs, .framer-8oTGX .framer-fodcc1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8oTGX .framer-1g3d5fr, .framer-8oTGX .framer-1m040dd, .framer-8oTGX .framer-1t4174n, .framer-8oTGX .framer-1vhnc5b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 1px; }\",\".framer-8oTGX .framer-1npafs1 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8oTGX .framer-1qpzc8 { flex: none; gap: 20px; height: 507px; overflow: hidden; position: relative; width: 339px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8oTGX .framer-d1ie8-container { flex: none; height: 500px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-xo3aev, .framer-8oTGX .framer-9f5bd1, .framer-8oTGX .framer-zvwf5y { align-content: center; align-items: center; aspect-ratio: 2.3998929336188435 / 1; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 500px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-8oTGX .framer-szx6vs { 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: 90%; overflow: hidden; padding: 20px; position: relative; width: 500px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8oTGX .framer-b80v1s, .framer-8oTGX .framer-mc0rc8, .framer-8oTGX .framer-1vye4k3, .framer-8oTGX .framer-m05en2, .framer-8oTGX .framer-120t029, .framer-8oTGX .framer-1bcenau, .framer-8oTGX .framer-11lug10, .framer-8oTGX .framer-1yvo7p { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8oTGX .framer-b2cmce, .framer-8oTGX .framer-5ou84z { 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: 90%; overflow: hidden; padding: 20px 40px 20px 40px; position: relative; width: 500px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8oTGX .framer-16s3zhg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-1vzzral { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 100px 0px 36px 0px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-9b8l6d { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-8oTGX .framer-pczn8j { flex: none; height: auto; max-width: 100%; min-width: 300px; overflow: visible; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-8oTGX .framer-1hl32ea { display: grid; flex: none; gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-1y1mbzd, .framer-8oTGX .framer-39ynni, .framer-8oTGX .framer-11bien3 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-cv0kt5, .framer-8oTGX .framer-rt0yzx, .framer-8oTGX .framer-8ljn1z { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 600px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 600px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8oTGX .framer-7vb2pj, .framer-8oTGX .framer-rumfmp, .framer-8oTGX .framer-1c9f944 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-5c2yb0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-m8l8fm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8oTGX .framer-13jajj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 880px; }\",\".framer-8oTGX .framer-4w87w2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-15ngzy8 { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8oTGX .framer-kdes6g, .framer-8oTGX .framer-1vo3ylq { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8oTGX .framer-1n5opi8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-gco9wf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8oTGX .framer-1y2l5vw, .framer-8oTGX .framer-8a713m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 507px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 339px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8oTGX .framer-1i9d7rq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8oTGX .framer-1c4qb65 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 20px 100px 20px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-16l3jws { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8oTGX .framer-c96icl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8oTGX .framer-s4uzyq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: center; max-height: 500px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-5wroi8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 40px 20px 40px; position: relative; width: 960px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8oTGX .framer-s134l5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-6crp57 { 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: 1200px; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-bazypd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 20px 40px 20px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-3gsaqy, .framer-8oTGX .framer-i4vlq0, .framer-8oTGX .framer-ys3vxi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-brpzx5, .framer-8oTGX .framer-q2b6zj, .framer-8oTGX .framer-pm23o2, .framer-8oTGX .framer-bghvu0, .framer-8oTGX .framer-sw0zoo, .framer-8oTGX .framer-1epvs2z, .framer-8oTGX .framer-1iuk07i, .framer-8oTGX .framer-14y9x7q, .framer-8oTGX .framer-1toyxxr, .framer-8oTGX .framer-1oponop, .framer-8oTGX .framer-6skbkc, .framer-8oTGX .framer-vdehj0, .framer-8oTGX .framer-1kxe503, .framer-8oTGX .framer-7kdfe1, .framer-8oTGX .framer-fjw3fp, .framer-8oTGX .framer-jpa0yz, .framer-8oTGX .framer-k7nfp, .framer-8oTGX .framer-4ufecy, .framer-8oTGX .framer-1g5fbqe { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 191px; justify-content: flex-start; padding: 0px 0px 24px 32px; position: relative; width: 455px; }\",\".framer-8oTGX .framer-1jr5hd7, .framer-8oTGX .framer-tf6513, .framer-8oTGX .framer-9dr33b, .framer-8oTGX .framer-1ovaa3i, .framer-8oTGX .framer-1tddwvs, .framer-8oTGX .framer-1yhqs4, .framer-8oTGX .framer-1l8weac, .framer-8oTGX .framer-kxy4lw, .framer-8oTGX .framer-111aytq, .framer-8oTGX .framer-1e1wwcp, .framer-8oTGX .framer-133zycd, .framer-8oTGX .framer-8rmaoo, .framer-8oTGX .framer-1d5gzyf, .framer-8oTGX .framer-1eecnd, .framer-8oTGX .framer-1mdzv5k, .framer-8oTGX .framer-zwqoiw, .framer-8oTGX .framer-1k4ylj6, .framer-8oTGX .framer-1syq7cv, .framer-8oTGX .framer-zg15az { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8oTGX .framer-158vle3, .framer-8oTGX .framer-1aui8lc { flex: none; height: 24px; overflow: visible; position: relative; width: 100%; }\",\".framer-8oTGX .framer-1t72foo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-8oTGX .framer-gafboy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1px; }\",\".framer-8oTGX .framer-cdz55 { flex: 1 0 0px; height: 300px; overflow: hidden; position: relative; width: 1px; }\",\".framer-8oTGX .framer-17kydlj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; left: -200px; min-height: 100px; overflow: hidden; padding: 0px; position: absolute; right: -160px; top: -150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8oTGX.framer-v-15koec8.framer-lopsev { width: 810px; }\",\".framer-8oTGX.framer-v-15koec8 .framer-10t5ux7, .framer-8oTGX.framer-v-pcw1mb .framer-10t5ux7, .framer-8oTGX.framer-v-pcw1mb .framer-13jajj { width: 100%; }\",\".framer-8oTGX.framer-v-15koec8 .framer-1gwjrg2, .framer-8oTGX.framer-v-pcw1mb .framer-1gwjrg2 { flex: 1 0 0px; max-width: 100%; width: 1px; }\",\".framer-8oTGX.framer-v-15koec8 .framer-16s3zhg { padding: 0px 20px 0px 20px; }\",\".framer-8oTGX.framer-v-15koec8 .framer-cv0kt5, .framer-8oTGX.framer-v-15koec8 .framer-rt0yzx, .framer-8oTGX.framer-v-15koec8 .framer-8ljn1z { height: var(--framer-aspect-ratio-supported, 400px); width: 400px; }\",\".framer-8oTGX.framer-v-15koec8 .framer-m8l8fm, .framer-8oTGX.framer-v-15koec8 .framer-5wroi8, .framer-8oTGX.framer-v-pcw1mb .framer-m8l8fm, .framer-8oTGX.framer-v-pcw1mb .framer-5wroi8 { width: 80%; }\",\".framer-8oTGX.framer-v-15koec8 .framer-13jajj { width: min-content; }\",\".framer-8oTGX.framer-v-15koec8 .framer-m05en2 { white-space: pre; width: auto; }\",\".framer-8oTGX.framer-v-15koec8 .framer-120t029 { align-self: stretch; width: auto; }\",\".framer-8oTGX.framer-v-pcw1mb.framer-lopsev { width: 390px; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-1b1axos { bottom: 100px; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-n90fuu { padding: 100px 20px 50px 20px; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-e44hfa, .framer-8oTGX.framer-v-pcw1mb .framer-18irmya { flex-direction: column; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-wd0tdv, .framer-8oTGX.framer-v-pcw1mb .framer-1oulr0w { align-self: unset; flex: none; height: min-content; width: 100%; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-4ftin9 { flex: none; width: 100%; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-mjrxfs, .framer-8oTGX.framer-v-pcw1mb .framer-fodcc1 { flex: none; order: 0; width: 100%; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-1g3d5fr, .framer-8oTGX.framer-v-pcw1mb .framer-16s3zhg { padding: 20px; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-1npafs1 { align-self: unset; flex: none; height: min-content; justify-content: center; order: 1; width: 100%; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-1hl32ea { gap: 48px; grid-template-columns: repeat(1, minmax(200px, 1fr)); padding: 0px; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-cv0kt5, .framer-8oTGX.framer-v-pcw1mb .framer-rt0yzx, .framer-8oTGX.framer-v-pcw1mb .framer-8ljn1z { height: var(--framer-aspect-ratio-supported, 350px); max-width: 500px; min-width: 300px; width: 100%; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-4w87w2 { padding: 100px 20px 0px 20px; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-1n5opi8 { flex-direction: column; padding: 0px 20px 50px 20px; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-gco9wf { flex: none; height: min-content; order: 0; width: 100%; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-1y2l5vw { aspect-ratio: 0.6686390532544378 / 1; height: var(--framer-aspect-ratio-supported, 337px); width: 225px; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-1i9d7rq { flex: none; height: min-content; order: 1; width: 100%; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-1c4qb65 { flex-direction: column; gap: 20px; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-16l3jws, .framer-8oTGX.framer-v-pcw1mb .framer-cdz55 { flex: none; order: 1; width: 100%; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-c96icl { flex: none; justify-content: flex-start; order: 0; width: 100%; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-8a713m { height: 337px; width: 226px; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-1t72foo { height: min-content; padding: 50px 0px 50px 0px; }\",\".framer-8oTGX.framer-v-pcw1mb .framer-gafboy { flex-direction: column; height: min-content; padding: 20px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7667\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fjMTTctjt\":{\"layout\":[\"fixed\",\"auto\"]},\"pYiKVwPva\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"I_WJ7uyo6\":\"heroTitle\",\"FXinI5m8W\":\"heroDescription\",\"LZU3pApDZ\":\"heroCta\",\"scGpDmdNM\":\"testimonial1Body\",\"mESojEfdP\":\"testimonial2Body\",\"RGZ5IxUJ6\":\"testimonial3Body\",\"REKaNhOiF\":\"sectionIntroTitle\",\"j0q6uBt82\":\"sectionIntroDescription\",\"Hlj0_UYTh\":\"slideshowFeatures1\",\"QmE2wyAO2\":\"slideshowFeatures2\",\"LtK03naV9\":\"slideshowFeatures3\",\"UkQkN24gD\":\"reasonTitle\",\"hFCMtlZ5Z\":\"reasonDescription\",\"R9_vdye_b\":\"feature1Title\",\"ABsutsTgv\":\"feature1Description\",\"MChWxu5QN\":\"feature2Title\",\"LXtGcJda2\":\"feature2Description\",\"uG2bDhp9z\":\"feature3Title\",\"yLZeCWgQY\":\"feature3Description\",\"uwqicX4UW\":\"ekitTitle\",\"MCHF3xgMy\":\"ekitDescription\",\"qCjJN3fZC\":\"communityTitle\",\"rWYZeBBY3\":\"communityDescription\",\"nVp6LX6O4\":\"feature4Header\",\"EbsyIRGiB\":\"feature4Title\",\"MStDol66i\":\"feature4Description\",\"lrYdpLf_H\":\"feature5Header\",\"PGQHZE5GL\":\"feature5Title\",\"PGGEzkEEh\":\"feature5Description\",\"RZrtU2yB9\":\"fingerDrummingTitle\",\"plMgxyw5p\":\"fingerDrummingDescription\",\"OC2tGKWi3\":\"coursesTitle\",\"FcBaMAH8S\":\"coursesDescription\",\"FkcSTAbBg\":\"coursesBeginner\",\"RIkZGe2ka\":\"coursesIntermediate\",\"RyKcN0HKc\":\"coursesAdvanced\",\"FsRfqDTKX\":\"footerCtaTitle\",\"rktDESxpo\":\"footerCtaDescription\",\"l5oN9PKoH\":\"footerCtaButton\",\"oENRa5y2U\":\"courseBeginnerAbsoluteBeginner\",\"B3T597XQ5\":\"courseBeginnerSingerSongwriter\",\"V9u5rq9N4\":\"courseBeginnerHipHop\",\"yewNjXgqK\":\"courseBeginnerPop\",\"JzDXczXLi\":\"courseBeginnerSoul\",\"Qji0tXukv\":\"courseBeginnerRock\",\"fjFvjPmLa\":\"courseBeginnerJazz\",\"dlayhliFq\":\"courseBeginnerFundamentals\",\"s1p7HN7wF\":\"courseIntermediateFundamentals\",\"xktYW38Nl\":\"courseIntermediateBlues\",\"lLgj_2Dmy\":\"courseIntermediateJazz\",\"y9mcDpie0\":\"courseIntermediateKPop\",\"dLpExZqGw\":\"courseIntermediateRock\",\"iBHfhGqbo\":\"courseIntermediateAlternative\",\"HY4USG7c9\":\"courseAdvancedFunk\",\"pfxolJcrs\":\"courseAdvancedDrumNBass\",\"IPyGkv4Vo\":\"courseAdvancedBlues\",\"rUsKieCIS\":\"courseAdvancedJazz\",\"XTiH3EAGb\":\"courseAdvancedFundamentals\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerQLWSC5PrS=withCSS(Component,css,\"framer-8oTGX\");export default FramerQLWSC5PrS;FramerQLWSC5PrS.displayName=\"Home\";FramerQLWSC5PrS.defaultProps={height:7667,width:1200};addPropertyControls(FramerQLWSC5PrS,{variant:{options:[\"JRe_v9RrL\",\"fjMTTctjt\",\"pYiKVwPva\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},I_WJ7uyo6:{defaultValue:\"Boost Your Drumming Game with Beatlii\",title:\"hero-title\",type:ControlType.String},FXinI5m8W:{defaultValue:\"Learn to play the drums with our fun and exciting learning solution.\",displayTextArea:false,title:\"hero-description\",type:ControlType.String},LZU3pApDZ:{defaultValue:\"Get Started\",displayTextArea:false,title:\"hero-cta\",type:ControlType.String},scGpDmdNM:{defaultValue:\"Ever since my 8-year-old son started playing with Beatlii, I don\u2019t have to encourage him anymore to go and practice. For him, it\u2019s like playing a game, which is very good for him. It's a lot of fun!\",displayTextArea:false,title:\"testimonial-1-body\",type:ControlType.String},mESojEfdP:{defaultValue:\"Beatlii is perfect for newbies like me. The note highway helps me learn, and after a couple of lessons in the absolute beginners' course, I already noticed a difference. Looking forward to starting the next course.\",displayTextArea:false,title:\"testimonial-2-body\",type:ControlType.String},RGZ5IxUJ6:{defaultValue:\"Staying motivated is easy with Beatlii. It tracks my drumming days, and the app tells me how I progress, making practice time super enjoyable.\",displayTextArea:false,title:\"testimonial-3-body\",type:ControlType.String},REKaNhOiF:{defaultValue:\"A new way to learn, have fun, and keep your groove in drumming\",displayTextArea:false,title:\"section-intro-title\",type:ControlType.String},j0q6uBt82:{defaultValue:'<p>Beatlii offers an exciting way to learn how to play the drums. Simply connect your electronic drum kit and receive instant feedback on your performance. </p><p><br class=\"trailing-break\"></p><p>Whether you\u2019re a beginner or a seasoned drummer, our app provides a dynamic and enjoyable learning experience designed just for you.</p>',description:\"\",title:\"section-intro-description\",type:ControlType.RichText},Hlj0_UYTh:{defaultValue:\"<h2>Instant Feedback - Track Your Progress</h2><h2>Share With Your Friends</h2>\",title:\"slideshow-features-1\",type:ControlType.RichText},QmE2wyAO2:{defaultValue:\"<h2>Over 100+ Songs 60+ </h2><h2>Courses from Rock to Jazz</h2>\",title:\"slideshow-features-2\",type:ControlType.RichText},LtK03naV9:{defaultValue:\"<h2>Drumming Lessons</h2><h2>Created by Professional Drummers</h2>\",title:\"slideshow-features-3\",type:ControlType.RichText},UkQkN24gD:{defaultValue:\"Why Beatlii?\",displayTextArea:false,title:\"reason-title\",type:ControlType.String},hFCMtlZ5Z:{defaultValue:\"Discover the flexibility of our app! Seamlessly switch between your computer and mobile devices with ease. Whether you\u2019re a Windows, macOS, iOS, or Android user, we\u2019ve got you covered.\",displayTextArea:false,title:\"reason-description\",type:ControlType.String},R9_vdye_b:{defaultValue:\"Note Highway\",displayTextArea:false,title:\"feature-1-title\",type:ControlType.String},ABsutsTgv:{defaultValue:\"Level up your drumming skills with our engaging gamified approach! Hit the notes as they flow down and receive instant feedback on your performance.\",displayTextArea:false,title:\"feature-1-description\",type:ControlType.String},MChWxu5QN:{defaultValue:\"Sheet Music\",displayTextArea:false,title:\"feature-2-title\",type:ControlType.String},LXtGcJda2:{defaultValue:\"For those who prefer a more traditional learning experience, this feature allows you to play all the songs using traditional music notation.\",displayTextArea:false,title:\"feature-2-description\",type:ControlType.String},uG2bDhp9z:{defaultValue:\"Activity\",displayTextArea:false,title:\"feature-3-title\",type:ControlType.String},yLZeCWgQY:{defaultValue:\"The app takes care of all the heavy lifting and provides you with a summary of your progress over time.\",displayTextArea:false,title:\"feature-3-description\",type:ControlType.String},uwqicX4UW:{defaultValue:\"Compatible with any Electronic Drum Kit\",displayTextArea:false,title:\"ekit-title\",type:ControlType.String},MCHF3xgMy:{defaultValue:\"BEATLII SEAMLESS CONNECTION PROCESS MAKES IT EASY TO CONNECT TO YOUR ELECTRONIC DRUM KIT\",displayTextArea:false,title:\"ekit-description\",type:ControlType.String},qCjJN3fZC:{defaultValue:\"Discover Our Exciting New Community Features\",displayTextArea:false,title:\"community-title\",type:ControlType.String},rWYZeBBY3:{defaultValue:\"Immerse yourself in Beatlii\u2019s vibrant drumming community! Climb the leaderboard, connect with friends, and proudly share your drumming achievements. Engage in friendly competition with drummers from around the globe.\",displayTextArea:false,title:\"community-description\",type:ControlType.String},nVp6LX6O4:{defaultValue:\"LEADERBOARDS\",displayTextArea:false,title:\"feature-4-header\",type:ControlType.String},EbsyIRGiB:{defaultValue:\"Compete with drummers worldwide\",displayTextArea:false,title:\"feature-4-title\",type:ControlType.String},MStDol66i:{defaultValue:\"Compete, climb, and conquer! Challenge yourself and other users to reach the top of the rankings.\",displayTextArea:false,title:\"feature-4-description\",type:ControlType.String},lrYdpLf_H:{defaultValue:\"FRIENDS\",displayTextArea:false,title:\"feature-5-header\",type:ControlType.String},PGQHZE5GL:{defaultValue:\"Connect with your friends and favourite drummers\",displayTextArea:false,title:\"feature-5-title\",type:ControlType.String},PGGEzkEEh:{defaultValue:\"Connect with your friends and favorite drummers, discover the songs they\u2019re jamming to, and explore the achievements they\u2019ve unlocked.\",displayTextArea:false,title:\"feature-5-description\",type:ControlType.String},RZrtU2yB9:{defaultValue:\"Create Beats Right at Your Fingertips\",displayTextArea:false,title:\"finger-drumming-title\",type:ControlType.String},plMgxyw5p:{defaultValue:\"WITH OUR FINGER DRUMMING FEATURE, YOU CAN PRACTICE OUR COURSES ANYTIME, ANYWHERE\",displayTextArea:false,title:\"finger-drumming-description\",type:ControlType.String},OC2tGKWi3:{defaultValue:\"Courses For All Skill Levels\",displayTextArea:false,title:\"courses-title\",type:ControlType.String},FcBaMAH8S:{defaultValue:\"Dive into a diverse selection of courses created by professional drummers across various music genres. From rock to jazz, hip-hop to blues, our expert-curated lessons cater to drummers of all tastes and skill levels.\",displayTextArea:false,title:\"courses-description\",type:ControlType.String},FkcSTAbBg:{defaultValue:\"BEGINNER\",displayTextArea:false,title:\"courses-beginner\",type:ControlType.String},RIkZGe2ka:{defaultValue:\"INTERMEDIATE\",displayTextArea:false,title:\"courses-intermediate\",type:ControlType.String},RyKcN0HKc:{defaultValue:\"ADVANCED\",displayTextArea:false,title:\"courses-advanced\",type:ControlType.String},FsRfqDTKX:{defaultValue:\"Ready to play some drums?\",displayTextArea:false,title:\"footer-cta-title\",type:ControlType.String},rktDESxpo:{defaultValue:\"Discover the new app that instantly transforms your electronic drum kit into a powerful music teacher.\",displayTextArea:false,title:\"footer-cta-description\",type:ControlType.String},l5oN9PKoH:{defaultValue:\"Start Your 7-Day Trial\",displayTextArea:false,title:\"footer-cta-button\",type:ControlType.String},oENRa5y2U:{defaultValue:\"Absolute Beginners\",displayTextArea:false,title:\"course-beginner-absolute-beginner\",type:ControlType.String},B3T597XQ5:{defaultValue:\"Beginner: Singer-Songwriter\",displayTextArea:false,title:\"course-beginner-singer-songwriter\",type:ControlType.String},V9u5rq9N4:{defaultValue:\"Beginner: Hip-Hop\",displayTextArea:false,title:\"course-beginner-hip-hop\",type:ControlType.String},yewNjXgqK:{defaultValue:\"Beginner: Pop\",displayTextArea:false,title:\"course-beginner-pop\",type:ControlType.String},JzDXczXLi:{defaultValue:\"Beginner: Soul\",displayTextArea:false,title:\"course-beginner-soul\",type:ControlType.String},Qji0tXukv:{defaultValue:\"Beginner: Rock\",displayTextArea:false,title:\"course-beginner-rock\",type:ControlType.String},fjFvjPmLa:{defaultValue:\"Beginner: Jazz\",displayTextArea:false,title:\"course-beginner-jazz\",type:ControlType.String},dlayhliFq:{defaultValue:\"Beginner: Fundamentals\",displayTextArea:false,title:\"course-beginner-fundamentals\",type:ControlType.String},s1p7HN7wF:{defaultValue:\"Intermediate: Fundamentals\",displayTextArea:false,title:\"course-intermediate-fundamentals\",type:ControlType.String},xktYW38Nl:{defaultValue:\"Intermediate: Blues\",displayTextArea:false,title:\"course-intermediate-blues\",type:ControlType.String},lLgj_2Dmy:{defaultValue:\"Intermediate: Jazz\",displayTextArea:false,title:\"course-intermediate-jazz\",type:ControlType.String},y9mcDpie0:{defaultValue:\"Intermediate: K-Pop\",displayTextArea:false,title:\"course-intermediate-k-pop\",type:ControlType.String},dLpExZqGw:{defaultValue:\"Intermediate: Rock\",displayTextArea:false,title:\"course-intermediate-rock\",type:ControlType.String},iBHfhGqbo:{defaultValue:\"Intermediate: Alternative\",displayTextArea:false,title:\"course-intermediate-alternative\",type:ControlType.String},HY4USG7c9:{defaultValue:\"Advanced: Funk\",displayTextArea:false,title:\"course-advanced-funk\",type:ControlType.String},pfxolJcrs:{defaultValue:\"Advanced: Drum n Bass\",displayTextArea:false,title:\"course-advanced-drum-n-bass\",type:ControlType.String},IPyGkv4Vo:{defaultValue:\"Advanced: Blues\",displayTextArea:false,title:\"course-advanced-blues\",type:ControlType.String},rUsKieCIS:{defaultValue:\"Advanced: Jazz\",displayTextArea:false,title:\"course-advanced-jazz\",type:ControlType.String},XTiH3EAGb:{defaultValue:\"Advanced: Fundamentals\",displayTextArea:false,title:\"course-advanced-fundamentals\",type:ControlType.String}});addFonts(FramerQLWSC5PrS,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Work Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/VA23FCGWQ2ZGKFEM75LQVBDIR5XCXJI3/V5QYJZB23L2PDOZTWQY5F3I5R2B3UGCD/XUL6BSI7XTIWXDHGTQPLNOWHZU5CTO77.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...VideoFonts,...PrimaryButtonFonts,...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...componentPresets.fonts?.[\"oDaoFOLRB\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"oDaoFOLRB\"]):[],...componentPresets.fonts?.[\"T3VIVtZcw\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"T3VIVtZcw\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQLWSC5PrS\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"7667\",\"framerVariables\":\"{\\\"I_WJ7uyo6\\\":\\\"heroTitle\\\",\\\"FXinI5m8W\\\":\\\"heroDescription\\\",\\\"LZU3pApDZ\\\":\\\"heroCta\\\",\\\"scGpDmdNM\\\":\\\"testimonial1Body\\\",\\\"mESojEfdP\\\":\\\"testimonial2Body\\\",\\\"RGZ5IxUJ6\\\":\\\"testimonial3Body\\\",\\\"REKaNhOiF\\\":\\\"sectionIntroTitle\\\",\\\"j0q6uBt82\\\":\\\"sectionIntroDescription\\\",\\\"Hlj0_UYTh\\\":\\\"slideshowFeatures1\\\",\\\"QmE2wyAO2\\\":\\\"slideshowFeatures2\\\",\\\"LtK03naV9\\\":\\\"slideshowFeatures3\\\",\\\"UkQkN24gD\\\":\\\"reasonTitle\\\",\\\"hFCMtlZ5Z\\\":\\\"reasonDescription\\\",\\\"R9_vdye_b\\\":\\\"feature1Title\\\",\\\"ABsutsTgv\\\":\\\"feature1Description\\\",\\\"MChWxu5QN\\\":\\\"feature2Title\\\",\\\"LXtGcJda2\\\":\\\"feature2Description\\\",\\\"uG2bDhp9z\\\":\\\"feature3Title\\\",\\\"yLZeCWgQY\\\":\\\"feature3Description\\\",\\\"uwqicX4UW\\\":\\\"ekitTitle\\\",\\\"MCHF3xgMy\\\":\\\"ekitDescription\\\",\\\"qCjJN3fZC\\\":\\\"communityTitle\\\",\\\"rWYZeBBY3\\\":\\\"communityDescription\\\",\\\"nVp6LX6O4\\\":\\\"feature4Header\\\",\\\"EbsyIRGiB\\\":\\\"feature4Title\\\",\\\"MStDol66i\\\":\\\"feature4Description\\\",\\\"lrYdpLf_H\\\":\\\"feature5Header\\\",\\\"PGQHZE5GL\\\":\\\"feature5Title\\\",\\\"PGGEzkEEh\\\":\\\"feature5Description\\\",\\\"RZrtU2yB9\\\":\\\"fingerDrummingTitle\\\",\\\"plMgxyw5p\\\":\\\"fingerDrummingDescription\\\",\\\"OC2tGKWi3\\\":\\\"coursesTitle\\\",\\\"FcBaMAH8S\\\":\\\"coursesDescription\\\",\\\"FkcSTAbBg\\\":\\\"coursesBeginner\\\",\\\"RIkZGe2ka\\\":\\\"coursesIntermediate\\\",\\\"RyKcN0HKc\\\":\\\"coursesAdvanced\\\",\\\"FsRfqDTKX\\\":\\\"footerCtaTitle\\\",\\\"rktDESxpo\\\":\\\"footerCtaDescription\\\",\\\"l5oN9PKoH\\\":\\\"footerCtaButton\\\",\\\"oENRa5y2U\\\":\\\"courseBeginnerAbsoluteBeginner\\\",\\\"B3T597XQ5\\\":\\\"courseBeginnerSingerSongwriter\\\",\\\"V9u5rq9N4\\\":\\\"courseBeginnerHipHop\\\",\\\"yewNjXgqK\\\":\\\"courseBeginnerPop\\\",\\\"JzDXczXLi\\\":\\\"courseBeginnerSoul\\\",\\\"Qji0tXukv\\\":\\\"courseBeginnerRock\\\",\\\"fjFvjPmLa\\\":\\\"courseBeginnerJazz\\\",\\\"dlayhliFq\\\":\\\"courseBeginnerFundamentals\\\",\\\"s1p7HN7wF\\\":\\\"courseIntermediateFundamentals\\\",\\\"xktYW38Nl\\\":\\\"courseIntermediateBlues\\\",\\\"lLgj_2Dmy\\\":\\\"courseIntermediateJazz\\\",\\\"y9mcDpie0\\\":\\\"courseIntermediateKPop\\\",\\\"dLpExZqGw\\\":\\\"courseIntermediateRock\\\",\\\"iBHfhGqbo\\\":\\\"courseIntermediateAlternative\\\",\\\"HY4USG7c9\\\":\\\"courseAdvancedFunk\\\",\\\"pfxolJcrs\\\":\\\"courseAdvancedDrumNBass\\\",\\\"IPyGkv4Vo\\\":\\\"courseAdvancedBlues\\\",\\\"rUsKieCIS\\\":\\\"courseAdvancedJazz\\\",\\\"XTiH3EAGb\\\":\\\"courseAdvancedFundamentals\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fjMTTctjt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pYiKVwPva\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QLWSC5PrS.map"],
  "mappings": "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",
  "names": ["noopReturn", "isFunction", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "L", "T", "M", "e", "k", "noopReturn", "B", "asTransformCssVar", "j", "T", "L", "t", "P", "j", "testAnimation", "e", "t", "C", "R", "H", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "U", "spring", "q", "glide", "K", "inView$1", "resolveElements", "onIntersectionChange", "isFunction", "G", "_", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "Z", "X", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "ae", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "ce", "le", "onPointerUp", "window", "onPointerDown", "fe", "ue", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "index", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "VideoFonts", "getFonts", "Video", "PrimaryButtonFonts", "PrimaryButton", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "communityDescription", "communityTitle", "courseAdvancedBlues", "courseAdvancedDrumNBass", "courseAdvancedFundamentals", "courseAdvancedFunk", "courseAdvancedJazz", "courseBeginnerAbsoluteBeginner", "courseBeginnerFundamentals", "courseBeginnerHipHop", "courseBeginnerJazz", "courseBeginnerPop", "courseBeginnerRock", "courseBeginnerSingerSongwriter", "courseBeginnerSoul", "courseIntermediateAlternative", "courseIntermediateBlues", "courseIntermediateFundamentals", "courseIntermediateJazz", "courseIntermediateKPop", "courseIntermediateRock", "coursesAdvanced", "coursesBeginner", "coursesDescription", "coursesIntermediate", "coursesTitle", "ekitDescription", "ekitTitle", "feature1Description", "feature1Title", "feature2Description", "feature2Title", "feature3Description", "feature3Title", "feature4Description", "feature4Header", "feature4Title", "feature5Description", "feature5Header", "feature5Title", "fingerDrummingDescription", "fingerDrummingTitle", "footerCtaButton", "footerCtaDescription", "footerCtaTitle", "height", "heroCta", "heroDescription", "heroTitle", "id", "reasonDescription", "reasonTitle", "sectionIntroDescription", "sectionIntroTitle", "slideshowFeatures1", "slideshowFeatures2", "slideshowFeatures3", "testimonial1Body", "testimonial2Body", "testimonial3Body", "width", "props", "u", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "I_WJ7uyo6", "FXinI5m8W", "LZU3pApDZ", "scGpDmdNM", "mESojEfdP", "RGZ5IxUJ6", "REKaNhOiF", "j0q6uBt82", "Hlj0_UYTh", "QmE2wyAO2", "LtK03naV9", "UkQkN24gD", "hFCMtlZ5Z", "R9_vdye_b", "ABsutsTgv", "MChWxu5QN", "LXtGcJda2", "uG2bDhp9z", "yLZeCWgQY", "uwqicX4UW", "MCHF3xgMy", "qCjJN3fZC", "rWYZeBBY3", "nVp6LX6O4", "EbsyIRGiB", "MStDol66i", "lrYdpLf_H", "PGQHZE5GL", "PGGEzkEEh", "RZrtU2yB9", "plMgxyw5p", "OC2tGKWi3", "FcBaMAH8S", "FkcSTAbBg", "RIkZGe2ka", "RyKcN0HKc", "FsRfqDTKX", "rktDESxpo", "l5oN9PKoH", "oENRa5y2U", "B3T597XQ5", "V9u5rq9N4", "yewNjXgqK", "JzDXczXLi", "Qji0tXukv", "fjFvjPmLa", "dlayhliFq", "s1p7HN7wF", "xktYW38Nl", "lLgj_2Dmy", "y9mcDpie0", "dLpExZqGw", "iBHfhGqbo", "HY4USG7c9", "pfxolJcrs", "IPyGkv4Vo", "rUsKieCIS", "XTiH3EAGb", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "SVG", "Image2", "getLoadingLazyAtYPosition", "ComponentPresetsProvider", "css", "FramerQLWSC5PrS", "withCSS", "QLWSC5PrS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset"]
}
