{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/ukZfzbZYVXSSFTRHkF3z/xa5iDeFeHEYrP0bjTZlT/NgBNPzGQ8.js", "ssg:https://framerusercontent.com/modules/uYsulEWkdh1QHAKEHokt/Vc1I6m83BODjE842yAUk/K1bgQdfeH.js", "ssg:https://framerusercontent.com/modules/btZ58lG5vf6lpUr7fbaX/Op6RVPoG4BaNYT3rEufx/qpOmbq1B6.js", "ssg:https://framerusercontent.com/modules/bwWSjuGpZwkgLEhfgZnT/Gg64GfrcnhAyxBS5fG74/nvG9gPmAZ.js", "ssg:https://framerusercontent.com/modules/fwUT5XcYkDrodhIHSJET/G5nTrDmamsfP0W4E7nVF/NO_388dZL.js", "ssg:https://framerusercontent.com/modules/EzclilhlngpC09Vg69sZ/TuqpK08Ax6EDR2rA8MRu/uYpUXAAs2.js", "ssg:https://framerusercontent.com/modules/xTbv5voxuqT6obFu7yev/s9vPX3ES07WdeN1uiF9O/v4mz2wRnd.js", "ssg:https://framerusercontent.com/modules/zAD0R3hw2LsWVTSPGPIH/s3iYd7y9oab6f14FWYn2/elP2a6llk.js", "ssg:https://framerusercontent.com/modules/vy7pZ52BtPmJ6Ib3JMLF/5h3spcKbZc7iJMBb4aXo/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (cf240c2)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Recoleta Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Recoleta Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/7QVVQEYm0B0wP5WCBgAzB7oY1i4.woff2\"}]}];export const css=['.framer-lCmqF .framer-styles-preset-my0vwh:not(.rich-text-wrapper), .framer-lCmqF .framer-styles-preset-my0vwh.rich-text-wrapper h6 { --framer-font-family: \"Recoleta Bold\", \"Recoleta Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-716e3033-8a4f-407f-b275-acae881558a8, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-lCmqF\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/wg9vh8c4ZsbIUilLgMz6/KugdpSghsr4gJtawtxUq/dxCeqIlTM.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ukZfzbZYVXSSFTRHkF3z/xa5iDeFeHEYrP0bjTZlT/NgBNPzGQ8.js\";const enabledGestures={d_Sb5vpj9:{hover:true,pressed:true},kk0F4mKwD:{hover:true,pressed:true},pOfv18qXm:{hover:true,pressed:true},Qscw2LlOg:{hover:true,pressed:true},upXZ8C5g2:{hover:true,pressed:true},W1EamOAjo:{hover:true,pressed:true},wEfqofXBy:{hover:true,pressed:true},XZ_6uhNIn:{hover:true,pressed:true}};const cycleOrder=[\"upXZ8C5g2\",\"d_Sb5vpj9\",\"wEfqofXBy\",\"pOfv18qXm\",\"Qscw2LlOg\",\"kk0F4mKwD\",\"XZ_6uhNIn\",\"W1EamOAjo\"];const serializationHash=\"framer-5aCq5\";const variantClassNames={d_Sb5vpj9:\"framer-v-1nmoc26\",kk0F4mKwD:\"framer-v-1a1679i\",pOfv18qXm:\"framer-v-1kmhny5\",Qscw2LlOg:\"framer-v-aqd2q0\",upXZ8C5g2:\"framer-v-1ihxbpy\",W1EamOAjo:\"framer-v-woz4il\",wEfqofXBy:\"framer-v-4uevtf\",XZ_6uhNIn:\"framer-v-2w1d40\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.1,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"upXZ8C5g2\",\"Variant 3\":\"wEfqofXBy\",\"Variant 4\":\"pOfv18qXm\",\"Variant 5\":\"Qscw2LlOg\",\"Variant 6\":\"kk0F4mKwD\",\"Variant 7\":\"XZ_6uhNIn\",\"Variant 8\":\"W1EamOAjo\",\"Variant 9\":\"d_Sb5vpj9\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,bbPUINEcU:link!==null&&link!==void 0?link:props.bbPUINEcU,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"upXZ8C5g2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,bbPUINEcU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"upXZ8C5g2\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:bbPUINEcU,nodeId:\"upXZ8C5g2\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1ihxbpy\",className,classNames)} framer-1lq63ez`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"upXZ8C5g2\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"d_Sb5vpj9-hover\":{\"data-framer-name\":undefined},\"d_Sb5vpj9-pressed\":{\"data-framer-name\":undefined},\"kk0F4mKwD-hover\":{\"data-framer-name\":undefined},\"kk0F4mKwD-pressed\":{\"data-framer-name\":undefined},\"pOfv18qXm-hover\":{\"data-framer-name\":undefined},\"pOfv18qXm-pressed\":{\"data-framer-name\":undefined},\"Qscw2LlOg-hover\":{\"data-framer-name\":undefined},\"Qscw2LlOg-pressed\":{\"data-framer-name\":undefined},\"upXZ8C5g2-hover\":{\"data-framer-name\":undefined},\"upXZ8C5g2-pressed\":{\"data-framer-name\":undefined},\"W1EamOAjo-hover\":{\"data-framer-name\":undefined},\"W1EamOAjo-pressed\":{\"data-framer-name\":undefined},\"wEfqofXBy-hover\":{\"data-framer-name\":undefined},\"wEfqofXBy-pressed\":{\"data-framer-name\":undefined},\"XZ_6uhNIn-hover\":{\"data-framer-name\":undefined},\"XZ_6uhNIn-pressed\":{\"data-framer-name\":undefined},d_Sb5vpj9:{\"data-framer-name\":\"Variant 9\"},kk0F4mKwD:{\"data-framer-name\":\"Variant 6\"},pOfv18qXm:{\"data-framer-name\":\"Variant 4\"},Qscw2LlOg:{\"data-framer-name\":\"Variant 5\"},W1EamOAjo:{\"data-framer-name\":\"Variant 8\"},wEfqofXBy:{\"data-framer-name\":\"Variant 3\"},XZ_6uhNIn:{\"data-framer-name\":\"Variant 7\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-io2oy2\",\"data-framer-name\":\"Black bg\",layoutDependency:layoutDependency,layoutId:\"hsfLFbKZn\",style:{backgroundColor:\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kkak4y\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"ZT6y7BufI\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"var(--token-07b59ed2-9f13-4589-9171-013bf1f6258f, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pw6mgu\",layoutDependency:layoutDependency,layoutId:\"hoRpAM3ce\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+4+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||208)-8-306)/2+0+0)+32+0+29),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JIMKQu2cXbitNJYvkP1XiY8yk4s.png\"},className:\"framer-1dhoqhe\",layoutDependency:layoutDependency,layoutId:\"bw8tRMxcP\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({\"kk0F4mKwD-pressed\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+32+0+29),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JIMKQu2cXbitNJYvkP1XiY8yk4s.png\"}},\"pOfv18qXm-pressed\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||208)-0-306+0+0)+32+0+29),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JIMKQu2cXbitNJYvkP1XiY8yk4s.png\"}},\"Qscw2LlOg-pressed\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+32+0+29),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JIMKQu2cXbitNJYvkP1XiY8yk4s.png\"}},\"upXZ8C5g2-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||208)-0-306)/2+0+0)+32+0+29),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JIMKQu2cXbitNJYvkP1XiY8yk4s.png\"}},\"upXZ8C5g2-pressed\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||208)-0-306+0+0)+32+0+29),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JIMKQu2cXbitNJYvkP1XiY8yk4s.png\"}},\"W1EamOAjo-pressed\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+32+0+29),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JIMKQu2cXbitNJYvkP1XiY8yk4s.png\"}},\"wEfqofXBy-pressed\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+32+0+29),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JIMKQu2cXbitNJYvkP1XiY8yk4s.png\"}},\"XZ_6uhNIn-pressed\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+32+0+29),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JIMKQu2cXbitNJYvkP1XiY8yk4s.png\"}},kk0F4mKwD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+4+32+0+29),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JIMKQu2cXbitNJYvkP1XiY8yk4s.png\"}},Qscw2LlOg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+4+32+0+29),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JIMKQu2cXbitNJYvkP1XiY8yk4s.png\"}},W1EamOAjo:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+4+32+0+29),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JIMKQu2cXbitNJYvkP1XiY8yk4s.png\"}},wEfqofXBy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+4+32+0+29),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JIMKQu2cXbitNJYvkP1XiY8yk4s.png\"}},XZ_6uhNIn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+4+32+0+29),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/JIMKQu2cXbitNJYvkP1XiY8yk4s.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-da03tl\",layoutDependency:layoutDependency,layoutId:\"yXtDOxZtT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-my0vwh\",\"data-styles-preset\":\"NgBNPzGQ8\",style:{\"--framer-text-alignment\":\"left\"},children:\"Sarah M.\"})}),className:\"framer-5gngjk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vspyqaf2N\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kk0F4mKwD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-my0vwh\",\"data-styles-preset\":\"NgBNPzGQ8\",style:{\"--framer-text-alignment\":\"left\"},children:\"Mia S.\"})})},pOfv18qXm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-my0vwh\",\"data-styles-preset\":\"NgBNPzGQ8\",style:{\"--framer-text-alignment\":\"left\"},children:\"Emily R.\"})})},Qscw2LlOg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-my0vwh\",\"data-styles-preset\":\"NgBNPzGQ8\",style:{\"--framer-text-alignment\":\"left\"},children:\"Tom K.\"})})},W1EamOAjo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-my0vwh\",\"data-styles-preset\":\"NgBNPzGQ8\",style:{\"--framer-text-alignment\":\"left\"},children:\"Grace W.\"})})},wEfqofXBy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-my0vwh\",\"data-styles-preset\":\"NgBNPzGQ8\",style:{\"--framer-text-alignment\":\"left\"},children:\"Javier L.\"})})},XZ_6uhNIn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-my0vwh\",\"data-styles-preset\":\"NgBNPzGQ8\",style:{\"--framer-text-alignment\":\"left\"},children:\"Leo V.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21826bad-33ca-443d-a669-8cda848ec595, rgb(48, 76, 137)))\"},children:\"@sarahm\"})}),className:\"framer-10vw3qo\",fonts:[\"FS;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"Dhv6Ic6Ml\",style:{\"--extracted-r6o4lv\":\"var(--token-21826bad-33ca-443d-a669-8cda848ec595, rgb(48, 76, 137))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kk0F4mKwD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21826bad-33ca-443d-a669-8cda848ec595, rgb(48, 76, 137)))\"},children:\"@mias\"})})},pOfv18qXm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21826bad-33ca-443d-a669-8cda848ec595, rgb(48, 76, 137)))\"},children:\"@emilyr\"})})},Qscw2LlOg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21826bad-33ca-443d-a669-8cda848ec595, rgb(48, 76, 137)))\"},children:\"@tomk\"})})},wEfqofXBy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-21826bad-33ca-443d-a669-8cda848ec595, rgb(48, 76, 137)))\"},children:\"@javierl\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7sgbva\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"PGdjQfdEl\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b6elt0\",\"data-framer-name\":\"X logo_2023 (2)\",fill:\"black\",intrinsicHeight:271,intrinsicWidth:300,layoutDependency:layoutDependency,layoutId:\"thvPnoRMb\",svg:'<svg width=\"300\" height=\"271\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M236 0h46L181 115l118 156h-92.6l-72.5-94.8-83 94.8h-46l107-123L-1.1 0h94.9l65.5 86.6zm-16.1 244h25.5L80.4 26H53z\"/></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",children:\"A game-changer for keeping up with seminars. Now I don\u2019t miss a thing!\"})}),className:\"framer-cranmd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GAZkbnAYA\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kk0F4mKwD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",children:\"Fantastic app for digesting complex material quickly.\"})})},pOfv18qXm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",children:\"Clear transcripts and intuitive interface. Can\u2019t recommend it enough!\"})})},Qscw2LlOg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",children:\"Makes revisiting old notes a breeze. Love the playback options!\"})})},W1EamOAjo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",children:\"Perfect for taking my learning on the go without missing details.\"})})},wEfqofXBy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",children:\"Translation feature saved me hours. Super smooth and accurate!\"})})},XZ_6uhNIn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",children:\"Finally an app that keeps up with my learning pace.\"})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5aCq5.framer-1lq63ez, .framer-5aCq5 .framer-1lq63ez { display: block; }\",\".framer-5aCq5.framer-1ihxbpy { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 208px; justify-content: center; overflow: hidden; padding: 4px 0px 4px 0px; position: relative; text-decoration: none; width: 358px; }\",\".framer-5aCq5 .framer-io2oy2 { bottom: 4px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 4px; }\",\".framer-5aCq5 .framer-kkak4y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-5aCq5 .framer-pw6mgu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5aCq5 .framer-1dhoqhe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 48px; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5aCq5 .framer-da03tl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-5aCq5 .framer-5gngjk, .framer-5aCq5 .framer-10vw3qo, .framer-5aCq5 .framer-cranmd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5aCq5 .framer-7sgbva { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 24px; }\",\".framer-5aCq5 .framer-b6elt0 { aspect-ratio: 1.1070110701107012 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5aCq5.framer-1ihxbpy, .framer-5aCq5 .framer-kkak4y, .framer-5aCq5 .framer-pw6mgu, .framer-5aCq5 .framer-1dhoqhe, .framer-5aCq5 .framer-da03tl, .framer-5aCq5 .framer-7sgbva { gap: 0px; } .framer-5aCq5.framer-1ihxbpy > *, .framer-5aCq5 .framer-kkak4y > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-5aCq5.framer-1ihxbpy > :first-child, .framer-5aCq5 .framer-kkak4y > :first-child, .framer-5aCq5 .framer-da03tl > :first-child { margin-top: 0px; } .framer-5aCq5.framer-1ihxbpy > :last-child, .framer-5aCq5 .framer-kkak4y > :last-child, .framer-5aCq5 .framer-da03tl > :last-child { margin-bottom: 0px; } .framer-5aCq5 .framer-pw6mgu > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-5aCq5 .framer-pw6mgu > :first-child, .framer-5aCq5 .framer-1dhoqhe > :first-child, .framer-5aCq5 .framer-7sgbva > :first-child { margin-left: 0px; } .framer-5aCq5 .framer-pw6mgu > :last-child, .framer-5aCq5 .framer-1dhoqhe > :last-child, .framer-5aCq5 .framer-7sgbva > :last-child { margin-right: 0px; } .framer-5aCq5 .framer-1dhoqhe > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-5aCq5 .framer-da03tl > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-5aCq5 .framer-7sgbva > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-5aCq5.framer-v-4uevtf.framer-1ihxbpy { height: min-content; justify-content: flex-start; min-height: 208px; padding: 0px; }\",\".framer-5aCq5.framer-v-4uevtf .framer-kkak4y, .framer-5aCq5.framer-v-aqd2q0 .framer-kkak4y, .framer-5aCq5.framer-v-1a1679i .framer-kkak4y, .framer-5aCq5.framer-v-2w1d40 .framer-kkak4y, .framer-5aCq5.framer-v-woz4il .framer-kkak4y { bottom: 4px; height: unset; left: 0px; position: absolute; right: 0px; top: 4px; width: unset; z-index: 1; }\",\".framer-5aCq5.framer-v-woz4il .framer-pw6mgu, .framer-5aCq5.framer-v-woz4il.hover .framer-pw6mgu, .framer-5aCq5.framer-v-woz4il.pressed .framer-pw6mgu { overflow: unset; }\",\".framer-5aCq5.framer-v-1ihxbpy.hover.framer-1ihxbpy { padding: 0px; }\",\".framer-5aCq5.framer-v-1ihxbpy.hover .framer-io2oy2 { bottom: 0px; order: 0; }\",\".framer-5aCq5.framer-v-1ihxbpy.hover .framer-kkak4y { order: 1; }\",\".framer-5aCq5.framer-v-1ihxbpy.pressed.framer-1ihxbpy, .framer-5aCq5.framer-v-1kmhny5.pressed.framer-1ihxbpy { justify-content: flex-end; padding: 0px; }\",\".framer-5aCq5.framer-v-1ihxbpy.pressed .framer-io2oy2, .framer-5aCq5.framer-v-1kmhny5.pressed .framer-io2oy2, .framer-5aCq5.framer-v-aqd2q0.pressed .framer-io2oy2, .framer-5aCq5.framer-v-1a1679i.pressed .framer-io2oy2, .framer-5aCq5.framer-v-2w1d40.pressed .framer-io2oy2, .framer-5aCq5.framer-v-woz4il.pressed .framer-io2oy2 { bottom: 0px; top: 8px; }\",\".framer-5aCq5.framer-v-4uevtf.hover.framer-1ihxbpy { justify-content: center; }\",\".framer-5aCq5.framer-v-4uevtf.hover .framer-io2oy2, .framer-5aCq5.framer-v-1kmhny5.hover .framer-io2oy2, .framer-5aCq5.framer-v-aqd2q0.hover .framer-io2oy2, .framer-5aCq5.framer-v-1a1679i.hover .framer-io2oy2, .framer-5aCq5.framer-v-2w1d40.hover .framer-io2oy2, .framer-5aCq5.framer-v-woz4il.hover .framer-io2oy2 { bottom: 0px; }\",\".framer-5aCq5.framer-v-4uevtf.hover .framer-kkak4y, .framer-5aCq5.framer-v-aqd2q0.hover .framer-kkak4y, .framer-5aCq5.framer-v-woz4il.hover .framer-kkak4y { height: unset; width: unset; }\",\".framer-5aCq5.framer-v-4uevtf.pressed.framer-1ihxbpy, .framer-5aCq5.framer-v-aqd2q0.pressed.framer-1ihxbpy, .framer-5aCq5.framer-v-1a1679i.pressed.framer-1ihxbpy, .framer-5aCq5.framer-v-2w1d40.pressed.framer-1ihxbpy, .framer-5aCq5.framer-v-woz4il.pressed.framer-1ihxbpy { justify-content: flex-end; }\",\".framer-5aCq5.framer-v-4uevtf.pressed .framer-io2oy2 { bottom: 9px; top: 8px; }\",\".framer-5aCq5.framer-v-4uevtf.pressed .framer-kkak4y, .framer-5aCq5.framer-v-aqd2q0.pressed .framer-kkak4y, .framer-5aCq5.framer-v-woz4il.pressed .framer-kkak4y { bottom: 0px; height: unset; top: 8px; width: unset; }\",\".framer-5aCq5.framer-v-1a1679i.hover .framer-kkak4y, .framer-5aCq5.framer-v-2w1d40.hover .framer-kkak4y { height: unset; left: unset; width: 358px; }\",\".framer-5aCq5.framer-v-1a1679i.pressed .framer-kkak4y, .framer-5aCq5.framer-v-2w1d40.pressed .framer-kkak4y { bottom: 0px; height: unset; left: unset; top: 8px; width: 358px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-5aCq5[data-border=\"true\"]::after, .framer-5aCq5 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 208\n * @framerIntrinsicWidth 358\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"d_Sb5vpj9\":{\"layout\":[\"fixed\",\"fixed\"]},\"wEfqofXBy\":{\"layout\":[\"fixed\",\"auto\"]},\"pOfv18qXm\":{\"layout\":[\"fixed\",\"fixed\"]},\"Qscw2LlOg\":{\"layout\":[\"fixed\",\"fixed\"]},\"kk0F4mKwD\":{\"layout\":[\"fixed\",\"fixed\"]},\"XZ_6uhNIn\":{\"layout\":[\"fixed\",\"fixed\"]},\"W1EamOAjo\":{\"layout\":[\"fixed\",\"fixed\"]},\"nkQ4DCHoo\":{\"layout\":[\"fixed\",\"fixed\"]},\"wqZDbduXl\":{\"layout\":[\"fixed\",\"fixed\"]},\"qFcwj1vvP\":{\"layout\":[\"fixed\",\"auto\"]},\"C5AiM_E5M\":{\"layout\":[\"fixed\",\"auto\"]},\"HNd5uI_AS\":{\"layout\":[\"fixed\",\"fixed\"]},\"PAUaRKoBO\":{\"layout\":[\"fixed\",\"fixed\"]},\"UfjUPNQJj\":{\"layout\":[\"fixed\",\"fixed\"]},\"YVhcxe_f_\":{\"layout\":[\"fixed\",\"fixed\"]},\"KnCTAtBuE\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZnfvUCk64\":{\"layout\":[\"fixed\",\"fixed\"]},\"MaWOMzhe7\":{\"layout\":[\"fixed\",\"fixed\"]},\"LDwU5JYqr\":{\"layout\":[\"fixed\",\"fixed\"]},\"NvyJrrwKp\":{\"layout\":[\"fixed\",\"fixed\"]},\"NRy6cvi9u\":{\"layout\":[\"fixed\",\"fixed\"]},\"qDZcSg19g\":{\"layout\":[\"fixed\",\"fixed\"]},\"vVPlPr2RT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"bbPUINEcU\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerK1bgQdfeH=withCSS(Component,css,\"framer-5aCq5\");export default FramerK1bgQdfeH;FramerK1bgQdfeH.displayName=\"Review card\";FramerK1bgQdfeH.defaultProps={height:208,width:358};addPropertyControls(FramerK1bgQdfeH,{variant:{options:[\"upXZ8C5g2\",\"d_Sb5vpj9\",\"wEfqofXBy\",\"pOfv18qXm\",\"Qscw2LlOg\",\"kk0F4mKwD\",\"XZ_6uhNIn\",\"W1EamOAjo\"],optionTitles:[\"Variant 1\",\"Variant 9\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\"],title:\"Variant\",type:ControlType.Enum},bbPUINEcU:{description:\"\",title:\"Link\",type:ControlType.Link}});addFonts(FramerK1bgQdfeH,[{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:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NZ67QOF3FXYLOR27ABJOZVKKBKNRMKMF/EHBFE55HTLOOJHTZSLD54GSL3EBTAFNQ/DI2GHUWG3WKRXISSCTNDMTWKWZC25UIW.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerK1bgQdfeH\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"bbPUINEcU\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"358\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"208\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"d_Sb5vpj9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wEfqofXBy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pOfv18qXm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Qscw2LlOg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kk0F4mKwD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XZ_6uhNIn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"W1EamOAjo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nkQ4DCHoo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wqZDbduXl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qFcwj1vvP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C5AiM_E5M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HNd5uI_AS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PAUaRKoBO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UfjUPNQJj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YVhcxe_f_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KnCTAtBuE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZnfvUCk64\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MaWOMzhe7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LDwU5JYqr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NvyJrrwKp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NRy6cvi9u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qDZcSg19g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vVPlPr2RT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./K1bgQdfeH.map", "// Generated by Framer (cf240c2)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Recoleta Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Recoleta Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/7QVVQEYm0B0wP5WCBgAzB7oY1i4.woff2\"}]}];export const css=['.framer-2TM8z .framer-styles-preset-b9iyrz:not(.rich-text-wrapper), .framer-2TM8z .framer-styles-preset-b9iyrz.rich-text-wrapper h5 { --framer-font-family: \"Recoleta Bold\", \"Recoleta Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 32px; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-716e3033-8a4f-407f-b275-acae881558a8, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-2TM8z .framer-styles-preset-b9iyrz:not(.rich-text-wrapper), .framer-2TM8z .framer-styles-preset-b9iyrz.rich-text-wrapper h5 { --framer-font-family: \"Recoleta Bold\", \"Recoleta Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-716e3033-8a4f-407f-b275-acae881558a8, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-2TM8z .framer-styles-preset-b9iyrz:not(.rich-text-wrapper), .framer-2TM8z .framer-styles-preset-b9iyrz.rich-text-wrapper h5 { --framer-font-family: \"Recoleta Bold\", \"Recoleta Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-716e3033-8a4f-407f-b275-acae881558a8, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-2TM8z\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/wg9vh8c4ZsbIUilLgMz6/KugdpSghsr4gJtawtxUq/dxCeqIlTM.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/btZ58lG5vf6lpUr7fbaX/Op6RVPoG4BaNYT3rEufx/qpOmbq1B6.js\";const PhosphorFonts=getFonts(Phosphor);const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const cycleOrder=[\"M2WUjZ2xe\",\"G1kdUCHpJ\",\"QSDFv90EA\"];const serializationHash=\"framer-aPzM1\";const variantClassNames={G1kdUCHpJ:\"framer-v-pt225h\",M2WUjZ2xe:\"framer-v-1pl3a9x\",QSDFv90EA:\"framer-v-54ach\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 3\":\"QSDFv90EA\",Closed:\"M2WUjZ2xe\",Open:\"G1kdUCHpJ\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Answer\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"M2WUjZ2xe\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Question\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"M2WUjZ2xe\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapqcodrr=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"G1kdUCHpJ\");});const onTap1w4zdl3=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"M2WUjZ2xe\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"G1kdUCHpJ\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1pl3a9x\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"M2WUjZ2xe\",onTap:onTapqcodrr,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({G1kdUCHpJ:{\"data-framer-name\":\"Open\",onTap:onTap1w4zdl3},QSDFv90EA:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aojgr7\",layoutDependency:layoutDependency,layoutId:\"XgJ8dgx8K\",style:{rotate:0},variants:{G1kdUCHpJ:{rotate:180}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vg1g6g-container\",layoutDependency:layoutDependency,layoutId:\"YcIS5IlaR-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"down\",iconSelection:\"CaretDown\",id:\"YcIS5IlaR\",layoutId:\"YcIS5IlaR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d74j39\",\"data-framer-name\":\"Question\",layoutDependency:layoutDependency,layoutId:\"ebWvKc84d\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-b9iyrz\",\"data-styles-preset\":\"qpOmbq1B6\",style:{\"--framer-text-alignment\":\"left\"},children:\"Question\"})}),className:\"framer-hsn463\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mkR6pt5Bg\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zwlglg\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"jhoqn1kX9\",style:{opacity:0},variants:{G1kdUCHpJ:{opacity:1}},children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.6,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",children:\"Answer\"})}),className:\"framer-1d7xc2h\",\"data-framer-appear-id\":\"1d7xc2h\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"siQBXWFDH\",optimized:true,style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.6,transformPerspective:1200},text:T8rQFvSBR,variants:{G1kdUCHpJ:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({G1kdUCHpJ:{__targetOpacity:1,animate:animation2}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aPzM1.framer-9ds97z, .framer-aPzM1 .framer-9ds97z { display: block; }\",\".framer-aPzM1.framer-1pl3a9x { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 72px 32px 32px; position: relative; width: 1000px; }\",\".framer-aPzM1 .framer-1aojgr7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 32px; top: 28px; width: 32px; z-index: 1; }\",\".framer-aPzM1 .framer-vg1g6g-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-aPzM1 .framer-d74j39 { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; user-select: none; width: 100%; }\",\".framer-aPzM1 .framer-hsn463 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-aPzM1 .framer-zwlglg { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aPzM1 .framer-1d7xc2h { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aPzM1.framer-1pl3a9x, .framer-aPzM1 .framer-1aojgr7, .framer-aPzM1 .framer-d74j39, .framer-aPzM1 .framer-zwlglg { gap: 0px; } .framer-aPzM1.framer-1pl3a9x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-aPzM1.framer-1pl3a9x > :first-child, .framer-aPzM1 .framer-zwlglg > :first-child { margin-top: 0px; } .framer-aPzM1.framer-1pl3a9x > :last-child, .framer-aPzM1 .framer-zwlglg > :last-child { margin-bottom: 0px; } .framer-aPzM1 .framer-1aojgr7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-aPzM1 .framer-1aojgr7 > :first-child, .framer-aPzM1 .framer-d74j39 > :first-child { margin-left: 0px; } .framer-aPzM1 .framer-1aojgr7 > :last-child, .framer-aPzM1 .framer-d74j39 > :last-child { margin-right: 0px; } .framer-aPzM1 .framer-d74j39 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-aPzM1 .framer-zwlglg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-aPzM1.framer-v-pt225h.framer-1pl3a9x { gap: 16px; }\",\".framer-aPzM1.framer-v-pt225h .framer-1aojgr7, .framer-aPzM1.framer-v-pt225h .framer-hsn463 { order: 0; }\",\".framer-aPzM1.framer-v-pt225h .framer-d74j39 { order: 1; }\",\".framer-aPzM1.framer-v-pt225h .framer-zwlglg { order: 2; }\",\".framer-aPzM1.framer-v-pt225h .framer-1d7xc2h { -webkit-user-select: unset; user-select: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aPzM1.framer-v-pt225h.framer-1pl3a9x { gap: 0px; } .framer-aPzM1.framer-v-pt225h.framer-1pl3a9x > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-aPzM1.framer-v-pt225h.framer-1pl3a9x > :first-child { margin-top: 0px; } .framer-aPzM1.framer-v-pt225h.framer-1pl3a9x > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 96\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"G1kdUCHpJ\":{\"layout\":[\"fixed\",\"auto\"]},\"QSDFv90EA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernvG9gPmAZ=withCSS(Component,css,\"framer-aPzM1\");export default FramernvG9gPmAZ;FramernvG9gPmAZ.displayName=\"FAQ/FAQ Row\";FramernvG9gPmAZ.defaultProps={height:96,width:1e3};addPropertyControls(FramernvG9gPmAZ,{variant:{options:[\"M2WUjZ2xe\",\"G1kdUCHpJ\",\"QSDFv90EA\"],optionTitles:[\"Closed\",\"Open\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Question\",description:\"\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Answer\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramernvG9gPmAZ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernvG9gPmAZ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerIntrinsicHeight\":\"96\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"G1kdUCHpJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QSDFv90EA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1000\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FAQFAQRow from\"https://framerusercontent.com/modules/bwWSjuGpZwkgLEhfgZnT/Gg64GfrcnhAyxBS5fG74/nvG9gPmAZ.js\";const FAQFAQRowFonts=getFonts(FAQFAQRow);const serializationHash=\"framer-5MJuI\";const variantClassNames={Tuu4ax_a1:\"framer-v-1jogmsy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,radius,width,...props})=>{return{...props,fu12RJM4K:radius??props.fu12RJM4K??\"32px\"};};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,fu12RJM4K,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Tuu4ax_a1\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1jogmsy\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Tuu4ax_a1\",ref:refBinding,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"var(--token-0150ee60-7bbf-4f67-905c-a810b7d62e46, rgb(255, 255, 255))\",borderBottomLeftRadius:radiusForCorner(fu12RJM4K,3),borderBottomRightRadius:radiusForCorner(fu12RJM4K,2),borderTopLeftRadius:radiusForCorner(fu12RJM4K,0),borderTopRightRadius:radiusForCorner(fu12RJM4K,1),...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gc08jl\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"RFgleEky2\",style:{backgroundColor:\"var(--token-6ca47b4c-ec01-42de-b86a-d4a72d88853b, rgba(0, 0, 0, 0.08))\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18zlygh-container\",layoutDependency:layoutDependency,layoutId:\"gcNnV35Wr-container\",nodeId:\"gcNnV35Wr\",rendersWithMotion:true,scopeId:\"NO_388dZL\",children:/*#__PURE__*/_jsx(FAQFAQRow,{height:\"100%\",id:\"gcNnV35Wr\",layoutId:\"gcNnV35Wr\",style:{width:\"100%\"},T8rQFvSBR:\"Yes! We will never sell your data or give unrelated access to any third-parties. You can also permanently delete your data at any time. Security and privacy is our team's top priority.\",variant:\"M2WUjZ2xe\",W88zB8mIG:\"Are my notes, recordings, and transcriptions private?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+97,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a30w9h-container\",layoutDependency:layoutDependency,layoutId:\"kZR19_Tuo-container\",nodeId:\"kZR19_Tuo\",rendersWithMotion:true,scopeId:\"NO_388dZL\",children:/*#__PURE__*/_jsx(FAQFAQRow,{height:\"100%\",id:\"kZR19_Tuo\",layoutId:\"kZR19_Tuo\",style:{width:\"100%\"},T8rQFvSBR:\"Absolutely! Edit your notes to suit your needs and export them with all your updates intact.\",variant:\"M2WUjZ2xe\",W88zB8mIG:\"Are the transcripts editable?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+193,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-186sn44-container\",layoutDependency:layoutDependency,layoutId:\"Rmvz6QYeZ-container\",nodeId:\"Rmvz6QYeZ\",rendersWithMotion:true,scopeId:\"NO_388dZL\",children:/*#__PURE__*/_jsx(FAQFAQRow,{height:\"100%\",id:\"Rmvz6QYeZ\",layoutId:\"Rmvz6QYeZ\",style:{width:\"100%\"},T8rQFvSBR:\"Of course! BuzzNotes is all about helping you actually learn the material from your lectures, not just giving you answers to skim by.\",variant:\"M2WUjZ2xe\",W88zB8mIG:\"Is it legal to use at college?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+289,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-eoegrp-container\",layoutDependency:layoutDependency,layoutId:\"TUV6I4OMI-container\",nodeId:\"TUV6I4OMI\",rendersWithMotion:true,scopeId:\"NO_388dZL\",children:/*#__PURE__*/_jsx(FAQFAQRow,{height:\"100%\",id:\"TUV6I4OMI\",layoutId:\"TUV6I4OMI\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, you can download and use BuzzNotes for free to get started. For best results, we recommend upgrading.\",variant:\"M2WUjZ2xe\",W88zB8mIG:\"Is BuzzNotes free?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+385,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uo4klb-container\",layoutDependency:layoutDependency,layoutId:\"SJSo0pBpp-container\",nodeId:\"SJSo0pBpp\",rendersWithMotion:true,scopeId:\"NO_388dZL\",children:/*#__PURE__*/_jsx(FAQFAQRow,{height:\"100%\",id:\"SJSo0pBpp\",layoutId:\"SJSo0pBpp\",style:{width:\"100%\"},T8rQFvSBR:\"Soon! Join our waitlist for first access.\",variant:\"M2WUjZ2xe\",W88zB8mIG:\"Is there an Android app?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1noprln\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"AH9WNklxS\",style:{backgroundColor:\"var(--token-6ca47b4c-ec01-42de-b86a-d4a72d88853b, rgba(0, 0, 0, 0.08))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xmjfnn\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"PEX7VXZK7\",style:{backgroundColor:\"var(--token-6ca47b4c-ec01-42de-b86a-d4a72d88853b, rgba(0, 0, 0, 0.08))\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5MJuI.framer-1ij2m0k, .framer-5MJuI .framer-1ij2m0k { display: block; }\",\".framer-5MJuI.framer-1jogmsy { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5MJuI .framer-gc08jl, .framer-5MJuI .framer-1noprln, .framer-5MJuI .framer-xmjfnn { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-5MJuI .framer-18zlygh-container, .framer-5MJuI .framer-1a30w9h-container, .framer-5MJuI .framer-186sn44-container, .framer-5MJuI .framer-eoegrp-container, .framer-5MJuI .framer-1uo4klb-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5MJuI.framer-1jogmsy { gap: 0px; } .framer-5MJuI.framer-1jogmsy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5MJuI.framer-1jogmsy > :first-child { margin-top: 0px; } .framer-5MJuI.framer-1jogmsy > :last-child { margin-bottom: 0px; } }\",'.framer-5MJuI[data-border=\"true\"]::after, .framer-5MJuI [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 443\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"fu12RJM4K\":\"radius\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNO_388dZL=withCSS(Component,css,\"framer-5MJuI\");export default FramerNO_388dZL;FramerNO_388dZL.displayName=\"FAQ/FAQ\";FramerNO_388dZL.defaultProps={height:443,width:1e3};addPropertyControls(FramerNO_388dZL,{fu12RJM4K:{defaultValue:\"32px\",title:\"Radius\",type:ControlType.BorderRadius}});addFonts(FramerNO_388dZL,[{explicitInter:true,fonts:[]},...FAQFAQRowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNO_388dZL\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1000\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"443\",\"framerVariables\":\"{\\\"fu12RJM4K\\\":\\\"radius\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NO_388dZL.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"rTTbQdpd7\",\"a2O0LD3Ko\",\"Xp3LahHvl\"];const serializationHash=\"framer-8L2aN\";const variantClassNames={a2O0LD3Ko:\"framer-v-1kx0t81\",rTTbQdpd7:\"framer-v-syk14w\",Xp3LahHvl:\"framer-v-ijuoda\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"BG 1\":\"rTTbQdpd7\",\"BG 2\":\"a2O0LD3Ko\",\"BG 3\":\"Xp3LahHvl\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"rTTbQdpd7\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rTTbQdpd7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-syk14w\",className,classNames),\"data-framer-name\":\"BG 1\",layoutDependency:layoutDependency,layoutId:\"rTTbQdpd7\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(240, 242, 248) 40%)\",...style},variants:{a2O0LD3Ko:{background:\"linear-gradient(180deg, rgb(248, 240, 242) 0%, rgb(242, 227, 230) 100%)\"},Xp3LahHvl:{background:\"linear-gradient(180deg, rgb(240, 248, 246) 0%, rgb(227, 242, 238) 100%)\"}},...addPropertyOverrides({a2O0LD3Ko:{\"data-framer-name\":\"BG 2\"},Xp3LahHvl:{\"data-framer-name\":\"BG 3\"}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8L2aN.framer-1x45e1t, .framer-8L2aN .framer-1x45e1t { display: block; }\",\".framer-8L2aN.framer-syk14w { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 800px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8L2aN.framer-syk14w { gap: 0px; } .framer-8L2aN.framer-syk14w > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-8L2aN.framer-syk14w > :first-child { margin-top: 0px; } .framer-8L2aN.framer-syk14w > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"a2O0LD3Ko\":{\"layout\":[\"fixed\",\"fixed\"]},\"Xp3LahHvl\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruYpUXAAs2=withCSS(Component,css,\"framer-8L2aN\");export default FrameruYpUXAAs2;FrameruYpUXAAs2.displayName=\"BG\";FrameruYpUXAAs2.defaultProps={height:800,width:1200};addPropertyControls(FrameruYpUXAAs2,{variant:{options:[\"rTTbQdpd7\",\"a2O0LD3Ko\",\"Xp3LahHvl\"],optionTitles:[\"BG 1\",\"BG 2\",\"BG 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameruYpUXAAs2,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruYpUXAAs2\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"800\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"a2O0LD3Ko\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Xp3LahHvl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uYpUXAAs2.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/wg9vh8c4ZsbIUilLgMz6/KugdpSghsr4gJtawtxUq/dxCeqIlTM.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/rv76PTftHL7X10OLqcqj/me8ZeUG0fFYQVsAMkkBg/eXq9o30ip.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/ukZfzbZYVXSSFTRHkF3z/xa5iDeFeHEYrP0bjTZlT/NgBNPzGQ8.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"J437gTbFJ\",\"a37nNALmN\",\"BVDjCH4KC\",\"qHsZYX3Ae\",\"JQUNAUp2_\",\"PGbR8niH9\",\"pnV_bUG9Z\",\"xGMQoqxkb\",\"jaUAJ2wYN\"];const serializationHash=\"framer-VnF0R\";const variantClassNames={a37nNALmN:\"framer-v-1tzk442\",BVDjCH4KC:\"framer-v-13pluzv\",J437gTbFJ:\"framer-v-j6us3\",jaUAJ2wYN:\"framer-v-x7xa0b\",JQUNAUp2_:\"framer-v-9b3kkm\",PGbR8niH9:\"framer-v-1xc1kl\",pnV_bUG9Z:\"framer-v-wvsf14\",qHsZYX3Ae:\"framer-v-egf3nn\",xGMQoqxkb:\"framer-v-i8jcog\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.7,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 1\":\"J437gTbFJ\",\"Desktop 2\":\"a37nNALmN\",\"Desktop 3\":\"BVDjCH4KC\",\"Mobile 1\":\"pnV_bUG9Z\",\"Mobile 2\":\"xGMQoqxkb\",\"Mobile 3\":\"jaUAJ2wYN\",\"Tablet 1\":\"qHsZYX3Ae\",\"Tablet 2\":\"JQUNAUp2_\",\"Tablet 3\":\"PGbR8niH9\"};const getProps=({background1,background2,background3,height,id,phone1,phone2,phone3,text2,text3,title,title1,title2,title21,title3,title31,title4,title5,width,...props})=>{return{...props,Fzco_hk9K:title4??props.Fzco_hk9K??\"Chat with your notes\",Hp2GbY5Nz:title5??props.Hp2GbY5Nz??\"Have your own AI assistant ready to answer any question that you have. Engage in conversation with your notes to uncover deeper insights and clarify concepts.\",hslBb27nA:background3??props.hslBb27nA??\"rgb(248, 240, 242)\",j2_1aeoM_:background2??props.j2_1aeoM_??\"rgb(240, 248, 246)\",JvxUZbIxQ:phone2??props.JvxUZbIxQ??{src:\"https://framerusercontent.com/images/qNkxDvvT0sdP16RjU1bHfGrD5g.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/qNkxDvvT0sdP16RjU1bHfGrD5g.png?scale-down-to=2048 997w,https://framerusercontent.com/images/qNkxDvvT0sdP16RjU1bHfGrD5g.png 1294w\"},LJyxDlL48:title1??props.LJyxDlL48??\"Keep track of your lectures\",P8aMkBtCB:background1??props.P8aMkBtCB??\"var(--token-dca9c9e1-8c4f-4ff8-a027-849eb8e833e1, rgb(240, 242, 248))\",T93si_P4W:text3??props.T93si_P4W??\"Have your own AI assistant ready to answer any question that you have. Engage in conversation with your notes to uncover deeper insights and clarify concepts.\",uyyTgjD8E:title31??props.uyyTgjD8E??\"Create quizzes and flashcards personalized to your notes for an effective review. Each question is crafted to reinforce key points, helping you deepen your understanding with every session.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"J437gTbFJ\",VrADO4Ine:title3??props.VrADO4Ine??\"Chat with your notes\",Wnc3q4txU:title??props.Wnc3q4txU??\"BuzzNotes organizes your notes by content and lets you effortlessly sort them into the folders of your choice.\",wRiUjrikE:title2??props.wRiUjrikE??\"Test your knowledge\",Wwgn6qYfk:text2??props.Wwgn6qYfk??\"Create quizzes and flashcards personalized to your notes for an effective review. Each question is crafted to reinforce key points, helping you deepen your understanding with every session.\",x_I2_RicL:phone1??props.x_I2_RicL??{src:\"https://framerusercontent.com/images/kvDqs57aiKGfXsBZzaekdKNgMPc.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/kvDqs57aiKGfXsBZzaekdKNgMPc.png?scale-down-to=2048 997w,https://framerusercontent.com/images/kvDqs57aiKGfXsBZzaekdKNgMPc.png 1294w\"},YCx9wWzcv:phone3??props.YCx9wWzcv??{src:\"https://framerusercontent.com/images/kvDqs57aiKGfXsBZzaekdKNgMPc.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/kvDqs57aiKGfXsBZzaekdKNgMPc.png?scale-down-to=2048 997w,https://framerusercontent.com/images/kvDqs57aiKGfXsBZzaekdKNgMPc.png 1294w\"},zSmBiT7xi:title21??props.zSmBiT7xi??\"Test your knowledge\"};};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,x_I2_RicL,P8aMkBtCB,JvxUZbIxQ,j2_1aeoM_,YCx9wWzcv,hslBb27nA,LJyxDlL48,Wnc3q4txU,wRiUjrikE,Wwgn6qYfk,VrADO4Ine,T93si_P4W,zSmBiT7xi,uyyTgjD8E,Fzco_hk9K,Hp2GbY5Nz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"J437gTbFJ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"qHsZYX3Ae\",\"JQUNAUp2_\",\"PGbR8niH9\",\"pnV_bUG9Z\",\"xGMQoqxkb\",\"jaUAJ2wYN\"].includes(baseVariant))return false;return true;};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-j6us3\",className,classNames),\"data-framer-name\":\"Desktop 1\",layoutDependency:layoutDependency,layoutId:\"J437gTbFJ\",ref:refBinding,style:{...style},...addPropertyOverrides({a37nNALmN:{\"data-framer-name\":\"Desktop 2\"},BVDjCH4KC:{\"data-framer-name\":\"Desktop 3\"},jaUAJ2wYN:{\"data-framer-name\":\"Mobile 3\"},JQUNAUp2_:{\"data-framer-name\":\"Tablet 2\"},PGbR8niH9:{\"data-framer-name\":\"Tablet 3\"},pnV_bUG9Z:{\"data-framer-name\":\"Mobile 1\"},qHsZYX3Ae:{\"data-framer-name\":\"Tablet 1\"},xGMQoqxkb:{\"data-framer-name\":\"Mobile 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-etsavf\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"qTGCI2NpU\",style:{backgroundColor:P8aMkBtCB,borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{a37nNALmN:{backgroundColor:j2_1aeoM_},BVDjCH4KC:{backgroundColor:hslBb27nA},jaUAJ2wYN:{backgroundColor:hslBb27nA},JQUNAUp2_:{backgroundColor:j2_1aeoM_},PGbR8niH9:{backgroundColor:hslBb27nA},xGMQoqxkb:{backgroundColor:j2_1aeoM_}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2656,intrinsicWidth:1294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||552)-0-552)/2)+64),pixelHeight:2656,pixelWidth:1294,sizes:`min(max((${componentViewport?.width||\"100vw\"} - 32px) / 2, 1px), 358px)`,...toResponsiveImage(x_I2_RicL),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-tnzf4e\",\"data-framer-name\":\"Phone\",layoutDependency:layoutDependency,layoutId:\"HOjyb2kAQ\",...addPropertyOverrides({a37nNALmN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2656,intrinsicWidth:1294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||552)-0-552)/2)+64),pixelHeight:2656,pixelWidth:1294,sizes:`min(max((${componentViewport?.width||\"100vw\"} - 32px) / 2, 1px), 358px)`,...toResponsiveImage(JvxUZbIxQ),...{positionX:\"center\",positionY:\"center\"}}},BVDjCH4KC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2656,intrinsicWidth:1294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-552)/2)+64),pixelHeight:2656,pixelWidth:1294,sizes:`min(max((${componentViewport?.width||\"100vw\"} - 32px) / 2, 1px), 358px)`,...toResponsiveImage(YCx9wWzcv),...{positionX:\"center\",positionY:\"center\"}}},jaUAJ2wYN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2656,intrinsicWidth:1294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1023)/2+0+0)+32),pixelHeight:2656,pixelWidth:1294,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 358px)`,...toResponsiveImage(x_I2_RicL),...{positionX:\"center\",positionY:\"center\"}}},JQUNAUp2_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2656,intrinsicWidth:1294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-776)/2+0+0)+64),pixelHeight:2656,pixelWidth:1294,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 358px)`,...toResponsiveImage(JvxUZbIxQ),...{positionX:\"center\",positionY:\"center\"}}},PGbR8niH9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2656,intrinsicWidth:1294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-776)/2+0+0)+64),pixelHeight:2656,pixelWidth:1294,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 358px)`,...toResponsiveImage(YCx9wWzcv),...{positionX:\"center\",positionY:\"center\"}}},pnV_bUG9Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2656,intrinsicWidth:1294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1023)/2+0+0)+32),pixelHeight:2656,pixelWidth:1294,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 358px)`,...toResponsiveImage(x_I2_RicL),...{positionX:\"center\",positionY:\"center\"}}},qHsZYX3Ae:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2656,intrinsicWidth:1294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-776)/2+0+0)+64),pixelHeight:2656,pixelWidth:1294,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 358px)`,...toResponsiveImage(x_I2_RicL),...{positionX:\"center\",positionY:\"center\"}}},xGMQoqxkb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2656,intrinsicWidth:1294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1023)/2+0+0)+32),pixelHeight:2656,pixelWidth:1294,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 358px)`,...toResponsiveImage(JvxUZbIxQ),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11kaopn\",layoutDependency:layoutDependency,layoutId:\"kJHy9FId2\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ius3lq\",\"data-framer-name\":\"Title, subtitle\",layoutDependency:layoutDependency,layoutId:\"macEGchnL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-r0g37d\",\"data-styles-preset\":\"eXq9o30ip\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"Expand Your Understanding\"})}),className:\"framer-xwn5vl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jJhCuAR0x\",style:{\"--extracted-a0htzi\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:LJyxDlL48,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a37nNALmN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-r0g37d\",\"data-styles-preset\":\"eXq9o30ip\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"Stay Ahead with Smart Tools\"})}),text:wRiUjrikE},BVDjCH4KC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-r0g37d\",\"data-styles-preset\":\"eXq9o30ip\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"Active Learning, Elevated\"})}),text:VrADO4Ine},jaUAJ2wYN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-r0g37d\",\"data-styles-preset\":\"eXq9o30ip\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"Chat with your notes\"})}),text:undefined},JQUNAUp2_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-r0g37d\",\"data-styles-preset\":\"eXq9o30ip\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"Stay Ahead with Smart Tools\"})}),text:zSmBiT7xi},PGbR8niH9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-r0g37d\",\"data-styles-preset\":\"eXq9o30ip\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"Active Learning, Elevated\"})}),text:Fzco_hk9K},xGMQoqxkb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-r0g37d\",\"data-styles-preset\":\"eXq9o30ip\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"Test your knowledge\"})}),text:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour.\"})}),className:\"framer-1f3bbbl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p9j8BUNRa\",style:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Wnc3q4txU,variants:{a37nNALmN:{\"--extracted-r6o4lv\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\"},BVDjCH4KC:{\"--extracted-r6o4lv\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\"},jaUAJ2wYN:{\"--extracted-r6o4lv\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\"},JQUNAUp2_:{\"--extracted-r6o4lv\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\"},PGbR8niH9:{\"--extracted-r6o4lv\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\"},xGMQoqxkb:{\"--extracted-r6o4lv\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a37nNALmN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour.\"})}),text:Wwgn6qYfk},BVDjCH4KC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour.\"})}),text:T93si_P4W},jaUAJ2wYN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"Have your own AI assistant ready to answer any question that you have. Engage in conversation with your notes to uncover deeper insights and clarify concepts.\"})}),text:undefined},JQUNAUp2_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour.\"})}),text:uyyTgjD8E},PGbR8niH9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour.\"})}),text:Hp2GbY5Nz},xGMQoqxkb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"Create quizzes and flashcards personalized to your notes for an effective review. Each question is crafted to reinforce key points, helping you deepen your understanding with every session.\"})}),text:undefined}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4om8vg\",\"data-framer-name\":\"v2\",layoutDependency:layoutDependency,layoutId:\"L5PNQNT1e\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-j2pob2\",\"data-framer-name\":\"Title, subtitle\",layoutDependency:layoutDependency,layoutId:\"VsJKEKV54\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9fp67q\",layoutDependency:layoutDependency,layoutId:\"WC7Kp_77P\",style:{backgroundColor:\"var(--token-10950f2c-ff22-467e-9221-c0c5c471e684, rgb(196, 122, 192))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||552)-0-368)/2)+0+224+0+0+0+12),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/cXig6zZYsvxbleVMbKpDBpSZpM.png\"},className:\"framer-gsonwd\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"vSEE3bWM1\",...addPropertyOverrides({BVDjCH4KC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-368)/2)+0+224+0+0+0+12),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/cXig6zZYsvxbleVMbKpDBpSZpM.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-my0vwh\",\"data-styles-preset\":\"NgBNPzGQ8\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"Smart Notes\"})}),className:\"framer-17g5h3b\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ba2dW25rF\",style:{\"--extracted-1w1cjl5\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-2yfy94\",\"data-framer-name\":\"Title, subtitle\",layoutDependency:layoutDependency,layoutId:\"opGJl5UkI\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-w9xww4\",layoutDependency:layoutDependency,layoutId:\"u5n8cGB1m\",style:{backgroundColor:\"var(--token-fab17a43-ae20-465a-ba78-a254baf9a342, rgb(255, 204, 113))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||552)-0-368)/2)+0+224+0+0+0+12),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/Y3xjyOYH1hOM6Avj1PtJzYxRDFk.png\"},className:\"framer-csjcf9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"YYGousUnJ\",...addPropertyOverrides({BVDjCH4KC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-368)/2)+0+224+0+0+0+12),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/Y3xjyOYH1hOM6Avj1PtJzYxRDFk.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-my0vwh\",\"data-styles-preset\":\"NgBNPzGQ8\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"Real-Time Q&A\"})}),className:\"framer-zzd16f\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FnFvyRJ7o\",style:{\"--extracted-1w1cjl5\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-139l6d2\",\"data-framer-name\":\"Title, subtitle\",layoutDependency:layoutDependency,layoutId:\"rdZ_hz9el\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3z4zxj\",layoutDependency:layoutDependency,layoutId:\"BTLG3Fr9J\",style:{backgroundColor:\"var(--token-773348a1-45a6-430e-8c23-91e26edecaec, rgb(198, 210, 237))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||552)-0-368)/2)+0+224+0+80+0+12),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/hC2HU3Ca3R5o3bD05suP2rty0.png\"},className:\"framer-19hmhnr\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hrHbOqUr2\",...addPropertyOverrides({BVDjCH4KC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-368)/2)+0+224+0+80+0+12),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/hC2HU3Ca3R5o3bD05suP2rty0.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-my0vwh\",\"data-styles-preset\":\"NgBNPzGQ8\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"Quizzes and Flashcards\"})}),className:\"framer-1hnqrdr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zHZtPtTAf\",style:{\"--extracted-1w1cjl5\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-6ep6a4\",\"data-framer-name\":\"Title, subtitle\",layoutDependency:layoutDependency,layoutId:\"CYMDzLvkE\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-31bwp9\",layoutDependency:layoutDependency,layoutId:\"yOpu0N5u8\",style:{backgroundColor:\"var(--token-9d20a3ea-a1bb-4980-b54e-a1d34d83c85d, rgb(210, 185, 216))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||552)-0-368)/2)+0+224+0+80+0+12),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/AhBhg8b4fP5k14ZulCVu19nfVrI.png\"},className:\"framer-1gf3ylf\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"mMaaiODUB\",...addPropertyOverrides({BVDjCH4KC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-368)/2)+0+224+0+80+0+12),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/AhBhg8b4fP5k14ZulCVu19nfVrI.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-my0vwh\",\"data-styles-preset\":\"NgBNPzGQ8\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0)))\"},children:\"Easy PDF Downloads\"})}),className:\"framer-1xmys9c\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dyzrI_qaR\",style:{\"--extracted-1w1cjl5\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VnF0R.framer-5dm02n, .framer-VnF0R .framer-5dm02n { display: block; }\",\".framer-VnF0R.framer-j6us3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1136px; }\",\".framer-VnF0R .framer-etsavf { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 552px); justify-content: center; overflow: hidden; padding: 64px 0px 0px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VnF0R .framer-tnzf4e { aspect-ratio: 0.4871987951807229 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 735px); max-width: 358px; overflow: visible; position: relative; width: 1px; }\",\".framer-VnF0R .framer-11kaopn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-VnF0R .framer-1ius3lq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 746px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VnF0R .framer-xwn5vl, .framer-VnF0R .framer-1f3bbbl { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-VnF0R .framer-4om8vg { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VnF0R .framer-j2pob2, .framer-VnF0R .framer-2yfy94, .framer-VnF0R .framer-139l6d2, .framer-VnF0R .framer-6ep6a4 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 100%; justify-content: flex-start; justify-self: start; max-width: 746px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VnF0R .framer-9fp67q, .framer-VnF0R .framer-w9xww4, .framer-VnF0R .framer-3z4zxj, .framer-VnF0R .framer-31bwp9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-VnF0R .framer-gsonwd, .framer-VnF0R .framer-csjcf9, .framer-VnF0R .framer-19hmhnr, .framer-VnF0R .framer-1gf3ylf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 40px; }\",\".framer-VnF0R .framer-17g5h3b, .framer-VnF0R .framer-zzd16f, .framer-VnF0R .framer-1hnqrdr, .framer-VnF0R .framer-1xmys9c { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VnF0R.framer-j6us3, .framer-VnF0R .framer-etsavf, .framer-VnF0R .framer-11kaopn, .framer-VnF0R .framer-1ius3lq, .framer-VnF0R .framer-j2pob2, .framer-VnF0R .framer-9fp67q, .framer-VnF0R .framer-2yfy94, .framer-VnF0R .framer-w9xww4, .framer-VnF0R .framer-139l6d2, .framer-VnF0R .framer-3z4zxj, .framer-VnF0R .framer-6ep6a4, .framer-VnF0R .framer-31bwp9 { gap: 0px; } .framer-VnF0R.framer-j6us3 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-VnF0R.framer-j6us3 > :first-child, .framer-VnF0R .framer-etsavf > :first-child, .framer-VnF0R .framer-j2pob2 > :first-child, .framer-VnF0R .framer-9fp67q > :first-child, .framer-VnF0R .framer-2yfy94 > :first-child, .framer-VnF0R .framer-w9xww4 > :first-child, .framer-VnF0R .framer-139l6d2 > :first-child, .framer-VnF0R .framer-3z4zxj > :first-child, .framer-VnF0R .framer-6ep6a4 > :first-child, .framer-VnF0R .framer-31bwp9 > :first-child { margin-left: 0px; } .framer-VnF0R.framer-j6us3 > :last-child, .framer-VnF0R .framer-etsavf > :last-child, .framer-VnF0R .framer-j2pob2 > :last-child, .framer-VnF0R .framer-9fp67q > :last-child, .framer-VnF0R .framer-2yfy94 > :last-child, .framer-VnF0R .framer-w9xww4 > :last-child, .framer-VnF0R .framer-139l6d2 > :last-child, .framer-VnF0R .framer-3z4zxj > :last-child, .framer-VnF0R .framer-6ep6a4 > :last-child, .framer-VnF0R .framer-31bwp9 > :last-child { margin-right: 0px; } .framer-VnF0R .framer-etsavf > *, .framer-VnF0R .framer-9fp67q > *, .framer-VnF0R .framer-w9xww4 > *, .framer-VnF0R .framer-3z4zxj > *, .framer-VnF0R .framer-31bwp9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-VnF0R .framer-11kaopn > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-VnF0R .framer-11kaopn > :first-child, .framer-VnF0R .framer-1ius3lq > :first-child { margin-top: 0px; } .framer-VnF0R .framer-11kaopn > :last-child, .framer-VnF0R .framer-1ius3lq > :last-child { margin-bottom: 0px; } .framer-VnF0R .framer-1ius3lq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-VnF0R .framer-j2pob2 > *, .framer-VnF0R .framer-2yfy94 > *, .framer-VnF0R .framer-139l6d2 > *, .framer-VnF0R .framer-6ep6a4 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-VnF0R.framer-v-1tzk442 .framer-xwn5vl, .framer-VnF0R.framer-v-9b3kkm .framer-xwn5vl, .framer-VnF0R.framer-v-i8jcog .framer-xwn5vl { order: 0; }\",\".framer-VnF0R.framer-v-1tzk442 .framer-1f3bbbl, .framer-VnF0R.framer-v-9b3kkm .framer-1f3bbbl, .framer-VnF0R.framer-v-i8jcog .framer-1f3bbbl { order: 1; }\",\".framer-VnF0R.framer-v-13pluzv .framer-etsavf { height: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-VnF0R.framer-v-13pluzv .framer-tnzf4e, .framer-VnF0R.framer-v-egf3nn .framer-tnzf4e, .framer-VnF0R.framer-v-9b3kkm .framer-tnzf4e, .framer-VnF0R.framer-v-1xc1kl .framer-tnzf4e, .framer-VnF0R.framer-v-wvsf14 .framer-tnzf4e, .framer-VnF0R.framer-v-i8jcog .framer-tnzf4e, .framer-VnF0R.framer-v-x7xa0b .framer-tnzf4e { height: var(--framer-aspect-ratio-supported, 411px); }\",\".framer-VnF0R.framer-v-egf3nn.framer-j6us3, .framer-VnF0R.framer-v-9b3kkm.framer-j6us3, .framer-VnF0R.framer-v-1xc1kl.framer-j6us3 { flex-direction: column; width: 746px; }\",\".framer-VnF0R.framer-v-egf3nn .framer-etsavf, .framer-VnF0R.framer-v-9b3kkm .framer-etsavf, .framer-VnF0R.framer-v-1xc1kl .framer-etsavf { aspect-ratio: unset; flex: none; height: 552px; width: 100%; }\",\".framer-VnF0R.framer-v-egf3nn .framer-11kaopn, .framer-VnF0R.framer-v-9b3kkm .framer-11kaopn, .framer-VnF0R.framer-v-1xc1kl .framer-11kaopn, .framer-VnF0R.framer-v-wvsf14 .framer-11kaopn, .framer-VnF0R.framer-v-i8jcog .framer-11kaopn, .framer-VnF0R.framer-v-x7xa0b .framer-11kaopn { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VnF0R.framer-v-egf3nn.framer-j6us3 { gap: 0px; } .framer-VnF0R.framer-v-egf3nn.framer-j6us3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-VnF0R.framer-v-egf3nn.framer-j6us3 > :first-child { margin-top: 0px; } .framer-VnF0R.framer-v-egf3nn.framer-j6us3 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VnF0R.framer-v-9b3kkm.framer-j6us3 { gap: 0px; } .framer-VnF0R.framer-v-9b3kkm.framer-j6us3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-VnF0R.framer-v-9b3kkm.framer-j6us3 > :first-child { margin-top: 0px; } .framer-VnF0R.framer-v-9b3kkm.framer-j6us3 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VnF0R.framer-v-1xc1kl.framer-j6us3 { gap: 0px; } .framer-VnF0R.framer-v-1xc1kl.framer-j6us3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-VnF0R.framer-v-1xc1kl.framer-j6us3 > :first-child { margin-top: 0px; } .framer-VnF0R.framer-v-1xc1kl.framer-j6us3 > :last-child { margin-bottom: 0px; } }\",\".framer-VnF0R.framer-v-wvsf14.framer-j6us3, .framer-VnF0R.framer-v-i8jcog.framer-j6us3, .framer-VnF0R.framer-v-x7xa0b.framer-j6us3 { flex-direction: column; width: 358px; }\",\".framer-VnF0R.framer-v-wvsf14 .framer-etsavf, .framer-VnF0R.framer-v-i8jcog .framer-etsavf, .framer-VnF0R.framer-v-x7xa0b .framer-etsavf { aspect-ratio: unset; flex: none; height: min-content; padding: 32px; width: 100%; }\",\".framer-VnF0R.framer-v-wvsf14 .framer-xwn5vl { --framer-text-wrap-override: none; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VnF0R.framer-v-wvsf14.framer-j6us3 { gap: 0px; } .framer-VnF0R.framer-v-wvsf14.framer-j6us3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-VnF0R.framer-v-wvsf14.framer-j6us3 > :first-child { margin-top: 0px; } .framer-VnF0R.framer-v-wvsf14.framer-j6us3 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VnF0R.framer-v-i8jcog.framer-j6us3 { gap: 0px; } .framer-VnF0R.framer-v-i8jcog.framer-j6us3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-VnF0R.framer-v-i8jcog.framer-j6us3 > :first-child { margin-top: 0px; } .framer-VnF0R.framer-v-i8jcog.framer-j6us3 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VnF0R.framer-v-x7xa0b.framer-j6us3 { gap: 0px; } .framer-VnF0R.framer-v-x7xa0b.framer-j6us3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-VnF0R.framer-v-x7xa0b.framer-j6us3 > :first-child { margin-top: 0px; } .framer-VnF0R.framer-v-x7xa0b.framer-j6us3 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 552\n * @framerIntrinsicWidth 1136\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"a37nNALmN\":{\"layout\":[\"fixed\",\"auto\"]},\"BVDjCH4KC\":{\"layout\":[\"fixed\",\"auto\"]},\"qHsZYX3Ae\":{\"layout\":[\"fixed\",\"auto\"]},\"JQUNAUp2_\":{\"layout\":[\"fixed\",\"auto\"]},\"PGbR8niH9\":{\"layout\":[\"fixed\",\"auto\"]},\"pnV_bUG9Z\":{\"layout\":[\"fixed\",\"auto\"]},\"xGMQoqxkb\":{\"layout\":[\"fixed\",\"auto\"]},\"jaUAJ2wYN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"x_I2_RicL\":\"phone1\",\"P8aMkBtCB\":\"background1\",\"JvxUZbIxQ\":\"phone2\",\"j2_1aeoM_\":\"background2\",\"YCx9wWzcv\":\"phone3\",\"hslBb27nA\":\"background3\",\"LJyxDlL48\":\"title1\",\"Wnc3q4txU\":\"title\",\"wRiUjrikE\":\"title2\",\"Wwgn6qYfk\":\"text2\",\"VrADO4Ine\":\"title3\",\"T93si_P4W\":\"text3\",\"zSmBiT7xi\":\"title21\",\"uyyTgjD8E\":\"title31\",\"Fzco_hk9K\":\"title4\",\"Hp2GbY5Nz\":\"title5\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerv4mz2wRnd=withCSS(Component,css,\"framer-VnF0R\");export default Framerv4mz2wRnd;Framerv4mz2wRnd.displayName=\"Features Slider\";Framerv4mz2wRnd.defaultProps={height:552,width:1136};addPropertyControls(Framerv4mz2wRnd,{variant:{options:[\"J437gTbFJ\",\"a37nNALmN\",\"BVDjCH4KC\",\"qHsZYX3Ae\",\"JQUNAUp2_\",\"PGbR8niH9\",\"pnV_bUG9Z\",\"xGMQoqxkb\",\"jaUAJ2wYN\"],optionTitles:[\"Desktop 1\",\"Desktop 2\",\"Desktop 3\",\"Tablet 1\",\"Tablet 2\",\"Tablet 3\",\"Mobile 1\",\"Mobile 2\",\"Mobile 3\"],title:\"Variant\",type:ControlType.Enum},x_I2_RicL:{__defaultAssetReference:\"data:framer/asset-reference,kvDqs57aiKGfXsBZzaekdKNgMPc.png?originalFilename=4.png&preferredSize=auto\",title:\"Phone 1\",type:ControlType.ResponsiveImage},P8aMkBtCB:{defaultValue:'var(--token-dca9c9e1-8c4f-4ff8-a027-849eb8e833e1, rgb(240, 242, 248)) /* {\"name\":\"Secondary BG\"} */',description:\"\",title:\"Background 1\",type:ControlType.Color},JvxUZbIxQ:{__defaultAssetReference:\"data:framer/asset-reference,qNkxDvvT0sdP16RjU1bHfGrD5g.png?originalFilename=iPhone+3.png&preferredSize=auto\",title:\"Phone 2\",type:ControlType.ResponsiveImage},j2_1aeoM_:{defaultValue:\"rgb(240, 248, 246)\",title:\"Background 2\",type:ControlType.Color},YCx9wWzcv:{__defaultAssetReference:\"data:framer/asset-reference,kvDqs57aiKGfXsBZzaekdKNgMPc.png?originalFilename=4.png&preferredSize=auto\",title:\"Phone 3\",type:ControlType.ResponsiveImage},hslBb27nA:{defaultValue:\"rgb(248, 240, 242)\",title:\"Background 3\",type:ControlType.Color},LJyxDlL48:{defaultValue:\"Keep track of your lectures\",displayTextArea:false,placeholder:\"\",title:\"Title1\",type:ControlType.String},Wnc3q4txU:{defaultValue:\"BuzzNotes organizes your notes by content and lets you effortlessly sort them into the folders of your choice.\",displayTextArea:true,title:\"Title\",type:ControlType.String},wRiUjrikE:{defaultValue:\"Test your knowledge\",description:\"Learn with flashcards\",displayTextArea:false,title:\"Title2\",type:ControlType.String},Wwgn6qYfk:{defaultValue:\"Create quizzes and flashcards personalized to your notes for an effective review. Each question is crafted to reinforce key points, helping you deepen your understanding with every session.\",description:\"\",displayTextArea:false,title:\"Text2\",type:ControlType.String},VrADO4Ine:{defaultValue:\"Chat with your notes\",displayTextArea:false,title:\"Title3\",type:ControlType.String},T93si_P4W:{defaultValue:\"Have your own AI assistant ready to answer any question that you have. Engage in conversation with your notes to uncover deeper insights and clarify concepts.\",displayTextArea:false,title:\"Text3\",type:ControlType.String},zSmBiT7xi:{defaultValue:\"Test your knowledge\",displayTextArea:false,placeholder:\"\",title:\"Title 2\",type:ControlType.String},uyyTgjD8E:{defaultValue:\"Create quizzes and flashcards personalized to your notes for an effective review. Each question is crafted to reinforce key points, helping you deepen your understanding with every session.\",displayTextArea:false,title:\"Title 3\",type:ControlType.String},Fzco_hk9K:{defaultValue:\"Chat with your notes\",displayTextArea:false,title:\"Title 4\",type:ControlType.String},Hp2GbY5Nz:{defaultValue:\"Have your own AI assistant ready to answer any question that you have. Engage in conversation with your notes to uncover deeper insights and clarify concepts.\",description:\"Have your own AI assistant ready to answer any question that you have. Engage in conversation with your notes to uncover deeper insights and clarify concepts.\",displayTextArea:false,title:\"Title 5\",type:ControlType.String}});addFonts(Framerv4mz2wRnd,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerv4mz2wRnd\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a37nNALmN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BVDjCH4KC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qHsZYX3Ae\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JQUNAUp2_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PGbR8niH9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pnV_bUG9Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xGMQoqxkb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jaUAJ2wYN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1136\",\"framerVariables\":\"{\\\"x_I2_RicL\\\":\\\"phone1\\\",\\\"P8aMkBtCB\\\":\\\"background1\\\",\\\"JvxUZbIxQ\\\":\\\"phone2\\\",\\\"j2_1aeoM_\\\":\\\"background2\\\",\\\"YCx9wWzcv\\\":\\\"phone3\\\",\\\"hslBb27nA\\\":\\\"background3\\\",\\\"LJyxDlL48\\\":\\\"title1\\\",\\\"Wnc3q4txU\\\":\\\"title\\\",\\\"wRiUjrikE\\\":\\\"title2\\\",\\\"Wwgn6qYfk\\\":\\\"text2\\\",\\\"VrADO4Ine\\\":\\\"title3\\\",\\\"T93si_P4W\\\":\\\"text3\\\",\\\"zSmBiT7xi\\\":\\\"title21\\\",\\\"uyyTgjD8E\\\":\\\"title31\\\",\\\"Fzco_hk9K\\\":\\\"title4\\\",\\\"Hp2GbY5Nz\\\":\\\"title5\\\"}\",\"framerIntrinsicHeight\":\"552\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./v4mz2wRnd.map", "// Generated by Framer (cf240c2)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Recoleta Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Recoleta Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/7QVVQEYm0B0wP5WCBgAzB7oY1i4.woff2\"}]}];export const css=['.framer-cQ4xi .framer-styles-preset-m6rks7:not(.rich-text-wrapper), .framer-cQ4xi .framer-styles-preset-m6rks7.rich-text-wrapper h2 { --framer-font-family: \"Recoleta Bold\", \"Recoleta Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 64px; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-cQ4xi .framer-styles-preset-m6rks7:not(.rich-text-wrapper), .framer-cQ4xi .framer-styles-preset-m6rks7.rich-text-wrapper h2 { --framer-font-family: \"Recoleta Bold\", \"Recoleta Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 56px; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-cQ4xi .framer-styles-preset-m6rks7:not(.rich-text-wrapper), .framer-cQ4xi .framer-styles-preset-m6rks7.rich-text-wrapper h2 { --framer-font-family: \"Recoleta Bold\", \"Recoleta Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 48px; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-cQ4xi\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import ReviewCard from\"#framer/local/canvasComponent/K1bgQdfeH/K1bgQdfeH.js\";import FAQFAQ from\"#framer/local/canvasComponent/NO_388dZL/NO_388dZL.js\";import ButtonsButton from\"#framer/local/canvasComponent/oQZRBY0Ao/oQZRBY0Ao.js\";import Header from\"#framer/local/canvasComponent/PJykItjta/PJykItjta.js\";import BG from\"#framer/local/canvasComponent/uYpUXAAs2/uYpUXAAs2.js\";import FeaturesSlider from\"#framer/local/canvasComponent/v4mz2wRnd/v4mz2wRnd.js\";import Footer from\"#framer/local/canvasComponent/W5y2JLP0K/W5y2JLP0K.js\";import Image1 from\"#framer/local/canvasComponent/WlowsdqTE/WlowsdqTE.js\";import*as sharedStyle1 from\"#framer/local/css/dxCeqIlTM/dxCeqIlTM.js\";import*as sharedStyle2 from\"#framer/local/css/elP2a6llk/elP2a6llk.js\";import*as sharedStyle from\"#framer/local/css/qIjFORtZc/qIjFORtZc.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderFonts=getFonts(Header);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const Image1Fonts=getFonts(Image1);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const FeaturesSliderFonts=getFonts(FeaturesSlider);const FeaturesSliderWithVariantAppearEffect=withVariantAppearEffect(FeaturesSlider);const ContainerWithFX=withFX(Container);const BGFonts=getFonts(BG);const BGWithVariantAppearEffect=withVariantAppearEffect(BG);const ReviewCardFonts=getFonts(ReviewCard);const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const FAQFAQFonts=getFonts(FAQFAQ);const ButtonsButtonFonts=getFonts(ButtonsButton);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={ibQqWlFPu:\"(min-width: 810px) and (max-width: 1199px)\",IvLgp1GwG:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-6pZiq\";const variantClassNames={ibQqWlFPu:\"framer-v-1d2lx49\",IvLgp1GwG:\"framer-v-11585dt\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:.4,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={delay:0,duration:.4,ease:[.5,0,.88,.77],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={delay:.6,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={delay:0,duration:50,ease:[0,0,1,1],type:\"tween\"};const animation5={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition6={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.035,skewX:0,skewY:0,transition:transition7};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"IvLgp1GwG\",Tablet:\"ibQqWlFPu\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"IvLgp1GwG\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"IvLgp1GwG\")return false;return true;};const elementId=useRouteElementId(\"ACadlHhBa\");const elementId1=useRouteElementId(\"VvQtF_3fe\");const elementId2=useRouteElementId(\"O39M6zXwt\");const elementId3=useRouteElementId(\"qXhgasDHq\");const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const elementId4=useRouteElementId(\"DUrC_lBuN\");const elementId5=useRouteElementId(\"TofJIhNsx\");const elementId6=useRouteElementId(\"xcoEDItlL\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-07b59ed2-9f13-4589-9171-013bf1f6258f, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-yygzsl-container\",\"data-framer-appear-id\":\"yygzsl\",initial:animation1,layoutScroll:true,nodeId:\"z52YRLoUw\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{variant:\"sAqWJ2Glh\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"z52YRLoUw\",layoutId:\"z52YRLoUw\",style:{height:\"100%\",width:\"100%\"},variant:\"v4bscMZ2_\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-4pa676\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1tabn0e\",\"data-framer-appear-id\":\"1tabn0e\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5w9ngx\",\"data-framer-name\":\"Logo, Title, Subtitle\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-94jx53\",\"data-styles-preset\":\"qIjFORtZc\",style:{\"--framer-text-color\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\"},children:\"Your Grades Deserve Better\"})}),className:\"framer-1pqwuda\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Turn audio into perfect notes, quizzes, and flashcards with AI.\"})})}),className:\"framer-xyz5pf\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iwdd8d\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16hon4s\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-103cumb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gwv_3sDLU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 163, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"gwv_3sDLU\",layoutId:\"gwv_3sDLU\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-x6th0q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vCEKrAoM0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 163, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"vCEKrAoM0\",layoutId:\"vCEKrAoM0\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2chjsg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QXgUBzDgx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 163, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"QXgUBzDgx\",layoutId:\"QXgUBzDgx\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13d04pa-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XT89IWBFy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 163, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"XT89IWBFy\",layoutId:\"XT89IWBFy\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15x68n6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EDgFLhfaP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 163, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"EDgFLhfaP\",layoutId:\"EDgFLhfaP\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\"},children:\"5.0 \u2022 15 Ratings\"})}),className:\"framer-u9vsgl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r3if8c\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1buvc1a\",\"data-framer-appear-id\":\"1buvc1a\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2656,intrinsicWidth:1294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+328+0+32),pixelHeight:2656,pixelWidth:1294,sizes:\"294px\",src:\"https://framerusercontent.com/images/J9hjvs5LrLc0Wh2VVpetWOa0EM.png\",srcSet:\"https://framerusercontent.com/images/J9hjvs5LrLc0Wh2VVpetWOa0EM.png?scale-down-to=2048 997w,https://framerusercontent.com/images/J9hjvs5LrLc0Wh2VVpetWOa0EM.png 1294w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2656,intrinsicWidth:1294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+128+328+0+0),pixelHeight:2656,pixelWidth:1294,sizes:\"358px\",src:\"https://framerusercontent.com/images/J9hjvs5LrLc0Wh2VVpetWOa0EM.png\",srcSet:\"https://framerusercontent.com/images/J9hjvs5LrLc0Wh2VVpetWOa0EM.png?scale-down-to=2048 997w,https://framerusercontent.com/images/J9hjvs5LrLc0Wh2VVpetWOa0EM.png 1294w\"},className:\"framer-1dlfce3\",\"data-framer-name\":\"IPhone 15 Pro - Black Titanium - Portrait CROP\"})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-lgs29g\",\"data-border\":true,\"data-framer-appear-id\":\"lgs29g\",\"data-framer-name\":\"Dot sircle\",initial:animation1,optimized:true}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition5,__perspectiveFX:false,__targetOpacity:1,animate:animation4,className:\"framer-1sw85ma\",\"data-framer-appear-id\":\"1sw85ma\",\"data-framer-name\":\"Circle\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b7lzk2\",\"data-framer-name\":\"Arm 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{y:(componentViewport?.y||0)+0+0+128+328+799-399+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:(componentViewport?.y||0)+0+0+128+328+735-399+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gsl986-container\",nodeId:\"qusLC00SF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image1,{g8inBlkLf:addImageAlt({src:\"https://framerusercontent.com/images/dopwcHmDyTLMkSAcMOCnH1ANO8.png\"},\"\"),height:\"100%\",id:\"qusLC00SF\",layoutId:\"qusLC00SF\",style:{height:\"100%\",width:\"100%\"},VuLcAIq0P:\"var(--token-773348a1-45a6-430e-8c23-91e26edecaec, rgb(198, 210, 237))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{y:(componentViewport?.y||0)+0+0+128+328+799-399+0+0+1312}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:(componentViewport?.y||0)+0+0+128+328+735-399+0+0+1312,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1351pzz-container\",nodeId:\"Nrs5cxtEX\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:180},children:/*#__PURE__*/_jsx(Image1,{g8inBlkLf:addImageAlt({src:\"https://framerusercontent.com/images/skLdQNTC9xTeyI3VIcGzhd4D81Q.png\"},\"\"),height:\"100%\",id:\"Nrs5cxtEX\",layoutId:\"Nrs5cxtEX\",style:{height:\"100%\",width:\"100%\"},VuLcAIq0P:\"var(--token-773348a1-45a6-430e-8c23-91e26edecaec, rgb(198, 210, 237))\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u2albw\",\"data-framer-name\":\"Arm 3\",style:{rotate:30},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{y:(componentViewport?.y||0)+0+0+128+328+799-399+-.603+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:(componentViewport?.y||0)+0+0+128+328+735-399+-.603+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16okga4-container\",nodeId:\"VQfOzP0pt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image1,{g8inBlkLf:addImageAlt({src:\"https://framerusercontent.com/images/mbmZuaRprfoYEaNCdj87i06R36k.png\"},\"\"),height:\"100%\",id:\"VQfOzP0pt\",layoutId:\"VQfOzP0pt\",style:{height:\"100%\",width:\"100%\"},VuLcAIq0P:\"var(--token-9d20a3ea-a1bb-4980-b54e-a1d34d83c85d, rgb(210, 185, 216))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{y:(componentViewport?.y||0)+0+0+128+328+799-399+-.603+0+1312}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:(componentViewport?.y||0)+0+0+128+328+735-399+-.603+0+1312,children:/*#__PURE__*/_jsx(Container,{className:\"framer-53zx6y-container\",nodeId:\"nbJkARMnK\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:180},children:/*#__PURE__*/_jsx(Image1,{g8inBlkLf:addImageAlt({src:\"https://framerusercontent.com/images/0V0J5cjzmsV86Q5QAeDCa98bgE.png\"},\"\"),height:\"100%\",id:\"nbJkARMnK\",layoutId:\"nbJkARMnK\",style:{height:\"100%\",width:\"100%\"},VuLcAIq0P:\"var(--token-9d20a3ea-a1bb-4980-b54e-a1d34d83c85d, rgb(210, 185, 216))\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1heu6qv\",\"data-framer-name\":\"Arm 5\",style:{rotate:60},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{y:(componentViewport?.y||0)+0+0+128+328+799-399+-.603+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:(componentViewport?.y||0)+0+0+128+328+735-399+-.603+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14xbexj-container\",nodeId:\"vvP4Tzbg7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image1,{g8inBlkLf:addImageAlt({src:\"https://framerusercontent.com/images/jo5WnYEDeIPdOVGvh5rbpXHhk.png\"},\"\"),height:\"100%\",id:\"vvP4Tzbg7\",layoutId:\"vvP4Tzbg7\",style:{height:\"100%\",width:\"100%\"},VuLcAIq0P:\"var(--token-773348a1-45a6-430e-8c23-91e26edecaec, rgb(198, 210, 237))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{y:(componentViewport?.y||0)+0+0+128+328+799-399+-.603+0+1312}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:(componentViewport?.y||0)+0+0+128+328+735-399+-.603+0+1312,children:/*#__PURE__*/_jsx(Container,{className:\"framer-39vzk5-container\",nodeId:\"Vv63Gyx8Z\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:180},children:/*#__PURE__*/_jsx(Image1,{g8inBlkLf:addImageAlt({src:\"https://framerusercontent.com/images/zGXVVZaZVemgXsNQETaQB0E8.png\"},\"\"),height:\"100%\",id:\"Vv63Gyx8Z\",layoutId:\"Vv63Gyx8Z\",style:{height:\"100%\",width:\"100%\"},VuLcAIq0P:\"var(--token-773348a1-45a6-430e-8c23-91e26edecaec, rgb(198, 210, 237))\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2vbuwt\",\"data-framer-name\":\"Arm 7\",style:{rotate:90},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{y:(componentViewport?.y||0)+0+0+128+328+799-399+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:(componentViewport?.y||0)+0+0+128+328+735-399+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11dnxeg-container\",nodeId:\"T_UViUdnh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image1,{g8inBlkLf:addImageAlt({src:\"https://framerusercontent.com/images/Yh9JyKdk4tjMcAvzYb4NrtVdo.png\"},\"\"),height:\"100%\",id:\"T_UViUdnh\",layoutId:\"T_UViUdnh\",style:{height:\"100%\",width:\"100%\"},VuLcAIq0P:\"var(--token-9d20a3ea-a1bb-4980-b54e-a1d34d83c85d, rgb(210, 185, 216))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{y:(componentViewport?.y||0)+0+0+128+328+799-399+0+0+1312}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:(componentViewport?.y||0)+0+0+128+328+735-399+0+0+1312,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xka88k-container\",nodeId:\"kOVjgRY8M\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:180},children:/*#__PURE__*/_jsx(Image1,{g8inBlkLf:addImageAlt({src:\"https://framerusercontent.com/images/u9fLHUhsXJvzqWhobm6aTXoPQmo.png\"},\"\"),height:\"100%\",id:\"kOVjgRY8M\",layoutId:\"kOVjgRY8M\",style:{height:\"100%\",width:\"100%\"},VuLcAIq0P:\"var(--token-9d20a3ea-a1bb-4980-b54e-a1d34d83c85d, rgb(210, 185, 216))\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jjykft\",\"data-framer-name\":\"Arm 9\",style:{rotate:120},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{y:(componentViewport?.y||0)+0+0+128+328+799-399+-.603+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:(componentViewport?.y||0)+0+0+128+328+735-399+-.603+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9rd2p0-container\",nodeId:\"koEOjOl5K\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image1,{g8inBlkLf:addImageAlt({src:\"https://framerusercontent.com/images/xKHdA9AifY3B9EnSvm8bXr1u4SY.png\"},\"\"),height:\"100%\",id:\"koEOjOl5K\",layoutId:\"koEOjOl5K\",style:{height:\"100%\",width:\"100%\"},VuLcAIq0P:\"var(--token-773348a1-45a6-430e-8c23-91e26edecaec, rgb(198, 210, 237))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{y:(componentViewport?.y||0)+0+0+128+328+799-399+-.603+0+1312}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:(componentViewport?.y||0)+0+0+128+328+735-399+-.603+0+1312,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xkq2m0-container\",nodeId:\"tXoWEZfQK\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:180},children:/*#__PURE__*/_jsx(Image1,{g8inBlkLf:addImageAlt({src:\"https://framerusercontent.com/images/W3AifVAxjHdQ8g7d29DCVtHFv4.png\"},\"\"),height:\"100%\",id:\"tXoWEZfQK\",layoutId:\"tXoWEZfQK\",style:{height:\"100%\",width:\"100%\"},VuLcAIq0P:\"var(--token-773348a1-45a6-430e-8c23-91e26edecaec, rgb(198, 210, 237))\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16w7blk\",\"data-framer-name\":\"Arm 11\",style:{rotate:150},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{y:(componentViewport?.y||0)+0+0+128+328+799-399+-.603+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:(componentViewport?.y||0)+0+0+128+328+735-399+-.603+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fbvrhb-container\",nodeId:\"EJWezGByz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image1,{g8inBlkLf:addImageAlt({src:\"https://framerusercontent.com/images/JIMKQu2cXbitNJYvkP1XiY8yk4s.png\"},\"\"),height:\"100%\",id:\"EJWezGByz\",layoutId:\"EJWezGByz\",style:{height:\"100%\",width:\"100%\"},VuLcAIq0P:\"var(--token-9d20a3ea-a1bb-4980-b54e-a1d34d83c85d, rgb(210, 185, 216))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{y:(componentViewport?.y||0)+0+0+128+328+799-399+-.603+0+1312}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:(componentViewport?.y||0)+0+0+128+328+735-399+-.603+0+1312,children:/*#__PURE__*/_jsx(Container,{className:\"framer-74160w-container\",nodeId:\"WizLEvLLf\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:180},children:/*#__PURE__*/_jsx(Image1,{g8inBlkLf:addImageAlt({src:\"https://framerusercontent.com/images/a2hVSUvXjLYkfRQqwoN78kFRAZs.png\"},\"\"),height:\"100%\",id:\"WizLEvLLf\",layoutId:\"WizLEvLLf\",style:{height:\"100%\",width:\"100%\"},VuLcAIq0P:\"var(--token-9d20a3ea-a1bb-4980-b54e-a1d34d83c85d, rgb(210, 185, 216))\",width:\"100%\"})})})})]})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-kz3ssx\",\"data-framer-name\":\"Clients\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-es3nmd\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",style:{\"--framer-text-alignment\":\"center\"},children:\"Used and loved by people at \"})}),className:\"framer-10dg0vn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1176svq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"o3Edce_Xw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:64,height:\"100%\",hoverFactor:1,id:\"o3Edce_Xw\",layoutId:\"o3Edce_Xw\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bi0mvv\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ebla7c\",\"data-framer-name\":\"Harvard University_logo\",fill:\"black\",intrinsicHeight:165,intrinsicWidth:600,svg:'<svg width=\"600\" height=\"165\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M244.32 110.24c0-1.242-.828-2.07-2.484-2.484v-.828c.828 0 3.933.207 4.76.207.622 0 3.727-.207 4.555-.207v.828c-1.45.414-2.277 1.242-2.277 2.484v15.525c0 4.968 2.69 7.659 8.28 7.659 4.967 0 8.693-2.277 8.693-7.452v-15.939c0-1.242-.828-2.07-2.483-2.484v-.62c.62 0 3.104.206 3.932.206.828 0 3.312-.207 3.933-.207v.828c-1.863.414-2.484 1.242-2.484 2.484v15.111c0 6.83-3.932 10.764-12.42 10.764-7.865 0-12.006-3.519-12.006-9.936zm33.947 24.632c1.863-.414 2.484-1.242 2.484-2.484v-21.527c0-1.863-1.035-2.69-2.691-3.105v-.828h6.003l18.63 21.941v-18.63c0-1.242-.828-2.07-2.484-2.484v-.828c.62 0 3.105.207 3.933.207.828 0 3.312-.207 3.933-.207v.828c-1.863.414-2.691 1.242-2.691 2.484v25.874h-1.035c-.621-.207-2.07-.828-4.14-3.105l-16.767-19.458v19.044c0 1.242.62 2.07 2.484 2.484v.828c-.621 0-3.105-.207-3.933-.207-.828 0-3.312.207-3.933.207zm147.38-5.796h.828c.414 1.656 1.242 3.105 2.69 3.933 1.243 1.035 3.52 1.449 5.176 1.449 3.726 0 6.21-1.863 6.21-4.76 0-3.106-3.105-4.555-6.624-6.418-2.691-1.449-8.073-3.519-8.073-8.693 0-4.761 3.726-7.866 9.522-7.866 3.933 0 5.589 1.035 8.28.828v5.796h-.828c-1.035-3.52-4.14-4.554-7.66-4.554-3.932 0-5.174 2.277-5.174 4.347 0 3.104 3.105 4.76 6.624 6.416 3.933 1.656 8.28 3.933 8.28 8.901 0 4.761-3.726 8.073-10.35 8.073-3.933 0-6.417-1.242-8.487-1.449zm80.107-5.382-7.659-12.213c-1.242-2.07-2.277-3.312-3.726-3.726v-.828c1.035 0 3.933.207 4.554.207.828 0 3.726-.207 4.968-.207v.828c-1.035.207-1.449.621-1.449 1.45 0 .62.414 1.448.828 2.276.414.621 5.589 9.315 5.589 9.315l5.382-9.315c.62-1.035.828-1.863.828-2.484 0-.62-.414-1.035-1.242-1.035v-1.035c.828 0 2.898.207 3.519.207.62 0 2.898-.207 3.726-.207v.828c-2.07.828-3.312 2.691-4.554 4.761l-6.831 11.592m.414-1.449v9.73c0 1.034.828 2.276 2.484 2.483v.828c-.828 0-3.933-.207-4.761-.207s-3.726.207-4.76.207v-.828c1.655-.414 2.483-1.449 2.483-2.484v-9.315m-140.96-16.146h17.802c.621 0 1.45 0 2.07-.414h.828l-.207 5.796h-.828c-.62-1.863-1.449-3.312-4.76-3.312h-7.66v10.35h6.003c.828 0 1.863 0 2.277-.207 1.242-.207 1.863-1.035 2.277-2.277h.828v7.245h-.828c-.414-1.242-.828-2.07-2.277-2.277-.414-.207-1.449-.207-2.277-.207h-6.003v11.8h8.487c3.726 0 4.761-1.45 5.59-3.727h.827l-.828 6.003c-2.69-.207-4.347-.207-7.452-.207h-8.9c-.829 0-3.933.207-4.968.207v-.828c1.656-.414 2.483-1.035 2.483-2.69V110.24c0-1.449-.828-2.277-2.483-2.484zm-45.539 3.52c0-1.45-.828-2.278-2.484-2.692v-.828c1.035 0 3.933.207 4.968.207.828 0 3.933-.207 4.968-.207v.828c-1.656.414-2.691 1.035-2.691 2.691v21.734c0 1.45.828 2.277 2.69 2.691v.828c-1.034 0-3.932-.207-4.967-.207-.828 0-3.933.207-4.968.207v-.828c1.863-.414 2.691-1.035 2.691-2.69zm135.17 0c0-1.45-.828-2.278-2.484-2.692v-.828c1.035 0 4.14.207 4.968.207s3.933-.207 4.968-.207v.828c-1.656.414-2.484 1.035-2.484 2.691v21.734c0 1.45.828 2.277 2.484 2.691v.828c-1.035 0-3.933-.207-4.968-.207-.828 0-3.933.207-4.968.207v-.828c1.863-.414 2.484-1.035 2.484-2.69zm24.84-3.313c-9.73 0-11.386-.207-13.249-.414v5.796h.828c.828-2.69 2.277-3.312 4.14-3.312h6.21v22.77c0 1.448-.828 2.276-2.691 2.69v.828c1.035 0 4.14-.207 4.968-.207.828 0 3.933.207 4.968.207v-.828c-1.656-.414-2.691-1.242-2.691-2.69v-22.77h6.003c1.863 0 3.311.621 4.14 3.312h.827v-5.796c-2.277.207-3.725.414-13.455.414zM401.02 132.18c0 1.45.828 2.277 2.691 2.691v.828c-1.035 0-4.14-.207-4.968-.207-.828 0-3.726.207-4.76.207v-.828c1.655-.414 2.483-1.035 2.483-2.69v-21.942c0-1.449-.828-2.277-2.484-2.484v-.828c1.035 0 3.933.207 4.761.207 1.45 0 5.382-.207 7.038-.207 6.83 0 10.557 2.898 10.557 7.66 0 3.725-2.898 6.416-7.245 7.451 0 0 1.035.621 2.07 1.656 1.242 1.449 4.554 6.003 5.796 7.659s3.105 3.519 4.968 3.519v.62c-.828.208-2.277.415-3.312.415-2.277 0-4.14-.828-6.003-2.898-1.656-1.863-4.14-5.796-5.796-7.866-1.035-1.242-2.277-2.277-4.347-2.69-.414 0-.828-.208-1.242-.208zm0-11.592c.828.207 2.277.207 3.519.207 5.382 0 7.038-3.105 7.038-5.796 0-3.933-2.484-6.21-7.245-6.21-1.035 0-2.277.208-3.312.415zm-67.894-10.143c-.62-1.449-1.656-2.484-3.312-2.69v-.829c1.035 0 4.554.207 5.382.207.621 0 3.726-.207 4.761-.207v.828c-.828.207-2.07.621-2.07 1.656 0 .621.414 1.656 1.242 3.312l7.452 16.767 7.038-16.767c.62-1.449 1.035-2.484 1.035-3.105 0-.828-.828-1.449-2.07-1.656v-1.035c.828 0 3.104.207 3.932.207.621 0 3.312-.207 4.347-.207v.828c-1.656.414-2.898 1.45-3.726 3.726l-10.35 24.218h-2.276zm26.495-76.38c-1.242-2.692-3.105-4.555-6.003-5.176V27.44c1.863 0 8.28.207 9.729.207 1.242 0 7.452-.207 9.522-.207v1.45c-1.656.413-3.726 1.241-3.726 3.104 0 1.242.828 3.105 2.277 6.21l14.076 31.877 13.248-31.877c1.035-2.484 1.863-4.554 1.863-6.003 0-1.656-1.656-2.898-3.726-3.312V27.44c1.863 0 6.003.207 7.452.207 1.242 0 6.21-.207 8.28-.207v1.45c-3.312.827-5.382 2.897-7.245 7.037L385.91 81.88h-4.347zm-188.37 45.952c2.484-.62 4.347-1.656 4.347-4.554v-42.02c0-2.69-1.656-3.933-4.347-4.554v-1.656c1.242 0 7.038.207 8.487.207 1.656 0 7.659-.207 8.9-.207v1.45c-2.483.62-4.346 1.655-4.346 4.553v17.802h31.463V33.443c0-2.898-1.656-4.14-4.347-4.554v-1.656c1.242 0 7.245.207 8.9.207 1.45 0 7.245-.207 8.694-.207v1.45c-2.483.62-4.346 1.655-4.346 4.553v42.02c0 2.691 1.656 3.933 4.346 4.554v1.45c-1.242 0-7.244-.208-8.693-.208-1.656 0-7.452.207-8.901.207v-1.242c2.484-.62 4.347-1.656 4.347-4.554V55.591h-31.463v19.872c0 2.898 1.656 3.933 4.347 4.554v1.45c-1.242 0-7.452-.208-8.901-.208s-7.038.207-8.487.207zm362.66 0c3.312-.62 4.968-1.863 4.968-4.76V33.442c0-2.898-1.863-4.14-4.968-4.554v-1.656c1.863 0 7.659.207 9.315.207 2.69 0 9.936-.62 15.732-.62 19.25 0 31.049 10.763 31.049 27.115 0 15.94-12.213 27.737-32.084 27.737-5.796 0-12.42-.413-15.111-.413-1.656 0-7.038.206-8.9.206zm13.662-2.69c2.07.413 5.589.62 8.487.62 16.146 0 24.632-9.728 24.632-23.39 0-14.076-8.9-24.01-24.011-24.01-3.105 0-7.038.206-9.108.62zm-232.04-2.278c0 2.691 1.863 4.347 4.968 4.968v1.45c-1.863 0-7.659-.208-9.522-.208-1.449 0-7.245.207-9.108.207v-1.449c3.105-.62 4.761-2.07 4.761-4.968V33.65c0-2.483-1.449-4.14-4.76-4.76v-1.656c1.862 0 7.451.207 9.107.207 2.691 0 10.143-.414 13.248-.414 13.041 0 20.286 5.381 20.286 14.49 0 7.244-5.382 12.006-13.662 14.076 0 0 1.863 1.035 3.726 3.311 2.277 2.691 8.694 11.8 11.178 14.904 2.484 3.105 5.796 6.624 9.315 6.624v1.242c-1.656.414-4.347.621-6.417.621-4.347 0-7.866-1.656-11.385-5.796-2.898-3.519-8.073-11.178-10.97-14.904-1.864-2.484-4.14-4.347-8.28-4.968-.829-.207-1.657-.207-2.485-.414zm0-21.94c1.656.206 4.347.413 6.83.413 10.144 0 13.249-5.795 13.249-10.97 0-7.245-4.968-11.8-13.662-11.8-1.863 0-4.554.207-6.417.621zm170.98 21.94c0 2.691 1.863 4.347 4.968 4.968v1.45c-1.863 0-7.659-.208-9.315-.208-1.449 0-7.245.207-9.108.207v-1.449c3.105-.62 4.761-2.07 4.761-4.968V33.65c0-2.483-1.449-4.14-4.76-4.76v-1.656c1.862 0 7.451.207 9.107.207 2.691 0 10.143-.414 13.041-.414 13.041 0 20.286 5.381 20.286 14.49 0 7.244-5.382 12.006-13.662 14.076 0 0 1.863 1.035 3.726 3.311 2.277 2.691 8.694 11.8 11.178 14.904 2.484 3.105 5.796 6.624 9.315 6.624v1.242c-1.656.414-4.347.621-6.417.621-4.347 0-7.866-1.656-11.385-5.796-2.898-3.519-8.073-11.178-10.97-14.904-1.864-2.484-4.14-4.347-8.28-4.968-.829-.207-1.657-.207-2.485-.414zm0-21.94c1.656.206 4.347.413 6.83.413 10.144 0 13.249-5.795 13.249-10.97 0-7.245-4.968-11.8-13.662-11.8-1.863 0-4.554.207-6.417.621zm-249.64 26.908c3.519-.827 5.382-3.104 6.624-6.002l17.388-41.813c.828-1.656 1.656-5.175 1.656-5.175h4.968s.828 3.519 1.656 5.382l18.423 41.813c1.242 2.897 2.69 4.967 6.417 5.795v1.45c-2.07 0-8.073-.208-9.522-.208s-7.245.207-9.315.207v-1.449c2.69-.62 3.519-2.07 3.519-3.311 0-1.035-.414-2.484-1.035-3.726l-3.933-8.901h-20.286l-3.519 9.108c-.414 1.035-.828 2.484-.828 3.519 0 1.449.828 2.69 3.726 3.518v1.45c-1.863 0-6.624-.208-7.659-.208l-7.866.207zm34.568-20.286-8.694-20.079-8.073 20.08zm137.65 20.286c3.519-.827 5.382-3.104 6.624-6.002l17.388-41.813c.828-1.656 1.656-5.175 1.656-5.175h4.968s.828 3.519 1.656 5.382l18.423 41.813c1.242 2.897 2.69 4.967 6.417 5.795v1.45c-2.07 0-8.073-.208-9.522-.208s-7.245.207-9.315.207v-1.449c2.69-.62 3.519-2.07 3.519-3.311 0-1.035-.414-2.484-1.035-3.726l-3.933-8.901h-20.286l-3.519 9.108c-.414 1.035-.828 2.484-.828 3.519 0 1.449.828 2.69 3.726 3.518v1.45c-1.863 0-6.624-.208-7.659-.208l-7.866.207v-1.656zm34.361-20.286-8.694-20.079-8.073 20.08z\" fill=\"#1e1e1e\"/><path d=\"M10.828 10.47h121.09v45.746c0 20.906-7.866 65.41-60.029 98.53 0 0-56.717-23.597-61.064-98.53z\" fill=\"#a51c30\"/><path d=\"M50.645 82.64c-.304-.012-.568.14-.78.323a3.147 3.147 0 0 0-.675.882c-.462.646-1.434.81-2.317.784-.883-.025-1.641-.226-1.641-.226l-.049-.013-.048.017c-1.27.423-1.834.962-2.066 1.427a1.328 1.328 0 0 0-.146.594c0 .12.015.172.024.206v4.743a.756.756 0 0 1-.335.533c-.17.114-.398.175-.627.199-.457.048-.901-.049-.901-.049h-.005c-1.591-.318-2.683.055-3.363.518-.67.455-.937.984-.946 1.002-.681.922-.23 2.216-.23 2.216v.008c.043.117.095.229.153.331l.008.024c.621 1.656 2.899 1.654 2.899 1.654.828.62 2.276.206 2.276.206.425 0 .673.177.825.4.075.305.04.61.04.61l-.004.037.008.032c.014.056.043.343.057.736.014.394.02.912.024 1.512.01 1.202.005 2.729-.008 4.23-.026 3-.077 5.898-.077 5.898 0 1.012-.198 1.605-.198 1.605l-.008.024v.028c0 .05-.017.076-.073.121a.814.814 0 0 1-.287.13c-.264.07-.642.097-1.023.097-.761 0-1.532-.101-1.532-.101l-.02-.004-.02.004c-2.156.215-2.824 2.15-2.83 2.17v.005a1.668 1.668 0 0 0-.041 1.176c.058.185.142.36.238.526.385.94 1.411 1.674 1.411 1.674 0 .414 3.934.618 3.934.618.239.06.4.227.522.429.012.036.026.072.036.109.097.362.097.703.097.703-.03.11-.04.234-.048.413-.01.2-.013.449-.009.727.01.558.042 1.24.081 1.9.078 1.323.182 2.564.182 2.564l.004.008v.008a.773.773 0 0 0 .166.347l.004.037c.207 1.242 4.14.829 4.14.829s13.785-.319 17.51-.26c.532.009.858.028.91.053.414 0 1.451-.206 1.451-.206l1.447 1.035a2.492 2.492 0 0 0 1.739.546c.11-.006.221-.021.327-.04 1.062-.192 1.868-.922 1.868-.922l2.07-.413c.414 0 17.182-.206 17.182-.206 1.45.414 2.07-.21 2.07-.21l2.689-.206c.103 0 .2-.008.29-.024.658-.12.997-.647 1.173-1.16.053-.103.108-.204.146-.308.22-.603.214-1.197.214-1.197v-3.5a3.03 3.03 0 0 1 .17-.688c.377-.665.905-.78.905-.78l2.483-.417 1.245-.618c.477-.12.73-.454.873-.857.037-.058.076-.112.105-.174.172-.365.223-.79.223-1.193 0-.806-.215-1.548-.215-1.548l-.004-.017-.004-.016c-.453-.907-1.498-1.276-2.401-1.435-.903-.16-1.698-.106-1.698-.106h-.004c-.997.1-1.373-.185-1.545-.464-.171-.28-.133-.583-.133-.583v-.012l.21-12.828c.082-.48.222-.864.36-1.177.162-.31.3-.497.3-.497.62.207 2.688-.416 2.688-.416 1.19-.12 1.685-.849 1.9-1.452.019-.035.048-.07.065-.105.272-.573.27-1.1.27-1.116.111-.811-.453-1.482-1.014-1.936a5.888 5.888 0 0 0-1.153-.72l-.032-.016H99.24a.351.351 0 0 1-.214-.15 1.274 1.274 0 0 1-.186-.396c-.1-.334-.145-.784-.158-1.23-.025-.889.077-1.758.077-1.758l.004-.012V86.22c0-.805-.575-1.37-1.116-1.722s-1.075-.51-1.075-.51l-.024-.007h-3.691c-.084-.139-.177-.274-.316-.364a2.657 2.657 0 0 0-.598-.275 4.814 4.814 0 0 0-.78-.186c-.675-.212-1.678-.21-1.678-.21h-.053l-.044.028c-1.289.892-3.55 1.266-5.478 1.395-1.929.128-3.522.028-3.522.028l-6.493-.42-.056.052c.019-.018-.022.015-.09.037a2.58 2.58 0 0 1-.27.073c-.216.047-.49.09-.76.13-.539.076-1.055.129-1.055.129l-.105.008-.037.105c-.178.535-.72.72-.72.72l-.57.193c-.378-.321-.968-.565-1.528-.736a12.78 12.78 0 0 0-1.103-.283l-.013-.008c-.02-.008-.039-.012-.056-.016a.818.818 0 0 0-.11-.017 4.554 4.554 0 0 0-.327-.012c-.268-.002-.634.006-1.067.02-.866.03-1.999.085-3.125.15-2.25.13-4.472.287-4.476.287-2.566.103-4.3-.309-5.389-.74-1.09-.43-1.52-.865-1.52-.865-.273-.373-.575-.554-.873-.566zm-.012.34c.18.008.39.108.63.444l.005.008.008.013s.501.493 1.637.942c1.136.449 2.918.868 5.527.764h.012s2.222-.158 4.471-.287c1.125-.065 2.256-.12 3.117-.15.43-.014.797-.022 1.056-.02.129 0 .23.005.299.012.028.002.047.006.06.008l.008.008.049.012s.514.1 1.1.28c.586.178 1.25.45 1.508.707l.072.073.72-.239s.442-.259.74-.707c-.23.56-.796.752-.796.752l-.619.416c-.621-.621-2.693-1.035-2.693-1.035-.207-.207-9.108.412-9.108.412-5.175.207-7.039-1.653-7.039-1.653-1.035-1.45-2.07.618-2.07.618-1.035 1.45-4.14.623-4.14.623-1.145.382-1.658.85-1.896 1.245a1.02 1.02 0 0 1 .085-.238c.18-.36.663-.843 1.848-1.246.066.017.758.201 1.645.227.929.026 2.027-.124 2.6-.926l.008-.008.008-.012s.251-.5.602-.805c.176-.152.365-.246.546-.238zm38.9.31c.074.002 1.012.013 1.557.195l.016.004.013.004s.352.05.723.174c.186.062.375.14.522.234.023.015.036.033.056.049-.497-.306-1.277-.42-1.277-.42-.621-.208-1.658-.207-1.658-.207-2.69 1.863-9.108 1.451-9.108 1.451l-6.416-.416c-.205.205-2.206.408-2.252.412.008-.014.02-.025.028-.04.03-.002.504-.05 1.035-.125.274-.04.554-.084.784-.134.116-.025.218-.052.304-.08.048-.017.085-.045.125-.065l6.384.408s1.617.106 3.57-.024c1.93-.129 4.189-.474 5.595-1.42zm3.243 1.032h3.72c.012.004.307.117.65.295-.347-.173-.622-.259-.622-.259h-3.728c-.004-.012-.015-.024-.02-.036zm4.44.331c.088.048.161.073.254.134.025.016.047.039.073.056a4.18 4.18 0 0 0-.328-.19zm1.475 6.716c.023.039.042.081.069.117.105.14.248.248.424.283l.016.004h2.87c.025.01.54.249 1.052.663.358.29.674.654.816 1.055-.37-.596-1.054-1.052-1.471-1.29a3.765 3.765 0 0 0-.356-.182h-2.895c-.253-.05-.418-.303-.525-.65zm-55.674.63c-.52.985-1.969.639-1.969.639-3.105-.621-4.14 1.451-4.14 1.451-.028.038-.045.078-.069.118a1.4 1.4 0 0 1 .21-.433l.017-.025s.236-.476.849-.893c.612-.417 1.59-.766 3.1-.465 0 0 .485.108 1.011.052.263-.027.544-.092.78-.25.079-.052.147-.12.21-.194zm55.408 20.493c.25.381.795.706 1.84.603 0 0 .76-.05 1.617.1.854.152 1.77.504 2.146 1.25.001.004.024.108.033.141-.971-1.434-3.809-1.249-3.809-1.249-1.353.136-1.726-.432-1.827-.845zm-55.7.975-.02.076a.327.327 0 0 1-.133.26.97.97 0 0 1-.352.157c-.873.233-2.62 0-2.62 0-1.498.15-2.232 1.16-2.526 1.71 0 0 .576-1.752 2.543-1.953.035.004.767.101 1.54.101.396 0 .79-.024 1.108-.109.159-.042.303-.1.416-.19.018-.014.029-.036.045-.052zm14.422-88.284-.06.052c-3.231 2.625-7.925 1.415-7.925 1.415l-.02-.004h-.02c-4.56 0-6.028.206-6.028.206l-.065.013-.04.048c-.472.566-1.049.558-1.557.412a3.038 3.038 0 0 1-.89-.432c-.093-.136-.242-.214-.404-.271a3.018 3.018 0 0 0-.594-.13c-.402-.053-.772-.056-.772-.056h-.008l-.004.004c-4.543.31-7.376.05-9.064-.283-.845-.166-1.403-.352-1.747-.493-.344-.141-.465-.23-.465-.23l.02.02a.441.441 0 0 0-.206-.113 1.987 1.987 0 0 0-.262-.057 6.985 6.985 0 0 0-.647-.06c-.446-.027-.866-.029-.866-.029h-.105l-.048.093c-.18.36-.738 1.116-.78 1.173a.916.916 0 0 1-.182.036 5.798 5.798 0 0 1-.441.028c-.343.01-.768.004-1.18-.008-.825-.025-1.597-.076-1.597-.076l-.009-.004h-.004c-.863 0-1.383.279-1.673.57a1.33 1.33 0 0 0-.356.602l-.004.012-.206 3.958v.013c.102 1.229-.022 1.726-.105 1.86-.042.066-.043.052-.045.052l-.141-.093-.097.142c-.054.08-.26.19-.554.255a5.985 5.985 0 0 1-1.015.109c-.713.025-1.379-.025-1.379-.025l-.016-.004-.016.004a1.83 1.83 0 0 0-1.278.7c-.294.368-.47.823-.578 1.265-.214.885-.157 1.735-.157 1.735v.02c.112.562.432.956.832 1.209.4.253.879.375 1.335.428.886.105 1.665-.044 1.71-.052h.004c1.102.101 1.502.442 1.65.715.147.275.064.514.064.514l-.008.024v.028c0 .429.053 3.832.105 7.144l.101 6.497c-.05.443-.168.722-.307.894a.757.757 0 0 1-.461.279c-.326.065-.651-.065-.651-.065l-.032-.017h-.033c-2.315 0-3.38.809-3.824 1.642a2.686 2.686 0 0 0-.275 1.657c.113 1.503 1.06 2.196 1.953 2.466.895.272 1.75.162 1.75.162l-.02.004c1.107 0 1.561.293 1.754.55.193.257.15.493.15.493l-.008.053.024.052c-.007-.014.024.106.033.263.008.157.012.366.008.607-.01.48-.043 1.088-.081 1.681-.078 1.188-.182 2.325-.182 2.325v.02l.004.025c.216 1.19.905 1.678 1.524 1.82.574.13 1.047-.005 1.12-.025h.008l16.523.417c2.359 1.718 3.882 1.767 4.795 1.297.873-.45 1.103-1.253 1.132-1.346l.287.044c.185.031.546.047 1.075.061.53.015 1.216.024 2.006.028 1.58.01 3.572.004 5.538-.008 1.967-.012 3.91-.032 5.385-.048 1.469-.017 2.474-.028 2.572-.028h.012c.679.15 1.209.116 1.617-.04a1.78 1.78 0 0 0 .881-.74 2.61 2.61 0 0 0 .364-1.246v-.008l.206-4.932c.085-.324.437-.562.801-.708.353-.14.671-.186.695-.19 2.298.304 3.425-.506 3.918-1.41.493-.906.385-1.872.384-1.88v-.004c-.11-1.507-1.002-2.25-1.844-2.576-.842-.326-1.65-.267-1.65-.267l.013-.004c-1.097 0-1.6-.381-1.856-.752a1.412 1.412 0 0 1-.254-.727v-.004c.057-.36.092-1.252.121-2.462.03-1.225.048-2.738.06-4.213.027-2.95.029-5.745.029-5.745 0-.254.144-.663.295-.99.132-.287.232-.453.263-.506 1.275.13 2.249.054 2.931-.19.712-.254 1.151-.67 1.403-1.104.498-.857.276-1.762.27-1.782.095-.778-.022-1.366-.294-1.775-.28-.419-.694-.652-1.108-.777-.803-.24-1.603-.094-1.654-.084-1.416 0-1.902-.393-2.074-.736-.171-.345-.044-.693-.044-.693l.004-.017.004-.016c.313-1.984.21-3.353.024-4.229-.185-.876-.468-1.278-.468-1.278l-.017-.024-.028-.02c-.211-.141-.516-.195-.885-.235a11.6 11.6 0 0 0-1.201-.053c-.81 0-1.536.053-1.536.053l-.053.004-.036.028c-.148.111-.309.099-.53-.012-.221-.11-.47-.324-.695-.562-.451-.476-.809-1.035-.809-1.035l-.04-.06zm58.58 0-.06.052c-3.23 2.625-7.924 1.415-7.924 1.415l-.02-.004h-.024c-4.353 0-5.818.206-5.818.206l-.065.013-.04.048c-.471.566-1.049.558-1.557.412a3.033 3.033 0 0 1-.885-.428c-.093-.14-.245-.217-.408-.275a3.018 3.018 0 0 0-.595-.13c-.401-.053-.772-.056-.772-.056h-.008l-.004.004c-4.543.31-7.375.05-9.064-.283-.844-.166-1.402-.352-1.746-.493-.345-.141-.465-.23-.465-.23l.02.02a.454.454 0 0 0-.21-.113 1.919 1.919 0 0 0-.259-.057 7.077 7.077 0 0 0-.65-.06c-.447-.027-.862-.029-.862-.029h-.105l-.049.093c-.18.361-.744 1.123-.784 1.177a1.107 1.107 0 0 1-.182.032 5.675 5.675 0 0 1-.437.028c-.343.01-.768.004-1.18-.008-.824-.025-1.601-.076-1.601-.076l-.004-.004h-.004c-.963 0-1.53.272-1.848.562-.319.29-.392.61-.392.61v4.189c.102 1.124-.027 1.57-.101 1.673-.037.052-.034.033-.04.033h-.013l-.137-.093-.097.141c-.054.081-.26.19-.554.255a6.035 6.035 0 0 1-1.019.11c-.713.025-1.378-.025-1.378-.025l-.013-.004-.016.004c-.61.056-1.07.324-1.395.691-.325.367-.522.826-.642 1.27-.242.887-.186 1.738-.186 1.738v.008l.004.013c.112.561.432.956.832 1.208.4.253.875.375 1.33.429a6.149 6.149 0 0 0 1.715-.053h.004c1.102.102 1.498.442 1.645.716.148.274.069.513.069.513l-.004.004v.008c-.04.157-.05.425-.065.857a68.936 68.936 0 0 0-.028 1.666 322.15 322.15 0 0 0 .008 4.662c.026 3.3.08 6.473.08 6.496-.048.444-.171.722-.31.894a.757.757 0 0 1-.461.279c-.326.065-.647-.065-.647-.065l-.033-.016h-.036c-2.315 0-3.38.808-3.825 1.641a2.692 2.692 0 0 0-.274 1.658c.113 1.503 1.06 2.196 1.952 2.466.895.271 1.755.162 1.755.162l-.02.004c1 0 1.454.29 1.677.557.223.268.223.514.223.514v.04l.016.037c-.007-.015.024.105.032.262.008.158.01.367.004.607-.01.48-.042 1.088-.08 1.682-.078 1.187-.178 2.324-.178 2.324l-.005.021.005.024c.216 1.19.908 1.679 1.528 1.82.573.13 1.046 0 1.12-.021h.008l16.523.416c2.359 1.719 3.878 1.768 4.79 1.298.88-.453 1.164-1.313 1.19-1.395l.003-.004a.404.404 0 0 1 .311-.21c.04 0 .037.008.029-.004-.008-.012.008-.004-.029.069l-.1.206.226.036c.184.031.546.047 1.075.061.53.015 1.216.023 2.006.028 1.58.01 3.571.004 5.538-.008s3.906-.032 5.381-.048c1.475-.017 2.498-.028 2.588-.028.727.15 1.283.112 1.702-.045.426-.16.706-.444.877-.744.342-.599.279-1.265.279-1.265l.004.024.206-4.94c.084-.324.432-.562.797-.708.356-.142.68-.183.699-.186 2.298.304 3.424-.51 3.918-1.415.493-.905.38-1.868.38-1.876v-.008c-.11-1.506-.998-2.25-1.84-2.575-.842-.326-1.653-.267-1.653-.267l.016-.004c-1.204 0-1.698-.385-1.925-.748-.226-.362-.182-.715-.182-.715v-.02c0-1.224.207-12.417.207-12.417v-.004c0-.254.144-.663.295-.99.132-.287.236-.453.267-.506 1.274.13 2.248.054 2.93-.19.713-.254 1.152-.67 1.404-1.103.498-.858.275-1.762.27-1.783.095-.778-.026-1.366-.299-1.775-.279-.418-.694-.652-1.108-.776-.805-.242-1.61-.093-1.653-.085-1.417 0-1.898-.393-2.07-.736-.172-.343-.045-.691-.045-.691l.008-.033c.314-1.984.21-3.353.025-4.23-.186-.876-.47-1.277-.47-1.277l-.02-.024-.024-.02c-.211-.142-.516-.195-.885-.235a11.6 11.6 0 0 0-1.2-.053c-.81 0-1.541.053-1.541.053l-.049.004-.04.028c-.148.111-.305.099-.526-.012-.22-.11-.474-.324-.7-.562-.45-.476-.804-1.035-.804-1.035l-.04-.06z\"/><path d=\"m71.685 155.36-.414-.207c-.414-.207-56.924-24.632-61.271-98.944V9.635h122.54v46.367c0 18.216-5.796 64.582-60.443 98.944zM11.449 11.08v44.918c4.14 70.378 55.475 95.632 60.236 97.702 53.612-34.154 59.408-79.693 59.408-97.702V11.08z\"/><path d=\"M28.215 27.03s-1.242 0-1.035.829l-.412 31.462s-.001 1.45 2.276 1.657c0 0 2.896.207 3.517 0h6.626s1.242 1.24 1.242-.21c0 0 .826-25.457.412-30.839 0 0 0-2.28-1.864-2.28 0 0-7.448.621-8.07 0zm28.733.048c-.273-.024-.712.054-1.411.364 0 0 .21.83-9.104.417-.208 0-3.727-.002-3.934 1.447 0 0-.206 14.904-.206 15.318l-.21 12.42-.207 4.346s.621.827 1.035.206c0 0 3.105-.826 5.175-.412 0 0 6.212.619 7.661-.416 0 0 1.034.414 1.241-1.035 0 0 .414-27.53.207-27.944 0 0 .413-3.933.206-4.347 0 0 .002-.323-.453-.363zm-34.126.773c-.406.012-.998.266-1.852 1.043l-.206 4.14s0 2.276-2.07 2.07c0 0-2.28 0-3.521 1.035 0 0-.62 2.066 1.658 1.86 0 0 3.52.001 3.727 1.45l-.21 14.903s.831 2.486-1.86 2.486c0 0-3.315-.21-3.315 1.86 0 0 .623 1.659 3.521 1.245 0 0 2.071.413 1.864 2.276v3.723s-.21 1.451 1.86 1.658h15.318s.828 0 .828-.829c0 0 .001-.828-1.24-.828l-12.627-.413s-2.073.623-2.28-2.482c0 0 .2-26.58.206-27.75l.004.012-.004-.109.004-.307-.008-.017c-.022-1.017-.026-4.618 1.043-6.4 0 0-.163-.646-.84-.626zm39.196.076c-.888.077-.89 1.173-.89 1.173.415.414.62 1.864.62 1.864.206 3.312 0 7.037 0 10.556-.208 11.799-.62 22.563-.62 22.563 0 2.277-1.24 1.653-1.24 1.653H46.221c-1.449 0-1.447.829-1.447.829.207 1.242 1.447.829 1.447.829 1.242.207 14.906 0 14.906 0 2.07.207 1.864-2.487 1.864-2.487.207-4.76.619-5.175.619-5.175.414-.207 2.692-.206 2.692-.206 3.726.207 2.07-2.276 2.07-2.276-.414-.62-2.898-.622-2.898-.622-2.277.207-2.07-2.277-2.07-2.277l.206-14.283c-.414-1.242.622-1.86.622-1.86h2.277c3.104.208 2.276-1.863 2.276-1.863 0-1.035-2.689-1.451-2.689-1.451-2.484.414-2.28-1.035-2.28-1.035V30.34c.414-2.277-1.035-2.276-1.035-2.276-.31-.116-.56-.155-.764-.137zm-2.923.461c-.264.036-.555.246-.865.712v31.049s.828 2.69 2.07 2.482c0 0 .206-.618.206-1.653l.416-29.602s-.683-3.142-1.827-2.988zm-33.362.295c-1.863 0-2.07 3.522-2.07 3.522l-.21 29.392c.207 1.449.622 1.24.622 1.24 1.863-1.241 1.658-3.31 1.658-3.31s.206-27.943.206-28.357-.206-2.487-.206-2.487zm.861 33.107a1.265 1.265 0 0 0-.291.049c-.414.118-.924.474-1.354 1.334l-.008.017-.005.016s-.122.386-.028.764a.73.73 0 0 0 .388.493c.213.1.494.104.861.004h10.107l2.713.627.037-.008s.193-.045.432-.133c.239-.089.53-.219.744-.433a.847.847 0 0 0 .235-.396.785.785 0 0 0-.065-.514c-.164-.351-.554-.709-1.294-1.132l-.04-.024H29.27c-.015-.004-.456-.1-.962-.226-.515-.129-1.103-.3-1.257-.376l-.008-.004h-.004s-.18-.071-.445-.057zm30.754.546c-.582-.029-1.395.09-1.395.09-1.656 1.034-11.385.205-11.385.205-.62 0-1.451 1.035-1.451 1.035-.207 1.863 2.9 1.035 2.693 1.035H57.4c1.864.414 1.864-.412 1.864-.412 0-.621-1.447-1.864-1.447-1.864-.103-.051-.275-.08-.469-.089zm-15.314 2.32a.421.421 0 0 0-.158.045s-1.863.002-1.863 2.487c0 0 .207 1.86 2.07 1.86 0 0 1.657-.414 1.657-2.277 0 0-.91-2.182-1.706-2.114zM86.586 27.03s-1.242 0-1.035.829L85.14 59.32s-.001 1.45 2.276 1.657c0 0 2.9.207 3.521 0h6.622s1.242 1.24 1.242-.416c0 0 .83-25.461.416-30.843 0 0 0-2.276-1.864-2.276 0 0-7.452.62-8.073 0zm28.652.255c-.244.01-.602.105-1.12.363 0 0 .206.83-9.108.417-.207 0-3.934-.209-3.934 1.447 0 0-.206 14.904-.206 15.318l-.206 12.42-.413 4.346s.621.827 1.035.206c0 0 3.105-.826 5.175-.412 0 0 6.208.623 7.657-.412 0 0 1.034.414 1.241-1.035 0 0 .414-27.53.207-27.944 0 0 .417-3.936.21-4.35 0 0 0-.389-.538-.364zm-34.25.566c-.407.012-.999.266-1.852 1.043v3.93s0 2.276-2.07 2.07c0 0-2.276 0-3.518 1.034 0 0-.623 2.071 1.654 1.864 0 0 3.52.002 3.727 1.451l-.206 14.902s.828 2.483-2.07 2.483c0 0-3.311-.206-3.311 1.864 0 0 .62 1.655 3.517 1.24 0 0 2.07.418 2.07 2.28v3.724s-.205 1.451 1.658 1.658H95.9s.829 0 .829-.829c0 0 0-.829-1.242-.829l-12.42-.206s-2.069.623-2.276-2.482c0 0 .207-27.741 0-28.155v.416s-.207-4.762 1.035-6.832c0 0-.163-.647-.84-.627zm39.401.076c-.888.077-.89 1.173-.89 1.173.208.414.623 1.864.623 1.864.207 3.311 0 7.037 0 10.556a1212.424 1212.424 0 0 1-.622 22.563c0 2.276-1.242 1.653-1.242 1.653h-13.66c-1.45 0-1.452.829-1.452.829.207 1.242 1.658.83 1.658.622 1.242.207 14.902 0 14.902 0 2.07.207 1.863-2.486 1.863-2.486.207-4.76.623-5.175.623-5.175.414-.207 2.689-.206 2.689-.206 3.519.207 1.863-2.276 1.863-2.276-.414-.621-2.898-.623-2.898-.623-2.277.207-2.07-2.276-2.07-2.276l.21-14.283c-.414-1.242.618-1.864.618-1.864h2.277c3.104.207 2.28-1.86 2.28-1.86 0-1.034-2.693-1.45-2.693-1.45-2.484.413-2.276-1.036-2.276-1.036v-3.31c.414-2.278-1.035-2.277-1.035-2.277-.31-.116-.563-.155-.768-.137zm-2.923.538c-.264.022-.555.208-.865.635v31.049s.828 2.69 2.07 2.482c0 0 .21-.618.21-1.653l.413-29.602s-.683-3.005-1.828-2.911zm-33.362.218c-1.863 0-2.07 3.522-2.07 3.522l-.206 29.392c.207 1.449.618 1.24.618 1.24 1.864-1.241 1.658-3.31 1.658-3.31s.206-27.943.206-28.357-.206-2.487-.206-2.487zm1.185 33.075c-.362-.01-1.028.151-1.597 1.29 0 0-.414 1.45 1.035 1.035h10.14l2.692.619s2.898-.62 0-2.276h-9.727s-1.866-.416-2.28-.623c0 0-.098-.04-.263-.045zm30.544.368c-.526.01-1.092.093-1.092.093-1.656 1.035-11.385.206-11.385.206-.62 0-1.451 1.035-1.451 1.035-.414 1.863 2.692 1.035 2.692 1.035h11.591c1.863.414 1.864-.412 1.864-.412 0-.62-1.451-1.864-1.451-1.864-.156-.077-.453-.099-.768-.093zm-15.217 2.325a.413.413 0 0 0-.158.044s-1.865-.002-1.658 2.483c0 0 .207 1.864 2.07 1.864 0 0 1.658-.207 1.658-2.277 0 0-1.094-2.182-1.912-2.114zm-30.793 40.202s0 2.277-.207 4.554c-.207 1.242.414 7.038 0 9.936 0 0 0 1.035-2.07.207 0 0-12.627.207-12.834-.207 0 0-3.52.207-3.726-1.656 0 0 .414-13.455.207-13.87 0 0-.207-7.244 0-8.072 0 0 .207-6.83 0-7.659 0 0 0-1.656-.207-2.277 0 0 0-1.035 1.656-.414 0 0 .62 1.035 3.726.621 0 0 2.277.414 4.554 0 0 0 4.968-.414 6.21 0 0 0 2.07-.414 2.483 1.863v6.003l.621 2.07.621-.414.207-1.449v-6.417s.414-1.242 2.07-1.449c0 0 2.484-.207 2.898 0 .414.207 5.796.414 7.245.207 1.449-.207 1.656 1.035 6.21-1.242 0 0 1.242 0 1.242.828 0 0-.414 8.28 0 9.936 0 0 0 15.318-.414 16.353l.207 4.968s.207 2.07-3.312 2.277c0 0 2.07.207-11.385-.207 0 0-2.07-.207-4.554 1.035 0 0-.414-.207-.414-1.45 0 0 .414-4.553 0-9.107l-.207-4.968zm21.734 13.455s1.242 2.277 1.656 2.484c0 0 1.035 1.242.828-1.035l.207-28.358s-.207-1.035 0-2.484l-1.242-2.07s-1.242-1.035-1.242.621v30.014zm-41.192 1.242s1.449 1.449 3.726 1.449l13.248.207s1.449.207 1.449.828c0 0-.207 1.242-2.07.828l-16.146-.207-1.863.207s-1.242-.207.62-2.484zm-2.898-32.498s-1.242 2.07-1.035 2.69v32.706s-.207 2.277 1.656 1.656c0 0 17.18-.414 18.423 0 0 0 1.656.207 1.035 1.035 0 0 0 .62-1.035.414 0 0-8.073.828-15.525.414 0 0-4.968.207-5.175-.207 0 0-.828-.207-.828-2.898 0 0 0-2.691-.207-3.105 0 0 .207-1.449-2.277-1.656 0 0-3.519.621-3.519-1.449 0 0 .414-1.449 3.933-1.242 0 0 2.484.414 1.863-1.656l.207-14.49s.414-2.484-1.449-2.69h-2.07s-2.898 0-2.69-1.657c0 0 1.034-1.656 3.932-1.449 0 0 2.07.414 2.277-2.07 0 0 0-4.968 1.035-5.175-.207 0 2.277.207 1.449.828m1.656-.207s.62 0 .62 1.242l-.206 29.6s.207 1.863-1.45 3.312c0 0-.827 1.035-.827-.62l.414-30.222s0-2.277 1.449-3.312m23.183 34.775s1.656-1.242 2.484-1.035c0 0 8.9.621 11.592.207 2.69-.414 1.035-.207 1.035-.207s2.277 0 3.105-.828c0 0 .62-.207 1.035.414l1.449 1.656s0 1.035-1.656.828c0 0-15.94 0-16.56.207.207 0-2.691.414-2.484-1.242m1.035 2.691s1.242-.62 2.07-.414c.828.207 12.213-.207 12.213-.207s4.968.414 5.796-.414l1.242-.414s.414-.62.414-1.449v-3.519l.207-1.035V89.542s.414-2.07-.828-3.312c0 0 0-.828.414-.62.414.206.207 0 .207 0s1.656-.415 2.07.206c0 0 .828 2.277 0 3.726 0 0-.207 2.898 1.242 2.898 0 0 .62.621 1.656.207 0 0 2.484.207 2.484 1.035 0 0 0 1.863-1.656 1.45l-2.277.206s-1.656.414-1.45 2.07c.208 1.863 0 15.318 0 15.318s0 1.656 2.485 1.45c0 0 3.104-.208 3.104.827 0 0 .828 1.863-1.449 2.07 0 0-4.14-.207-3.725 1.035 0 0-.207 2.691-.414 3.312 0 0 .414 2.277 0 2.691 0 0-.207 1.242-2.898 1.035 0 0-16.767 0-19.458.207-.207.414-1.863.207-1.45-1.242m-2.897-1.863s1.656.207 1.656 1.863 0 2.484-.828 2.69c-1.035.208-2.07-.206-2.277-1.448-.414-1.242 0-2.691 1.449-3.105\" fill=\"#fff\"/><path d=\"m39.6 38.41-.828 1.863s-2.07 9.522-3.312 11.385c0 0-.207 2.07-1.863.414 0 0-3.933-12.006-4.14-12.42l-1.242-.828s-.828-1.035.621-1.242h3.726s1.242 1.035-.414 2.07c0 0 .207 1.656 2.277 7.659 0 0 .621 2.277 1.242.62l2.07-7.037-.621-2.07s-.621-1.035.207-1.035c0 0 2.07-.207 2.277.621m5.589 1.656v10.35l-.207.828s-1.035 1.242-.207 1.449c0 0-.828.621 6.21.621 0 0 2.69.414 2.07-3.105 0 0-.207-1.242-1.242.621 0 0-.207 1.656-3.933 1.035 0 0-.828-.62-.828-1.449v-4.347s0-1.035 1.656-1.035c0 0 1.863 1.242 2.07.621 0 0 .62-1.656 0-2.484 0 0-.828 0-1.035.207 0 0-.621 1.242-2.277.414 0 0-.828-1.656-.207-2.898 0 0-.207-2.484 1.449-2.277 0 0 2.07.414 2.07 1.035 0 0 .414 1.242 1.035-.207l-.414-1.449s-.207-.62-.828-.414c0 0-3.312.414-3.726 0l-2.69.207s-.415 1.035.827 1.45c0 .206.207.413.207.827m59.408-1.656c-.207-.828 1.656-.828 1.656-.828l1.035.207c.621 0 1.45.207 1.45.207.62 1.035-.415 1.656-.415 1.656l-.414 1.242v10.35c.207.414 1.035 1.45 1.035 1.45 0 .827-1.035.62-1.035.62h-2.898c-.828 0-.62-1.035-.62-1.035 1.034-.414 1.241-2.277 1.241-2.277v-9.729zM91.35 47.518l-.207 3.105.828 1.449c.621.828-.414 1.449-.414 1.449l-3.105-.414c-.62-.207 0-1.242 0-1.242.828-.414.828-1.656.828-1.656v-9.936c0-.414-.828-1.449-.828-1.449-.62 0-.414-1.035-.414-1.035.207-.414 1.863-.207 1.863-.207h4.14c3.933 1.242 3.312 4.14 3.312 4.14.207 2.898-2.69 3.933-2.69 3.933l-.208 1.656 2.898 4.554c.414.414.414.828.414.828-.414 1.035-2.07 0-2.07 0l-3.519-5.589c-.414-.414-.828.414-.828.414m0-7.866v5.175c1.863 1.45 2.898-.62 2.898-.62 2.484-2.278 0-4.555-.414-5.176-.414-.62-2.277 0-2.277 0zm-30.22 57.96s.206 7.244 0 8.279v1.656s.413 1.035 1.034 1.449c0 0 .414 1.449-.62 1.242 0 0-2.485-.207-3.106 0 0 0-1.449 0 0-1.656 0 0 .414-.621.414-2.484 0 0 0-8.28.207-8.694 0 0 .207-1.035-.414-1.449h-1.242l-1.449 1.45s-.414 1.448-1.035 0v-.829l.828-2.277h.621s.828.621 1.656.828h4.554l1.656-.828s.621 0 .414 1.035c0 0 .207 2.277-1.035 2.484 0 0-.828-.207-1.242-1.449 0-.207-1.242-1.035-1.242 1.242m21.527-2.69s-3.726-.415-3.726 3.725c0 0-.414 2.691 3.726 4.554 0 0 3.105 1.45 2.898 3.312 0 0-.414 3.312-3.726 1.656 0 0-1.656-.828-1.449-1.656 0 0-.414-1.035-1.035-.828 0 0-.62.207-.414 3.519 0 0 0 1.242 1.45 0l.827.207s2.69 2.07 4.968-.414c0 0 2.484-2.277.62-4.968 0 0-1.241-2.07-3.518-2.898 0 0-2.07-1.035-2.69-2.69 0 0 .62-2.899 3.311-1.45 0 0 1.035 1.242 1.656 1.45 0 0 .828 0 .621-1.864l-.207-1.449s-.207-1.035-1.656 0c0-.207-1.242.414-1.656-.207m-11.799-2.07c.621.414.828 1.45.828 1.45 2.07 5.174 3.726 12.833 3.726 12.833.414 1.035 1.449 1.656 1.449 1.656 1.656.621 0 1.035 0 1.035-.621.207-2.898 0-2.898 0-1.242-.207-.621-.62-.621-.62.414-.415 0-2.485 0-2.485 0-.828-1.035-2.07-1.035-2.07-.414-.207-1.035.621-1.035.621s-1.035.414-1.242 0-.828-.828-.828-.828c-1.242 0-1.656 2.898-1.656 2.898.621 2.484 0 2.07 0 2.07-.621.828-2.484.207-2.484.207-.828-.207-.207-.828-.207-.828 1.035-.207 1.45-1.449 1.45-1.449.413-.62 3.725-13.455 3.725-13.455-.207-.207 0-1.449.828-1.035M69.2 99.474c0 .414-.828 3.312-.828 3.312l.621 1.035h2.07c.414 0 .621-.414.621-1.035 0-.414-1.035-3.519-1.035-3.519l-.414-.62z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a4dkfc\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-bgjd57\",\"data-framer-name\":\"Dartmouth College_logo\",fill:\"black\",intrinsicHeight:54,intrinsicWidth:512,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xml:space=\"preserve\" width=\"512\" height=\"54.24\"><defs><clipPath clipPathUnits=\"userSpaceOnUse\" id=\"a\"><path d=\"M0 0h1188v918H0Z\"/></clipPath></defs><g clip-path=\"url(#a)\" transform=\"matrix(1.33998 0 0 -1.34022 -204.954 899.345)\"><path d=\"M0 0v.72h-10.463V0c1.495-.886 2.159-1.938 2.159-6.145v-25.023c0-4.207-.664-5.259-2.159-6.145v-.719H0v.719c-1.495.886-2.159 1.938-2.159 6.145v10.796H20.04v-10.796c0-4.207-.664-5.259-2.159-6.145v-.719h10.463v.719c-1.495.886-2.159 1.938-2.159 6.145v25.023c0 4.207.664 5.259 2.159 6.145v.72H17.881V0c1.495-.886 2.159-1.938 2.159-6.145v-9.965H-2.159v9.965C-2.159-1.938-1.495-.886 0 0m-28.787-37.313c-1.661.941-2.436 2.049-2.436 6.422v27.403h4.705c6.035 0 7.197-.885 8.803-2.878l.719.221-1.162 7.363C-20.428.941-23.417.72-27.182.72H-41.41c-3.764 0-6.754.221-9.023.498l-1.163-7.363.72-.221c1.605 1.993 2.768 2.878 8.802 2.878h4.706v-27.403c0-4.373-.775-5.481-2.436-6.422v-.719h11.017zM-67.206 0c1.605-.941 2.436-2.048 2.436-6.422v-16.552c0-7.086-3.82-11.017-10.519-11.017-6.975 0-10.74 3.82-10.74 10.629v17.217c0 4.207.665 5.259 2.159 6.145v.72h-10.463V0c1.495-.886 2.159-1.938 2.159-6.145v-17.604c0-9.522 5.924-15.114 16.055-15.114 10.076 0 16.054 5.647 16.054 15.889v16.552c0 4.374.831 5.481 2.436 6.422v.72h-9.577zm-53.866 1.605c-12.4 0-20.483-9.577-20.483-20.538 0-10.408 7.418-19.93 20.539-19.93 12.4 0 20.483 9.578 20.483 20.539 0 10.408-7.418 19.929-20.539 19.929m.554-36.205c-8.193 0-14.504 7.141-14.504 16.885 0 9.3 5.37 15.058 13.452 15.058 8.193 0 14.505-7.142 14.505-16.885 0-9.301-5.37-15.058-13.453-15.058m-65.381-2.713c-1.716.72-2.435 2.049-1.882 6.311l2.547 19.266 12.622-25.798h2.325l12.788 25.853 2.381-19.542c.498-4.152-.056-5.37-1.661-6.09v-.719h10.518v.719c-1.439.775-2.048 1.938-2.602 5.869l-4.428 32.607h-2.824l-14.449-29.839-14.449 29.839h-2.823l-4.595-32.386c-.554-4.041-1.384-5.259-2.99-6.09v-.719h9.522zm-23.86 0c-1.661.941-2.436 2.049-2.436 6.422v27.403h4.706c6.034 0 7.197-.885 8.802-2.878l.72.221-1.163 7.363c-2.269-.277-5.259-.498-9.023-.498h-14.228c-3.764 0-6.754.221-9.024.498l-1.162-7.363.719-.221c1.606 1.993 2.768 2.878 8.803 2.878h4.705v-27.403c0-4.373-.775-5.481-2.435-6.422v-.719h11.016zm-48.441 0c-1.218.609-2.159 1.938-2.159 6.145v27.846h5.037c6.145 0 9.246-2.38 9.246-7.529 0-4.705-2.935-7.639-8.526-7.639h-3.654v-.554l1.716-3.488h1.661c1.827 0 2.381-.608 5.093-4.262l6.92-9.301c1.108-1.494 1.883-1.937 3.322-1.937h6.809v.719c-1.439.554-2.546 1.384-5.204 4.817l-4.761 6.089c-2.546 3.211-3.93 4.817-5.591 5.481 5.702 1.495 8.636 5.536 8.636 10.408 0 7.141-4.761 11.238-15.058 11.238h-13.951V0c1.218-.609 2.16-1.938 2.16-6.145v-25.023c0-4.207-.942-5.536-2.16-6.145v-.719h10.464zm-20.427 5.26L-293.63 1.163h-2.269l-15.003-33.216c-1.495-3.267-2.27-4.485-3.931-5.26v-.719h9.965v.719c-1.993.775-2.657 1.993-.886 6.035l2.049 4.705h15.944l2.048-4.705c1.771-4.042 1.162-5.26-.609-6.035v-.719h11.349v.719c-1.44.775-2.159 1.993-3.654 5.26m-23.307 9.466 6.201 14.172 6.2-14.172zM-336.977.72h-16.774V0c1.495-.886 2.159-1.938 2.159-6.145v-25.023c0-4.207-.664-5.259-2.159-6.145v-.719h15.722c14.616 0 22.145 8.636 22.145 20.428 0 10.629-7.308 18.324-21.093 18.324m-1.494-34.545h-7.031v30.337h7.529c10.075 0 15.611-5.093 15.611-15.611 0-9.135-5.037-14.726-16.109-14.726\" style=\"fill:#00693e;fill-opacity:1;fill-rule:nonzero;stroke:none\" transform=\"translate(506.704 669.438)\"/></g><text transform=\"translate(151.6 1214.14) scale(1.33333)\" style=\"font-variant:normal;font-weight:400;font-stretch:normal;font-size:7.5px;font-family:\\'National 2\\';-inkscape-font-specification:National2-Regular;writing-mode:lr-tb;fill:#00693e;fill-opacity:1;fill-rule:nonzero;stroke:none\"><tspan x=\"0 3.885 594 597.88501\" y=\"0\">2627</tspan></text></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nqm39a\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-uajsdm\",\"data-framer-name\":\"UC Boulder_logo\",fill:\"black\",intrinsicHeight:45,intrinsicWidth:300,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xml:space=\"preserve\" height=\"45.198\" width=\"300\"><defs><clipPath id=\"a\" clipPathUnits=\"userSpaceOnUse\"><path d=\"M0 350h612v92H0v-92z\"/></clipPath></defs><g clip-path=\"url(#a)\" transform=\"matrix(1.25 0 0 -1.25 -232.19 517.68)\"><path d=\"M230.821 404.676h.988v-6.42c-.014-2.413 1.133-3.329 3.036-3.329 1.918 0 3.066.916 3.052 3.328v6.421h.987v-6.639c0-2.135-1.147-3.952-4.039-3.952-2.876 0-4.024 1.816-4.024 3.952v6.64m9.867-2.877h.915v-1.294h.03c.334.901 1.336 1.512 2.396 1.512 2.107 0 2.746-1.105 2.746-2.892v-4.823h-.915v4.678c0 1.293-.421 2.267-1.903 2.267-1.453 0-2.325-1.105-2.354-2.572v-4.373h-.915v7.497m7.83 0h.915v-7.497h-.915v7.497zm0 2.876h.915v-1.467h-.915v1.467zm1.832-2.876h1.018l2.353-6.582h.03l2.324 6.582h.944l-2.804-7.497h-.973l-2.891 7.497m12.959-3.227c-.044 1.38-.9 2.674-2.382 2.674-1.497 0-2.325-1.308-2.47-2.674h4.852zm-4.853-.77c.015-1.336.712-2.95 2.47-2.95 1.337 0 2.063.786 2.354 1.919h.915c-.392-1.7-1.38-2.688-3.269-2.688-2.382 0-3.385 1.831-3.385 3.967 0 1.976 1.003 3.966 3.385 3.966 2.412 0 3.37-2.106 3.298-4.213h-5.768m7.003 3.996h.843v-1.759h.03c.464 1.206 1.481 1.918 2.832 1.86v-.915c-1.656.087-2.789-1.133-2.789-2.688v-3.995h-.915v7.497m9.066-2.194c-.044 1.133-.916 1.642-1.962 1.642-.813 0-1.772-.32-1.772-1.294 0-.813.93-1.104 1.554-1.264l1.22-.276c1.046-.16 2.137-.77 2.137-2.077 0-1.627-1.613-2.252-3.008-2.252-1.744 0-2.935.814-3.08 2.644h.915c.073-1.235.988-1.874 2.208-1.874.858 0 2.049.377 2.049 1.424 0 .871-.814 1.162-1.642 1.365l-1.176.262c-1.192.32-2.092.726-2.092 2.005 0 1.525 1.496 2.107 2.818 2.107 1.497 0 2.688-.785 2.746-2.412h-.915m2.515 2.194h.916v-7.497h-.916v7.497zm0 2.876h.916v-1.467h-.916v1.467zm4.125-2.876h1.525v-.77h-1.525v-5.056c0-.596.087-.945.741-.988.261 0 .523.014.784.043v-.784c-.276 0-.537-.03-.813-.03-1.22 0-1.642.407-1.627 1.686v5.128h-1.308v.77h1.308v2.252h.915V401.8m2.006 0h.973l2.47-6.393 2.31 6.393h.915l-3.254-8.645c-.523-1.264-.828-1.627-1.976-1.627-.363.014-.552.014-.697.072v.77c.217-.043.421-.072.625-.072.813 0 1.002.48 1.307 1.177l.32.857-2.993 7.468m12.147-3.749c0-1.597.872-3.196 2.63-3.196 1.757 0 2.629 1.599 2.629 3.196 0 1.599-.872 3.197-2.63 3.197-1.757 0-2.63-1.598-2.63-3.197zm6.175 0c0-2.15-1.25-3.966-3.545-3.966-2.296 0-3.546 1.816-3.546 3.966 0 2.15 1.25 3.967 3.546 3.967 2.295 0 3.545-1.816 3.545-3.967m4.257 2.979h-1.482v-6.727h-.916v6.727h-1.278v.77h1.278v.683c-.014 1.293.349 2.194 1.816 2.194.262 0 .48-.015.77-.058v-.784c-.246.043-.45.072-.668.072-1.017 0-.988-.64-1.002-1.453v-.654h1.482v-.77m12.668.51c-.349 1.599-1.67 2.514-3.181 2.514-2.746 0-3.908-2.296-3.908-4.562 0-2.266 1.162-4.562 3.908-4.562 1.917 0 3.138 1.482 3.326 3.327h.988c-.275-2.542-1.888-4.17-4.314-4.17-3.27 0-4.896 2.572-4.896 5.405s1.627 5.404 4.896 5.404c1.96 0 3.908-1.177 4.17-3.356h-.988m3.006-3.489c0-1.597.872-3.196 2.63-3.196 1.757 0 2.63 1.599 2.63 3.196 0 1.599-.873 3.197-2.63 3.197-1.758 0-2.63-1.598-2.63-3.197zm6.175 0c0-2.15-1.25-3.966-3.545-3.966s-3.545 1.816-3.545 3.966c0 2.15 1.25 3.967 3.545 3.967s3.545-1.816 3.545-3.967m1.38 6.625h.915v-10.373h-.915v10.373zm3.214-6.625c0-1.597.872-3.196 2.63-3.196s2.63 1.599 2.63 3.196c0 1.599-.872 3.197-2.63 3.197s-2.63-1.598-2.63-3.197zm6.175 0c0-2.15-1.25-3.966-3.545-3.966s-3.545 1.816-3.545 3.966c0 2.15 1.25 3.967 3.545 3.967s3.545-1.816 3.545-3.967m1.365 3.749h.842v-1.759h.03c.464 1.206 1.481 1.918 2.832 1.86v-.915c-1.656.087-2.789-1.133-2.789-2.688v-3.995h-.915v7.497m9.372-3.4h-.03c-.116-.217-.522-.29-.77-.333-1.554-.276-3.486-.262-3.486-1.73 0-.915.813-1.481 1.67-1.481 1.395 0 2.63.886 2.616 2.353v1.192zm-4.882 1.105c.087 1.758 1.322 2.514 3.036 2.514 1.322 0 2.76-.407 2.76-2.412v-3.98c0-.35.175-.553.538-.553.102 0 .218.03.29.058v-.77a2.536 2.536 0 0 0-.595-.058c-.93 0-1.075.523-1.075 1.308h-.029c-.64-.974-1.293-1.526-2.731-1.526-1.38 0-2.514.683-2.514 2.194 0 2.106 2.048 2.18 4.025 2.412.755.087 1.177.188 1.177 1.017 0 1.235-.886 1.54-1.962 1.54-1.133 0-1.976-.523-2.005-1.744h-.915m10.679-4.648c1.946 0 2.629 1.642 2.629 3.196 0 1.555-.683 3.197-2.63 3.197-1.743 0-2.455-1.642-2.455-3.197 0-1.554.712-3.196 2.456-3.196zm3.545-.552h-.843v1.424h-.029c-.392-.973-1.584-1.642-2.673-1.642-2.281 0-3.37 1.845-3.37 3.966 0 2.122 1.089 3.967 3.37 3.967 1.118 0 2.208-.566 2.6-1.642h.029v4.3h.916v-10.372m2.279 3.745c0-1.597.872-3.196 2.63-3.196s2.629 1.599 2.629 3.196c0 1.599-.871 3.197-2.63 3.197-1.757 0-2.63-1.598-2.63-3.197zm6.175 0c0-2.15-1.25-3.966-3.545-3.966s-3.545 1.816-3.545 3.966c0 2.15 1.25 3.967 3.545 3.967s3.545-1.816 3.545-3.967m7.816-1.974h2.441c.9 0 1.685.29 1.685 1.366 0 1.06-.668 1.482-1.641 1.482h-2.485v-2.848zm0 4.402h2.31c.8 0 1.395.364 1.395 1.235 0 .988-.756 1.192-1.569 1.192h-2.136v-2.427zm-2.28 4.199h4.88c1.977 0 3.314-.64 3.314-2.571 0-1.017-.509-1.73-1.41-2.165 1.264-.363 1.904-1.337 1.904-2.63 0-2.106-1.787-3.007-3.661-3.007h-5.028v10.373m13.659-9.025c1.409 0 1.83 1.206 1.83 2.397 0 1.206-.421 2.412-1.83 2.412-1.395 0-1.816-1.206-1.816-2.412 0-1.191.42-2.397 1.816-2.397zm0 6.364c2.368 0 3.894-1.57 3.894-3.967 0-2.382-1.526-3.951-3.894-3.951-2.354 0-3.88 1.57-3.88 3.951 0 2.398 1.526 3.967 3.88 3.967m12.277-7.714h-1.962v1.046h-.044c-.523-.842-1.423-1.249-2.295-1.249-2.194 0-2.746 1.235-2.746 3.095v4.62h2.063v-4.242c0-1.236.363-1.846 1.322-1.846 1.119 0 1.598.625 1.598 2.15v3.938h2.064v-7.511m1.628 10.372h2.064v-10.373h-2.064v10.373zm7.249-4.211c-1.35 0-1.816-1.162-1.816-2.397 0-1.177.538-2.412 1.816-2.412 1.366 0 1.773 1.192 1.773 2.426 0 1.22-.436 2.383-1.773 2.383zm1.802-5.2h-.03c-.479-.814-1.32-1.163-2.28-1.163-2.266 0-3.371 1.947-3.371 4.025 0 2.019 1.119 3.893 3.328 3.893.886 0 1.757-.378 2.222-1.119h.03v3.777h2.062v-10.373h-1.961v.96m8.571 3.599c-.189 1.046-.64 1.598-1.642 1.598-1.307 0-1.685-1.017-1.714-1.598h3.356zm-3.356-1.308c.058-1.307.698-1.903 1.845-1.903.828 0 1.497.509 1.627.974h1.817c-.582-1.773-1.817-2.528-3.517-2.528-2.367 0-3.835 1.627-3.835 3.951 0 2.252 1.554 3.967 3.835 3.967 2.558 0 3.792-2.15 3.647-4.46h-5.42m6.642 4.258h1.962v-1.395h.029c.377.945 1.395 1.599 2.397 1.599.145 0 .32-.03.45-.073v-1.918a3.764 3.764 0 0 1-.74.073c-1.511 0-2.035-1.09-2.035-2.412v-3.385h-2.063v7.511\"/><path d=\"M212.81 405.03v4.153l-4.948 4.96h-17.147l-4.965-4.958v-17.117l4.965-4.955h5.446v-4.165l5.004-4.965h14.469l5.017 4.957v13.26h2.555v8.828H212.81\" fill=\"#cfb87c\"/><path d=\"m207.65 413.629 4.645-4.66v-4.454h10.395v-7.801h-2.555v-13.556l-4.712-4.657h-14.048l-4.7 4.657v4.467h-5.749l-4.661 4.657v16.688l4.661 4.659h16.724\"/><path d=\"M191.46 388.91h6.5v-5.217l3.944-3.908h12.991l3.954 3.908V398h2.557v5.228h-7.842v-18.221h-10.377v3.904h3.927l3.897 3.903V398h-5.227v-3.875h-2.597v9.103h-7.82V398h2.594v-3.875h-5.196v13.039h13.019v-3.936h5.227v5.207l-3.897 3.907H191.46l-3.91-3.905v-15.623l3.91-3.903\" fill=\"#fff\"/><path d=\"M202.543 389.555h4.305l3.52 3.524v4.278h-3.94v-3.874h-3.885v9.1h-6.532v-3.941h2.594v-5.159h-6.482v14.323h14.306v-3.935h3.938v4.3l-3.518 3.528h-15.123l-3.534-3.529v-15.09l3.532-3.525h6.88v-5.592l3.566-3.536h12.46l3.577 3.538v14.678h2.554v3.942h-6.554v-18.218h-11.665v5.189\" fill=\"#cfb87c\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mdj7pq\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-djmrtn\",\"data-framer-name\":\"University of_Texas_at_Austin_logo\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:350,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"99.591\" width=\"350\"><path fill=\"#bf5700\" d=\"M60.666 3.33v25.21c0 9.326-.92 21.35-8.101 31.905a41.046 41.046 0 0 1-5.175 6.115l-.034.034c-3.914 3.758-9.054 7.31-16.407 11.41-7.352-4.1-12.527-7.653-16.407-11.41l-.034-.034c-2.008-1.948-3.71-3.929-5.174-6.115C2.152 49.924 1.233 37.866 1.233 28.54V3.331l1.191-.137c.17-.034 16.101-2.016 28.525-2.016 12.425 0 28.355 1.982 28.525 2.016l1.191.136z\"/><path d=\"M30.949 3.945c-9.259 0-20.525 1.128-25.529 1.674L3.99 25.465h53.918L56.514 5.62c-5.038-.546-16.306-1.674-25.565-1.674zm0 23.194L3.955 28.643c0 8.915.885 20.393 7.625 30.265a38.353 38.353 0 0 0 4.902 5.772c5.923 5.465 12.595 8.472 14.467 9.258 1.872-.786 8.544-3.793 14.467-9.258 1.906-1.845 3.507-3.722 4.902-5.772 6.706-9.872 7.59-21.35 7.59-30.265L30.949 27.14z\" fill=\"#fff\"/><path fill=\"#bf5700\" d=\"M27.715 7.463c-1.396 0-2.894.24-4.46.446-1.736.273-3.538.51-5.342.51h-.851v3.52h-1.26v2.049h1.26v2.8h-1.26v2.05h1.26v3.825h.85c1.941 0 3.845-.305 5.65-.578 1.565-.24 3.03-.48 4.255-.48 1.021 0 1.77.138 2.35.446H31.8c.578-.308 1.328-.446 2.349-.446 1.26 0 2.72.24 4.252.48 1.839.273 3.746.578 5.652.578h.851v-3.825h1.26v-2.05h-1.26v-2.8h1.26v-2.015h-1.26V8.42h-.85c-1.805 0-3.61-.272-5.346-.511-1.6-.24-3.096-.446-4.458-.446-1.294 0-2.384.206-3.269.616-.885-.41-1.975-.616-3.269-.616zm3.234 21.078a.073.073 0 0 0-.068.068l-2.962 9.118h-9.53a.13.13 0 0 0-.102.038c0 .068 0 .102.068.102l7.726 5.636-2.962 9.186s0 .034.034.034h.034l7.797-5.67 7.793 5.67h.034c.034-.034.034-.068 0-.068l-2.962-9.152 7.729-5.636c.034 0 .068-.034.034-.102 0-.034-.034-.037-.068-.037H33.98l-2.962-9.119a.073.073 0 0 0-.068-.068zM13.35 30.386l-.544.476a6.58 6.58 0 0 0-2.554 4.067c-.17.82-.17 1.638 0 2.424-.646-.514-1.395-.89-2.178-1.162l-.715-.204-.17.715a6.585 6.585 0 0 0 .715 4.748 6.504 6.504 0 0 0 3.745 2.974l.613.17c.068.513.204 1.023.374 1.536a6.123 6.123 0 0 0-2.962-.99l-.715-.069v.752c-.034 1.674.58 3.246 1.668 4.476a6.476 6.476 0 0 0 4.29 2.117l.647.068c.17.512.409.992.681 1.402a6.425 6.425 0 0 0-2.281-.411c-.272 0-.545 0-.817.034l-.715.102.136.718a6.485 6.485 0 0 0 2.588 4.067 6.356 6.356 0 0 0 3.813 1.229c.272 0 .545 0 .817-.034l.644-.069c.272.444.579.853.953 1.23a6.364 6.364 0 0 0-3.095.272l-.681.241.272.68c.647 1.538 1.836 2.769 3.334 3.418.85.376 1.736.582 2.621.582.715 0 1.465-.139 2.145-.378l.511-.17c.851.717 1.805 1.436 3.132 2.358-.612.41-1.26.819-2.008 1.331l1.293.787c.715-.479 1.362-.89 1.941-1.3.579.375 1.226.821 1.94 1.3l1.295-.787c-.75-.478-1.396-.92-2.009-1.33 1.328-.923 2.281-1.642 3.132-2.359l.508.17c.68.24 1.43.378 2.145.378.919 0 1.804-.206 2.621-.582a6.533 6.533 0 0 0 3.337-3.417l.272-.681-.68-.241a6.377 6.377 0 0 0-3.099-.273 6.6 6.6 0 0 0 .953-1.229l.647.069c.273.034.545.034.817.034 1.396 0 2.69-.41 3.814-1.23a6.778 6.778 0 0 0 2.587-4.066l.136-.718-.715-.102c-.272-.035-.544-.034-.817-.034a6.56 6.56 0 0 0-2.28.411c.272-.444.51-.924.68-1.402l.647-.068a6.475 6.475 0 0 0 4.29-2.117 6.422 6.422 0 0 0 1.665-4.476v-.752l-.749.068c-1.055.069-2.074.444-2.959.99.204-.478.307-1.022.375-1.535l.749-.17a6.394 6.394 0 0 0 3.742-2.974 6.585 6.585 0 0 0 .715-4.748l-.17-.715-.716.204c-.817.24-1.529.649-2.176 1.161a7.24 7.24 0 0 0 0-2.424 6.58 6.58 0 0 0-2.553-4.067l-.579-.442-.374.613a6.538 6.538 0 0 0-.886 4.714c.307 1.64 1.226 3.042 2.554 4.033a7.862 7.862 0 0 0-.51 1.742c-.41-1.093-1.056-2.05-1.975-2.8l-.582-.482-.442.616c-.954 1.366-1.396 3.006-1.158 4.646.204 1.64 1.056 3.141 2.315 4.2l.034.034a6.065 6.065 0 0 0-.885 1.675 6.752 6.752 0 0 0-1.362-3.176l-.442-.582-.545.51a6.594 6.594 0 0 0-2.111 4.306 6.553 6.553 0 0 0 1.396 4.578l.034.034c-.477.41-.885.924-1.226 1.436.068-1.162-.136-2.324-.68-3.383l-.341-.65-.647.378a6.585 6.585 0 0 0-2.962 3.791c-.477 1.606-.306 3.279.442 4.782v.034a6.106 6.106 0 0 0-1.464 1.16c.307-1.127.34-2.289.034-3.45l-.17-.715-.68.238a6.72 6.72 0 0 0-3.675 3.107 6.553 6.553 0 0 0-.578 4.612c-.205.137-.443.31-.647.446a25.27 25.27 0 0 0-.647-.446 6.553 6.553 0 0 0-.579-4.612 6.503 6.503 0 0 0-3.677-3.107l-.68-.238-.171.715c-.306 1.127-.272 2.323.034 3.45-.443-.443-.92-.852-1.498-1.16l.034-.034c.749-1.503.885-3.176.443-4.782a6.585 6.585 0 0 0-2.962-3.791l-.647-.378-.34.65c-.545 1.059-.747 2.221-.679 3.383a6.215 6.215 0 0 0-1.225-1.436l.034-.034a6.59 6.59 0 0 0 1.396-4.612 6.517 6.517 0 0 0-2.111-4.305l-.545-.511-.443.582c-.748.922-1.191 2.014-1.361 3.175a6.673 6.673 0 0 0-.888-1.674l.034-.034a6.443 6.443 0 0 0 2.315-4.2 6.606 6.606 0 0 0-1.158-4.646l-.442-.615-.58.48a6.219 6.219 0 0 0-1.974 2.8 5.148 5.148 0 0 0-.51-1.742 6.6 6.6 0 0 0 2.553-4.033 6.54 6.54 0 0 0-.885-4.714l-.375-.613z\"/><path d=\"M27.681 9.138c-1.26 0-2.69.203-4.222.442a53.1 53.1 0 0 1-4.15.48l-.375 10.83c1.43-.068 2.891-.275 4.32-.514 1.6-.239 3.133-.48 4.53-.48a8.53 8.53 0 0 1 1.974.208l.306-9.054V9.546c-.612-.273-1.395-.408-2.383-.408zm6.537 0c-.987 0-1.737.135-2.383.408v1.504l.306 9.054a8.552 8.552 0 0 1 1.975-.208c1.395 0 2.925.24 4.525.48 1.43.24 2.894.446 4.324.514l-.374-10.83a51.44 51.44 0 0 1-4.154-.48c-1.532-.24-2.96-.443-4.22-.443zM13.01 32.468a5.22 5.22 0 0 0-1.43 2.7c-.17 1.024-.068 2.083.34 3.005a5.22 5.22 0 0 0 1.43-2.699 5.343 5.343 0 0 0-.34-3.005zm35.777 0c-.409.957-.545 2.015-.34 3.04s.715 1.948 1.43 2.699a5.173 5.173 0 0 0 .34-3.04 5.337 5.337 0 0 0-1.43-2.698zm-17.837 2.53-1.77 4.438-4.801.343 3.711 3.074-1.192 4.646 4.052-2.563L35 47.499l-1.191-4.646 3.674-3.074-4.764-.31-1.77-4.472zm-22.536 2.8a5.32 5.32 0 0 0 .68 2.972 5.138 5.138 0 0 0 2.214 2.049c.102-1.025-.136-2.05-.681-2.972a5.138 5.138 0 0 0-2.213-2.049zm45 0a4.95 4.95 0 0 0-2.21 2.05 5.387 5.387 0 0 0-.68 2.97 5.13 5.13 0 0 0 2.209-2.048c.51-.923.749-1.947.68-2.972zm-38.497 2.56a5.292 5.292 0 0 0-1.26 2.767 5.103 5.103 0 0 0 .51 3.006 5.282 5.282 0 0 0 1.26-2.764 5.068 5.068 0 0 0-.51-3.009zm31.998 0c-.477.922-.647 1.984-.51 3.009s.578 1.978 1.259 2.764c.476-.923.647-1.981.51-3.006s-.578-1.981-1.26-2.767zM10.389 46.61a5.622 5.622 0 0 0 1.294 2.767 4.73 4.73 0 0 0 2.587 1.539c-.17-1.025-.613-2.016-1.294-2.767-.68-.752-1.6-1.3-2.587-1.539zm41.02 0a5.073 5.073 0 0 0-2.588 1.539 5.09 5.09 0 0 0-1.293 2.767c.987-.24 1.906-.753 2.587-1.539a4.875 4.875 0 0 0 1.294-2.767zm-6.877 1.16c-.647.82-1.056 1.777-1.124 2.836a5.528 5.528 0 0 0 .647 2.971c.647-.82 1.055-1.81 1.123-2.835a4.973 4.973 0 0 0-.646-2.971zm-27.265.035c-.511.888-.715 1.912-.681 2.971a5.327 5.327 0 0 0 1.123 2.835c.51-.888.75-1.912.681-2.971a5.327 5.327 0 0 0-1.123-2.835zm3.844 6.763c-.307.99-.34 2.052-.034 3.042a5.317 5.317 0 0 0 1.668 2.526c.306-.99.34-2.049.034-3.04a5.33 5.33 0 0 0-1.668-2.528zm19.574 0a5.331 5.331 0 0 0-1.669 2.529c-.306.99-.272 2.048.034 3.039a5.322 5.322 0 0 0 1.669-2.526c.306-.99.272-2.052-.034-3.042zm-26.55.31c.374.956.987 1.808 1.838 2.423.851.615 1.839.922 2.826.99a4.92 4.92 0 0 0-1.804-2.423 5.165 5.165 0 0 0-2.86-.99zm33.496 0a5.165 5.165 0 0 0-2.86.99c-.817.615-1.464 1.433-1.805 2.423a5.165 5.165 0 0 0 2.86-.99 5.075 5.075 0 0 0 1.805-2.424zm-12.117 5.5c-.885.478-1.635 1.228-2.145 2.15s-.715 1.947-.579 2.972a5.024 5.024 0 0 0 2.145-2.151c.476-.923.68-1.947.579-2.972zm-9.227.033a5.14 5.14 0 0 0 .579 2.938 5.024 5.024 0 0 0 2.145 2.15 5.308 5.308 0 0 0-.579-2.97 5.138 5.138 0 0 0-2.145-2.118zm-5.973 1.632c-.255.007-.51.034-.765.077.545.888 1.325 1.605 2.278 2.015a5.27 5.27 0 0 0 2.996.374c-.545-.888-1.328-1.605-2.281-2.015a4.882 4.882 0 0 0-2.229-.451zm21.202.006a5.24 5.24 0 0 0-2.226.445 5.232 5.232 0 0 0-2.281 2.015c.306.035.613.068.92.068.714 0 1.43-.135 2.076-.442a5.232 5.232 0 0 0 2.281-2.015 5.279 5.279 0 0 0-.77-.071z\" fill=\"#fff\"/><path d=\"M329.27 4.253c-12.22 2.562-21.038 8.199-21.038 17.831 0 7.857 5.21 11.92 11.542 14.652l10.653 4.68c5.276 2.289 9.155 5.74 9.155 11.752 0 6.456-4.39 11.204-11.947 11.204-4.935 0-9.768-2.289-12.39-5.568l-3.064-7.515h-6.16l1.938 11.922c4.664 3.69 10.11 6.01 18.212 6.01 16.543-3.45 22.161-11.476 22.161-19.777 0-9.018-6.058-13.426-13.003-16.432l-10.112-4.404c-4.833-2.118-8.27-5.125-8.27-9.976 0-5.91 4.118-9.7 11.096-9.7 5.276 0 8.1 1.945 10.381 4.336l2.554 8.029h4.392V9.375c-4.39-3.278-10.55-5.122-16.1-5.122zm-53.58.718-5.274 1.502-21.821 57.217-4.222.581-4.219-.65-19.54-28.865 18.042-24.9 6.875-.956-.443-3.077-10.279.276-10.279-.276-.442 3.077 7.657 1.16-13.956 20.599-12.424-20.666 7.487-1.16-.443-3.078-12.492.344-12.594-.344-.442 3.077 6.877.956 18.21 27.633-18.993 26.234-6.877.957.442 3.179 9.837-.276 10.282.276.442-3.18-7.217-1.058 15.01-21.997 13.685 21.93-7.488 1.16.443 3.179 12.594-.276 10.279.208 7.218-.208 10.55.276.444-3.077-7.658-1.16 5.717-16.5h21.719l5.992 16.5-7.49 1.16.442 3.077 11.607-.276 12.155.276.443-3.077-6.877-.956-22.978-58.82zM76.8 5.755v15.612h3.439l4.048-11.204 13.176-.17v53.492L86.91 64.646l.443 3.074 14.773-.273 14.262.273.442-3.074-10.109-1.16V9.991l13.173.17 4.052 11.205h3.439V5.755l-25.328.275L76.8 5.755zm55.858 0-.443 3.076 7.933 1.16v53.494l-7.933 1.16.443 3.074 12.155-.272 34.922.272 3.064-16.327h-3.336l-5.887 11.922-24.204.272V37.08l12.325.375 3.503 9.258h3.099l-.886-11.922.885-11.031H165.2l-3.503 9.254-12.325.378V9.89l23.319.272 4.936 11.477h2.993l-.885-15.884-34.922.275-12.155-.275zm-105.11 5c-.965-.009-1.993.107-3.04.26v1.4c1.464-.205 2.793-.34 3.95-.238l.034-1.365a9.374 9.374 0 0 0-.944-.056zm7.481.035c-.562-.03-1.107-.03-1.634.022l.034 1.365c.987-.069 2.108 0 3.333.17v-1.4a28.695 28.695 0 0 0-1.733-.157zm2.755.26v1.402c.238.034.442.068.68.102.886.137 1.771.272 2.69.375l-.034-1.4a60.392 60.392 0 0 1-2.451-.343 7.926 7.926 0 0 1-.885-.136zm-14.296.102c-.102.034-.17.034-.273.034-.817.137-1.634.241-2.451.344l-.034 1.399a64.321 64.321 0 0 0 2.69-.375h.068v-1.402zm3.698 2.749c-1.233.036-2.55.225-3.903.43v1.399c.068 0 .103 0 .17-.034 1.839-.273 3.508-.511 4.903-.409l.034-1.368c-.391-.025-.792-.03-1.204-.018zm6.345.018.034 1.368c.885-.068 1.87 0 2.925.136v-1.368c-1.055-.102-2.04-.17-2.959-.136zm3.98.239v1.402c.307.034.648.102.954.136.92.136 1.839.272 2.792.374l-.034-1.399c-.851-.102-1.703-.238-2.554-.34-.374-.068-.783-.105-1.157-.173zm-15.283.309c-.51.068-1.056.136-1.566.204l-.034 1.4 1.634-.205v-1.399h-.034zm248.94 1.879 9.598 26.473h-18.723l9.124-26.473zm-237.53.68.034 1.369c1.123-.068 2.448.067 3.844.272v-1.365c-1.362-.204-2.687-.343-3.878-.275zm-5.38.035c-1.157-.069-2.417.07-3.745.241v1.4c1.362-.206 2.622-.341 3.711-.273l.034-1.368zm10.313.343v1.433h-.034c.92.137 1.873.275 2.86.378l-.034-1.402a55.332 55.332 0 0 1-2.655-.375c-.034 0-.068 0-.137-.034zm-15.08.034c-.102 0-.17.034-.238.034a70.95 70.95 0 0 1-2.656.375l-.034 1.402a75.985 75.985 0 0 0 2.928-.378h.068v-1.433h-.068zm75.515 63.967-2.011.233-4.6.034-5.385-.034v3.218h.715l.85-2.29 2.83-.065v11.056l-2.25.232.102.632 3.138-.068 3.03.068.106-.632-2.148-.232V82.501l3.816.065.68-.099v11.189l-1.123.167.102.628 1.978-.065 1.77.065.103-.628-1.022-.167v-5.413l.545-.332c.682-.431 1.399-.83 1.978-.83.75 0 1.192.4 1.192 1.363v5.212l-.92.167.102.629 1.77-.066 2.115.035.102-.632-1.396-.167v-4.847c0-2.324-.41-3.188-2.795-3.188l-2.727 1.727v-5.909h-.647zm203.57.065-1.126.3-4.634 11.818-1.467.2.102.632 2.012-.068 2.25.068.103-.631-1.638-.232 1.23-3.42v.034h4.598l1.26 3.417-1.6.235.102.628 2.489-.065 2.59.065.102-.628-1.467-.201-4.906-12.152zm-82.718.068-1.566 1.728c-.681.73-1.021 1.458-1.021 2.553v.167h-1.093l-.578.632v.297h1.637v6.741l-1.331.167.102.628 2.148-.065 2.897.065.102-.696-2.148-.133v-6.738h2.353v-.864h-2.353v-.464c0-1.195.136-1.726.409-2.058l.374-.499h2.42v-1.46h-2.352zm-100.34.1-.102.63 1.706.233v7.404c0 2.921 1.33 4.847 5.01 4.847 3.75-.863 4.736-2.423 4.736-4.813V82.5l1.604-.232-.103-.631-2.182.065-2.386-.065-.102.631 1.637.198v7.636c0 2.357-1.09 3.618-3.033 3.618-2.147 0-3.136-1.293-3.136-3.55V82.5l1.6-.232-.101-.631-2.557.065-2.59-.065zm107.73.034v3.218h.75l.85-2.324 2.83-.031v11.053l-2.248.235.103.629 3.135-.065 3.033.065.068-.629-2.148-.235V82.535l2.83.031.85 2.324h.716v-3.218l-5.383.065-5.385-.065zm-81.08.03-1.362.103-.17.86.102 1.03.511.1 1.328-.1.204-.863-.102-1.027-.51-.102zm38.82 0-1.366.103-.17.86.102 1.03.514.1 1.328-.1.204-.863-.102-1.027-.51-.102zm151.53 0-1.366.103-.17.86.102 1.03.51.1 1.332-.1.204-.863-.102-1.027-.51-.102zm-34.766 1.762.137.996 1.773 4.813h-3.986l2.076-5.81zm-111.65.099-1.228 1.194v1.195h-1.226l-.647.631v.3h1.805v5.445c0 1.66.273 2.39 2.386 2.39l2.352-1.26-.306-.632c-.511.233-1.092.499-1.638.499-.783 0-.987-.565-.987-1.096v-5.577h2.83l3.135 7.7.749-.232-1.876 2.755h-1.6v1.894h2.25l2.11-4.615 3.034-7.472 1.195-.198-.102-.631-1.57.068-1.634-.068-.102.631.851.198-2.318 6.609-.136-1.263-2.08-5.346 1.229-.198-.102-.631h-5.897v-2.29h-.476zm98.085 0-1.228 1.194v1.195h-1.226l-.647.631v.3h1.805v5.445c0 1.66.273 2.39 2.386 2.39l2.182-1.195-.306-.632c-.546.233-.956.434-1.502.434-.783 0-.987-.565-.987-1.096v-5.345h2.829v-.83h-2.829v-2.491h-.477zm41.271 0-1.225 1.194v1.195h-1.226l-.65.631v.3h1.808v5.445c0 1.66.273 2.39 2.386 2.39l2.179-1.195-.306-.632c-.512.233-.92.434-1.464.434-.784 0-.988-.565-.988-1.096v-5.345h2.792v-.83h-2.826v-2.491h-.48zm-151.28 1.925c-2.18.465-3.407 1.196-3.407 2.457 0 1.03.748 1.725 1.566 2.124l1.467.764c.988.498 1.362.832 1.362 1.53 0 .763-.51 1.392-1.498 1.392-.58 0-1.127-.199-1.536-.464l-.646-1.53h-1.195l.343 2.062c.512.266 1.702.83 2.86.83 2.147-.465 3.513-1.064 3.513-2.724 0-1.03-.512-1.725-1.773-2.355l-1.43-.7c-.818-.398-1.297-.761-1.297-1.359 0-.664.717-1.064 1.433-1.064.682 0 1.225.3 1.43.399l.477 1.294h.99v-1.827c-.545-.398-1.636-.829-2.659-.829zm90.381 0c-2.18.465-3.407 1.196-3.407 2.457 0 1.03.751 1.725 1.569 2.124l1.464.764c.988.498 1.365.832 1.365 1.53 0 .763-.513 1.392-1.501 1.392a2.87 2.87 0 0 1-1.532-.464l-.65-1.53h-1.192l.34 2.062c.512.266 1.739.83 2.864.83 2.147-.465 3.51-1.064 3.51-2.724 0-1.03-.51-1.725-1.77-2.355l-1.434-.7c-.818-.398-1.294-.761-1.294-1.359 0-.664.715-1.064 1.43-1.064.682 0 1.229.3 1.433.399l.477 1.294h.987v-1.827c-.545-.398-1.636-.829-2.658-.829zm54.326 0c-2.18.465-3.407 1.196-3.407 2.457 0 1.03.75 1.725 1.569 2.124l1.464.764c.954.498 1.365.832 1.365 1.53 0 .763-.513 1.392-1.501 1.392a2.87 2.87 0 0 1-1.532-.464l-.65-1.53H319l.34 2.062c.512.266 1.705.83 2.863.83 2.148-.465 3.51-1.064 3.51-2.724 0-1.03-.509-1.725-1.77-2.355l-1.433-.7c-.818-.398-1.294-.761-1.294-1.359 0-.664.714-1.064 1.43-1.064.682 0 1.263.3 1.433.399l.477 1.294h.987v-1.827c-.55-.398-1.64-.83-2.66-.83zm-211.27.068c-2.556.531-4.228 1.99-4.228 4.68 0 2.888 2.047 4.448 4.33 4.448 1.193-.3 2.386-.83 3.272-1.427l-.306-.697c-.716.432-1.603.765-2.353.765-1.942 0-3.1-1.462-3.1-3.553v-.034h5.691v-.765c0-1.892-.818-3.417-3.306-3.417zm50.677 0c-2.556.531-4.224 1.99-4.224 4.68 0 2.888 2.043 4.448 4.327 4.448 1.192-.3 2.388-.83 3.274-1.427l-.31-.697c-.715.432-1.599.765-2.348.765-1.943 0-3.102-1.462-3.102-3.553v-.034h5.692v-.765c0-1.892-.82-3.417-3.308-3.417zm48.293 0c-2.897.498-4.599 2.023-4.599 4.779 0 2.457 1.703 4.349 4.19 4.349 2.898-.465 4.603-2.023 4.603-4.745 0-2.49-1.672-4.383-4.194-4.383zm30.877 0c-2.556.531-4.224 1.99-4.224 4.68 0 2.888 2.009 4.448 4.293 4.448 1.192-.3 2.388-.83 3.274-1.427l-.31-.697c-.715.432-1.599.765-2.349.765-1.942 0-3.1-1.462-3.1-3.553v-.034h5.725v-.765c0-1.892-.82-3.417-3.309-3.417zm18.2 0-3.408 1.492v1.396h1.603l.306-1.461c.41-.166 1.021-.331 1.533-.331.988 0 1.092.662 1.092 1.758v.897l-4.228 1.362c-.409.565-.647 1.03-.647 1.693 0 1.461 1.16 2.322 2.761 2.322l2.25-1.591.579 1.392 2.42-.464-.068-.631h-.919c-.17-.299-.31-.565-.31-1.362v-3.584c0-2.291-.613-2.888-2.965-2.888zm21.232 0-3.34 1.492v1.396h1.604l.306-1.461c.41-.166 1.021-.331 1.533-.331.988 0 1.092.662 1.092 1.758v.897l-4.228 1.362c-.409.565-.647 1.03-.647 1.693 0 1.461 1.16 2.322 2.761 2.322l2.216-1.591.58 1.392 2.42-.464-.069-.631h-.953c-.17-.299-.31-.565-.31-1.362v-3.584c0-2.291-.613-2.888-2.965-2.888zm-142.29.03-2.76 1.762-.103-1.529-.82.068-2.247.563.102.632 1.294-.1v6.674l-1.294.167.102.628 2.148-.065 1.805.1.102-.632-1.021-.164v-5.413l.544-.366c.648-.431 1.297-.83 1.944-.83.784 0 1.226.4 1.226 1.363v5.212l-.954.167.103.628 1.804-.065 2.148.065.102-.628-1.43-.167v-5.08c0-2.19-.409-2.99-2.795-2.99zm206.4 0-2.76 1.762-.103-1.529-.82.068-2.247.563.102.632 1.294-.1v6.674l-1.294.167.102.628 2.145-.065 1.774.1.102-.632-1.022-.164v-5.413l.58-.366c.647-.431 1.292-.83 1.94-.83.784 0 1.229.4 1.229 1.363v5.212l-.954.167.103.628 1.804-.065 2.148.065.102-.628-1.433-.167v-5.08c0-2.19-.406-2.99-2.792-2.99zm-173.03.069-2.148 2.557-.068-2.424-.749.065-2.25.567.102.628 1.294-.1v6.674l-1.294.167.102.631 2.114-.068 2.727.068.102-.7-1.977-.163v-4.349l.374-.433c.511-.598 1.33-1.194 1.774-1.294h1.395v-1.826h-1.498zm139.42.133-.919.065-2.25.464.102.7 1.331-.102v4.782c0 2.125.41 2.987 2.897 2.987l2.727-1.66.51 1.496 2.421-.465-.068-.631h-.956c-.137-.299-.239-.565-.239-1.362v-6.274l-.953.065-2.08.464.102.7 1.127-.102v5.147l-.375.232c-.715.465-1.466.929-2.046.929-.92 0-1.33-.396-1.33-1.36v-6.075zm-164.78.031-.953.068-2.25.563.102.632 1.297-.1v6.674l-1.297.167.102.628 2.148-.065 2.148.065.102-.628-1.399-.167v-7.837zm1.57 0-.103.631 1.158.202 3.272 8.066 1.365-.564 3.067-7.502 1.192-.202-.103-.631-1.566.068-1.637-.068-.102.631.851.202-2.281 6.605-.071-1.26-2.043-5.345 1.226-.202-.103-.631-1.974.068-2.148-.068zm37.182 0-.92.068-2.25.563.102.632 1.294-.1v6.674l-1.294.167.102.628 2.148-.065 2.114.065.103-.628-1.4-.167v-7.837zm60.358 0-.102.665 1.157.199 2.727 3.62-2.76 3.319-1.329.167.102.631 1.94-.068 1.468.068.102-.631-.919-.133 1.975-2.789.136.43 1.671 2.359-.783.167.102.628 1.77-.065 2.149.065.102-.628-1.158-.167-2.93-4.052 2.484-2.921 1.365-.198-.102-.666-1.944.068-1.464-.068-.102.666.92.198-1.774 2.491-.136-.464-1.396-2.027.75-.198-.103-.666-1.77.068-2.148-.068zm91.167 0-.92.068-2.25.563.102.632 1.294-.1v6.674l-1.294.167.102.628 2.148-.065 2.111.065.102-.628-1.396-.167v-7.837zm-225.65.631c1.465 0 1.736.999 1.736 2.393l-3.748.164c.136-1.527.853-2.557 2.012-2.557zm50.71 0c1.466 0 1.74.999 1.74 2.393l-3.748.164c.136-1.527.85-2.557 2.009-2.557zm48.226 0c1.601 0 2.76 1.56 2.76 3.885 0 1.959-.784 3.454-2.284 3.454-1.67 0-2.795-1.759-2.76-3.85 0-1.992.75-3.489 2.284-3.489zm30.877 0c1.465 0 1.74.999 1.74 2.393l-3.75.164c.137-1.527.885-2.557 2.01-2.557zm19.769 3.588v2.39l-.783.532c-.239.166-.718.464-1.23.464-.545 0-1.089-.333-1.089-1.263 0-.398.102-.762.375-1.028l2.727-1.095zm21.233 0v2.39l-.783.532c-.239.166-.718.464-1.23.464-.545 0-1.089-.333-1.089-1.263 0-.398.102-.762.375-1.028l2.727-1.095z\" fill=\"#bf5700\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wj0hwo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pfnotp\",\"data-framer-name\":\"Brown University_logo\",fill:\"black\",intrinsicHeight:37,intrinsicWidth:205,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xml:space=\"preserve\" height=\"37.242\" viewBox=\"0 0 204.871 37.242\" width=\"204.87\"><path d=\"M91.067 1.037c-11.552 0-17.666 9.275-17.666 17.984 0 9.784 6.943 17.258 16.739 17.258 9.895 0 17.405-7.31 17.405-18.092 0-10.206-7.51-17.15-16.478-17.15zm-89.55.773v1.2c4.097.308 4.408.666 4.461 6.318v18.656c0 5.642-.41 6.009-4.77 6.319V35.5h11.926c3.934 0 7.248-.52 9.896-1.973 3.002-1.706 4.817-4.304 4.817-7.976 0-5.237-4.25-8.037-8.965-8.711v-.1c2.48-.624 6.781-2.85 6.781-7.412 0-2.59-.927-4.454-2.687-5.696-1.714-1.198-3.842-1.822-7.57-1.822H1.516zm35.445 0v1.2c4.149.31 4.564.666 4.564 6.318v18.656c0 5.642-.415 6.009-4.771 6.319v1.195h13.791v-1.195c-4.254-.31-4.668-.677-4.668-6.32V20.68h2.799c1.609 0 2.437.518 3.26 1.86 1.453 2.437 3.634 6.265 5.24 8.608 1.966 2.844 3.785 4.66 9.74 4.82h.725l.109-.988c-1.872-.463-2.804-1.296-3.889-2.591-1.402-1.558-2.492-2.948-4.357-5.7-1.552-2.276-3.675-5.855-4.613-7.414 4.2-1.707 6.847-4.766 6.847-9.068 0-3.005-1.355-5.334-3.423-6.631-1.914-1.298-4.873-1.766-8.184-1.766h-13.17zm75.603 0v1.197c2.96.31 3.73.67 5.13 4.973l8.97 27.829h1.45l8.44-25.24.11-.104 9.32 25.344h1.41c4.35-14.25 8.13-26.166 8.6-27.465 1.71-4.712 2.07-4.921 5.49-5.336V1.81h-10.99v1.198l1.51.205c2.32.257 2.59.883 1.87 3.888-.89 3.728-3.9 14.662-6.01 21.196h-.12l-9.37-25.964h-1.25l-8.29 26.012h-.1l-7-22.075c-.72-2.284-.41-2.75 1.92-3.058l1.61-.205V1.81h-12.7zm55.09 0v1.197c2.17.156 3.56.516 4.56 1.758.93 1.188.98 2.022.98 5.755v11.241c0 5.445-.21 8.247-.41 9.85-.27 1.811-1.61 2.584-4.46 2.691v1.195h12.44v-1.195c-3.43-.157-4.82-.88-5.08-2.692-.21-1.602-.42-4.404-.42-9.849V8.554h.11l22.5 27.308h1.34v-20.32c0-5.443.2-8.231.41-9.844.26-1.81 1.61-2.585 4.45-2.691V1.81h-12.43v1.197c3.41.156 4.82.881 5.08 2.691.21 1.613.41 4.401.41 9.844v12.39h-.1l-21.82-26.123h-7.56zm-77.929.94c7.407 0 12.799 6.164 12.799 17.358 0 9.642-5.08 14.455-11.297 14.455-7.567 0-12.803-7.047-12.803-17.05 0-9.739 5.184-14.764 11.301-14.764zm-76.084.568c6.122 0 7.412 3.47 7.412 6.578 0 4.247-2.487 6.578-7.461 6.578h-3.266v-11.5c0-1.037.159-1.242.463-1.342.419-.16 1.147-.314 2.852-.314zm35.607 0c3.883 0 7.822 2.175 7.822 7.611 0 2.546-.775 5.081-3 6.843-1.406 1.14-3.059 1.403-5.185 1.403h-3.008v-14.2c0-1.038.155-1.298.463-1.4.417-.153 1.144-.257 2.908-.257zM10.327 17.984h3.006c5.34 0 9.488 2.588 9.488 8.235 0 5.496-3.685 7.674-8.033 7.674-3.784.048-4.461-1.14-4.461-4.612V17.984z\" fill=\"#4e3629\"/></svg>',withExternalLayout:true})})],speed:80,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1t3m047\",\"data-framer-name\":\"About\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1x4poxs\",\"data-framer-name\":\"Title, subtitle\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-m6rks7\",\"data-styles-preset\":\"elP2a6llk\",style:{\"--framer-text-color\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\"},children:\"Beautifully formatted notes\"})}),className:\"framer-1g8e48e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5ad41bc5-ed8f-4c0a-bd43-9d93df90ef76, rgb(0, 0, 0))\"},children:\"BuzzNotes automatically summarizes and highlights key points \"})}),className:\"framer-tk9l3x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-14xwtf6\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1376px)`,y:(componentViewport?.y||0)+0+1967+16+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:552,width:`min(${componentViewport?.width||\"100vw\"} - 64px, 1376px)`,y:(componentViewport?.y||0)+0+1903+32+192,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{__framer__styleAppearEffectEnabled:undefined,__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{offset:0,ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r2tn5-container\",nodeId:\"cUxtXlkld\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ibQqWlFPu:{__framer__targets:[{offset:0,ref:ref3,target:\"PGbR8niH9\"}],variant:\"qHsZYX3Ae\"},IvLgp1GwG:{__framer__variantAppearEffectEnabled:undefined,variant:\"pnV_bUG9Z\"}},children:/*#__PURE__*/_jsx(FeaturesSliderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:0,ref:ref2,target:\"a37nNALmN\"},{offset:0,ref:ref3,target:\"BVDjCH4KC\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,Fzco_hk9K:\"Chat with your notes\",height:\"100%\",Hp2GbY5Nz:\"Have your own AI assistant ready to answer any question that you have. Engage in conversation with your notes to uncover deeper insights and clarify concepts.\",hslBb27nA:\"rgb(248, 240, 242)\",id:\"cUxtXlkld\",j2_1aeoM_:\"rgb(240, 248, 246)\",JvxUZbIxQ:addImageAlt({src:\"https://framerusercontent.com/images/VOeVkgrhLbyTSQqXKGFG1EiGw.png\",srcSet:\"https://framerusercontent.com/images/VOeVkgrhLbyTSQqXKGFG1EiGw.png?scale-down-to=2048 997w,https://framerusercontent.com/images/VOeVkgrhLbyTSQqXKGFG1EiGw.png 1294w\"},\"\"),layoutId:\"cUxtXlkld\",LJyxDlL48:\"Keep track of your lectures\",P8aMkBtCB:\"var(--token-dca9c9e1-8c4f-4ff8-a027-849eb8e833e1, rgb(240, 242, 248))\",style:{maxWidth:\"100%\",width:\"100%\"},T93si_P4W:\"Have your own AI assistant ready to answer any question that you have. Engage in conversation with your notes to uncover deeper insights and clarify concepts.\",uyyTgjD8E:\"Create quizzes and flashcards personalized to your notes for an effective review. Each question is crafted to reinforce key points, helping you deepen your understanding with every session.\",variant:\"J437gTbFJ\",VrADO4Ine:\"Chat with your notes\",width:\"100%\",Wnc3q4txU:\"BuzzNotes organizes your notes by content and lets you effortlessly sort them into the folders of your choice.\",wRiUjrikE:\"Test your knowledge\",Wwgn6qYfk:\"Create quizzes and flashcards personalized to your notes for an effective review. Each question is crafted to reinforce key points, helping you deepen your understanding with every session.\",x_I2_RicL:addImageAlt({src:\"https://framerusercontent.com/images/qoadt4hUNZtj5838WXWBiHYNuXM.png\",srcSet:\"https://framerusercontent.com/images/qoadt4hUNZtj5838WXWBiHYNuXM.png?scale-down-to=2048 997w,https://framerusercontent.com/images/qoadt4hUNZtj5838WXWBiHYNuXM.png 1294w\"},\"\"),zSmBiT7xi:\"Test your knowledge\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{height:552,width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1376px)`,y:(componentViewport?.y||0)+0+1967+16+616}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zqzk15-container hidden-72rtr7 hidden-1d2lx49\",nodeId:\"yhtuSrcoO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeaturesSlider,{Fzco_hk9K:\"Chat with your notes\",height:\"100%\",Hp2GbY5Nz:\"Have your own AI assistant ready to answer any question that you have. Engage in conversation with your notes to uncover deeper insights and clarify concepts.\",hslBb27nA:\"rgb(248, 240, 242)\",id:\"yhtuSrcoO\",j2_1aeoM_:\"rgb(240, 248, 246)\",JvxUZbIxQ:addImageAlt({src:\"https://framerusercontent.com/images/TuztmU6nlNehbZGqPaHsPvzpc.png\",srcSet:\"https://framerusercontent.com/images/TuztmU6nlNehbZGqPaHsPvzpc.png?scale-down-to=2048 997w,https://framerusercontent.com/images/TuztmU6nlNehbZGqPaHsPvzpc.png 1294w\"},\"\"),layoutId:\"yhtuSrcoO\",LJyxDlL48:\"Keep track of your lectures\",P8aMkBtCB:\"var(--token-dca9c9e1-8c4f-4ff8-a027-849eb8e833e1, rgb(240, 242, 248))\",style:{maxWidth:\"100%\",width:\"100%\"},T93si_P4W:\"Have your own AI assistant ready to answer any question that you have. Engage in conversation with your notes to uncover deeper insights and clarify concepts.\",uyyTgjD8E:\"Create quizzes and flashcards personalized to your notes for an effective review. Each question is crafted to reinforce key points, helping you deepen your understanding with every session.\",variant:\"xGMQoqxkb\",VrADO4Ine:\"Chat with your notes\",width:\"100%\",Wnc3q4txU:\"BuzzNotes organizes your notes by content and lets you effortlessly sort them into the folders of your choice.\",wRiUjrikE:\"Test your knowledge\",Wwgn6qYfk:\"Create quizzes and flashcards personalized to your notes for an effective review. Each question is crafted to reinforce key points, helping you deepen your understanding with every session.\",x_I2_RicL:addImageAlt({src:\"https://framerusercontent.com/images/uN7wYU7T6OODkPeB78vfUpOiEIg.png\",srcSet:\"https://framerusercontent.com/images/uN7wYU7T6OODkPeB78vfUpOiEIg.png?scale-down-to=2048 997w,https://framerusercontent.com/images/uN7wYU7T6OODkPeB78vfUpOiEIg.png 1294w\"},\"\"),YCx9wWzcv:addImageAlt({src:\"https://framerusercontent.com/images/XHxzRuAFjCgXUVTAI0VPbLrpU4.png\",srcSet:\"https://framerusercontent.com/images/XHxzRuAFjCgXUVTAI0VPbLrpU4.png?scale-down-to=2048 997w,https://framerusercontent.com/images/XHxzRuAFjCgXUVTAI0VPbLrpU4.png 1294w\"},\"\"),zSmBiT7xi:\"Test your knowledge\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{height:552,width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1376px)`,y:(componentViewport?.y||0)+0+1967+16+1232}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s0ue97-container hidden-72rtr7 hidden-1d2lx49\",nodeId:\"wmwDtANSE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeaturesSlider,{Fzco_hk9K:\"Chat with your notes\",height:\"100%\",Hp2GbY5Nz:\"Have your own AI assistant ready to answer any question that you have. Engage in conversation with your notes to uncover deeper insights and clarify concepts.\",hslBb27nA:\"rgb(248, 240, 242)\",id:\"wmwDtANSE\",j2_1aeoM_:\"rgb(240, 248, 246)\",JvxUZbIxQ:addImageAlt({src:\"https://framerusercontent.com/images/OMnZSmyFHP82ETUx5ZjZSKFbYeM.png\",srcSet:\"https://framerusercontent.com/images/OMnZSmyFHP82ETUx5ZjZSKFbYeM.png?scale-down-to=2048 997w,https://framerusercontent.com/images/OMnZSmyFHP82ETUx5ZjZSKFbYeM.png 1294w\"},\"\"),layoutId:\"wmwDtANSE\",LJyxDlL48:\"Keep track of your lectures\",P8aMkBtCB:\"var(--token-dca9c9e1-8c4f-4ff8-a027-849eb8e833e1, rgb(240, 242, 248))\",style:{maxWidth:\"100%\",width:\"100%\"},T93si_P4W:\"Have your own AI assistant ready to answer any question that you have. Engage in conversation with your notes to uncover deeper insights and clarify concepts.\",uyyTgjD8E:\"Create quizzes and flashcards personalized to your notes for an effective review. Each question is crafted to reinforce key points, helping you deepen your understanding with every session.\",variant:\"jaUAJ2wYN\",VrADO4Ine:\"Chat with your notes\",width:\"100%\",Wnc3q4txU:\"BuzzNotes organizes your notes by content and lets you effortlessly sort them into the folders of your choice.\",wRiUjrikE:\"Test your knowledge\",Wwgn6qYfk:\"Create quizzes and flashcards personalized to your notes for an effective review. Each question is crafted to reinforce key points, helping you deepen your understanding with every session.\",YCx9wWzcv:addImageAlt({src:\"https://framerusercontent.com/images/CXOW5OGGrl7kVgSLOCleChgGMw.png\",srcSet:\"https://framerusercontent.com/images/CXOW5OGGrl7kVgSLOCleChgGMw.png?scale-down-to=2048 997w,https://framerusercontent.com/images/CXOW5OGGrl7kVgSLOCleChgGMw.png 1294w\"},\"\"),zSmBiT7xi:\"Test your knowledge\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-eee9my hidden-11585dt\",\"data-framer-name\":\"Trigger 1\",id:elementId,ref:ref2}),isDisplayed1()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-16cc6m2 hidden-11585dt\",\"data-framer-name\":\"Trigger 2\",id:elementId1,ref:ref3}),isDisplayed1()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-gwm179 hidden-11585dt\",\"data-framer-name\":\"Trigger 3\",id:elementId2,ref:ref1}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m0nv5f\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{y:(componentViewport?.y||0)+0+3831+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:3326.8293,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6903+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yzhfoz-container\",id:elementId3,nodeId:\"qXhgasDHq\",ref:ref7,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BGWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref4,target:\"rTTbQdpd7\"},{ref:ref5,target:\"a2O0LD3Ko\"},{ref:ref6,target:\"Xp3LahHvl\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"qXhgasDHq\",layoutId:\"qXhgasDHq\",style:{height:\"100%\",width:\"100%\"},variant:\"rTTbQdpd7\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-rpyq4a\",\"data-framer-name\":\"Testimonials\",id:elementId4,ref:ref4,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-114d4d4\",\"data-framer-name\":\"Title, subtitle\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-m6rks7\",\"data-styles-preset\":\"elP2a6llk\",children:\"Trusted by Thousands\"})}),className:\"framer-8f9thp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",style:{\"--framer-text-alignment\":\"center\"},children:\"Hear what our users have to say about their experience and how it transformed the way they approach growth and success.\"})}),className:\"framer-1abowee\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-44odo9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7l6zz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m7x8xr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"f67IurfuI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 163, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"f67IurfuI\",layoutId:\"f67IurfuI\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y41l53-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VyVc9Kf7Z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 163, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"VyVc9Kf7Z\",layoutId:\"VyVc9Kf7Z\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vgx911-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"M3CrkfGpt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 163, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"M3CrkfGpt\",layoutId:\"M3CrkfGpt\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gczrhg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gzuPhMTsa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 163, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"gzuPhMTsa\",layoutId:\"gzuPhMTsa\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hwyzdh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VYHGKEeQa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 163, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"VYHGKEeQa\",layoutId:\"VYHGKEeQa\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",style:{\"--framer-text-alignment\":\"center\"},children:\"5.0 \u2022 15 Ratings\"})}),className:\"framer-44dkn7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tfa45d\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1t5mcem-container\",\"data-framer-appear-id\":\"1t5mcem\",initial:animation1,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ydYD5oSEx\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:32,height:\"100%\",hoverFactor:.2,id:\"ydYD5oSEx\",layoutId:\"ydYD5oSEx\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:\"358px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ekgg2x-container\",inComponentSlot:true,nodeId:\"xvZTUTjlK\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"xvZTUTjlK\",layoutId:\"xvZTUTjlK\",style:{height:\"100%\",width:\"100%\"},variant:\"upXZ8C5g2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:\"358px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pp4rja-container\",inComponentSlot:true,nodeId:\"NgDsiDqgB\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"NgDsiDqgB\",layoutId:\"NgDsiDqgB\",style:{height:\"100%\",width:\"100%\"},variant:\"upXZ8C5g2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:\"358px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1or3x28-container\",inComponentSlot:true,nodeId:\"rzYQwsPWx\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"rzYQwsPWx\",layoutId:\"rzYQwsPWx\",style:{height:\"100%\",width:\"100%\"},variant:\"wEfqofXBy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:\"358px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xmbedd-container\",inComponentSlot:true,nodeId:\"eBtgoWUzq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"eBtgoWUzq\",layoutId:\"eBtgoWUzq\",style:{height:\"100%\",width:\"100%\"},variant:\"pOfv18qXm\",width:\"100%\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-12txrx3-container\",\"data-framer-appear-id\":\"12txrx3\",initial:animation1,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"OFRxb7o1J\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:32,height:\"100%\",hoverFactor:.2,id:\"OFRxb7o1J\",layoutId:\"OFRxb7o1J\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:\"358px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bwvvvg-container\",inComponentSlot:true,nodeId:\"agmuMNvML\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"agmuMNvML\",layoutId:\"agmuMNvML\",style:{height:\"100%\",width:\"100%\"},variant:\"Qscw2LlOg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:\"358px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-nowbew-container\",inComponentSlot:true,nodeId:\"TfwmWtg5W\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"TfwmWtg5W\",layoutId:\"TfwmWtg5W\",style:{height:\"100%\",width:\"100%\"},variant:\"kk0F4mKwD\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:\"358px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14o4gnw-container\",inComponentSlot:true,nodeId:\"PpBCKiD_3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"PpBCKiD_3\",layoutId:\"PpBCKiD_3\",style:{height:\"100%\",width:\"100%\"},variant:\"XZ_6uhNIn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:\"358px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-kbqnns-container\",inComponentSlot:true,nodeId:\"R6xDfPdbT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"R6xDfPdbT\",layoutId:\"R6xDfPdbT\",style:{height:\"100%\",width:\"100%\"},variant:\"W1EamOAjo\",width:\"100%\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__targetOpacity:.21,className:\"framer-18unni4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3831+0+0+1e3- -286+24),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/AhBhg8b4fP5k14ZulCVu19nfVrI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6903+0+0+1e3- -286+24),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/AhBhg8b4fP5k14ZulCVu19nfVrI.png\"},className:\"framer-gdyv6u\",\"data-framer-name\":\"Image\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-512,y:-512}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6903+0+0+1e3-0),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/AhBhg8b4fP5k14ZulCVu19nfVrI.png\"},className:\"framer-nfjc4h hidden-11585dt\",\"data-framer-name\":\"Image\"}),isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-512,y:-512}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6903+0+0+384),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/AhBhg8b4fP5k14ZulCVu19nfVrI.png\"},className:\"framer-o2cgik hidden-11585dt\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ytlpgb\",\"data-framer-name\":\"FAQ\",id:elementId5,ref:ref5,children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18dymg4\",\"data-framer-name\":\"Title, subtitle\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-m6rks7\",\"data-styles-preset\":\"elP2a6llk\",children:\"Questions? Answers\"})}),className:\"framer-k4tjeg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ibQqWlFPu:{y:(componentViewport?.y||0)+0+6903+0+1e3+64+441.9147},IvLgp1GwG:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 942px)`,y:(componentViewport?.y||0)+0+3831+0+1e3+64+441.9147}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:443,width:`min(${componentViewport?.width||\"100vw\"} - 64px, 942px)`,y:(componentViewport?.y||0)+0+6903+0+1e3+128+377.9147,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1rvivy0-container\",\"data-framer-appear-id\":\"1rvivy0\",initial:animation1,nodeId:\"CbQVempd1\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQFAQ,{fu12RJM4K:\"24px\",height:\"100%\",id:\"CbQVempd1\",layoutId:\"CbQVempd1\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-512,y:-512}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6903+0+1e3+1326.8293-0),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/7YOgjwvKiIfZTt41eJN1nvnhP8.png\"},className:\"framer-1t530r0 hidden-11585dt\",\"data-framer-name\":\"Image\"}),isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-512,y:-512}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6903+0+1e3+384),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/7YOgjwvKiIfZTt41eJN1nvnhP8.png\"},className:\"framer-1w3kk6b hidden-11585dt\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jice2j\",\"data-framer-name\":\"CTA\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1b0w77u\",\"data-framer-name\":\"CTA\",id:elementId6,ref:ref6,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ftbb5y\",\"data-framer-name\":\"Title, subtitle\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1viu47k\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l5ndn8\",children:/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/vn/app/buzznotes-ai-lecture-notes/id6738050902?uo=2\",motionChild:true,nodeId:\"A9rQKep3Q\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:95,intrinsicWidth:96,pixelHeight:1159,pixelWidth:1159,positionX:\"center\",positionY:\"center\",sizes:\"48px\",src:\"https://framerusercontent.com/images/n5lgd96lt8a3gpI0Bjn1W9dhkY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/n5lgd96lt8a3gpI0Bjn1W9dhkY.png?scale-down-to=512 512w,https://framerusercontent.com/images/n5lgd96lt8a3gpI0Bjn1W9dhkY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n5lgd96lt8a3gpI0Bjn1W9dhkY.png 1159w\"},className:\"framer-1pawp5s framer-lux5qc\",\"data-framer-name\":\"Honeycomb\",whileHover:animation9})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-m6rks7\",\"data-styles-preset\":\"elP2a6llk\",children:\"Upgrade Your Learning Journey\"})}),className:\"framer-116oz8b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qylaz5\",\"data-styles-preset\":\"dxCeqIlTM\",style:{\"--framer-text-alignment\":\"center\"},children:\"Join thousands of students and proffesionals boosting their knowledge with ease.\"})}),className:\"framer-1v352md\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bo603c\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-111uguv-container\",nodeId:\"JIB0z6MjS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonsButton,{BUXekn4Wq:\"Download for iOS\",height:\"100%\",id:\"JIB0z6MjS\",juAuBWod1:true,layoutId:\"JIB0z6MjS\",Tqlw1T5H_:false,vTAnIjyxs:\"https://apps.apple.com/vn/app/buzznotes-ai-lecture-notes/id6738050902?uo=2\",width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-512,y:-512}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6903+0+2326.8293+0+0+791-0),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/c7q20ahqIQbdaTxLXksdPq57z4.png\"},className:\"framer-17c7t6b hidden-11585dt\",\"data-framer-name\":\"Image\"}),isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-512,y:-512}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6903+0+2326.8293+0+0+384),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/c7q20ahqIQbdaTxLXksdPq57z4.png\"},className:\"framer-tqvpiy hidden-11585dt\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IvLgp1GwG:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:209,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6903+0+2326.8293+0+791,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sjgbg-container\",nodeId:\"H2_3AWscp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ibQqWlFPu:{variant:\"Xt4hkUTvw\"},IvLgp1GwG:{variant:\"ujKXCji1K\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"H2_3AWscp\",layoutId:\"H2_3AWscp\",style:{width:\"100%\"},variant:\"W5_Wr9VFm\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8m5amw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mG3P0DC4u\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"mG3P0DC4u\",intensity:10,layoutId:\"mG3P0DC4u\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6pZiq.framer-lux5qc, .framer-6pZiq .framer-lux5qc { display: block; }\",\".framer-6pZiq.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-07b59ed2-9f13-4589-9171-013bf1f6258f, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-6pZiq .framer-yygzsl-container { flex: none; height: 64px; left: 0px; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-6pZiq .framer-4pa676 { align-content: center; align-items: center; background: radial-gradient(50% 50% at 50% 50%, rgba(255, 187, 15, 0.8) 0%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 128px 32px 64px 32px; position: relative; width: 100%; z-index: 2; }\",\".framer-6pZiq .framer-1tabn0e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-6pZiq .framer-5w9ngx, .framer-6pZiq .framer-1x4poxs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 746px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6pZiq .framer-1pqwuda, .framer-6pZiq .framer-xyz5pf, .framer-6pZiq .framer-1g8e48e, .framer-6pZiq .framer-8f9thp, .framer-6pZiq .framer-k4tjeg, .framer-6pZiq .framer-116oz8b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-6pZiq .framer-iwdd8d, .framer-6pZiq .framer-44odo9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6pZiq .framer-16hon4s, .framer-6pZiq .framer-7l6zz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-6pZiq .framer-103cumb-container, .framer-6pZiq .framer-x6th0q-container, .framer-6pZiq .framer-2chjsg-container, .framer-6pZiq .framer-13d04pa-container, .framer-6pZiq .framer-15x68n6-container, .framer-6pZiq .framer-m7x8xr-container, .framer-6pZiq .framer-1y41l53-container, .framer-6pZiq .framer-vgx911-container, .framer-6pZiq .framer-gczrhg-container, .framer-6pZiq .framer-1hwyzdh-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-6pZiq .framer-u9vsgl, .framer-6pZiq .framer-44dkn7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: auto; }\",\".framer-6pZiq .framer-1r3if8c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6pZiq .framer-1buvc1a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-6pZiq .framer-1dlfce3 { aspect-ratio: 0.4871987951807229 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 735px); overflow: visible; position: relative; width: 358px; z-index: 2; }\",\".framer-6pZiq .framer-lgs29g { --border-bottom-width: 2px; --border-color: #e3e6f2; --border-left-width: 2px; --border-right-width: 2px; --border-style: dashed; --border-top-width: 2px; aspect-ratio: 1 / 1; border-bottom-left-radius: 700px; border-bottom-right-radius: 700px; border-top-left-radius: 700px; border-top-right-radius: 700px; bottom: -970px; flex: none; height: var(--framer-aspect-ratio-supported, 1338px); left: -490px; overflow: hidden; position: absolute; right: -490px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-6pZiq .framer-1sw85ma { align-content: center; align-items: center; aspect-ratio: 1 / 1; bottom: -977px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 1376px); justify-content: center; left: -521px; overflow: visible; padding: 0px; position: absolute; right: -497px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-6pZiq .framer-1b7lzk2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-6pZiq .framer-1gsl986-container, .framer-6pZiq .framer-1351pzz-container, .framer-6pZiq .framer-16okga4-container, .framer-6pZiq .framer-53zx6y-container, .framer-6pZiq .framer-14xbexj-container, .framer-6pZiq .framer-39vzk5-container, .framer-6pZiq .framer-11dnxeg-container, .framer-6pZiq .framer-xka88k-container, .framer-6pZiq .framer-9rd2p0-container, .framer-6pZiq .framer-1xkq2m0-container, .framer-6pZiq .framer-fbvrhb-container, .framer-6pZiq .framer-74160w-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); position: relative; width: 64px; }\",\".framer-6pZiq .framer-u2albw, .framer-6pZiq .framer-1heu6qv, .framer-6pZiq .framer-2vbuwt, .framer-6pZiq .framer-1jjykft, .framer-6pZiq .framer-16w7blk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; z-index: 1; }\",\".framer-6pZiq .framer-kz3ssx { align-content: center; align-items: center; background-color: var(--token-07b59ed2-9f13-4589-9171-013bf1f6258f, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 32px 64px 32px; position: relative; width: 100%; z-index: 2; }\",\".framer-6pZiq .framer-es3nmd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1376px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-6pZiq .framer-10dg0vn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 746px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6pZiq .framer-1176svq-container { flex: none; height: 40px; max-width: 1200px; position: relative; width: 100%; z-index: 1; }\",\".framer-6pZiq .framer-1bi0mvv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 145px; }\",\".framer-6pZiq .framer-ebla7c { aspect-ratio: 3.6363636363636362 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 145px; }\",\".framer-6pZiq .framer-1a4dkfc { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 228px; }\",\".framer-6pZiq .framer-bgjd57 { aspect-ratio: 9.481481481481481 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 228px; }\",\".framer-6pZiq .framer-nqm39a { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 267px; }\",\".framer-6pZiq .framer-uajsdm { aspect-ratio: 6.666666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 267px; }\",\".framer-6pZiq .framer-mdj7pq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 140px; }\",\".framer-6pZiq .framer-djmrtn { aspect-ratio: 3.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 140px; }\",\".framer-6pZiq .framer-1wj0hwo { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 133px; }\",\".framer-6pZiq .framer-1pfnotp { aspect-ratio: 5.54054054054054 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 133px; }\",\".framer-6pZiq .framer-1t3m047 { align-content: center; align-items: center; background-color: var(--token-07b59ed2-9f13-4589-9171-013bf1f6258f, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 64px 32px 64px 32px; position: relative; width: 100%; z-index: 2; }\",\".framer-6pZiq .framer-tk9l3x, .framer-6pZiq .framer-1abowee, .framer-6pZiq .framer-1v352md { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6pZiq .framer-14xwtf6 { align-content: center; align-items: center; background-color: var(--token-07b59ed2-9f13-4589-9171-013bf1f6258f, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 100vh; justify-content: center; overflow: visible; padding: 32px; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-6pZiq .framer-r2tn5-container, .framer-6pZiq .framer-zqzk15-container, .framer-6pZiq .framer-s0ue97-container { flex: none; height: auto; max-width: 1376px; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-6pZiq .framer-eee9my, .framer-6pZiq .framer-16cc6m2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 100vh; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6pZiq .framer-gwm179 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 200vh; justify-content: center; overflow: visible; padding: 64px 32px 64px 32px; position: relative; width: 100%; }\",\".framer-6pZiq .framer-m0nv5f { 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%; z-index: 2; }\",\".framer-6pZiq .framer-1yzhfoz-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-6pZiq .framer-rpyq4a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 100vh; justify-content: center; min-height: 928px; overflow: hidden; padding: 128px 32px 128px 32px; position: relative; width: 100%; }\",\".framer-6pZiq .framer-114d4d4, .framer-6pZiq .framer-18dymg4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 746px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-6pZiq .framer-1tfa45d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-6pZiq .framer-1t5mcem-container, .framer-6pZiq .framer-12txrx3-container { flex: none; height: 208px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-6pZiq .framer-ekgg2x-container, .framer-6pZiq .framer-pp4rja-container, .framer-6pZiq .framer-1or3x28-container, .framer-6pZiq .framer-xmbedd-container, .framer-6pZiq .framer-bwvvvg-container, .framer-6pZiq .framer-nowbew-container, .framer-6pZiq .framer-14o4gnw-container, .framer-6pZiq .framer-kbqnns-container { height: 208px; position: relative; width: 358px; }\",\".framer-6pZiq .framer-18unni4 { align-content: center; align-items: center; background-color: var(--token-773348a1-45a6-430e-8c23-91e26edecaec, #c6d2ed); border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; bottom: -414px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 128px; justify-content: center; left: -1185px; opacity: 0.21; overflow: visible; padding: 12px; position: absolute; right: 2257px; z-index: 2; }\",\".framer-6pZiq .framer-gdyv6u { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); overflow: visible; position: relative; width: 80px; }\",\".framer-6pZiq .framer-nfjc4h, .framer-6pZiq .framer-17c7t6b { aspect-ratio: 1 / 1; bottom: -48px; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 384px; overflow: visible; position: absolute; width: 48px; z-index: 1; }\",\".framer-6pZiq .framer-o2cgik, .framer-6pZiq .framer-1w3kk6b { flex: none; height: 48px; overflow: visible; position: absolute; right: -48px; top: 384px; width: 48px; z-index: 1; }\",\".framer-6pZiq .framer-ytlpgb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 132.6829268292683vh; justify-content: center; min-height: 868px; overflow: hidden; padding: 128px 32px 128px 32px; position: relative; width: 100%; }\",\".framer-6pZiq .framer-1rvivy0-container { flex: none; height: auto; max-width: 942px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-6pZiq .framer-1t530r0 { aspect-ratio: 1 / 1; bottom: -48px; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 256px; overflow: visible; position: absolute; width: 48px; z-index: 1; }\",\".framer-6pZiq .framer-1jice2j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; min-height: 688px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6pZiq .framer-1b0w77u { align-content: center; align-items: center; background-color: rgba(240, 242, 248, 0); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 1px; justify-content: center; overflow: hidden; padding: 128px 32px 128px 32px; position: relative; width: 100%; }\",\".framer-6pZiq .framer-ftbb5y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 746px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6pZiq .framer-1viu47k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6pZiq .framer-1l5ndn8 { align-content: center; align-items: center; box-shadow: 0px 1px 50px 0px rgba(255, 204, 113, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-6pZiq .framer-1pawp5s { aspect-ratio: 1.0105263157894737 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(255, 204, 113, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(255, 204, 113, 0.15889), 0px 10px 10px -3.75px rgba(255, 204, 113, 0.0625); flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; text-decoration: none; width: 48px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-6pZiq .framer-1bo603c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6pZiq .framer-111uguv-container, .framer-6pZiq .framer-8m5amw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-6pZiq .framer-tqvpiy { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: absolute; right: -48px; top: 384px; width: 48px; z-index: 1; }\",\".framer-6pZiq .framer-sjgbg-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-6pZiq.framer-72rtr7, .framer-6pZiq .framer-4pa676, .framer-6pZiq .framer-1tabn0e, .framer-6pZiq .framer-5w9ngx, .framer-6pZiq .framer-iwdd8d, .framer-6pZiq .framer-16hon4s, .framer-6pZiq .framer-1r3if8c, .framer-6pZiq .framer-1buvc1a, .framer-6pZiq .framer-1sw85ma, .framer-6pZiq .framer-kz3ssx, .framer-6pZiq .framer-es3nmd, .framer-6pZiq .framer-1bi0mvv, .framer-6pZiq .framer-1a4dkfc, .framer-6pZiq .framer-nqm39a, .framer-6pZiq .framer-mdj7pq, .framer-6pZiq .framer-1wj0hwo, .framer-6pZiq .framer-1t3m047, .framer-6pZiq .framer-1x4poxs, .framer-6pZiq .framer-14xwtf6, .framer-6pZiq .framer-eee9my, .framer-6pZiq .framer-16cc6m2, .framer-6pZiq .framer-gwm179, .framer-6pZiq .framer-m0nv5f, .framer-6pZiq .framer-rpyq4a, .framer-6pZiq .framer-114d4d4, .framer-6pZiq .framer-44odo9, .framer-6pZiq .framer-7l6zz, .framer-6pZiq .framer-1tfa45d, .framer-6pZiq .framer-18unni4, .framer-6pZiq .framer-ytlpgb, .framer-6pZiq .framer-18dymg4, .framer-6pZiq .framer-1jice2j, .framer-6pZiq .framer-1b0w77u, .framer-6pZiq .framer-ftbb5y, .framer-6pZiq .framer-1viu47k, .framer-6pZiq .framer-1l5ndn8, .framer-6pZiq .framer-1bo603c { gap: 0px; } .framer-6pZiq.framer-72rtr7 > *, .framer-6pZiq .framer-m0nv5f > *, .framer-6pZiq .framer-1jice2j > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-6pZiq.framer-72rtr7 > :first-child, .framer-6pZiq .framer-4pa676 > :first-child, .framer-6pZiq .framer-1tabn0e > :first-child, .framer-6pZiq .framer-5w9ngx > :first-child, .framer-6pZiq .framer-kz3ssx > :first-child, .framer-6pZiq .framer-es3nmd > :first-child, .framer-6pZiq .framer-1t3m047 > :first-child, .framer-6pZiq .framer-1x4poxs > :first-child, .framer-6pZiq .framer-14xwtf6 > :first-child, .framer-6pZiq .framer-eee9my > :first-child, .framer-6pZiq .framer-16cc6m2 > :first-child, .framer-6pZiq .framer-gwm179 > :first-child, .framer-6pZiq .framer-m0nv5f > :first-child, .framer-6pZiq .framer-rpyq4a > :first-child, .framer-6pZiq .framer-114d4d4 > :first-child, .framer-6pZiq .framer-1tfa45d > :first-child, .framer-6pZiq .framer-ytlpgb > :first-child, .framer-6pZiq .framer-18dymg4 > :first-child, .framer-6pZiq .framer-1jice2j > :first-child, .framer-6pZiq .framer-1b0w77u > :first-child, .framer-6pZiq .framer-ftbb5y > :first-child, .framer-6pZiq .framer-1viu47k > :first-child { margin-top: 0px; } .framer-6pZiq.framer-72rtr7 > :last-child, .framer-6pZiq .framer-4pa676 > :last-child, .framer-6pZiq .framer-1tabn0e > :last-child, .framer-6pZiq .framer-5w9ngx > :last-child, .framer-6pZiq .framer-kz3ssx > :last-child, .framer-6pZiq .framer-es3nmd > :last-child, .framer-6pZiq .framer-1t3m047 > :last-child, .framer-6pZiq .framer-1x4poxs > :last-child, .framer-6pZiq .framer-14xwtf6 > :last-child, .framer-6pZiq .framer-eee9my > :last-child, .framer-6pZiq .framer-16cc6m2 > :last-child, .framer-6pZiq .framer-gwm179 > :last-child, .framer-6pZiq .framer-m0nv5f > :last-child, .framer-6pZiq .framer-rpyq4a > :last-child, .framer-6pZiq .framer-114d4d4 > :last-child, .framer-6pZiq .framer-1tfa45d > :last-child, .framer-6pZiq .framer-ytlpgb > :last-child, .framer-6pZiq .framer-18dymg4 > :last-child, .framer-6pZiq .framer-1jice2j > :last-child, .framer-6pZiq .framer-1b0w77u > :last-child, .framer-6pZiq .framer-ftbb5y > :last-child, .framer-6pZiq .framer-1viu47k > :last-child { margin-bottom: 0px; } .framer-6pZiq .framer-4pa676 > *, .framer-6pZiq .framer-kz3ssx > *, .framer-6pZiq .framer-1t3m047 > *, .framer-6pZiq .framer-14xwtf6 > *, .framer-6pZiq .framer-eee9my > *, .framer-6pZiq .framer-16cc6m2 > *, .framer-6pZiq .framer-gwm179 > *, .framer-6pZiq .framer-rpyq4a > *, .framer-6pZiq .framer-ytlpgb > *, .framer-6pZiq .framer-1b0w77u > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-6pZiq .framer-1tabn0e > *, .framer-6pZiq .framer-es3nmd > *, .framer-6pZiq .framer-ftbb5y > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-6pZiq .framer-5w9ngx > *, .framer-6pZiq .framer-1x4poxs > *, .framer-6pZiq .framer-114d4d4 > *, .framer-6pZiq .framer-18dymg4 > *, .framer-6pZiq .framer-1viu47k > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-6pZiq .framer-iwdd8d > *, .framer-6pZiq .framer-44odo9 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-6pZiq .framer-iwdd8d > :first-child, .framer-6pZiq .framer-16hon4s > :first-child, .framer-6pZiq .framer-1r3if8c > :first-child, .framer-6pZiq .framer-1buvc1a > :first-child, .framer-6pZiq .framer-1sw85ma > :first-child, .framer-6pZiq .framer-1bi0mvv > :first-child, .framer-6pZiq .framer-1a4dkfc > :first-child, .framer-6pZiq .framer-nqm39a > :first-child, .framer-6pZiq .framer-mdj7pq > :first-child, .framer-6pZiq .framer-1wj0hwo > :first-child, .framer-6pZiq .framer-44odo9 > :first-child, .framer-6pZiq .framer-7l6zz > :first-child, .framer-6pZiq .framer-18unni4 > :first-child, .framer-6pZiq .framer-1l5ndn8 > :first-child, .framer-6pZiq .framer-1bo603c > :first-child { margin-left: 0px; } .framer-6pZiq .framer-iwdd8d > :last-child, .framer-6pZiq .framer-16hon4s > :last-child, .framer-6pZiq .framer-1r3if8c > :last-child, .framer-6pZiq .framer-1buvc1a > :last-child, .framer-6pZiq .framer-1sw85ma > :last-child, .framer-6pZiq .framer-1bi0mvv > :last-child, .framer-6pZiq .framer-1a4dkfc > :last-child, .framer-6pZiq .framer-nqm39a > :last-child, .framer-6pZiq .framer-mdj7pq > :last-child, .framer-6pZiq .framer-1wj0hwo > :last-child, .framer-6pZiq .framer-44odo9 > :last-child, .framer-6pZiq .framer-7l6zz > :last-child, .framer-6pZiq .framer-18unni4 > :last-child, .framer-6pZiq .framer-1l5ndn8 > :last-child, .framer-6pZiq .framer-1bo603c > :last-child { margin-right: 0px; } .framer-6pZiq .framer-16hon4s > *, .framer-6pZiq .framer-7l6zz > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-6pZiq .framer-1r3if8c > *, .framer-6pZiq .framer-1buvc1a > *, .framer-6pZiq .framer-1sw85ma > *, .framer-6pZiq .framer-1bi0mvv > *, .framer-6pZiq .framer-1a4dkfc > *, .framer-6pZiq .framer-nqm39a > *, .framer-6pZiq .framer-mdj7pq > *, .framer-6pZiq .framer-1wj0hwo > *, .framer-6pZiq .framer-18unni4 > *, .framer-6pZiq .framer-1l5ndn8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6pZiq .framer-1tfa45d > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-6pZiq .framer-1bo603c > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-6pZiq[data-border=\"true\"]::after, .framer-6pZiq [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-6pZiq.framer-72rtr7 { width: 810px; } .framer-6pZiq .framer-rpyq4a, .framer-6pZiq .framer-ytlpgb { padding: 64px 32px 64px 32px; }}\",\"@media (max-width: 809px) { .framer-6pZiq.framer-72rtr7 { overflow: hidden; width: 390px; } .framer-6pZiq .framer-4pa676 { padding: 128px 16px 64px 16px; } .framer-6pZiq .framer-1r3if8c { width: 358px; } .framer-6pZiq .framer-1buvc1a { flex: 1 0 0px; padding: 32px; width: 1px; } .framer-6pZiq .framer-1dlfce3 { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 411px); order: 0; width: 1px; } .framer-6pZiq .framer-kz3ssx, .framer-6pZiq .framer-1t3m047, .framer-6pZiq .framer-rpyq4a, .framer-6pZiq .framer-ytlpgb { padding: 64px 16px 64px 16px; } .framer-6pZiq .framer-14xwtf6 { height: min-content; padding: 16px 16px 64px 16px; position: relative; top: unset; } .framer-6pZiq .framer-1b0w77u { flex: none; height: min-content; padding: 64px 16px 64px 16px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8623\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ibQqWlFPu\":{\"layout\":[\"fixed\",\"auto\"]},\"IvLgp1GwG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ACadlHhBa\":{\"pattern\":\":ACadlHhBa\",\"name\":\"tr1\"},\"VvQtF_3fe\":{\"pattern\":\":VvQtF_3fe\",\"name\":\"tr2\"},\"O39M6zXwt\":{\"pattern\":\":O39M6zXwt\",\"name\":\"tr3\"},\"qXhgasDHq\":{\"pattern\":\":qXhgasDHq\",\"name\":\"bg\"},\"DUrC_lBuN\":{\"pattern\":\":DUrC_lBuN\",\"name\":\"testimonials\"},\"TofJIhNsx\":{\"pattern\":\":TofJIhNsx\",\"name\":\"faq\"},\"xcoEDItlL\":{\"pattern\":\":xcoEDItlL\",\"name\":\"cta\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-6pZiq\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8623,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]},...HeaderFonts,...PhosphorFonts,...Image1Fonts,...TickerFonts,...FeaturesSliderFonts,...BGFonts,...ReviewCardFonts,...FAQFAQFonts,...ButtonsButtonFonts,...FooterFonts,...SmoothScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"8623\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ibQqWlFPu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IvLgp1GwG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"ACadlHhBa\\\":{\\\"pattern\\\":\\\":ACadlHhBa\\\",\\\"name\\\":\\\"tr1\\\"},\\\"VvQtF_3fe\\\":{\\\"pattern\\\":\\\":VvQtF_3fe\\\",\\\"name\\\":\\\"tr2\\\"},\\\"O39M6zXwt\\\":{\\\"pattern\\\":\\\":O39M6zXwt\\\",\\\"name\\\":\\\"tr3\\\"},\\\"qXhgasDHq\\\":{\\\"pattern\\\":\\\":qXhgasDHq\\\",\\\"name\\\":\\\"bg\\\"},\\\"DUrC_lBuN\\\":{\\\"pattern\\\":\\\":DUrC_lBuN\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"TofJIhNsx\\\":{\\\"pattern\\\":\\\":TofJIhNsx\\\",\\\"name\\\":\\\"faq\\\"},\\\"xcoEDItlL\\\":{\\\"pattern\\\":\\\":xcoEDItlL\\\",\\\"name\\\":\\\"cta\\\"}}\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "i", "h", "u", "d", "f", "l", "g", "glide", "c", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "n", "createGeneratorEasing", "e", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "bbPUINEcU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "SVG", "css", "FramerK1bgQdfeH", "withCSS", "K1bgQdfeH_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapqcodrr", "args", "onTap1w4zdl3", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramernvG9gPmAZ", "withCSS", "nvG9gPmAZ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FAQFAQRowFonts", "getFonts", "nvG9gPmAZ_default", "serializationHash", "variantClassNames", "radiusForCorner", "value", "cornerIndex", "segments", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "radius", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "fu12RJM4K", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "nvG9gPmAZ_default", "css", "FramerNO_388dZL", "withCSS", "NO_388dZL_default", "addPropertyControls", "ControlType", "addFonts", "FAQFAQRowFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "css", "FrameruYpUXAAs2", "withCSS", "uYpUXAAs2_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "animation", "transition2", "animation1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "background1", "background2", "background3", "height", "id", "phone1", "phone2", "phone3", "text2", "text3", "title", "title1", "title2", "title21", "title3", "title31", "title4", "title5", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "x_I2_RicL", "P8aMkBtCB", "JvxUZbIxQ", "j2_1aeoM_", "YCx9wWzcv", "hslBb27nA", "LJyxDlL48", "Wnc3q4txU", "wRiUjrikE", "Wwgn6qYfk", "VrADO4Ine", "T93si_P4W", "zSmBiT7xi", "uyyTgjD8E", "Fzco_hk9K", "Hp2GbY5Nz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Framerv4mz2wRnd", "withCSS", "v4mz2wRnd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "HeaderFonts", "getFonts", "PJykItjta_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "PhosphorFonts", "Icon", "MotionDivWithOptimizedAppearEffect", "motion", "Image1Fonts", "WlowsdqTE_default", "MotionDivWithFXWithOptimizedAppearEffect", "withFX", "TickerFonts", "Ticker", "MotionDivWithFX", "FeaturesSliderFonts", "v4mz2wRnd_default", "FeaturesSliderWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithFX", "BGFonts", "uYpUXAAs2_default", "BGWithVariantAppearEffect", "ReviewCardFonts", "K1bgQdfeH_default", "ImageWithFX", "Image2", "RichTextWithFX", "RichText2", "FAQFAQFonts", "NO_388dZL_default", "ButtonsButtonFonts", "oQZRBY0Ao_default", "FooterFonts", "W5y2JLP0K_default", "SmoothScrollFonts", "SmoothScroll", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "addImageAlt", "image", "alt", "transformTemplate1", "_", "animation6", "animation7", "transition6", "animation8", "transition7", "animation9", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "ref2", "ref3", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "elementId1", "elementId2", "elementId3", "ref4", "ref5", "ref6", "ref7", "elementId4", "elementId5", "elementId6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "SVG", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
