{
  "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.14.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.14.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/Ae5xyDx0iQXSzLh6Y2ec/IhlHLehiG6MownlLPfvz/t4kJUwVaH.js", "ssg:https://framerusercontent.com/modules/5QRxHVpcv40Y8DTPAbep/cMQdqWzgScMmDp0fwGI9/AeFnBTGf7.js", "ssg:https://framerusercontent.com/modules/nVze6O77cJGxD35IKZBu/x07FeQlxuXIWm2Tk0cLG/WY2cMZneb.js", "ssg:https://framerusercontent.com/modules/pbnshT5BXI95LWYiV0Ur/9nWwE9AlH17onN4pFMoa/ky9I7UTxq.js", "ssg:https://framerusercontent.com/modules/sEJlADEOfotgpPHCaTaB/9ubobwSexArIUCx94wDv/nuP83hLe9.js", "ssg:https://framerusercontent.com/modules/2LUlppO3ruNopTOcOF06/QD8wBlLCcq0VYoDRXmQC/agHFDFZ94.js", "ssg:https://framerusercontent.com/modules/uEcaLT2Obcw8ubycZcTn/e5ZTvqSERf6vUnzl8RK4/j0p3vAPHv.js", "ssg:https://framerusercontent.com/modules/66zZnRtzPm2CZYQjqWt6/lMiuEwKDZ8SWvt0it51W/t4kJUwVaH.js", "ssg:https://framerusercontent.com/modules/ztBz5Y7o8DXLC2sv8vsr/Wjxlpm6wf8E212SvxHrd/Wkx6BbgUb.js", "ssg:https://framerusercontent.com/modules/zaOP3uSvleTEXKPPaatV/RXpWEif7MoJSyb5cCEX3/KYNVBykpG.js", "ssg:https://framerusercontent.com/modules/9cBWKDkSmglZ5y7oULmN/Q2jBPSobms3hx4hZPLNH/APXWXdyVo.js", "ssg:https://framerusercontent.com/modules/aVQAT3QUbtGDMvuV6GoB/BSrfs6pSTpdppZyms2t7/fPTVvBdO5.js", "ssg:https://framerusercontent.com/modules/annIHR25utcowdFlOZF9/TYNrlsDIH03o9SfAGf0Z/xjZCbgFcg.js", "ssg:https://framerusercontent.com/modules/i8AN3it8TBmdVk0kk06u/Vr2uwHRiU7ozUUmhhCsL/j0p3vAPHv.js", "ssg:https://framerusercontent.com/modules/lngzjFhPpSExxz3gDrS2/JiVReSlBkUf0QbgkUgZG/TiTn3K6pc.js", "ssg:https://framerusercontent.com/modules/qnuM8qqoWKBjZf7y0NJl/MzhQALGiq8LhhXMEaQXm/fPTVvBdO5.js", "ssg:https://framerusercontent.com/modules/clpwBo9DYzKWf2vllklm/iqw9Ua2JMTk2UJZKRWAY/ZFTu0Io5O.js", "ssg:https://framerusercontent.com/modules/AexBrODudIIuRX0hZfJ4/tjbVMBXwFKpo76s3eFqO/WY2cMZneb.js", "ssg:https://framerusercontent.com/modules/3nBifb9MgbvCXiDMravC/moNE0EcxfvHbliDr6edj/bGV1hUG1I.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{isFunction as t,isCubicBezier as i,noopReturn as e,defaults as s,isEasingGenerator as a,isEasingList as n,interpolate as r}from\"@motionone/utils\";import{cubicBezier as h,steps as o}from\"@motionone/easing\";const l={ease:h(.25,.1,.25,1),\"ease-in\":h(.42,0,1,1),\"ease-in-out\":h(.42,0,.58,1),\"ease-out\":h(0,0,.58,1)};const u=/\\((.*?)\\)/;function getEasingFunction(s){if(t(s))return s;if(i(s))return h(...s);if(l[s])return l[s];if(s.startsWith(\"steps\")){const t=u.exec(s);if(t){const i=t[1].split(\",\");return o(parseFloat(i[0]),i[1].trim())}}return e}class Animation{constructor(t,i=[0,1],{easing:h,duration:o=s.duration,delay:l=s.delay,endDelay:u=s.endDelay,repeat:m=s.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=e;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));h=h||s.easing;if(a(h)){const t=h.createAnimation(i);h=t.easing;i=t.keyframes||i;o=t.duration||o}this.repeat=m;this.easing=n(h)?e:getEasingFunction(h);this.updateDuration(o);const d=r(i,c,n(h)?h.map(getEasingFunction):e);this.tick=i=>{var e;l=l;let s=0;s=void 0!==this.pauseTime?this.pauseTime:(i-this.startTime)*this.rate;this.t=s;s/=1e3;s=Math.max(s-l,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(s=this.totalDuration);const a=s/this.duration;let n=Math.floor(a);let r=a%1;!r&&a>=1&&(r=1);1===r&&n--;const h=n%2;(\"reverse\"===p||\"alternate\"===p&&h||\"alternate-reverse\"===p&&!h)&&(r=1-r);const o=s>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(o));t(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||s>=this.totalDuration+u);if(c){this.playState=\"finished\";null===(e=this.resolve)||void 0===e?void 0:e.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,noopReturn as s}from\"@motionone/utils\";const n=5;function calcGeneratorVelocity(t,s,r){const a=Math.max(s-n,0);return e(r-t(a),s-a)}const r={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=r.stiffness,t=r.damping,s=r.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=r.stiffness,damping:s=r.damping,mass:n=r.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/n)/1e3;const l=calcDampingRatio(e,s,n);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 a=10;const o=1e4;function pregenerateKeyframes(e,t=s){let n;let r=a;let c=e(0);const i=[t(c.current)];while(!c.done&&r<o){c=e(r);i.push(t(c.done?c.target:c.current));void 0===n&&c.hasReachedTarget&&(n=r);r+=a}const h=r-a;1===i.length&&i.push(c.current);return{keyframes:i,duration:h/1e3,overshootDuration:(null!==n&&void 0!==n?n:h)/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 (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Be Vietnam Pro-semibold\",\"FS;Be Vietnam Pro-black\",\"FS;Be Vietnam Pro-black italic\",\"FS;Be Vietnam Pro-semibold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MPWDEQ5P4DNS7O465A5AXO6KVHWMIF2Z/MNW3HVOPPNJBFIMMG2JLQ6HBXUDB63AO/G6AF2CHLF7U443YAKNG42CSO2I2VD6MV.woff2\",weight:\"600\"},{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/YB3HULSDSBNPAE3OQV2XNHIVVYTDRN6L/TWU2TXVYBJEBCLKLJH6GZBA4BXRSRRLB/E45BEFJW67QAAJX7PZAF7HO2WP6JZJR6.woff2\",weight:\"900\"},{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2V2CJ2NYRZNAGFPIUTGVU7IZI2AIUHCA/HKU2XZEFFWYLEJXZMW7HJOCNNUFER2QG/7HBXQZDUZJ57IZDY6V7WLRM5NHTS5BFN.woff2\",weight:\"900\"},{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WJKF7ZSVN7JYKGBC3HIO62QCENQR7XC4/NQ3OZHSOWM4G3XGD6JNLZKCG2YQULMAG/PNI7JG3UHYTH6JBHJYTD7OCYMALEQKUI.woff2\",weight:\"600\"}]}];export const css=['.framer-2GRRA .framer-styles-preset-1qec58k:not(.rich-text-wrapper), .framer-2GRRA .framer-styles-preset-1qec58k.rich-text-wrapper h5 { --framer-font-family: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-bold: \"Be Vietnam Pro\", sans-serif; --framer-font-family-bold-italic: \"Be Vietnam Pro\", sans-serif; --framer-font-family-italic: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss01\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #3a2d28; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-2GRRA .framer-styles-preset-1qec58k:not(.rich-text-wrapper), .framer-2GRRA .framer-styles-preset-1qec58k.rich-text-wrapper h5 { --framer-font-family: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-bold: \"Be Vietnam Pro\", sans-serif; --framer-font-family-bold-italic: \"Be Vietnam Pro\", sans-serif; --framer-font-family-italic: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss01\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #3a2d28; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-2GRRA .framer-styles-preset-1qec58k:not(.rich-text-wrapper), .framer-2GRRA .framer-styles-preset-1qec58k.rich-text-wrapper h5 { --framer-font-family: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-bold: \"Be Vietnam Pro\", sans-serif; --framer-font-family-bold-italic: \"Be Vietnam Pro\", sans-serif; --framer-font-family-italic: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss01\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #3a2d28; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; } }'];export const className=\"framer-2GRRA\";\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 (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,CycleVariantState,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}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/dJ9YkReHQ7xpyS6zOUQ2/vl1b2eM5WiZmepCuQvi5/agHFDFZ94.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Ae5xyDx0iQXSzLh6Y2ec/IhlHLehiG6MownlLPfvz/t4kJUwVaH.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={dVYAKmTh5:{hover:true}};const cycleOrder=[\"dVYAKmTh5\",\"oLWj9R7Tj\"];const serializationHash=\"framer-ZCZNU\";const variantClassNames={dVYAKmTh5:\"framer-v-14s6mtu\",oLWj9R7Tj:\"framer-v-1b1b8m4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Desktop: Closed\":\"dVYAKmTh5\",\"Desktop: Open\":\"oLWj9R7Tj\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,AiyNM6EIW:(_ref=question!==null&&question!==void 0?question:props.AiyNM6EIW)!==null&&_ref!==void 0?_ref:\"Question\",PcoTO7nHk:(_ref1=answer!==null&&answer!==void 0?answer:props.PcoTO7nHk)!==null&&_ref1!==void 0?_ref1:\"Lorem ipsum odor amet, consectetuer adipiscing elit. Duis eleifend auctor auctor habitant nullam id faucibus felis dictumst.\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"dVYAKmTh5\"};};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,AiyNM6EIW,PcoTO7nHk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dVYAKmTh5\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ihqjoj=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(CycleVariantState);});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-14s6mtu\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop: Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"dVYAKmTh5\",onTap:onTap1ihqjoj,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"4px\",\"--border-color\":\"var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250))\",\"--border-left-width\":\"4px\",\"--border-right-width\":\"4px\",\"--border-style\":\"solid\",\"--border-top-width\":\"4px\",background:'linear-gradient(150deg, var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255)) /* {\"name\":\"BG\"} */ 18%, var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250)) /* {\"name\":\"Box - L1\"} */ 75%)',borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({\"dVYAKmTh5-hover\":{\"data-framer-name\":undefined},oLWj9R7Tj:{\"data-framer-name\":\"Desktop: Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11cfttd\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"r1ttlO2Vw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1qec58k\",\"data-styles-preset\":\"t4kJUwVaH\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-abb09f6a-2c47-4cb9-9590-a0b822b55d8d, rgba(15, 23, 42, 0.8)))\"},children:\"Question\"})}),className:\"framer-7j0a6y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GpNbZyxDU\",style:{\"--extracted-1lwpl3i\":\"var(--token-abb09f6a-2c47-4cb9-9590-a0b822b55d8d, rgba(15, 23, 42, 0.8))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AiyNM6EIW,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"dVYAKmTh5-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1qec58k\",\"data-styles-preset\":\"t4kJUwVaH\",children:\"Question\"})})},oLWj9R7Tj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1qec58k\",\"data-styles-preset\":\"t4kJUwVaH\",children:\"Question\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",children:\"Lorem ipsum odor amet, consectetuer adipiscing elit. Duis eleifend auctor auctor habitant nullam id faucibus felis dictumst.\"})}),className:\"framer-t2tv7a\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"f_9XaFmI4\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",mask:\"none\",opacity:0,WebkitMask:\"none\"},text:PcoTO7nHk,variants:{\"dVYAKmTh5-hover\":{mask:\"linear-gradient(0deg, rgba(0,0,0,0) 100%, rgb(0, 0, 0) 100%) add\",WebkitMask:\"linear-gradient(0deg, rgba(0,0,0,0) 100%, rgb(0, 0, 0) 100%) add\"},oLWj9R7Tj:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14zi2hh\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"PfEZteolN\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,mask:\"linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0,0,0,1) 89%) add\",WebkitMask:\"linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0,0,0,1) 89%) add\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6omoqy-container\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"TLJ_1J5JT-container\",name:\"Icon\",style:{mask:\"linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.14) 18%, rgba(0, 0, 0, 0.4) 61.261261261261254%, rgba(0,0,0,1) 82%) add\",rotate:0,WebkitMask:\"linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.14) 18%, rgba(0, 0, 0, 0.4) 61.261261261261254%, rgba(0,0,0,1) 82%) add\"},variants:{\"dVYAKmTh5-hover\":{mask:\"linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.14) 18%, rgba(0, 0, 0, 0.4) 32%, rgba(0,0,0,1) 82%) add\",WebkitMask:\"linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.14) 18%, rgba(0, 0, 0, 0.4) 32%, rgba(0,0,0,1) 82%) add\"},oLWj9R7Tj:{mask:\"linear-gradient(0deg, rgba(0, 0, 0, 0.1) 23%, rgba(0, 0, 0, 0.14) 33%, rgba(0, 0, 0, 0.4) 48%, rgba(0,0,0,1) 67.1756052927928%) add\",rotate:45,WebkitMask:\"linear-gradient(0deg, rgba(0, 0, 0, 0.1) 23%, rgba(0, 0, 0, 0.14) 33%, rgba(0, 0, 0, 0.4) 48%, rgba(0,0,0,1) 67.1756052927928%) add\"}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d9cd9cae-03fa-4545-9f6b-ea22961aaa5d, rgb(51, 51, 51))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plus\",id:\"TLJ_1J5JT\",layoutId:\"TLJ_1J5JT\",mirrored:false,name:\"Icon\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({\"dVYAKmTh5-hover\":{color:\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZCZNU.framer-1d8mtna, .framer-ZCZNU .framer-1d8mtna { display: block; }\",\".framer-ZCZNU.framer-14s6mtu { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 24px 16px 24px; position: relative; width: 536px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZCZNU .framer-11cfttd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ZCZNU .framer-7j0a6y { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ZCZNU .framer-t2tv7a { flex: none; height: 1px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZCZNU .framer-14zi2hh { 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: relative; width: min-content; }\",\".framer-ZCZNU .framer-6omoqy-container { flex: none; height: 32px; position: relative; width: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZCZNU.framer-14s6mtu, .framer-ZCZNU .framer-11cfttd, .framer-ZCZNU .framer-14zi2hh { gap: 0px; } .framer-ZCZNU.framer-14s6mtu > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-ZCZNU.framer-14s6mtu > :first-child, .framer-ZCZNU .framer-14zi2hh > :first-child { margin-left: 0px; } .framer-ZCZNU.framer-14s6mtu > :last-child, .framer-ZCZNU .framer-14zi2hh > :last-child { margin-right: 0px; } .framer-ZCZNU .framer-11cfttd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZCZNU .framer-11cfttd > :first-child { margin-top: 0px; } .framer-ZCZNU .framer-11cfttd > :last-child { margin-bottom: 0px; } .framer-ZCZNU .framer-14zi2hh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-ZCZNU.framer-v-1b1b8m4.framer-14s6mtu { align-content: flex-start; align-items: flex-start; }\",\".framer-ZCZNU.framer-v-1b1b8m4 .framer-11cfttd { gap: 12px; }\",\".framer-ZCZNU.framer-v-1b1b8m4 .framer-t2tv7a { height: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZCZNU.framer-v-1b1b8m4 .framer-11cfttd { gap: 0px; } .framer-ZCZNU.framer-v-1b1b8m4 .framer-11cfttd > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-ZCZNU.framer-v-1b1b8m4 .framer-11cfttd > :first-child { margin-top: 0px; } .framer-ZCZNU.framer-v-1b1b8m4 .framer-11cfttd > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-ZCZNU[data-border=\"true\"]::after, .framer-ZCZNU [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 64\n * @framerIntrinsicWidth 536\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"oLWj9R7Tj\":{\"layout\":[\"fixed\",\"auto\"]},\"pLAm4nPZl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"AiyNM6EIW\":\"question\",\"PcoTO7nHk\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAeFnBTGf7=withCSS(Component,css,\"framer-ZCZNU\");export default FramerAeFnBTGf7;FramerAeFnBTGf7.displayName=\"Elements/FAQ\";FramerAeFnBTGf7.defaultProps={height:64,width:536};addPropertyControls(FramerAeFnBTGf7,{variant:{options:[\"dVYAKmTh5\",\"oLWj9R7Tj\"],optionTitles:[\"Desktop: Closed\",\"Desktop: Open\"],title:\"Variant\",type:ControlType.Enum},AiyNM6EIW:{defaultValue:\"Question\",displayTextArea:false,title:\"Question\",type:ControlType.String},PcoTO7nHk:{defaultValue:\"Lorem ipsum odor amet, consectetuer adipiscing elit. Duis eleifend auctor auctor habitant nullam id faucibus felis dictumst.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerAeFnBTGf7,[{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\":\"FramerAeFnBTGf7\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oLWj9R7Tj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pLAm4nPZl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"AiyNM6EIW\\\":\\\"question\\\",\\\"PcoTO7nHk\\\":\\\"answer\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"64\",\"framerIntrinsicWidth\":\"536\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Libre Baskerville-regular\",\"GF;Libre Baskerville-700\",\"GF;Libre Baskerville-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNbYRI4CN2V.woff2\",weight:\"400\"},{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjY1I8Gcw6Oi.woff2\",weight:\"700\"},{family:\"Libre Baskerville\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxMaDc2V2ro.woff2\",weight:\"400\"}]}];export const css=['.framer-C2c3j .framer-styles-preset-1mkny7q:not(.rich-text-wrapper), .framer-C2c3j .framer-styles-preset-1mkny7q.rich-text-wrapper h3 { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-bold: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-italic: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, #0f172a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; --framer-text-wrap: balance; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-C2c3j .framer-styles-preset-1mkny7q:not(.rich-text-wrapper), .framer-C2c3j .framer-styles-preset-1mkny7q.rich-text-wrapper h3 { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-bold: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-italic: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, #0f172a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; --framer-text-wrap: balance; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-C2c3j .framer-styles-preset-1mkny7q:not(.rich-text-wrapper), .framer-C2c3j .framer-styles-preset-1mkny7q.rich-text-wrapper h3 { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-bold: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-italic: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, #0f172a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; --framer-text-wrap: balance; } }'];export const className=\"framer-C2c3j\";\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 (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}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/dJ9YkReHQ7xpyS6zOUQ2/vl1b2eM5WiZmepCuQvi5/agHFDFZ94.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nVze6O77cJGxD35IKZBu/x07FeQlxuXIWm2Tk0cLG/WY2cMZneb.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"AIzrEF3LC\",\"WLO1xAYYQ\",\"K79odhr_k\",\"pdh9dpb50\",\"kfmSDQsq7\",\"Vq6hS9Uyd\",\"HbexygLZH\",\"FswWcZKVG\",\"fug8szCM4\"];const serializationHash=\"framer-0HW73\";const variantClassNames={AIzrEF3LC:\"framer-v-mkdud1\",FswWcZKVG:\"framer-v-1aajsav\",fug8szCM4:\"framer-v-pae64v\",HbexygLZH:\"framer-v-964qbf\",K79odhr_k:\"framer-v-i7uk85\",kfmSDQsq7:\"framer-v-3wd1yy\",pdh9dpb50:\"framer-v-suk4b2\",Vq6hS9Uyd:\"framer-v-1nk39gi\",WLO1xAYYQ:\"framer-v-b6jner\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};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={\"Icon Overflow: Clean\":\"Vq6hS9Uyd\",\"Icon Overflow: Fill\":\"pdh9dpb50\",\"Icon Overflow: Line\":\"kfmSDQsq7\",\"Icon Side: Clean\":\"fug8szCM4\",\"Icon Side: Fill\":\"HbexygLZH\",\"Icon Side: Line\":\"FswWcZKVG\",\"Icon Top: Clean\":\"K79odhr_k\",\"Icon Top: Fill\":\"AIzrEF3LC\",\"Icon Top: Line\":\"WLO1xAYYQ\"};const getProps=({bodyText,height,icon,id,showIcon,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,b5lyZZ_GG:(_ref=showIcon!==null&&showIcon!==void 0?showIcon:props.b5lyZZ_GG)!==null&&_ref!==void 0?_ref:true,dkLbwmgIn:(_ref1=bodyText!==null&&bodyText!==void 0?bodyText:props.dkLbwmgIn)!==null&&_ref1!==void 0?_ref1:\"Body Text\",owOqFMHta:(_ref2=title!==null&&title!==void 0?title:props.owOqFMHta)!==null&&_ref2!==void 0?_ref2:\"Title\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"AIzrEF3LC\",xMNpTyGY5:(_ref4=icon!==null&&icon!==void 0?icon:props.xMNpTyGY5)!==null&&_ref4!==void 0?_ref4:\"Palette\"};};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,owOqFMHta,dkLbwmgIn,b5lyZZ_GG,xMNpTyGY5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AIzrEF3LC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=value=>{if([\"pdh9dpb50\",\"kfmSDQsq7\",\"Vq6hS9Uyd\"].includes(baseVariant))return true;return value;};const visible=isSet(dkLbwmgIn);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-mkdud1\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Icon Top: Fill\",layoutDependency:layoutDependency,layoutId:\"AIzrEF3LC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"4px\",\"--border-color\":\"var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250))\",\"--border-left-width\":\"4px\",\"--border-right-width\":\"4px\",\"--border-style\":\"solid\",\"--border-top-width\":\"4px\",background:'linear-gradient(150deg, var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255)) /* {\"name\":\"BG\"} */ 18%, var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250)) /* {\"name\":\"Box - L1\"} */ 75%)',backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{FswWcZKVG:{background:\"linear-gradient(150deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 100%)\",backgroundColor:\"rgba(23, 23, 23, 0)\"},fug8szCM4:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",background:\"linear-gradient(150deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 100%)\",backgroundColor:\"rgba(23, 23, 23, 0)\"},K79odhr_k:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},kfmSDQsq7:{background:\"linear-gradient(150deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 100%)\",backgroundColor:\"rgba(23, 23, 23, 0)\"},Vq6hS9Uyd:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",background:\"linear-gradient(150deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 100%)\",backgroundColor:\"rgba(23, 23, 23, 0)\"}},...addPropertyOverrides({FswWcZKVG:{\"data-framer-name\":\"Icon Side: Line\"},fug8szCM4:{\"data-framer-name\":\"Icon Side: Clean\"},HbexygLZH:{\"data-framer-name\":\"Icon Side: Fill\"},K79odhr_k:{\"data-framer-name\":\"Icon Top: Clean\"},kfmSDQsq7:{\"data-framer-name\":\"Icon Overflow: Line\"},pdh9dpb50:{\"data-framer-name\":\"Icon Overflow: Fill\"},Vq6hS9Uyd:{\"data-framer-name\":\"Icon Overflow: Clean\"},WLO1xAYYQ:{\"data-framer-name\":\"Icon Top: Line\"}},baseVariant,gestureVariant),children:[isDisplayed(b5lyZZ_GG)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-p25rt5\",\"data-framer-name\":\"Icon Wrapper\",layoutDependency:layoutDependency,layoutId:\"vhu6m9nJA\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{kfmSDQsq7:{backgroundColor:\"var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255))\"},pdh9dpb50:{backgroundColor:\"var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255))\"},Vq6hS9Uyd:{backgroundColor:\"var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255))\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mzfrpg-container\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"uTTLY1xi2-container\",name:\"Icon\",style:{mask:\"linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.14) 29.995425112612615%, rgba(0, 0, 0, 0.4) 61.261261261261254%, rgba(0,0,0,1) 89%) add\",WebkitMask:\"linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.14) 29.995425112612615%, rgba(0, 0, 0, 0.4) 61.261261261261254%, rgba(0,0,0,1) 89%) add\"},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d9cd9cae-03fa-4545-9f6b-ea22961aaa5d, rgb(51, 51, 51))\",height:\"100%\",iconSearch:\"House\",iconSelection:xMNpTyGY5,id:\"uTTLY1xi2\",layoutId:\"uTTLY1xi2\",mirrored:false,name:\"Icon\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9p1gpx\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"dGbK_y1KR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1mkny7q\",\"data-styles-preset\":\"WY2cMZneb\",children:\"Title\"})}),className:\"framer-xkdtme\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ehhXFd6Yn\",text:owOqFMHta,verticalAlignment:\"top\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",children:\"Body Text\"})}),className:\"framer-1dgql88\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TQhYEbbdv\",text:dkLbwmgIn,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0HW73.framer-1llj8x8, .framer-0HW73 .framer-1llj8x8 { display: block; }\",\".framer-0HW73.framer-mkdud1 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px; position: relative; width: 288px; }\",\".framer-0HW73 .framer-p25rt5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-0HW73 .framer-1mzfrpg-container { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-0HW73 .framer-9p1gpx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0HW73 .framer-xkdtme { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0HW73 .framer-1dgql88 { --framer-text-wrap-override: balance; -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0HW73.framer-mkdud1, .framer-0HW73 .framer-p25rt5, .framer-0HW73 .framer-9p1gpx { gap: 0px; } .framer-0HW73.framer-mkdud1 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-0HW73.framer-mkdud1 > :first-child, .framer-0HW73 .framer-p25rt5 > :first-child, .framer-0HW73 .framer-9p1gpx > :first-child { margin-top: 0px; } .framer-0HW73.framer-mkdud1 > :last-child, .framer-0HW73 .framer-p25rt5 > :last-child, .framer-0HW73 .framer-9p1gpx > :last-child { margin-bottom: 0px; } .framer-0HW73 .framer-p25rt5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0HW73 .framer-9p1gpx > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-0HW73.framer-v-suk4b2.framer-mkdud1, .framer-0HW73.framer-v-3wd1yy.framer-mkdud1, .framer-0HW73.framer-v-1nk39gi.framer-mkdud1 { padding: 40px 32px 32px 32px; }\",\".framer-0HW73.framer-v-suk4b2 .framer-p25rt5, .framer-0HW73.framer-v-3wd1yy .framer-p25rt5, .framer-0HW73.framer-v-1nk39gi .framer-p25rt5 { left: 22px; padding: 0px 4px 4px 4px; position: absolute; top: -23px; }\",\".framer-0HW73.framer-v-964qbf.framer-mkdud1, .framer-0HW73.framer-v-1aajsav.framer-mkdud1, .framer-0HW73.framer-v-pae64v.framer-mkdud1 { align-content: center; align-items: center; flex-direction: row; gap: 20px; padding: 24px; }\",\".framer-0HW73.framer-v-964qbf .framer-p25rt5, .framer-0HW73.framer-v-1aajsav .framer-p25rt5, .framer-0HW73.framer-v-pae64v .framer-p25rt5 { order: 0; }\",\".framer-0HW73.framer-v-964qbf .framer-9p1gpx, .framer-0HW73.framer-v-1aajsav .framer-9p1gpx, .framer-0HW73.framer-v-pae64v .framer-9p1gpx { flex: 1 0 0px; order: 1; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0HW73.framer-v-964qbf.framer-mkdud1 { gap: 0px; } .framer-0HW73.framer-v-964qbf.framer-mkdud1 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-0HW73.framer-v-964qbf.framer-mkdud1 > :first-child { margin-left: 0px; } .framer-0HW73.framer-v-964qbf.framer-mkdud1 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0HW73.framer-v-1aajsav.framer-mkdud1 { gap: 0px; } .framer-0HW73.framer-v-1aajsav.framer-mkdud1 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-0HW73.framer-v-1aajsav.framer-mkdud1 > :first-child { margin-left: 0px; } .framer-0HW73.framer-v-1aajsav.framer-mkdud1 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0HW73.framer-v-pae64v.framer-mkdud1 { gap: 0px; } .framer-0HW73.framer-v-pae64v.framer-mkdud1 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-0HW73.framer-v-pae64v.framer-mkdud1 > :first-child { margin-left: 0px; } .framer-0HW73.framer-v-pae64v.framer-mkdud1 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-0HW73[data-border=\"true\"]::after, .framer-0HW73 [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 198.5\n * @framerIntrinsicWidth 288\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WLO1xAYYQ\":{\"layout\":[\"fixed\",\"auto\"]},\"K79odhr_k\":{\"layout\":[\"fixed\",\"auto\"]},\"pdh9dpb50\":{\"layout\":[\"fixed\",\"auto\"]},\"kfmSDQsq7\":{\"layout\":[\"fixed\",\"auto\"]},\"Vq6hS9Uyd\":{\"layout\":[\"fixed\",\"auto\"]},\"HbexygLZH\":{\"layout\":[\"fixed\",\"auto\"]},\"FswWcZKVG\":{\"layout\":[\"fixed\",\"auto\"]},\"fug8szCM4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"owOqFMHta\":\"title\",\"dkLbwmgIn\":\"bodyText\",\"b5lyZZ_GG\":\"showIcon\",\"xMNpTyGY5\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerky9I7UTxq=withCSS(Component,css,\"framer-0HW73\");export default Framerky9I7UTxq;Framerky9I7UTxq.displayName=\"Components/Box\";Framerky9I7UTxq.defaultProps={height:198.5,width:288};addPropertyControls(Framerky9I7UTxq,{variant:{options:[\"AIzrEF3LC\",\"WLO1xAYYQ\",\"K79odhr_k\",\"pdh9dpb50\",\"kfmSDQsq7\",\"Vq6hS9Uyd\",\"HbexygLZH\",\"FswWcZKVG\",\"fug8szCM4\"],optionTitles:[\"Icon Top: Fill\",\"Icon Top: Line\",\"Icon Top: Clean\",\"Icon Overflow: Fill\",\"Icon Overflow: Line\",\"Icon Overflow: Clean\",\"Icon Side: Fill\",\"Icon Side: Line\",\"Icon Side: Clean\"],title:\"Variant\",type:ControlType.Enum},owOqFMHta:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},dkLbwmgIn:{defaultValue:\"Body Text\",displayTextArea:true,title:\"Body Text\",type:ControlType.String},b5lyZZ_GG:{defaultValue:true,title:\"Show Icon\",type:ControlType.Boolean},xMNpTyGY5:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Palette\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(Framerky9I7UTxq,[{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\":\"Framerky9I7UTxq\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WLO1xAYYQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K79odhr_k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pdh9dpb50\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kfmSDQsq7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Vq6hS9Uyd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HbexygLZH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FswWcZKVG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fug8szCM4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"288\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"owOqFMHta\\\":\\\"title\\\",\\\"dkLbwmgIn\\\":\\\"bodyText\\\",\\\"b5lyZZ_GG\\\":\\\"showIcon\\\",\\\"xMNpTyGY5\\\":\\\"icon\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"198.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ky9I7UTxq.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/dJ9YkReHQ7xpyS6zOUQ2/vl1b2eM5WiZmepCuQvi5/agHFDFZ94.js\";import ElementsStars from\"https://framerusercontent.com/modules/jFG1YX9iOV9pSsheq8m7/soSynRSFf37QaKQms2Bw/tVYLL3fH9.js\";const ElementsStarsFonts=getFonts(ElementsStars);const enabledGestures={gh1f9mw4s:{hover:true}};const cycleOrder=[\"gh1f9mw4s\",\"LsGdYwd6u\",\"et_G9Z0KI\",\"HCQDKfHoS\",\"yrmqLqofI\",\"Nkv18XVmU\",\"NhhMHsTMt\",\"Ey9FJaka8\",\"APKBIOv8K\"];const serializationHash=\"framer-M5gBw\";const variantClassNames={APKBIOv8K:\"framer-v-17ludpd\",et_G9Z0KI:\"framer-v-dt7j0d\",Ey9FJaka8:\"framer-v-1uv9e8m\",gh1f9mw4s:\"framer-v-1wg3fur\",HCQDKfHoS:\"framer-v-1vvs9cr\",LsGdYwd6u:\"framer-v-qpr2ik\",NhhMHsTMt:\"framer-v-it8qc2\",Nkv18XVmU:\"framer-v-1vts8hj\",yrmqLqofI:\"framer-v-qz6dyu\"};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:.8,ease:[.7,-.35,.3,1.35],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Center: Clean\":\"APKBIOv8K\",\"Center: Fill\":\"NhhMHsTMt\",\"Center: Line\":\"Ey9FJaka8\",\"Left: Clean\":\"et_G9Z0KI\",\"Left: Fill\":\"gh1f9mw4s\",\"Left: Line\":\"LsGdYwd6u\",\"Right: Clean\":\"Nkv18XVmU\",\"Right: Fill\":\"HCQDKfHoS\",\"Right: Line\":\"yrmqLqofI\"};const getProps=({height,id,image,name1,review,role,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2,_ref3;return{...props,ePtRxbBKH:(_ref=name1!==null&&name1!==void 0?name1:props.ePtRxbBKH)!==null&&_ref!==void 0?_ref:\"Name\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"gh1f9mw4s\",wmTcwD60X:(_ref2=role!==null&&role!==void 0?role:props.wmTcwD60X)!==null&&_ref2!==void 0?_ref2:\"Role\",ZMdTlQSsb:(_ref3=review!==null&&review!==void 0?review:props.ZMdTlQSsb)!==null&&_ref3!==void 0?_ref3:\"Review\",Zqn6hBsPf:image!==null&&image!==void 0?image:props.Zqn6hBsPf};};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,Zqn6hBsPf,ePtRxbBKH,ZMdTlQSsb,wmTcwD60X,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gh1f9mw4s\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1wg3fur\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Left: Fill\",layoutDependency:layoutDependency,layoutId:\"gh1f9mw4s\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"4px\",\"--border-color\":\"var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250))\",\"--border-left-width\":\"4px\",\"--border-right-width\":\"4px\",\"--border-style\":\"solid\",\"--border-top-width\":\"4px\",background:'linear-gradient(150deg, var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255)) /* {\"name\":\"BG\"} */ 18%, var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250)) /* {\"name\":\"Box - L1\"} */ 75%)',backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"gh1f9mw4s-hover\":{background:'linear-gradient(150deg, var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250)) /* {\"name\":\"Box - L1\"} */ 18%, var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250)) /* {\"name\":\"Box - L1\"} */ 75%)'},APKBIOv8K:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",background:\"linear-gradient(150deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 100%)\",backgroundColor:\"rgba(23, 23, 23, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},et_G9Z0KI:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",background:\"linear-gradient(150deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 100%)\",backgroundColor:\"rgba(23, 23, 23, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},Ey9FJaka8:{background:\"linear-gradient(150deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 100%)\",backgroundColor:\"rgba(23, 23, 23, 0)\"},LsGdYwd6u:{background:\"linear-gradient(150deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 100%)\",backgroundColor:\"rgba(23, 23, 23, 0)\"},Nkv18XVmU:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",background:\"linear-gradient(150deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 100%)\",backgroundColor:\"rgba(23, 23, 23, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},yrmqLqofI:{background:\"linear-gradient(150deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 100%)\",backgroundColor:\"rgba(23, 23, 23, 0)\"}},...addPropertyOverrides({\"gh1f9mw4s-hover\":{\"data-framer-name\":undefined},APKBIOv8K:{\"data-framer-name\":\"Center: Clean\"},et_G9Z0KI:{\"data-framer-name\":\"Left: Clean\"},Ey9FJaka8:{\"data-framer-name\":\"Center: Line\"},HCQDKfHoS:{\"data-framer-name\":\"Right: Fill\"},LsGdYwd6u:{\"data-framer-name\":\"Left: Line\"},NhhMHsTMt:{\"data-framer-name\":\"Center: Fill\"},Nkv18XVmU:{\"data-framer-name\":\"Right: Clean\"},yrmqLqofI:{\"data-framer-name\":\"Right: Line\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t48ol8\",layoutDependency:layoutDependency,layoutId:\"tAfHVDwnH\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tc2ukg\",layoutDependency:layoutDependency,layoutId:\"YQyZgKlZ1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7360,intrinsicWidth:4912,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+0+0+0),pixelHeight:7360,pixelWidth:4912,sizes:\"40px\",...toResponsiveImage(Zqn6hBsPf)},className:\"framer-qhqb8c\",layoutDependency:layoutDependency,layoutId:\"YIvCd60Fr\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},...addPropertyOverrides({APKBIOv8K:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7360,intrinsicWidth:4912,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0),pixelHeight:7360,pixelWidth:4912,sizes:\"40px\",...toResponsiveImage(Zqn6hBsPf)}},et_G9Z0KI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7360,intrinsicWidth:4912,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0),pixelHeight:7360,pixelWidth:4912,sizes:\"40px\",...toResponsiveImage(Zqn6hBsPf)}},Nkv18XVmU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7360,intrinsicWidth:4912,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0),pixelHeight:7360,pixelWidth:4912,sizes:\"40px\",...toResponsiveImage(Zqn6hBsPf)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rret4i\",layoutDependency:layoutDependency,layoutId:\"wWAun1bjR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ui37d6\",layoutDependency:layoutDependency,layoutId:\"WKP47anQO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Name\"})}),className:\"framer-qqp8zo\",fonts:[\"FS;Be Vietnam Pro-semibold\"],layoutDependency:layoutDependency,layoutId:\"I45ZdM9Kw\",style:{\"--extracted-1eung3n\":\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ePtRxbBKH,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-abb09f6a-2c47-4cb9-9590-a0b822b55d8d, rgba(15, 23, 42, 0.8)))\"},children:\"Role\"})}),className:\"framer-1faut38\",fonts:[\"FS;Be Vietnam Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"ddjVV7aHB\",style:{\"--extracted-r6o4lv\":\"var(--token-abb09f6a-2c47-4cb9-9590-a0b822b55d8d, rgba(15, 23, 42, 0.8))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:wmTcwD60X,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+0+0+0+13,...addPropertyOverrides({APKBIOv8K:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+13},et_G9Z0KI:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+13},Nkv18XVmU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+13}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xd9vie-container\",layoutDependency:layoutDependency,layoutId:\"DbDzLxaT3-container\",children:/*#__PURE__*/_jsx(ElementsStars,{height:\"100%\",id:\"DbDzLxaT3\",layoutId:\"DbDzLxaT3\",variant:\"hdV_dmoVs\",vGxoefE5g:\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\",width:\"100%\",...addPropertyOverrides({APKBIOv8K:{variant:\"QYDkZaWkm\"},et_G9Z0KI:{variant:\"QYDkZaWkm\"},Nkv18XVmU:{variant:\"QYDkZaWkm\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",children:\"Review\"})}),className:\"framer-1j4ig7o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IjKnlxtvR\",text:ZMdTlQSsb,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({APKBIOv8K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-alignment\":\"center\"},children:\"Review\"})})},et_G9Z0KI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-alignment\":\"left\"},children:\"Review\"})})},Ey9FJaka8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-alignment\":\"center\"},children:\"Review\"})})},HCQDKfHoS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-alignment\":\"right\"},children:\"Review\"})})},NhhMHsTMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-alignment\":\"center\"},children:\"Review\"})})},Nkv18XVmU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-alignment\":\"right\"},children:\"Review\"})})},yrmqLqofI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-alignment\":\"right\"},children:\"Review\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-M5gBw.framer-sk2mmf, .framer-M5gBw .framer-sk2mmf { display: block; }\",\".framer-M5gBw.framer-1wg3fur { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 440px; will-change: var(--framer-will-change-override, transform); }\",\".framer-M5gBw .framer-t48ol8 { align-content: center; align-items: center; 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-M5gBw .framer-1tc2ukg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M5gBw .framer-qhqb8c { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-M5gBw .framer-rret4i { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 40px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-M5gBw .framer-1ui37d6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 38px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-M5gBw .framer-qqp8zo, .framer-M5gBw .framer-1faut38 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-M5gBw .framer-1xd9vie-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-M5gBw .framer-1j4ig7o { --framer-text-wrap-override: balance; flex: none; height: auto; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-M5gBw.framer-1wg3fur, .framer-M5gBw .framer-t48ol8, .framer-M5gBw .framer-1tc2ukg, .framer-M5gBw .framer-rret4i { gap: 0px; } .framer-M5gBw.framer-1wg3fur > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-M5gBw.framer-1wg3fur > :first-child, .framer-M5gBw .framer-1tc2ukg > :first-child, .framer-M5gBw .framer-rret4i > :first-child { margin-left: 0px; } .framer-M5gBw.framer-1wg3fur > :last-child, .framer-M5gBw .framer-1tc2ukg > :last-child, .framer-M5gBw .framer-rret4i > :last-child { margin-right: 0px; } .framer-M5gBw .framer-t48ol8 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-M5gBw .framer-t48ol8 > :first-child { margin-top: 0px; } .framer-M5gBw .framer-t48ol8 > :last-child { margin-bottom: 0px; } .framer-M5gBw .framer-1tc2ukg > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-M5gBw .framer-rret4i > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",\".framer-M5gBw.framer-v-qpr2ik.framer-1wg3fur, .framer-M5gBw.framer-v-1vvs9cr.framer-1wg3fur, .framer-M5gBw.framer-v-qz6dyu.framer-1wg3fur, .framer-M5gBw.framer-v-it8qc2.framer-1wg3fur, .framer-M5gBw.framer-v-1uv9e8m.framer-1wg3fur { cursor: unset; }\",\".framer-M5gBw.framer-v-dt7j0d.framer-1wg3fur, .framer-M5gBw.framer-v-1vts8hj.framer-1wg3fur, .framer-M5gBw.framer-v-17ludpd.framer-1wg3fur { cursor: unset; padding: 0px; }\",\".framer-M5gBw.framer-v-dt7j0d .framer-t48ol8 { align-content: flex-start; align-items: flex-start; gap: 20px; }\",\".framer-M5gBw.framer-v-dt7j0d .framer-1tc2ukg, .framer-M5gBw.framer-v-1vvs9cr .framer-1tc2ukg, .framer-M5gBw.framer-v-qz6dyu .framer-1tc2ukg, .framer-M5gBw.framer-v-1vts8hj .framer-1tc2ukg, .framer-M5gBw.framer-v-it8qc2 .framer-1tc2ukg, .framer-M5gBw.framer-v-1uv9e8m .framer-1tc2ukg, .framer-M5gBw.framer-v-17ludpd .framer-1tc2ukg { width: min-content; }\",\".framer-M5gBw.framer-v-dt7j0d .framer-rret4i, .framer-M5gBw.framer-v-1vvs9cr .framer-rret4i, .framer-M5gBw.framer-v-qz6dyu .framer-rret4i, .framer-M5gBw.framer-v-1vts8hj .framer-rret4i, .framer-M5gBw.framer-v-it8qc2 .framer-rret4i, .framer-M5gBw.framer-v-1uv9e8m .framer-rret4i, .framer-M5gBw.framer-v-17ludpd .framer-rret4i { flex: none; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-M5gBw.framer-v-dt7j0d .framer-t48ol8 { gap: 0px; } .framer-M5gBw.framer-v-dt7j0d .framer-t48ol8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-M5gBw.framer-v-dt7j0d .framer-t48ol8 > :first-child { margin-top: 0px; } .framer-M5gBw.framer-v-dt7j0d .framer-t48ol8 > :last-child { margin-bottom: 0px; } }\",\".framer-M5gBw.framer-v-1vvs9cr .framer-t48ol8, .framer-M5gBw.framer-v-qz6dyu .framer-t48ol8 { align-content: flex-end; align-items: flex-end; }\",\".framer-M5gBw.framer-v-1vts8hj .framer-t48ol8 { align-content: flex-end; align-items: flex-end; gap: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-M5gBw.framer-v-1vts8hj .framer-t48ol8 { gap: 0px; } .framer-M5gBw.framer-v-1vts8hj .framer-t48ol8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-M5gBw.framer-v-1vts8hj .framer-t48ol8 > :first-child { margin-top: 0px; } .framer-M5gBw.framer-v-1vts8hj .framer-t48ol8 > :last-child { margin-bottom: 0px; } }\",\".framer-M5gBw.framer-v-17ludpd .framer-t48ol8 { gap: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-M5gBw.framer-v-17ludpd .framer-t48ol8 { gap: 0px; } .framer-M5gBw.framer-v-17ludpd .framer-t48ol8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-M5gBw.framer-v-17ludpd .framer-t48ol8 > :first-child { margin-top: 0px; } .framer-M5gBw.framer-v-17ludpd .framer-t48ol8 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-M5gBw[data-border=\"true\"]::after, .framer-M5gBw [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 158\n * @framerIntrinsicWidth 440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LsGdYwd6u\":{\"layout\":[\"fixed\",\"auto\"]},\"et_G9Z0KI\":{\"layout\":[\"fixed\",\"auto\"]},\"HCQDKfHoS\":{\"layout\":[\"fixed\",\"auto\"]},\"yrmqLqofI\":{\"layout\":[\"fixed\",\"auto\"]},\"Nkv18XVmU\":{\"layout\":[\"fixed\",\"auto\"]},\"NhhMHsTMt\":{\"layout\":[\"fixed\",\"auto\"]},\"Ey9FJaka8\":{\"layout\":[\"fixed\",\"auto\"]},\"APKBIOv8K\":{\"layout\":[\"fixed\",\"auto\"]},\"yDWbfQJOz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Zqn6hBsPf\":\"image\",\"ePtRxbBKH\":\"name1\",\"ZMdTlQSsb\":\"review\",\"wmTcwD60X\":\"role\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernuP83hLe9=withCSS(Component,css,\"framer-M5gBw\");export default FramernuP83hLe9;FramernuP83hLe9.displayName=\"Components/Review\";FramernuP83hLe9.defaultProps={height:158,width:440};addPropertyControls(FramernuP83hLe9,{variant:{options:[\"gh1f9mw4s\",\"LsGdYwd6u\",\"et_G9Z0KI\",\"HCQDKfHoS\",\"yrmqLqofI\",\"Nkv18XVmU\",\"NhhMHsTMt\",\"Ey9FJaka8\",\"APKBIOv8K\"],optionTitles:[\"Left: Fill\",\"Left: Line\",\"Left: Clean\",\"Right: Fill\",\"Right: Line\",\"Right: Clean\",\"Center: Fill\",\"Center: Line\",\"Center: Clean\"],title:\"Variant\",type:ControlType.Enum},Zqn6hBsPf:{title:\"Image\",type:ControlType.ResponsiveImage},ePtRxbBKH:{defaultValue:\"Name\",displayTextArea:false,title:\"Name\",type:ControlType.String},ZMdTlQSsb:{defaultValue:\"Review\",displayTextArea:true,title:\"Review\",type:ControlType.String},wmTcwD60X:{defaultValue:\"Role\",displayTextArea:false,title:\"Role\",type:ControlType.String}});addFonts(FramernuP83hLe9,[{explicitInter:true,fonts:[{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MPWDEQ5P4DNS7O465A5AXO6KVHWMIF2Z/MNW3HVOPPNJBFIMMG2JLQ6HBXUDB63AO/G6AF2CHLF7U443YAKNG42CSO2I2VD6MV.woff2\",weight:\"600\"},{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/QMIUKUCANYOW3DZTE34ZMVXC7KRYZNCO/X3SZZ4Z5SZNM5K75FPPASQ2YRIJMIPUD/G2K4CBVGEH7VFVIC3T6GBHAWO2E2W7YQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...ElementsStarsFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernuP83hLe9\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"Zqn6hBsPf\\\":\\\"image\\\",\\\"ePtRxbBKH\\\":\\\"name1\\\",\\\"ZMdTlQSsb\\\":\\\"review\\\",\\\"wmTcwD60X\\\":\\\"role\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LsGdYwd6u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"et_G9Z0KI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HCQDKfHoS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yrmqLqofI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nkv18XVmU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NhhMHsTMt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ey9FJaka8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"APKBIOv8K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yDWbfQJOz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"158\",\"framerIntrinsicWidth\":\"440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Libre Baskerville-regular\",\"GF;Libre Baskerville-700\",\"GF;Libre Baskerville-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNbYRI4CN2V.woff2\",weight:\"400\"},{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjY1I8Gcw6Oi.woff2\",weight:\"700\"},{family:\"Libre Baskerville\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxMaDc2V2ro.woff2\",weight:\"400\"}]}];export const css=['.framer-f8xy0 .framer-styles-preset-1mq1b3h:not(.rich-text-wrapper), .framer-f8xy0 .framer-styles-preset-1mq1b3h.rich-text-wrapper p { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-bold: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-italic: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-open-type-features: \\'ss01\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: rgba(58, 45, 40, 0.8); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-f8xy0\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Libre Baskerville-regular\",\"GF;Libre Baskerville-700\",\"GF;Libre Baskerville-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNbYRI4CN2V.woff2\",weight:\"400\"},{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjY1I8Gcw6Oi.woff2\",weight:\"700\"},{family:\"Libre Baskerville\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxMaDc2V2ro.woff2\",weight:\"400\"}]}];export const css=['.framer-s9ZUA .framer-styles-preset-7xx32o:not(.rich-text-wrapper), .framer-s9ZUA .framer-styles-preset-7xx32o.rich-text-wrapper h2 { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-bold: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-italic: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.05em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #3a2d28; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; --framer-text-wrap: balance; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-s9ZUA .framer-styles-preset-7xx32o:not(.rich-text-wrapper), .framer-s9ZUA .framer-styles-preset-7xx32o.rich-text-wrapper h2 { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-bold: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-italic: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.05em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #3a2d28; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; --framer-text-wrap: balance; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-s9ZUA .framer-styles-preset-7xx32o:not(.rich-text-wrapper), .framer-s9ZUA .framer-styles-preset-7xx32o.rich-text-wrapper h2 { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-bold: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-italic: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.05em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #3a2d28; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; --framer-text-wrap: balance; } }'];export const className=\"framer-s9ZUA\";\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 (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Be Vietnam Pro-semibold\",\"FS;Be Vietnam Pro-black\",\"FS;Be Vietnam Pro-black italic\",\"FS;Be Vietnam Pro-semibold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MPWDEQ5P4DNS7O465A5AXO6KVHWMIF2Z/MNW3HVOPPNJBFIMMG2JLQ6HBXUDB63AO/G6AF2CHLF7U443YAKNG42CSO2I2VD6MV.woff2\",weight:\"600\"},{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/YB3HULSDSBNPAE3OQV2XNHIVVYTDRN6L/TWU2TXVYBJEBCLKLJH6GZBA4BXRSRRLB/E45BEFJW67QAAJX7PZAF7HO2WP6JZJR6.woff2\",weight:\"900\"},{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2V2CJ2NYRZNAGFPIUTGVU7IZI2AIUHCA/HKU2XZEFFWYLEJXZMW7HJOCNNUFER2QG/7HBXQZDUZJ57IZDY6V7WLRM5NHTS5BFN.woff2\",weight:\"900\"},{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WJKF7ZSVN7JYKGBC3HIO62QCENQR7XC4/NQ3OZHSOWM4G3XGD6JNLZKCG2YQULMAG/PNI7JG3UHYTH6JBHJYTD7OCYMALEQKUI.woff2\",weight:\"600\"}]}];export const css=['.framer-2GRRA .framer-styles-preset-1qec58k:not(.rich-text-wrapper), .framer-2GRRA .framer-styles-preset-1qec58k.rich-text-wrapper h5 { --framer-font-family: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-bold: \"Be Vietnam Pro\", sans-serif; --framer-font-family-bold-italic: \"Be Vietnam Pro\", sans-serif; --framer-font-family-italic: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss01\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #3a2d28; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-2GRRA .framer-styles-preset-1qec58k:not(.rich-text-wrapper), .framer-2GRRA .framer-styles-preset-1qec58k.rich-text-wrapper h5 { --framer-font-family: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-bold: \"Be Vietnam Pro\", sans-serif; --framer-font-family-bold-italic: \"Be Vietnam Pro\", sans-serif; --framer-font-family-italic: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss01\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #3a2d28; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-2GRRA .framer-styles-preset-1qec58k:not(.rich-text-wrapper), .framer-2GRRA .framer-styles-preset-1qec58k.rich-text-wrapper h5 { --framer-font-family: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-bold: \"Be Vietnam Pro\", sans-serif; --framer-font-family-bold-italic: \"Be Vietnam Pro\", sans-serif; --framer-font-family-italic: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss01\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #3a2d28; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; } }'];export const className=\"framer-2GRRA\";\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 (b742ddc)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Be Vietnam Pro-semibold\",\"FS;Be Vietnam Pro-black\",\"FS;Be Vietnam Pro-black italic\",\"FS;Be Vietnam Pro-semibold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MPWDEQ5P4DNS7O465A5AXO6KVHWMIF2Z/MNW3HVOPPNJBFIMMG2JLQ6HBXUDB63AO/G6AF2CHLF7U443YAKNG42CSO2I2VD6MV.woff2\",weight:\"600\"},{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/YB3HULSDSBNPAE3OQV2XNHIVVYTDRN6L/TWU2TXVYBJEBCLKLJH6GZBA4BXRSRRLB/E45BEFJW67QAAJX7PZAF7HO2WP6JZJR6.woff2\",weight:\"900\"},{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2V2CJ2NYRZNAGFPIUTGVU7IZI2AIUHCA/HKU2XZEFFWYLEJXZMW7HJOCNNUFER2QG/7HBXQZDUZJ57IZDY6V7WLRM5NHTS5BFN.woff2\",weight:\"900\"},{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WJKF7ZSVN7JYKGBC3HIO62QCENQR7XC4/NQ3OZHSOWM4G3XGD6JNLZKCG2YQULMAG/PNI7JG3UHYTH6JBHJYTD7OCYMALEQKUI.woff2\",weight:\"600\"}]}];export const css=['.framer-gUogz .framer-styles-preset-x2yoru:not(.rich-text-wrapper), .framer-gUogz .framer-styles-preset-x2yoru.rich-text-wrapper h4 { --framer-font-family: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-bold: \"Be Vietnam Pro\", sans-serif; --framer-font-family-bold-italic: \"Be Vietnam Pro\", sans-serif; --framer-font-family-italic: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, #0f172a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-gUogz .framer-styles-preset-x2yoru:not(.rich-text-wrapper), .framer-gUogz .framer-styles-preset-x2yoru.rich-text-wrapper h4 { --framer-font-family: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-bold: \"Be Vietnam Pro\", sans-serif; --framer-font-family-bold-italic: \"Be Vietnam Pro\", sans-serif; --framer-font-family-italic: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, #0f172a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-gUogz .framer-styles-preset-x2yoru:not(.rich-text-wrapper), .framer-gUogz .framer-styles-preset-x2yoru.rich-text-wrapper h4 { --framer-font-family: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-bold: \"Be Vietnam Pro\", sans-serif; --framer-font-family-bold-italic: \"Be Vietnam Pro\", sans-serif; --framer-font-family-italic: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, #0f172a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; } }'];export const className=\"framer-gUogz\";\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 (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,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 sharedStyle from\"https://framerusercontent.com/modules/x5D6mmsYVDLifK4SgK0z/EqlbKPvChFq7hAbpTa2b/xxeTLMR8z.js\";const MotionDivWithFX=withFX(motion.div);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"YINIjJgUc\",\"NEiweMyp1\"];const serializationHash=\"framer-tFRiK\";const variantClassNames={NEiweMyp1:\"framer-v-1dszhzr\",YINIjJgUc:\"framer-v-zayy70\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,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 Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"No Tooltip\":\"NEiweMyp1\",Tooltip:\"YINIjJgUc\"};const getProps=({height,id,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,fE3cVw3uz:(_ref=text!==null&&text!==void 0?text:props.fE3cVw3uz)!==null&&_ref!==void 0?_ref:\"Responsive design ensures your website looks perfect on any device.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"YINIjJgUc\"};};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,fE3cVw3uz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YINIjJgUc\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEntert682wp=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});overlay.show();});const ref1=React.useRef(null);const ref2=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.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(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-zayy70\",className,classNames),\"data-framer-name\":\"Tooltip\",\"data-highlight\":true,id:`${layoutId}-zayy70`,layoutDependency:layoutDependency,layoutId:\"YINIjJgUc\",onMouseEnter:onMouseEntert682wp({overlay}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({NEiweMyp1:{\"data-framer-name\":\"No Tooltip\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref!==null&&ref!==void 0?ref:ref1,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-zayy70`,offsetX:-.5,offsetY:-10,onDismiss:overlay.hide,placement:\"top\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,...addPropertyOverrides({NEiweMyp1:{safeArea:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1v7omd3\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"RqC8mcy_y\",ref:ref2,role:\"dialog\",style:{backgroundColor:\"var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qphtym\",\"data-styles-preset\":\"xxeTLMR8z\",style:{\"--framer-text-alignment\":\"center\"},children:\"Responsive design ensures your website looks perfect on any device.\"})}),className:\"framer-12fucgr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fpQEuCrNw\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:fE3cVw3uz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mdhrpk\",\"data-framer-name\":\"Tip\",layoutDependency:layoutDependency,layoutId:\"DWjFsVvVY\",style:{backgroundColor:\"var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,rotate:45}})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r2e9mo-container\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"MfUh5uFtF-container\",name:\"Icon\",style:{opacity:.4},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Info\",id:\"MfUh5uFtF\",layoutId:\"MfUh5uFtF\",mirrored:false,name:\"Icon\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tFRiK.framer-i1ni1v, .framer-tFRiK .framer-i1ni1v { display: block; }\",\".framer-tFRiK.framer-zayy70 { height: 18px; overflow: visible; position: relative; width: 18px; }\",\".framer-tFRiK .framer-1v7omd3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 16px 20px 16px 20px; position: relative; width: min-content; }\",\".framer-tFRiK .framer-12fucgr { flex: none; height: auto; max-width: 225px; position: relative; white-space: pre-wrap; width: 214px; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-tFRiK .framer-1mdhrpk { bottom: -4px; flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); overflow: visible; position: absolute; width: 20px; z-index: 0; }\",\".framer-tFRiK .framer-1r2e9mo-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tFRiK .framer-1v7omd3 { gap: 0px; } .framer-tFRiK .framer-1v7omd3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tFRiK .framer-1v7omd3 > :first-child { margin-left: 0px; } .framer-tFRiK .framer-1v7omd3 > :last-child { margin-right: 0px; } }\",\".framer-tFRiK.framer-v-1dszhzr.framer-zayy70 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 18px); }\",\".framer-tFRiK.framer-v-1dszhzr .framer-1v7omd3 { overflow: hidden; will-change: var(--framer-will-change-override, transform); }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 18\n * @framerIntrinsicWidth 18\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"NEiweMyp1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"fE3cVw3uz\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKYNVBykpG=withCSS(Component,css,\"framer-tFRiK\");export default FramerKYNVBykpG;FramerKYNVBykpG.displayName=\"Helper/ Info Overlays\";FramerKYNVBykpG.defaultProps={height:18,width:18};addPropertyControls(FramerKYNVBykpG,{variant:{options:[\"YINIjJgUc\",\"NEiweMyp1\"],optionTitles:[\"Tooltip\",\"No Tooltip\"],title:\"Variant\",type:ControlType.Enum},fE3cVw3uz:{defaultValue:\"Responsive design ensures your website looks perfect on any device.\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FramerKYNVBykpG,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKYNVBykpG\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"18\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NEiweMyp1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"18\",\"framerVariables\":\"{\\\"fE3cVw3uz\\\":\\\"text\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}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 sharedStyle from\"https://framerusercontent.com/modules/dJ9YkReHQ7xpyS6zOUQ2/vl1b2eM5WiZmepCuQvi5/agHFDFZ94.js\";import HelperInfoOverlays from\"https://framerusercontent.com/modules/zaOP3uSvleTEXKPPaatV/RXpWEif7MoJSyb5cCEX3/KYNVBykpG.js\";const PhosphorFonts=getFonts(Phosphor);const HelperInfoOverlaysFonts=getFonts(HelperInfoOverlays);const cycleOrder=[\"nFooJ6QAa\",\"aEYeAYaZ7\",\"qNC2njTqO\",\"LPbYtTkqI\"];const serializationHash=\"framer-hvq9e\";const variantClassNames={aEYeAYaZ7:\"framer-v-hal4n8\",LPbYtTkqI:\"framer-v-1fzwrc4\",nFooJ6QAa:\"framer-v-b3zz11\",qNC2njTqO:\"framer-v-16lcgep\"};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 numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:60,delay:0,mass:1,stiffness:500,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(React.Fragment);const humanReadableVariantMap={\"Comparison: Cross\":\"LPbYtTkqI\",\"Comparison: Tick\":\"qNC2njTqO\",\"List: Cross\":\"aEYeAYaZ7\",\"List: Tick\":\"nFooJ6QAa\"};const getProps=({height,id,infoIconVisible,overlayText,padding,text,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,iVyUmpPlV:(_ref=overlayText!==null&&overlayText!==void 0?overlayText:props.iVyUmpPlV)!==null&&_ref!==void 0?_ref:\"Responsive design ensures your website looks perfect on any device.\",pp9Jn2WGt:(_ref1=infoIconVisible!==null&&infoIconVisible!==void 0?infoIconVisible:props.pp9Jn2WGt)!==null&&_ref1!==void 0?_ref1:true,qGtZ4DZnr:(_ref2=text!==null&&text!==void 0?text:props.qGtZ4DZnr)!==null&&_ref2!==void 0?_ref2:\"List Item\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"nFooJ6QAa\",vMSgRukJP:(_ref4=padding!==null&&padding!==void 0?padding:props.vMSgRukJP)!==null&&_ref4!==void 0?_ref4:\"0px\"};};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,qGtZ4DZnr,pp9Jn2WGt,Y_ddFQkue,iVyUmpPlV,vMSgRukJP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nFooJ6QAa\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.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-b3zz11\",className,classNames),\"data-framer-name\":\"List: Tick\",layoutDependency:layoutDependency,layoutId:\"nFooJ6QAa\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--p8tccp\":numberToPixelString(vMSgRukJP),...style},...addPropertyOverrides({aEYeAYaZ7:{\"data-framer-name\":\"List: Cross\"},LPbYtTkqI:{\"data-framer-name\":\"Comparison: Cross\"},qNC2njTqO:{\"data-framer-name\":\"Comparison: Tick\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qjf8w8\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"hlXLDnpDX\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-abb09f6a-2c47-4cb9-9590-a0b822b55d8d, rgba(15, 23, 42, 0.8))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:1},variants:{aEYeAYaZ7:{backgroundColor:\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\",opacity:.2},LPbYtTkqI:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1ce1e52f-6406-499e-ab2d-80335e887394, rgb(225, 228, 235))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\",opacity:.2}},...addPropertyOverrides({LPbYtTkqI:{\"data-border\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14717ke-container\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"BnCRyf17R-container\",name:\"Icon\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"BnCRyf17R\",layoutId:\"BnCRyf17R\",mirrored:false,name:\"Icon\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({aEYeAYaZ7:{iconSelection:\"X\"},LPbYtTkqI:{iconSelection:\"X\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",children:\"List Item\"})}),className:\"framer-bh9v1r\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Mi4rqIDop\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:1},text:qGtZ4DZnr,variants:{aEYeAYaZ7:{\"--extracted-r6o4lv\":\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\",opacity:.2},LPbYtTkqI:{\"--extracted-r6o4lv\":\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\",opacity:.2}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aEYeAYaZ7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42)))\"},children:\"List Item\"})})},LPbYtTkqI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42)))\"},children:\"List Item\"})})},qNC2njTqO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-alignment\":\"left\"},children:\"List Item\"})})}},baseVariant,gestureVariant)}),pp9Jn2WGt&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"18px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ie36kk-container\",layoutDependency:layoutDependency,layoutId:\"AUDb_MVjx-container\",children:/*#__PURE__*/_jsx(HelperInfoOverlays,{fE3cVw3uz:iVyUmpPlV,height:\"100%\",id:\"AUDb_MVjx\",layoutId:\"AUDb_MVjx\",style:{height:\"100%\",width:\"100%\"},variant:Y_ddFQkue,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hvq9e.framer-1xxfgfr, .framer-hvq9e .framer-1xxfgfr { display: block; }\",\".framer-hvq9e.framer-b3zz11 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: var(--p8tccp); position: relative; width: 328px; }\",\".framer-hvq9e .framer-1qjf8w8 { 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: 4px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-hvq9e .framer-14717ke-container { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-hvq9e .framer-bh9v1r { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-hvq9e .framer-1ie36kk-container { align-self: stretch; flex: none; height: auto; position: relative; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hvq9e.framer-b3zz11, .framer-hvq9e .framer-1qjf8w8 { gap: 0px; } .framer-hvq9e.framer-b3zz11 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-hvq9e.framer-b3zz11 > :first-child, .framer-hvq9e .framer-1qjf8w8 > :first-child { margin-left: 0px; } .framer-hvq9e.framer-b3zz11 > :last-child, .framer-hvq9e .framer-1qjf8w8 > :last-child { margin-right: 0px; } .framer-hvq9e .framer-1qjf8w8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-hvq9e.framer-v-16lcgep .framer-1qjf8w8, .framer-hvq9e.framer-v-1fzwrc4 .framer-1qjf8w8 { padding: 6px; }\",...sharedStyle.css,'.framer-hvq9e[data-border=\"true\"]::after, .framer-hvq9e [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 22\n * @framerIntrinsicWidth 328\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"aEYeAYaZ7\":{\"layout\":[\"fixed\",\"auto\"]},\"qNC2njTqO\":{\"layout\":[\"fixed\",\"auto\"]},\"LPbYtTkqI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"qGtZ4DZnr\":\"text\",\"pp9Jn2WGt\":\"infoIconVisible\",\"iVyUmpPlV\":\"overlayText\",\"vMSgRukJP\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAPXWXdyVo=withCSS(Component,css,\"framer-hvq9e\");export default FramerAPXWXdyVo;FramerAPXWXdyVo.displayName=\"Elements/List Item\";FramerAPXWXdyVo.defaultProps={height:22,width:328};addPropertyControls(FramerAPXWXdyVo,{variant:{options:[\"nFooJ6QAa\",\"aEYeAYaZ7\",\"qNC2njTqO\",\"LPbYtTkqI\"],optionTitles:[\"List: Tick\",\"List: Cross\",\"Comparison: Tick\",\"Comparison: Cross\"],title:\"Variant\",type:ControlType.Enum},qGtZ4DZnr:{defaultValue:\"List Item\",displayTextArea:true,title:\"Text\",type:ControlType.String},pp9Jn2WGt:{defaultValue:true,title:\"Info Icon Visible\",type:ControlType.Boolean},iVyUmpPlV:{defaultValue:\"Responsive design ensures your website looks perfect on any device.\",displayTextArea:true,title:\"Overlay Text\",type:ControlType.String},vMSgRukJP:{defaultValue:\"0px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerAPXWXdyVo,[{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,...HelperInfoOverlaysFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAPXWXdyVo\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"328\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aEYeAYaZ7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qNC2njTqO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LPbYtTkqI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"22\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"qGtZ4DZnr\\\":\\\"text\\\",\\\"pp9Jn2WGt\\\":\\\"infoIconVisible\\\",\\\"iVyUmpPlV\\\":\\\"overlayText\\\",\\\"vMSgRukJP\\\":\\\"padding\\\"}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"pUwpFH3IG\",\"ysRFd1Blp\",\"DxhSfJBWF\"];const serializationHash=\"framer-oO8pX\";const variantClassNames={DxhSfJBWF:\"framer-v-1rjw23m\",pUwpFH3IG:\"framer-v-1fl0jb\",ysRFd1Blp:\"framer-v-pioek9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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\":\"DxhSfJBWF\",Default:\"pUwpFH3IG\",Pricing:\"ysRFd1Blp\"};const getProps=({height,id,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,H66JozB37:(_ref=text!==null&&text!==void 0?text:props.H66JozB37)!==null&&_ref!==void 0?_ref:\"LABEL\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"pUwpFH3IG\"};};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,H66JozB37,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pUwpFH3IG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1fl0jb\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"pUwpFH3IG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",background:'linear-gradient(150deg, var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255)) /* {\"name\":\"BG\"} */ 18%, var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250)) /* {\"name\":\"Box - L1\"} */ 75%)',backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"none\",...style},variants:{DxhSfJBWF:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-top-width\":\"1px\",background:\"linear-gradient(150deg, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 0) 100%)\",backgroundColor:\"rgba(250, 250, 250, 0)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},ysRFd1Blp:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",background:\"linear-gradient(150deg, var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42)) 0%, var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42)) 100%)\",backgroundColor:\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,boxShadow:\"0px 0px 0px 8px var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255))\"}},...addPropertyOverrides({DxhSfJBWF:{\"data-framer-name\":\"Variant 3\"},ysRFd1Blp:{\"data-framer-name\":\"Pricing\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(58, 45, 40, 0.8))\",\"--framer-text-transform\":\"capitalize\"},children:\"LABEL\"})}),className:\"framer-c3l2dh\",\"data-framer-name\":\"Text\",fonts:[\"GF;Libre Baskerville-regular\"],layoutDependency:layoutDependency,layoutId:\"j4oByWpAF\",style:{\"--extracted-r6o4lv\":\"rgba(58, 45, 40, 0.8)\",\"--framer-paragraph-spacing\":\"14px\"},text:H66JozB37,variants:{DxhSfJBWF:{\"--extracted-r6o4lv\":\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"},ysRFd1Blp:{\"--extracted-r6o4lv\":\"var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DxhSfJBWF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42)))\",\"--framer-text-transform\":\"capitalize\"},children:\"LABEL\"})})},ysRFd1Blp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"capitalize\"},children:\"LABEL\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oO8pX.framer-1uvjagc, .framer-oO8pX .framer-1uvjagc { display: block; }\",\".framer-oO8pX.framer-1fl0jb { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 10px 4px 10px; position: relative; width: min-content; }\",\".framer-oO8pX .framer-c3l2dh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oO8pX.framer-1fl0jb { gap: 0px; } .framer-oO8pX.framer-1fl0jb > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-oO8pX.framer-1fl0jb > :first-child { margin-left: 0px; } .framer-oO8pX.framer-1fl0jb > :last-child { margin-right: 0px; } }\",'.framer-oO8pX[data-border=\"true\"]::after, .framer-oO8pX [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 28\n * @framerIntrinsicWidth 64.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ysRFd1Blp\":{\"layout\":[\"auto\",\"auto\"]},\"DxhSfJBWF\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"H66JozB37\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfPTVvBdO5=withCSS(Component,css,\"framer-oO8pX\");export default FramerfPTVvBdO5;FramerfPTVvBdO5.displayName=\"Elements/Tag\";FramerfPTVvBdO5.defaultProps={height:28,width:64.5};addPropertyControls(FramerfPTVvBdO5,{variant:{options:[\"pUwpFH3IG\",\"ysRFd1Blp\",\"DxhSfJBWF\"],optionTitles:[\"Default\",\"Pricing\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},H66JozB37:{defaultValue:\"LABEL\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerfPTVvBdO5,[{explicitInter:true,fonts:[{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNbYRI4CN2V.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfPTVvBdO5\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ysRFd1Blp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DxhSfJBWF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"64.5\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"28\",\"framerVariables\":\"{\\\"H66JozB37\\\":\\\"text\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fPTVvBdO5.map", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}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/2LUlppO3ruNopTOcOF06/QD8wBlLCcq0VYoDRXmQC/agHFDFZ94.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/uEcaLT2Obcw8ubycZcTn/e5ZTvqSERf6vUnzl8RK4/j0p3vAPHv.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/66zZnRtzPm2CZYQjqWt6/lMiuEwKDZ8SWvt0it51W/t4kJUwVaH.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ztBz5Y7o8DXLC2sv8vsr/Wjxlpm6wf8E212SvxHrd/Wkx6BbgUb.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/4oam1cQzKSrIylAi7KNR/xJMzzfzKmU4ZkAfySdhE/xxeTLMR8z.js\";import ElementsListItem from\"https://framerusercontent.com/modules/9cBWKDkSmglZ5y7oULmN/Q2jBPSobms3hx4hZPLNH/APXWXdyVo.js\";import ElementsTag from\"https://framerusercontent.com/modules/aVQAT3QUbtGDMvuV6GoB/BSrfs6pSTpdppZyms2t7/fPTVvBdO5.js\";import ElementsButton from\"https://framerusercontent.com/modules/ohNmQdMkDlaludjeDkCq/g2fG3btX2v05RRLSr8VY/XNhmR7u5R.js\";const PhosphorFonts=getFonts(Phosphor);const ElementsButtonFonts=getFonts(ElementsButton);const ElementsListItemFonts=getFonts(ElementsListItem);const ElementsTagFonts=getFonts(ElementsTag);const cycleOrder=[\"DgJkqo2oX\",\"f2xhYQptn\",\"hIeBJlom7\",\"ucvaYYImD\"];const serializationHash=\"framer-Qjr9m\";const variantClassNames={DgJkqo2oX:\"framer-v-1bqvguj\",f2xhYQptn:\"framer-v-1l4zo2q\",hIeBJlom7:\"framer-v-1dcp4c4\",ucvaYYImD:\"framer-v-5bq8r2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"DFY: Mobile\":\"ucvaYYImD\",\"Main Offer: Mobile\":\"hIeBJlom7\",\"Main Offer\":\"DgJkqo2oX\",DFY:\"f2xhYQptn\"};const getProps=({cursor,height,id,link,price,width,...props})=>{return{...props,pDVF3BWxr:price??props.pDVF3BWxr??\"$3,100\",variant:humanReadableVariantMap[props.variant]??props.variant??\"DgJkqo2oX\",we5VmgciF:link??props.we5VmgciF,xsaIyDoJv:cursor??props.xsaIyDoJv};};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,we5VmgciF,pDVF3BWxr,xsaIyDoJv,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DgJkqo2oX\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"hIeBJlom7\",\"ucvaYYImD\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"ucvaYYImD\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"ucvaYYImD\")return true;return false;};const isDisplayed3=()=>{if([\"hIeBJlom7\",\"ucvaYYImD\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"f2xhYQptn\")return true;return false;};const isDisplayed5=()=>{if([\"f2xhYQptn\",\"ucvaYYImD\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if(baseVariant===\"f2xhYQptn\")return false;return true;};const isDisplayed7=()=>{if([\"f2xhYQptn\",\"ucvaYYImD\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-1bqvguj\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Main Offer\",layoutDependency:layoutDependency,layoutId:\"DgJkqo2oX\",ref:ref??ref1,style:{\"--border-bottom-width\":\"4px\",\"--border-color\":\"var(--token-d9cd9cae-03fa-4545-9f6b-ea22961aaa5d, rgb(51, 51, 51))\",\"--border-left-width\":\"4px\",\"--border-right-width\":\"4px\",\"--border-style\":\"solid\",\"--border-top-width\":\"4px\",background:'linear-gradient(150deg, var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255)) /* {\"name\":\"BG\"} */ 18%, var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250)) /* {\"name\":\"Box - L1\"} */ 75%)',backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{f2xhYQptn:{\"--border-color\":\"var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250))\",background:\"linear-gradient(150deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 100%)\",backgroundColor:\"rgba(23, 23, 23, 0)\"},hIeBJlom7:{backgroundColor:\"rgba(0, 0, 0, 0)\"},ucvaYYImD:{\"--border-color\":\"var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250))\",background:\"linear-gradient(150deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 100%)\",backgroundColor:\"rgba(23, 23, 23, 0)\"}},...addPropertyOverrides({f2xhYQptn:{\"data-framer-name\":\"DFY\"},hIeBJlom7:{\"data-framer-name\":\"Main Offer: Mobile\"},ucvaYYImD:{\"data-framer-name\":\"DFY: Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-itwmc0\",layoutDependency:layoutDependency,layoutId:\"rCIqbbJR0\",style:{backgroundColor:\"var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vh6s7c-container\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"DImhtisKU-container\",name:\"Icon\",style:{mask:\"linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.14) 29.995425112612615%, rgba(0, 0, 0, 0.4) 61.261261261261254%, rgba(0,0,0,1) 89%) add\",WebkitMask:\"linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.14) 29.995425112612615%, rgba(0, 0, 0, 0.4) 61.261261261261254%, rgba(0,0,0,1) 89%) add\"},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Heart\",id:\"DImhtisKU\",layoutId:\"DImhtisKU\",mirrored:false,name:\"Icon\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({f2xhYQptn:{iconSelection:\"Lightning\"},ucvaYYImD:{iconSelection:\"Lightning\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xnlwyi\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"ytK368DPi\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-124rs8l\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"wN_tyYQNq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14fea7p\",\"data-framer-name\":\"Text Wrap\",layoutDependency:layoutDependency,layoutId:\"i4PdCAnNH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-x2yoru\",\"data-styles-preset\":\"Wkx6BbgUb\",children:\"Instagram business academy\"})}),className:\"framer-7hzsda\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sHHIQsdTj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f2xhYQptn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-x2yoru\",\"data-styles-preset\":\"Wkx6BbgUb\",children:\"Instagram Business Academy Mini\"})})},ucvaYYImD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-x2yoru\",\"data-styles-preset\":\"Wkx6BbgUb\",children:\"Instagram Business Academy Premium \"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",children:\"Learn how to make $5-$10k/month through Instagram without showing your face\"})}),className:\"framer-dxjot6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C89naBIsE\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16xt563\",\"data-framer-name\":\"Mobile Price Wrapper\",layoutDependency:layoutDependency,layoutId:\"ZGJPgzKt2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5q4ig5\",\"data-framer-name\":\"Price Wrap\",layoutDependency:layoutDependency,layoutId:\"L4dvFIpZM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-7xx32o\",\"data-styles-preset\":\"j0p3vAPHv\",children:\"$269\"})}),className:\"framer-1qaryt6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dBsIhZeZw\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pDVF3BWxr,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ucvaYYImD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-7xx32o\",\"data-styles-preset\":\"j0p3vAPHv\",children:\"$669\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",children:\"USD\"})}),className:\"framer-1ymnwo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rObWI8ag6\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.6},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-v32la3\",\"data-framer-name\":\"Mobile Button Wrapper\",layoutDependency:layoutDependency,layoutId:\"BML5TjZ7I\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,...addPropertyOverrides({hIeBJlom7:{y:(componentViewport?.y||0)+40+0+0+0+0+166+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hb9tw8-container\",layoutDependency:layoutDependency,layoutId:\"pc99I1jzT-container\",children:/*#__PURE__*/_jsx(ElementsButton,{cSvXw0UMF:we5VmgciF,cYr9gJc6L:\"ShoppingCart\",height:\"100%\",id:\"pc99I1jzT\",kJmFsDdbK:\"Buy\",layoutId:\"pc99I1jzT\",m_edh05V5:0,variant:\"ZUQVwPrUw\",vX04FnKFX:\"fill\",width:\"100%\",yVMvYjPHf:true,...addPropertyOverrides({hIeBJlom7:{cSvXw0UMF:\"https://www.copecart.com/us/products/257a085b/checkout\"}},baseVariant,gestureVariant)})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({ucvaYYImD:{height:48,y:(componentViewport?.y||0)+40+0+0+0+0+240}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17alt6o-container\",layoutDependency:layoutDependency,layoutId:\"mM5cmJU6x-container\",children:/*#__PURE__*/_jsx(ElementsButton,{cSvXw0UMF:\"https://www.copecart.com/us/products/8eae691a/checkout\",cYr9gJc6L:\"ShoppingCart\",height:\"100%\",id:\"mM5cmJU6x\",kJmFsDdbK:\"Get started now\",layoutId:\"mM5cmJU6x\",m_edh05V5:0,variant:\"GHc3roRBx\",vX04FnKFX:\"fill\",width:\"100%\",yVMvYjPHf:true})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-co5f7l\",\"data-framer-name\":\"Desktop Button Wrapper\",layoutDependency:layoutDependency,layoutId:\"ewYWCpul5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+40+0+0+166+0+0,...addPropertyOverrides({f2xhYQptn:{y:(componentViewport?.y||0)+40+0+0+236.5+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2zwthc-container\",layoutDependency:layoutDependency,layoutId:\"K0QaiVNl5-container\",children:/*#__PURE__*/_jsx(ElementsButton,{bLFNckaxt:xsaIyDoJv,cSvXw0UMF:\"https://calendly.com/viktoria-jagini/discovery-call\",cYr9gJc6L:\"ShoppingCart\",height:\"100%\",id:\"K0QaiVNl5\",kJmFsDdbK:\"Apply now\",layoutId:\"K0QaiVNl5\",m_edh05V5:0,style:{width:\"100%\"},variant:\"ZUQVwPrUw\",vX04FnKFX:\"fill\",width:\"100%\",yVMvYjPHf:false,...addPropertyOverrides({f2xhYQptn:{bLFNckaxt:undefined,cSvXw0UMF:\"https://www.copecart.com/us/products/61e5f772/checkout\",kJmFsDdbK:\"Get started now\",variant:\"GHc3roRBx\"}},baseVariant,gestureVariant)})})})}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dfkenz\",\"data-framer-name\":\"Desktop Price Wrapper\",layoutDependency:layoutDependency,layoutId:\"Do7DGDx2B\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-7xx32o\",\"data-styles-preset\":\"j0p3vAPHv\",children:\"$269\"})}),className:\"framer-ddeyto\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"T17IaLLTG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pDVF3BWxr,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",children:\"USD\"})}),className:\"framer-1yvajpg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oTW59JFUi\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.6},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qphtym\",\"data-styles-preset\":\"xxeTLMR8z\",style:{\"--framer-text-alignment\":\"center\"},children:\"Per month \"})}),className:\"framer-1u7ywv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b9oVIWDMB\",style:{\"--framer-paragraph-spacing\":\"10px\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kwn8y5\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"RxLTH5kAt\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},variants:{f2xhYQptn:{backgroundColor:\"var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250))\"},hIeBJlom7:{backgroundColor:\"rgba(0, 0, 0, 0)\"},ucvaYYImD:{backgroundColor:\"var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250))\"}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1qec58k\",\"data-styles-preset\":\"t4kJUwVaH\",children:\"What You get\"})}),className:\"framer-siju7s\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mabvv_l_w\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11xziaw\",\"data-framer-name\":\"Sub Container\",layoutDependency:layoutDependency,layoutId:\"DOd4DJ_Rd\",children:[isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,y:(componentViewport?.y||0)+40+238+20+31.8+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k16abn-container\",layoutDependency:layoutDependency,layoutId:\"UUeFfPtx5-container\",children:/*#__PURE__*/_jsx(ElementsListItem,{height:\"100%\",id:\"UUeFfPtx5\",iVyUmpPlV:\"\",layoutId:\"UUeFfPtx5\",pp9Jn2WGt:false,qGtZ4DZnr:\"Full IBA Online Course \",style:{width:\"100%\"},variant:\"nFooJ6QAa\",vMSgRukJP:\"0px\",width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-10adiai\",\"data-border\":true,\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"A4v92476s\",style:{\"--border-bottom-width\":\"5px\",\"--border-color\":\"var(--token-311d2b88-411e-41af-a1bb-3188c0599d5e, rgb(228, 230, 231))\",\"--border-left-width\":\"5px\",\"--border-right-width\":\"5px\",\"--border-style\":\"dotted\",\"--border-top-width\":\"5px\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,y:(componentViewport?.y||0)+40+238+20+31.8+0+43,...addPropertyOverrides({f2xhYQptn:{y:(componentViewport?.y||0)+40+308.5+20+31.8+0+0},ucvaYYImD:{y:(componentViewport?.y||0)+40+312+20+31.8+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qg850h-container\",layoutDependency:layoutDependency,layoutId:\"a9wXJYQ1j-container\",children:/*#__PURE__*/_jsx(ElementsListItem,{height:\"100%\",id:\"a9wXJYQ1j\",iVyUmpPlV:\"\",layoutId:\"a9wXJYQ1j\",pp9Jn2WGt:false,qGtZ4DZnr:\"15+ Bonusses & Templates -Modules\",style:{width:\"100%\"},variant:\"nFooJ6QAa\",vMSgRukJP:\"0px\",width:\"100%\",...addPropertyOverrides({f2xhYQptn:{qGtZ4DZnr:\"Module 1-4 of the IBA\"},ucvaYYImD:{qGtZ4DZnr:\"Everything included in IBA\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5sf0t4\",\"data-border\":true,\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"JGZYeVhlX\",style:{\"--border-bottom-width\":\"5px\",\"--border-color\":\"var(--token-311d2b88-411e-41af-a1bb-3188c0599d5e, rgb(228, 230, 231))\",\"--border-left-width\":\"5px\",\"--border-right-width\":\"5px\",\"--border-style\":\"dotted\",\"--border-top-width\":\"5px\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,y:(componentViewport?.y||0)+40+238+20+31.8+0+86,...addPropertyOverrides({f2xhYQptn:{y:(componentViewport?.y||0)+40+308.5+20+31.8+0+43},ucvaYYImD:{y:(componentViewport?.y||0)+40+312+20+31.8+0+43}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m2osz0-container\",layoutDependency:layoutDependency,layoutId:\"Nt9Cyaczq-container\",children:/*#__PURE__*/_jsx(ElementsListItem,{height:\"100%\",id:\"Nt9Cyaczq\",iVyUmpPlV:\"\",layoutId:\"Nt9Cyaczq\",pp9Jn2WGt:false,qGtZ4DZnr:\"Full access to IBA community\",style:{width:\"100%\"},variant:\"nFooJ6QAa\",vMSgRukJP:\"0px\",width:\"100%\",...addPropertyOverrides({f2xhYQptn:{qGtZ4DZnr:\"1x monthly group call\"},ucvaYYImD:{qGtZ4DZnr:\"15+ Bonuses & Templates Modules\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-149f1ga\",\"data-border\":true,\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"SA1pUHX4y\",style:{\"--border-bottom-width\":\"5px\",\"--border-color\":\"var(--token-311d2b88-411e-41af-a1bb-3188c0599d5e, rgb(228, 230, 231))\",\"--border-left-width\":\"5px\",\"--border-right-width\":\"5px\",\"--border-style\":\"dotted\",\"--border-top-width\":\"5px\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,y:(componentViewport?.y||0)+40+238+20+31.8+0+129,...addPropertyOverrides({f2xhYQptn:{y:(componentViewport?.y||0)+40+308.5+20+31.8+0+86},ucvaYYImD:{y:(componentViewport?.y||0)+40+312+20+31.8+0+86}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-m1q29-container\",layoutDependency:layoutDependency,layoutId:\"duOiV4pO7-container\",children:/*#__PURE__*/_jsx(ElementsListItem,{height:\"100%\",id:\"duOiV4pO7\",iVyUmpPlV:\"\",layoutId:\"duOiV4pO7\",pp9Jn2WGt:false,qGtZ4DZnr:\"30 Days of story content\",style:{width:\"100%\"},variant:\"nFooJ6QAa\",vMSgRukJP:\"0px\",width:\"100%\",...addPropertyOverrides({f2xhYQptn:{iVyUmpPlV:\"Includes styles, copy and images.\",qGtZ4DZnr:\"Full access to IBA Community\"},ucvaYYImD:{qGtZ4DZnr:\"Full Access to IBA Community\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wry489\",\"data-border\":true,\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"KCAcM8vrX\",style:{\"--border-bottom-width\":\"5px\",\"--border-color\":\"var(--token-311d2b88-411e-41af-a1bb-3188c0599d5e, rgb(228, 230, 231))\",\"--border-left-width\":\"5px\",\"--border-right-width\":\"5px\",\"--border-style\":\"dotted\",\"--border-top-width\":\"5px\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,y:(componentViewport?.y||0)+40+238+20+31.8+0+172,...addPropertyOverrides({f2xhYQptn:{y:(componentViewport?.y||0)+40+308.5+20+31.8+0+129},ucvaYYImD:{y:(componentViewport?.y||0)+40+312+20+31.8+0+129}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rlf4jj-container\",layoutDependency:layoutDependency,layoutId:\"Pcw_5KhSN-container\",children:/*#__PURE__*/_jsx(ElementsListItem,{height:\"100%\",id:\"Pcw_5KhSN\",iVyUmpPlV:\"\",layoutId:\"Pcw_5KhSN\",pp9Jn2WGt:false,qGtZ4DZnr:\"2x weekly group coaching calls\",style:{width:\"100%\"},variant:\"nFooJ6QAa\",vMSgRukJP:\"0px\",width:\"100%\",...addPropertyOverrides({f2xhYQptn:{qGtZ4DZnr:\"1x 1:1 call\"},ucvaYYImD:{qGtZ4DZnr:\"2x 1/1 Coaching calls\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fxo4oj\",\"data-border\":true,\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"C9BZkrna7\",style:{\"--border-bottom-width\":\"5px\",\"--border-color\":\"var(--token-311d2b88-411e-41af-a1bb-3188c0599d5e, rgb(228, 230, 231))\",\"--border-left-width\":\"5px\",\"--border-right-width\":\"5px\",\"--border-style\":\"dotted\",\"--border-top-width\":\"5px\"}}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,y:(componentViewport?.y||0)+40+238+20+31.8+0+215,...addPropertyOverrides({ucvaYYImD:{y:(componentViewport?.y||0)+40+312+20+31.8+0+172}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3w1jww-container\",layoutDependency:layoutDependency,layoutId:\"EgnE_DS_0-container\",children:/*#__PURE__*/_jsx(ElementsListItem,{height:\"100%\",id:\"EgnE_DS_0\",iVyUmpPlV:\"For use on unlimited personal, commercial or client sites.\",layoutId:\"EgnE_DS_0\",pp9Jn2WGt:false,qGtZ4DZnr:\"2x 1:1 Call\",style:{width:\"100%\"},variant:\"nFooJ6QAa\",vMSgRukJP:\"0px\",width:\"100%\",...addPropertyOverrides({ucvaYYImD:{iVyUmpPlV:\"\",qGtZ4DZnr:\"2x per week group coaching Sessions\"}},baseVariant,gestureVariant)})})}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-17j0ez2\",\"data-border\":true,\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"Ij_LIoXMg\",style:{\"--border-bottom-width\":\"5px\",\"--border-color\":\"var(--token-311d2b88-411e-41af-a1bb-3188c0599d5e, rgb(228, 230, 231))\",\"--border-left-width\":\"5px\",\"--border-right-width\":\"5px\",\"--border-style\":\"dotted\",\"--border-top-width\":\"5px\"}})]})]}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+-12,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lae4zn-container\",layoutDependency:layoutDependency,layoutId:\"gPBdvGl5n-container\",children:/*#__PURE__*/_jsx(ElementsTag,{H66JozB37:\"Most Popular\",height:\"100%\",id:\"gPBdvGl5n\",layoutId:\"gPBdvGl5n\",variant:\"ysRFd1Blp\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Qjr9m.framer-1afi0iw, .framer-Qjr9m .framer-1afi0iw { display: block; }\",\".framer-Qjr9m.framer-1bqvguj { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 16px 16px 16px; position: relative; width: 304px; }\",\".framer-Qjr9m .framer-itwmc0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 22px; overflow: visible; padding: 0px 4px 4px 4px; position: absolute; top: -23px; width: min-content; z-index: 1; }\",\".framer-Qjr9m .framer-1vh6s7c-container { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-Qjr9m .framer-1xnlwyi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-Qjr9m .framer-124rs8l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Qjr9m .framer-14fea7p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Qjr9m .framer-7hzsda, .framer-Qjr9m .framer-dxjot6, .framer-Qjr9m .framer-siju7s { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Qjr9m .framer-16xt563 { 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: 100%; }\",\".framer-Qjr9m .framer-5q4ig5 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Qjr9m .framer-1qaryt6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Qjr9m .framer-1ymnwo, .framer-Qjr9m .framer-1yvajpg { flex: none; height: 26px; position: relative; white-space: pre; width: auto; }\",\".framer-Qjr9m .framer-v32la3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Qjr9m .framer-1hb9tw8-container, .framer-Qjr9m .framer-17alt6o-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Qjr9m .framer-co5f7l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Qjr9m .framer-2zwthc-container, .framer-Qjr9m .framer-k16abn-container, .framer-Qjr9m .framer-1qg850h-container, .framer-Qjr9m .framer-1m2osz0-container, .framer-Qjr9m .framer-m1q29-container, .framer-Qjr9m .framer-1rlf4jj-container, .framer-Qjr9m .framer-3w1jww-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Qjr9m .framer-1dfkenz { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Qjr9m .framer-ddeyto { flex: none; height: 46px; position: relative; white-space: pre; width: auto; }\",\".framer-Qjr9m .framer-1u7ywv { --framer-text-wrap-override: balance; flex: none; height: 16px; overflow: visible; position: relative; width: 87px; z-index: 1; }\",\".framer-Qjr9m .framer-1kwn8y5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-Qjr9m .framer-11xziaw { 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-Qjr9m .framer-10adiai, .framer-Qjr9m .framer-5sf0t4, .framer-Qjr9m .framer-149f1ga, .framer-Qjr9m .framer-1wry489, .framer-Qjr9m .framer-1fxo4oj, .framer-Qjr9m .framer-17j0ez2 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Qjr9m .framer-lae4zn-container { flex: none; height: auto; position: absolute; right: 33px; top: -12px; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Qjr9m.framer-1bqvguj, .framer-Qjr9m .framer-itwmc0, .framer-Qjr9m .framer-1xnlwyi, .framer-Qjr9m .framer-124rs8l, .framer-Qjr9m .framer-14fea7p, .framer-Qjr9m .framer-16xt563, .framer-Qjr9m .framer-5q4ig5, .framer-Qjr9m .framer-v32la3, .framer-Qjr9m .framer-co5f7l, .framer-Qjr9m .framer-1dfkenz, .framer-Qjr9m .framer-1kwn8y5, .framer-Qjr9m .framer-11xziaw { gap: 0px; } .framer-Qjr9m.framer-1bqvguj > *, .framer-Qjr9m .framer-1xnlwyi > *, .framer-Qjr9m .framer-124rs8l > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Qjr9m.framer-1bqvguj > :first-child, .framer-Qjr9m .framer-itwmc0 > :first-child, .framer-Qjr9m .framer-1xnlwyi > :first-child, .framer-Qjr9m .framer-124rs8l > :first-child, .framer-Qjr9m .framer-14fea7p > :first-child, .framer-Qjr9m .framer-v32la3 > :first-child, .framer-Qjr9m .framer-co5f7l > :first-child, .framer-Qjr9m .framer-1kwn8y5 > :first-child, .framer-Qjr9m .framer-11xziaw > :first-child { margin-top: 0px; } .framer-Qjr9m.framer-1bqvguj > :last-child, .framer-Qjr9m .framer-itwmc0 > :last-child, .framer-Qjr9m .framer-1xnlwyi > :last-child, .framer-Qjr9m .framer-124rs8l > :last-child, .framer-Qjr9m .framer-14fea7p > :last-child, .framer-Qjr9m .framer-v32la3 > :last-child, .framer-Qjr9m .framer-co5f7l > :last-child, .framer-Qjr9m .framer-1kwn8y5 > :last-child, .framer-Qjr9m .framer-11xziaw > :last-child { margin-bottom: 0px; } .framer-Qjr9m .framer-itwmc0 > *, .framer-Qjr9m .framer-11xziaw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Qjr9m .framer-14fea7p > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Qjr9m .framer-16xt563 > *, .framer-Qjr9m .framer-5q4ig5 > *, .framer-Qjr9m .framer-1dfkenz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Qjr9m .framer-16xt563 > :first-child, .framer-Qjr9m .framer-5q4ig5 > :first-child, .framer-Qjr9m .framer-1dfkenz > :first-child { margin-left: 0px; } .framer-Qjr9m .framer-16xt563 > :last-child, .framer-Qjr9m .framer-5q4ig5 > :last-child, .framer-Qjr9m .framer-1dfkenz > :last-child { margin-right: 0px; } .framer-Qjr9m .framer-v32la3 > *, .framer-Qjr9m .framer-co5f7l > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-Qjr9m .framer-1kwn8y5 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-Qjr9m.framer-v-1l4zo2q .framer-1xnlwyi { gap: 11px; }\",\".framer-Qjr9m.framer-v-1l4zo2q .framer-124rs8l { order: 0; }\",\".framer-Qjr9m.framer-v-1l4zo2q .framer-co5f7l { order: 3; }\",\".framer-Qjr9m.framer-v-1l4zo2q .framer-1dfkenz { order: 1; }\",\".framer-Qjr9m.framer-v-1l4zo2q .framer-1u7ywv { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Qjr9m.framer-v-1l4zo2q .framer-1xnlwyi { gap: 0px; } .framer-Qjr9m.framer-v-1l4zo2q .framer-1xnlwyi > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-Qjr9m.framer-v-1l4zo2q .framer-1xnlwyi > :first-child { margin-top: 0px; } .framer-Qjr9m.framer-v-1l4zo2q .framer-1xnlwyi > :last-child { margin-bottom: 0px; } }\",\".framer-Qjr9m.framer-v-5bq8r2 .framer-124rs8l { gap: 20px; }\",\".framer-Qjr9m.framer-v-5bq8r2 .framer-5q4ig5 { padding: 5px 0px 5px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Qjr9m.framer-v-5bq8r2 .framer-124rs8l { gap: 0px; } .framer-Qjr9m.framer-v-5bq8r2 .framer-124rs8l > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Qjr9m.framer-v-5bq8r2 .framer-124rs8l > :first-child { margin-top: 0px; } .framer-Qjr9m.framer-v-5bq8r2 .framer-124rs8l > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-Qjr9m[data-border=\"true\"]::after, .framer-Qjr9m [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 671\n * @framerIntrinsicWidth 304\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"f2xhYQptn\":{\"layout\":[\"fixed\",\"auto\"]},\"hIeBJlom7\":{\"layout\":[\"fixed\",\"auto\"]},\"ucvaYYImD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"we5VmgciF\":\"link\",\"pDVF3BWxr\":\"price\",\"xsaIyDoJv\":\"cursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxjZCbgFcg=withCSS(Component,css,\"framer-Qjr9m\");export default FramerxjZCbgFcg;FramerxjZCbgFcg.displayName=\"Components/Pricing Card\";FramerxjZCbgFcg.defaultProps={height:671,width:304};addPropertyControls(FramerxjZCbgFcg,{variant:{options:[\"DgJkqo2oX\",\"f2xhYQptn\",\"hIeBJlom7\",\"ucvaYYImD\"],optionTitles:[\"Main Offer\",\"DFY\",\"Main Offer: Mobile\",\"DFY: Mobile\"],title:\"Variant\",type:ControlType.Enum},we5VmgciF:{title:\"Link\",type:ControlType.Link},pDVF3BWxr:{defaultValue:\"$3,100\",displayTextArea:false,title:\"Price\",type:ControlType.String},xsaIyDoJv:{title:\"Cursor\",type:ControlType.CustomCursor}});addFonts(FramerxjZCbgFcg,[{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,...ElementsButtonFonts,...ElementsListItemFonts,...ElementsTagFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxjZCbgFcg\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"304\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"671\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"we5VmgciF\\\":\\\"link\\\",\\\"pDVF3BWxr\\\":\\\"price\\\",\\\"xsaIyDoJv\\\":\\\"cursor\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f2xhYQptn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hIeBJlom7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ucvaYYImD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xjZCbgFcg.map", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Libre Baskerville-regular\",\"GF;Libre Baskerville-700\",\"GF;Libre Baskerville-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNbYRI4CN2V.woff2\",weight:\"400\"},{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjY1I8Gcw6Oi.woff2\",weight:\"700\"},{family:\"Libre Baskerville\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxMaDc2V2ro.woff2\",weight:\"400\"}]}];export const css=['.framer-s9ZUA .framer-styles-preset-7xx32o:not(.rich-text-wrapper), .framer-s9ZUA .framer-styles-preset-7xx32o.rich-text-wrapper h2 { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-bold: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-italic: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.05em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #3a2d28; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; --framer-text-wrap: balance; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-s9ZUA .framer-styles-preset-7xx32o:not(.rich-text-wrapper), .framer-s9ZUA .framer-styles-preset-7xx32o.rich-text-wrapper h2 { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-bold: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-italic: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.05em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #3a2d28; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; --framer-text-wrap: balance; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-s9ZUA .framer-styles-preset-7xx32o:not(.rich-text-wrapper), .framer-s9ZUA .framer-styles-preset-7xx32o.rich-text-wrapper h2 { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-bold: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-italic: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.05em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #3a2d28; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; --framer-text-wrap: balance; } }'];export const className=\"framer-s9ZUA\";\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 (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Be Vietnam Pro-regular\",\"FS;Be Vietnam Pro-semibold\",\"FS;Be Vietnam Pro-semibold italic\",\"FS;Be Vietnam Pro-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/QMIUKUCANYOW3DZTE34ZMVXC7KRYZNCO/X3SZZ4Z5SZNM5K75FPPASQ2YRIJMIPUD/G2K4CBVGEH7VFVIC3T6GBHAWO2E2W7YQ.woff2\",weight:\"400\"},{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MPWDEQ5P4DNS7O465A5AXO6KVHWMIF2Z/MNW3HVOPPNJBFIMMG2JLQ6HBXUDB63AO/G6AF2CHLF7U443YAKNG42CSO2I2VD6MV.woff2\",weight:\"600\"},{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WJKF7ZSVN7JYKGBC3HIO62QCENQR7XC4/NQ3OZHSOWM4G3XGD6JNLZKCG2YQULMAG/PNI7JG3UHYTH6JBHJYTD7OCYMALEQKUI.woff2\",weight:\"600\"},{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/QHOAY7VCXJYW5ROJFZTESFFPKE4PECFH/A4TFC2ZRICXLRGJI7ECAKBJ7NX7HVNFF/IVQUU3WGE5LT5R7NEHUAZVFIO7Q7WAQA.woff2\",weight:\"400\"}]}];export const css=['.framer-bN46R .framer-styles-preset-ybu4hp:not(.rich-text-wrapper), .framer-bN46R .framer-styles-preset-ybu4hp.rich-text-wrapper p { --framer-font-family: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-bold: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-italic: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss01\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 600; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 32px; --framer-text-alignment: left; --framer-text-color: rgba(58, 45, 40, 0.8); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-bN46R .framer-styles-preset-ybu4hp:not(.rich-text-wrapper), .framer-bN46R .framer-styles-preset-ybu4hp.rich-text-wrapper p { --framer-font-family: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-bold: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-italic: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss01\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 600; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 32px; --framer-text-alignment: left; --framer-text-color: rgba(58, 45, 40, 0.8); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-bN46R .framer-styles-preset-ybu4hp:not(.rich-text-wrapper), .framer-bN46R .framer-styles-preset-ybu4hp.rich-text-wrapper p { --framer-font-family: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-bold: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-family-italic: \"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss01\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 600; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 32px; --framer-text-alignment: left; --framer-text-color: rgba(58, 45, 40, 0.8); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }'];export const className=\"framer-bN46R\";\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 (9f68555)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"pUwpFH3IG\",\"ysRFd1Blp\",\"DxhSfJBWF\"];const serializationHash=\"framer-oO8pX\";const variantClassNames={DxhSfJBWF:\"framer-v-1rjw23m\",pUwpFH3IG:\"framer-v-1fl0jb\",ysRFd1Blp:\"framer-v-pioek9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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\":\"DxhSfJBWF\",Default:\"pUwpFH3IG\",Pricing:\"ysRFd1Blp\"};const getProps=({height,id,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,H66JozB37:(_ref=text!==null&&text!==void 0?text:props.H66JozB37)!==null&&_ref!==void 0?_ref:\"LABEL\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"pUwpFH3IG\"};};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,H66JozB37,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pUwpFH3IG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1fl0jb\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"pUwpFH3IG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",background:'linear-gradient(150deg, var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255)) /* {\"name\":\"BG\"} */ 18%, var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250)) /* {\"name\":\"Box - L1\"} */ 75%)',backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"none\",...style},variants:{DxhSfJBWF:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-top-width\":\"1px\",background:\"linear-gradient(150deg, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 0) 100%)\",backgroundColor:\"rgba(250, 250, 250, 0)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},ysRFd1Blp:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",background:\"linear-gradient(150deg, var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42)) 0%, var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42)) 100%)\",backgroundColor:\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,boxShadow:\"0px 0px 0px 8px var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255))\"}},...addPropertyOverrides({DxhSfJBWF:{\"data-framer-name\":\"Variant 3\"},ysRFd1Blp:{\"data-framer-name\":\"Pricing\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(58, 45, 40, 0.8))\",\"--framer-text-transform\":\"capitalize\"},children:\"LABEL\"})}),className:\"framer-c3l2dh\",\"data-framer-name\":\"Text\",fonts:[\"GF;Libre Baskerville-regular\"],layoutDependency:layoutDependency,layoutId:\"j4oByWpAF\",style:{\"--extracted-r6o4lv\":\"rgba(58, 45, 40, 0.8)\",\"--framer-paragraph-spacing\":\"14px\"},text:H66JozB37,variants:{DxhSfJBWF:{\"--extracted-r6o4lv\":\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"},ysRFd1Blp:{\"--extracted-r6o4lv\":\"var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DxhSfJBWF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42)))\",\"--framer-text-transform\":\"capitalize\"},children:\"LABEL\"})})},ysRFd1Blp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"capitalize\"},children:\"LABEL\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oO8pX.framer-1uvjagc, .framer-oO8pX .framer-1uvjagc { display: block; }\",\".framer-oO8pX.framer-1fl0jb { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 10px 4px 10px; position: relative; width: min-content; }\",\".framer-oO8pX .framer-c3l2dh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oO8pX.framer-1fl0jb { gap: 0px; } .framer-oO8pX.framer-1fl0jb > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-oO8pX.framer-1fl0jb > :first-child { margin-left: 0px; } .framer-oO8pX.framer-1fl0jb > :last-child { margin-right: 0px; } }\",'.framer-oO8pX[data-border=\"true\"]::after, .framer-oO8pX [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 28\n * @framerIntrinsicWidth 64.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ysRFd1Blp\":{\"layout\":[\"auto\",\"auto\"]},\"DxhSfJBWF\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"H66JozB37\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfPTVvBdO5=withCSS(Component,css,\"framer-oO8pX\");export default FramerfPTVvBdO5;FramerfPTVvBdO5.displayName=\"Elements/Tag\";FramerfPTVvBdO5.defaultProps={height:28,width:64.5};addPropertyControls(FramerfPTVvBdO5,{variant:{options:[\"pUwpFH3IG\",\"ysRFd1Blp\",\"DxhSfJBWF\"],optionTitles:[\"Default\",\"Pricing\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},H66JozB37:{defaultValue:\"LABEL\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerfPTVvBdO5,[{explicitInter:true,fonts:[{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNbYRI4CN2V.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfPTVvBdO5\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ysRFd1Blp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DxhSfJBWF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"64.5\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"28\",\"framerVariables\":\"{\\\"H66JozB37\\\":\\\"text\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fPTVvBdO5.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/i8AN3it8TBmdVk0kk06u/Vr2uwHRiU7ozUUmhhCsL/j0p3vAPHv.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lngzjFhPpSExxz3gDrS2/JiVReSlBkUf0QbgkUgZG/TiTn3K6pc.js\";import ElementsTag from\"https://framerusercontent.com/modules/qnuM8qqoWKBjZf7y0NJl/MzhQALGiq8LhhXMEaQXm/fPTVvBdO5.js\";const ElementsTagFonts=getFonts(ElementsTag);const cycleOrder=[\"r8oLg0_Wq\",\"zy2fH2zoP\",\"nEoWuAgnU\"];const serializationHash=\"framer-LvTSD\";const variantClassNames={nEoWuAgnU:\"framer-v-1gzbsn1\",r8oLg0_Wq:\"framer-v-1k6dame\",zy2fH2zoP:\"framer-v-1tz25pv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};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={\"Align: Center\":\"r8oLg0_Wq\",\"Align: Left\":\"zy2fH2zoP\",\"Align: Right\":\"nEoWuAgnU\"};const getProps=({byline,height,id,tagText,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,I6DOV1pRR:(_ref=title!==null&&title!==void 0?title:props.I6DOV1pRR)!==null&&_ref!==void 0?_ref:\"it's Easy to make it yours\",tuKQBbiAw:(_ref1=byline!==null&&byline!==void 0?byline:props.tuKQBbiAw)!==null&&_ref1!==void 0?_ref1:\"One or two lines to summarize the benefit that it's been designed to be simple and easy, even for non-techies.\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"r8oLg0_Wq\",WTCErdx1k:(_ref3=tagText!==null&&tagText!==void 0?tagText:props.WTCErdx1k)!==null&&_ref3!==void 0?_ref3:\"Features\"};};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,WTCErdx1k,I6DOV1pRR,tuKQBbiAw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"r8oLg0_Wq\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=isSet(WTCErdx1k);const visible1=isSet(tuKQBbiAw);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-1k6dame\",className,classNames),\"data-framer-name\":\"Align: Center\",layoutDependency:layoutDependency,layoutId:\"r8oLg0_Wq\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({nEoWuAgnU:{\"data-framer-name\":\"Align: Right\"},zy2fH2zoP:{\"data-framer-name\":\"Align: Left\"}},baseVariant,gestureVariant),children:[visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||166.5)-0-242)/2+0+0),...addPropertyOverrides({nEoWuAgnU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-242)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fmosku-container\",layoutDependency:layoutDependency,layoutId:\"EJNLRPDBj-container\",children:/*#__PURE__*/_jsx(ElementsTag,{H66JozB37:WTCErdx1k,height:\"100%\",id:\"EJNLRPDBj\",layoutId:\"EJNLRPDBj\",variant:\"pUwpFH3IG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-7xx32o\",\"data-styles-preset\":\"j0p3vAPHv\",children:\"it's Easy to make it yours\"})}),className:\"framer-9ukcyk\",\"data-framer-name\":\"Stop Wasting Your Hard Earned Money\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"f98E6FEen\",text:I6DOV1pRR,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nEoWuAgnU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-7xx32o\",\"data-styles-preset\":\"j0p3vAPHv\",style:{\"--framer-text-alignment\":\"right\"},children:\"it's Easy to make it yours\"})})},zy2fH2zoP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-7xx32o\",\"data-styles-preset\":\"j0p3vAPHv\",style:{\"--framer-text-alignment\":\"left\"},children:\"it's Easy to make it yours\"})})}},baseVariant,gestureVariant)}),visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ybu4hp\",\"data-styles-preset\":\"TiTn3K6pc\",style:{\"--framer-text-alignment\":\"center\"},children:\"One or two lines to summarize the benefit that it's been designed to be simple and easy, even for non-techies.\"})}),className:\"framer-1t7ymks\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ohCzrZ0Sa\",style:{\"--framer-paragraph-spacing\":\"10px\",opacity:.9},text:tuKQBbiAw,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nEoWuAgnU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ybu4hp\",\"data-styles-preset\":\"TiTn3K6pc\",style:{\"--framer-text-alignment\":\"right\"},children:\"One or two lines to summarize the benefit that it's been designed to be simple and easy, even for non-techies.\"})})},zy2fH2zoP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ybu4hp\",\"data-styles-preset\":\"TiTn3K6pc\",style:{\"--framer-text-alignment\":\"left\"},children:\"One or two lines to summarize the benefit that it's been designed to be simple and easy, even for non-techies.\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LvTSD.framer-nrofd9, .framer-LvTSD .framer-nrofd9 { display: block; }\",\".framer-LvTSD.framer-1k6dame { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 960px; }\",\".framer-LvTSD .framer-1fmosku-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-LvTSD .framer-9ukcyk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-LvTSD .framer-1t7ymks { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LvTSD.framer-1k6dame { gap: 0px; } .framer-LvTSD.framer-1k6dame > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-LvTSD.framer-1k6dame > :first-child { margin-top: 0px; } .framer-LvTSD.framer-1k6dame > :last-child { margin-bottom: 0px; } }\",\".framer-LvTSD.framer-v-1tz25pv.framer-1k6dame { align-content: flex-start; align-items: flex-start; }\",\".framer-LvTSD.framer-v-1gzbsn1.framer-1k6dame { align-content: flex-end; align-items: flex-end; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 166.5\n * @framerIntrinsicWidth 960\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zy2fH2zoP\":{\"layout\":[\"fixed\",\"auto\"]},\"nEoWuAgnU\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"WTCErdx1k\":\"tagText\",\"I6DOV1pRR\":\"title\",\"tuKQBbiAw\":\"byline\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZFTu0Io5O=withCSS(Component,css,\"framer-LvTSD\");export default FramerZFTu0Io5O;FramerZFTu0Io5O.displayName=\"Components/Section Heading\";FramerZFTu0Io5O.defaultProps={height:166.5,width:960};addPropertyControls(FramerZFTu0Io5O,{variant:{options:[\"r8oLg0_Wq\",\"zy2fH2zoP\",\"nEoWuAgnU\"],optionTitles:[\"Align: Center\",\"Align: Left\",\"Align: Right\"],title:\"Variant\",type:ControlType.Enum},WTCErdx1k:{defaultValue:\"Features\",displayTextArea:false,title:\"Tag Text\",type:ControlType.String},I6DOV1pRR:{defaultValue:\"it's Easy to make it yours\",displayTextArea:true,title:\"Title\",type:ControlType.String},tuKQBbiAw:{defaultValue:\"One or two lines to summarize the benefit that it's been designed to be simple and easy, even for non-techies.\",displayTextArea:true,title:\"Byline\",type:ControlType.String}});addFonts(FramerZFTu0Io5O,[{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\"}]},...ElementsTagFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZFTu0Io5O\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"166.5\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zy2fH2zoP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nEoWuAgnU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"960\",\"framerVariables\":\"{\\\"WTCErdx1k\\\":\\\"tagText\\\",\\\"I6DOV1pRR\\\":\\\"title\\\",\\\"tuKQBbiAw\\\":\\\"byline\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Libre Baskerville-regular\",\"GF;Libre Baskerville-700\",\"GF;Libre Baskerville-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNbYRI4CN2V.woff2\",weight:\"400\"},{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjY1I8Gcw6Oi.woff2\",weight:\"700\"},{family:\"Libre Baskerville\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxMaDc2V2ro.woff2\",weight:\"400\"}]}];export const css=['.framer-C2c3j .framer-styles-preset-1mkny7q:not(.rich-text-wrapper), .framer-C2c3j .framer-styles-preset-1mkny7q.rich-text-wrapper h3 { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-bold: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-italic: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, #0f172a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; --framer-text-wrap: balance; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-C2c3j .framer-styles-preset-1mkny7q:not(.rich-text-wrapper), .framer-C2c3j .framer-styles-preset-1mkny7q.rich-text-wrapper h3 { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-bold: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-italic: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, #0f172a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; --framer-text-wrap: balance; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-C2c3j .framer-styles-preset-1mkny7q:not(.rich-text-wrapper), .framer-C2c3j .framer-styles-preset-1mkny7q.rich-text-wrapper h3 { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-bold: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-family-italic: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, #0f172a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; --framer-text-wrap: balance; } }'];export const className=\"framer-C2c3j\";\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 (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,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 Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/G8FZBIufdcxDme09PKPy/SmoothScroll_Prod.js\";import NavigationNavigation from\"#framer/local/canvasComponent/adzXhjWKW/adzXhjWKW.js\";import ElementsFAQ from\"#framer/local/canvasComponent/AeFnBTGf7/AeFnBTGf7.js\";import ElementsListTag from\"#framer/local/canvasComponent/gj8IwY_Dj/gj8IwY_Dj.js\";import ElementsSocialProof from\"#framer/local/canvasComponent/gNnktBTXP/gNnktBTXP.js\";import ComponentsBox from\"#framer/local/canvasComponent/ky9I7UTxq/ky9I7UTxq.js\";import ComponentsReview from\"#framer/local/canvasComponent/nuP83hLe9/nuP83hLe9.js\";import ElementsCursor from\"#framer/local/canvasComponent/QGXwbS2Gt/QGXwbS2Gt.js\";import ElementsArrow from\"#framer/local/canvasComponent/VKR10wKG4/VKR10wKG4.js\";import ComponentsFooter from\"#framer/local/canvasComponent/wEyi6INNi/wEyi6INNi.js\";import ComponentsPricingCard from\"#framer/local/canvasComponent/xjZCbgFcg/xjZCbgFcg.js\";import ElementsButton from\"#framer/local/canvasComponent/XNhmR7u5R/XNhmR7u5R.js\";import ComponentsSectionHeading from\"#framer/local/canvasComponent/ZFTu0Io5O/ZFTu0Io5O.js\";import*as sharedStyle3 from\"#framer/local/css/agHFDFZ94/agHFDFZ94.js\";import*as sharedStyle4 from\"#framer/local/css/j0p3vAPHv/j0p3vAPHv.js\";import*as sharedStyle1 from\"#framer/local/css/TiTn3K6pc/TiTn3K6pc.js\";import*as sharedStyle2 from\"#framer/local/css/Wkx6BbgUb/Wkx6BbgUb.js\";import*as sharedStyle from\"#framer/local/css/WY2cMZneb/WY2cMZneb.js\";import metadataProvider from\"#framer/local/webPageMetadata/bGV1hUG1I/bGV1hUG1I.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const ElementsListTagFonts=getFonts(ElementsListTag);const ElementsButtonFonts=getFonts(ElementsButton);const ElementsSocialProofFonts=getFonts(ElementsSocialProof);const ElementsArrowFonts=getFonts(ElementsArrow);const ContainerWithFX=withFX(Container);const EmbedFonts=getFonts(Embed);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ComponentsSectionHeadingFonts=getFonts(ComponentsSectionHeading);const ComponentsBoxFonts=getFonts(ComponentsBox);const PhosphorFonts=getFonts(Phosphor);const ComponentsReviewFonts=getFonts(ComponentsReview);const ElementsFAQFonts=getFonts(ElementsFAQ);const ComponentsPricingCardFonts=getFonts(ComponentsPricingCard);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const ComponentsFooterFonts=getFonts(ComponentsFooter);const NavigationNavigationFonts=getFonts(NavigationNavigation);const NavigationNavigationWithVariantAppearEffect=withVariantAppearEffect(NavigationNavigation);const ElementsCursorFonts=getFonts(ElementsCursor);const breakpoints={hEahs4EIM:\"(max-width: 809px)\",Jh0mN8zYc:\"(min-width: 1200px)\",NV0IMzftj:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-12Wpz\";const variantClassNames={hEahs4EIM:\"framer-v-1oi2du7\",Jh0mN8zYc:\"framer-v-v8561\",NV0IMzftj:\"framer-v-1kt05l2\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition1={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:-8,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:8,y:8};const transition2={delay:.8,duration:2.8,ease:[.44,0,0,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const animation3={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition3={damping:40,delay:.05,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation3,threshold:1,tokenization:\"character\",transition:transition3,trigger:\"onInView\",type:\"appear\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"Jh0mN8zYc\",Phone:\"hEahs4EIM\",Tablet:\"NV0IMzftj\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Jh0mN8zYc\"};};const cursor={component:ElementsCursor,variant:\"o5wlpgpOf\"};const transition4={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const cursor1={component:ElementsCursor,transition:transition4,variant:\"EvQG79ola\"};const cursor2={component:ElementsCursor,variant:\"EvQG79ola\"};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,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"igeIoXNo4\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"CCAdFOUOr\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"i112AIhwN\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"U3EI1jocC\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"fArNphS7g\");const ref5=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"hEahs4EIM\")return false;return true;};const elementId5=useRouteElementId(\"GgbWgIwDQ\");const ref6=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"NV0IMzftj\",\"hEahs4EIM\"].includes(baseVariant))return false;return true;};const elementId6=useRouteElementId(\"l4gA2wCI9\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"YDOvb_rkf\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"k8djHDUAH\");const ref9=React.useRef(null);const router=useRouter();const elementId9=useRouteElementId(\"EPH1G8Tx4\");const ref10=React.useRef(null);const elementId10=useRouteElementId(\"H0pXPVP7Z\");const ref11=React.useRef(null);const elementId11=useRouteElementId(\"WqUrGkXSA\");const ref12=React.useRef(null);const elementId12=useRouteElementId(\"xY8sZFGMu\");const ref13=React.useRef(null);const elementId13=useRouteElementId(\"t6jMAJRU3\");const ref14=React.useRef(null);const elementId14=useRouteElementId(\"Z6TNYnWLM\");const ref15=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"hEahs4EIM\")return true;return false;};const elementId15=useRouteElementId(\"MwQXBHHw4\");const ref16=React.useRef(null);const elementId16=useRouteElementId(\"AqlDPiIfZ\");const ref17=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if([\"NV0IMzftj\",\"hEahs4EIM\"].includes(baseVariant))return true;return false;};const elementId17=useRouteElementId(\"mqNdWyq95\");const ref18=React.useRef(null);const elementId18=useRouteElementId(\"LHCDgTTaF\");const ref19=React.useRef(null);const elementId19=useRouteElementId(\"nPMIFttVh\");const ref20=React.useRef(null);useCustomCursors({\"104031f\":cursor,\"1nfxejd\":cursor2,\"3nvunu\":cursor1});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Jh0mN8zYc\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{\"data-framer-cursor\":undefined},NV0IMzftj:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-v8561\",className),\"data-framer-cursor\":\"104031f\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uad555-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hkPSIMEZi\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"hkPSIMEZi\",intensity:10,layoutId:\"hkPSIMEZi\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5iq3yv\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d4ttwf\",\"data-framer-name\":\"HERO\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mn7tnw\",\"data-framer-name\":\"Wrapper\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xzxf7b\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1knksnc\",\"data-framer-name\":\"Objection Handles\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d3hdwp-container\",nodeId:\"C8UbOWztc\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{variant:\"x1untB8Vy\"}},children:/*#__PURE__*/_jsx(ElementsListTag,{height:\"100%\",id:\"C8UbOWztc\",layoutId:\"C8UbOWztc\",sQscA_Tni:\"Megaphone\",variant:\"SHJKXetpc\",width:\"100%\",XLARPTAH0:\"Attention Ladies\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10z2nqt\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtNzAw\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(58, 45, 40)\",\"--framer-text-transform\":\"capitalize\"},children:\"The secret 3-Steps system ladies like you are using to make $5-$10k/mo with Instagram\"})})},NV0IMzftj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtNzAw\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(58, 45, 40)\",\"--framer-text-transform\":\"capitalize\"},children:\"The secret 3-Steps system ladies like you are using to make $5-$10k/mo with Instagram\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtNzAw\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(58, 45, 40)\",\"--framer-text-transform\":\"capitalize\"},children:\"The secret 3-Steps system ladies like you are using to make $5-$10k/mo with Instagram\"})}),className:\"framer-gjd5yo\",\"data-framer-name\":\"Title\",fonts:[\"GF;Libre Baskerville-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGlicmUgQmFza2VydmlsbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.8)\"},children:\"For Woman aged 20-55\"})}),className:\"framer-p7a4ew\",\"data-framer-name\":\"Byline\",fonts:[\"GF;Libre Baskerville-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-htcs3v\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10lsxvf\",\"data-framer-name\":\"Button Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v62636-container\",nodeId:\"Jbcmr3mGY\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(ElementsButton,{bLFNckaxt:\"3nvunu\",cSvXw0UMF:\"https://calendly.com/viktoria-jagini/discovery-call\",cYr9gJc6L:\"ArrowRight\",height:\"100%\",id:\"Jbcmr3mGY\",kJmFsDdbK:\"start your story\",layoutId:\"Jbcmr3mGY\",m_edh05V5:0,variant:\"ZUQVwPrUw\",vX04FnKFX:\"regular\",width:\"100%\",yVMvYjPHf:true})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h6xwpq-container\",nodeId:\"GfqCSSFMR\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{scale:.9},children:/*#__PURE__*/_jsx(ElementsSocialProof,{geBX2GIlC:addImageAlt({src:\"https://framerusercontent.com/images/8K12aqH8oxNw42PFJJpFVzBQg4k.png\",srcSet:\"https://framerusercontent.com/images/8K12aqH8oxNw42PFJJpFVzBQg4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/8K12aqH8oxNw42PFJJpFVzBQg4k.png 532w\"},\"\"),height:\"100%\",hWXwKyjTJ:addImageAlt({src:\"https://framerusercontent.com/images/OjBxCuPcQw3GKuDoOCkViTB9S4.png\"},\"\"),id:\"GfqCSSFMR\",ju_l_vjHi:addImageAlt({src:\"https://framerusercontent.com/images/1FiljhbDfj4NXVYOtIB6viI4560.png\",srcSet:\"https://framerusercontent.com/images/1FiljhbDfj4NXVYOtIB6viI4560.png?scale-down-to=512 512w,https://framerusercontent.com/images/1FiljhbDfj4NXVYOtIB6viI4560.png 538w\"},\"\"),layoutId:\"GfqCSSFMR\",OrmuH3p0o:addImageAlt({src:\"https://framerusercontent.com/images/BAChwWqNwVa2eihyMdfZc6rIuvo.png\",srcSet:\"https://framerusercontent.com/images/BAChwWqNwVa2eihyMdfZc6rIuvo.png?scale-down-to=512 512w,https://framerusercontent.com/images/BAChwWqNwVa2eihyMdfZc6rIuvo.png 532w\"},\"\"),SXDMm9Q7a:\"100+ Happy Clients\",variant:\"WQey8pMO7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{style:{rotate:-99,rotateX:180,scale:.6}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:.2,className:\"framer-101rn6t-container\",nodeId:\"NlcxqFL6v\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{rotate:-99,rotateX:180,scale:.8},children:/*#__PURE__*/_jsx(ElementsArrow,{height:\"100%\",id:\"NlcxqFL6v\",layoutId:\"NlcxqFL6v\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:32,rotateY:0,scale:1.4,skewX:0,skewY:0,x:0,y:40}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,animate:animation1,className:\"framer-7meatc\",\"data-border\":true,\"data-framer-appear-id\":\"7meatc\",\"data-framer-name\":\"Video Wrapper\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lweq3d-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rjUkPedW5\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{html:'<div style=\"width: 100%; max-width: 600px; aspect-ratio: 16 / 9; overflow: hidden;\">\\n  <video \\n    src=\"https://video.gumlet.io/67db97070f9569535c06b8fa/67f36c457ee0a66d6b475ab9/download.mp4\" \\n    controls \\n    playsinline \\n    preload=\"metadata\" \\n    style=\"width: 100%; height: 100%; object-fit: contain; display: block;\">\\n  </video>\\n</div>\\n',type:\"html\"}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div style=\"position:relative;aspect-ratio:16/9;\">\\n      <iframe \\n            loading=\"lazy\" title=\"Gumlet video player\"\\n            src=\"https://play.gumlet.io/embed/67f36c457ee0a66d6b475ab9?preload=false&autoplay=false&loop=false&background=false&disable_player_controls=false\"\\n            style=\"border:none; position: absolute; top: 0; left: 0; height: 100%; width: 100%;\"\\n          allow=\"accelerometer; gyroscope; autoplay; encrypted-media; picture-in-picture; fullscreen;\">\\n          </iframe>\\n    </div>\\n',id:\"rjUkPedW5\",layoutId:\"rjUkPedW5\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://video.gumlet.io/67db97070f9569535c06b8fa/67f36c457ee0a66d6b475ab9/download.mp4\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{style:{rotate:-73,scale:.6}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-izrzvu-container\",nodeId:\"ZImvEgSeb\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{rotate:-73},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ElementsArrow,{height:\"100%\",id:\"ZImvEgSeb\",layoutId:\"ZImvEgSeb\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16hgcd0\",\"data-framer-name\":\"WHO\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gbog8q\",\"data-framer-name\":\"Top Wrapper\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 312px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5myp6s-container\",nodeId:\"WUUbCgPKZ\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(ComponentsSectionHeading,{height:\"100%\",I6DOV1pRR:\"specifically designed for\",id:\"WUUbCgPKZ\",layoutId:\"WUUbCgPKZ\",style:{width:\"100%\"},tuKQBbiAw:\"\",variant:\"r8oLg0_Wq\",width:\"100%\",WTCErdx1k:\"Made for you\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:198,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 312px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gk0f25-container\",nodeId:\"WG4Ycdyze\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NV0IMzftj:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentsBox,{b5lyZZ_GG:true,dkLbwmgIn:\"...wants to earn \\xa32-\\xa35k/month anonymously to fund her goals and live life on her terms\",height:\"100%\",id:\"WG4Ycdyze\",layoutId:\"WG4Ycdyze\",owOqFMHta:\"Ambitious Dreamer\",style:{width:\"100%\"},variant:\"pdh9dpb50\",width:\"100%\",xMNpTyGY5:\"Palette\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e9ecfq\",\"data-framer-name\":\"Bottom Wrapper\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{height:0,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 152px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:198,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 320px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ksios8-container\",nodeId:\"HIWvUdFj6\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NV0IMzftj:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentsBox,{b5lyZZ_GG:true,dkLbwmgIn:\"...looking for a simple way to earn extra money while juggling family responsibilities\",height:\"100%\",id:\"HIWvUdFj6\",layoutId:\"HIWvUdFj6\",owOqFMHta:\"Busy Caregiver\",style:{width:\"100%\"},variant:\"pdh9dpb50\",width:\"100%\",xMNpTyGY5:\"Briefcase\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{height:0,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 152px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:198,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 320px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lrwgki-container\",nodeId:\"bsE2KYdHV\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NV0IMzftj:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentsBox,{b5lyZZ_GG:true,dkLbwmgIn:\"...craves a flexible, private income stream to escape the 9-to-5 grind\",height:\"100%\",id:\"bsE2KYdHV\",layoutId:\"bsE2KYdHV\",owOqFMHta:\"Freedom Seeker\",style:{width:\"100%\"},variant:\"pdh9dpb50\",width:\"100%\",xMNpTyGY5:\"FolderNotch\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{style:{rotate:-90,rotateX:180,scale:.6}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y4hgx-container\",nodeId:\"tPxau4UOA\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{rotate:-90,rotateX:180},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ElementsArrow,{height:\"100%\",id:\"tPxau4UOA\",layoutId:\"tPxau4UOA\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e1djbv\",\"data-framer-name\":\"PSR Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-189diex\",\"data-framer-name\":\"PROBLEM\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ituvi\",\"data-framer-name\":\"Content Wrapper\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jwvdzf-container\",nodeId:\"TyopFLX1y\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(ComponentsSectionHeading,{height:\"100%\",I6DOV1pRR:\"I get it... You want to earn money online but hate the idea of showing your face\",id:\"TyopFLX1y\",layoutId:\"TyopFLX1y\",style:{width:\"100%\"},tuKQBbiAw:\"You\u2019ve seen others making thousands on Instagram, but the thought of putting yourself out there feels overwhelming\u2014or just not your style\",variant:\"r8oLg0_Wq\",width:\"100%\",WTCErdx1k:\"The Problem\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xnm1h5\",\"data-border\":true,\"data-framer-name\":\"Truth Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-44kubm\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15frzuz-container\",\"data-framer-name\":\"Icon\",isAuthoredByUser:true,isModuleExternal:true,name:\"Icon\",nodeId:\"Ga3cgA_AC\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d9cd9cae-03fa-4545-9f6b-ea22961aaa5d, rgb(51, 51, 51))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Warning\",id:\"Ga3cgA_AC\",layoutId:\"Ga3cgA_AC\",mirrored:false,name:\"Icon\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18qmylf\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mkny7q\",\"data-styles-preset\":\"WY2cMZneb\",children:\"You\u2019re tired of scrolling endlessly for answers, unsure of where to start or who to trust\u2026\"})}),className:\"framer-v1qx4o\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ybu4hp\",\"data-styles-preset\":\"TiTn3K6pc\",children:\"What if you could create a profitable Instagram page, stay completely anonymous, and earn \\xa32-\\xa35k/month? This course shows you exactly how to do it, step-by-step. No selfies. No personal branding. Just results\"})}),className:\"framer-1g8aa2j\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:\"76px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5aw6x9-container hidden-1oi2du7\",nodeId:\"ErVI6KvLj\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{rotate:-59,scale:.7},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ElementsArrow,{height:\"100%\",id:\"ErVI6KvLj\",layoutId:\"ErVI6KvLj\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1exe3ri\",\"data-framer-name\":\"SOLUTION\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11ds9bw-container\",nodeId:\"yyUfH0vjE\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(ComponentsSectionHeading,{height:\"100%\",I6DOV1pRR:\"Introducing: IBA | Your Secret to Earning \\xa32-\\xa35k/Month Anonymously on Instagram\",id:\"yyUfH0vjE\",layoutId:\"yyUfH0vjE\",style:{width:\"100%\"},tuKQBbiAw:\"Imagine building a profitable Instagram theme page without ever showing your face or revealing your personal life. This course is your blueprint to success\u2014designed for women who want to create, grow, and monetize Instagram pages while staying behind the scenes\",variant:\"r8oLg0_Wq\",width:\"100%\",WTCErdx1k:\"The solution\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{style:{rotate:-90,scale:.6}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-96iik7-container\",nodeId:\"SJdLiwkSH\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{rotate:-90,rotateX:180,scale:1.2},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ElementsArrow,{height:\"100%\",id:\"SJdLiwkSH\",layoutId:\"SJdLiwkSH\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t091cw\",\"data-framer-name\":\"Content Wrapper\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jah8j7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 152px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:198,width:`max(((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.64 - 64px) / 2, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-20,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-13k6q0d-container\",nodeId:\"IT1FY1z8S\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NV0IMzftj:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentsBox,{b5lyZZ_GG:true,dkLbwmgIn:\"Learn how to grow a thriving Instagram page without showing your face or using personal branding\",height:\"100%\",id:\"IT1FY1z8S\",layoutId:\"IT1FY1z8S\",owOqFMHta:\"Anonymous Instagram Growth\",style:{width:\"100%\"},variant:\"pdh9dpb50\",width:\"100%\",xMNpTyGY5:\"ArrowUpRight\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 152px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:198,width:`max(((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.64 - 64px) / 2, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-20,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rcvlri-container\",nodeId:\"uW9VXVVtd\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{variant:\"pdh9dpb50\"},NV0IMzftj:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentsBox,{b5lyZZ_GG:true,dkLbwmgIn:\"Build a business that lets you stay behind the scenes while scaling your income to \\xa32-\\xa35k/month\",height:\"100%\",id:\"uW9VXVVtd\",layoutId:\"uW9VXVVtd\",owOqFMHta:\"Private & Scalable\",style:{width:\"100%\"},variant:\"kfmSDQsq7\",width:\"100%\",xMNpTyGY5:\"PaintBrush\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 152px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:198,width:`max(((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.64 - 64px) / 2, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-20,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fuxsnt-container\",nodeId:\"ufL1xHPOy\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NV0IMzftj:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentsBox,{b5lyZZ_GG:true,dkLbwmgIn:\"Create engaging, high-quality content that resonates with your audience\u2014no need for personal photos or videos\",height:\"100%\",id:\"ufL1xHPOy\",layoutId:\"ufL1xHPOy\",owOqFMHta:\"Simple Content Creation\",style:{width:\"100%\"},variant:\"pdh9dpb50\",width:\"100%\",xMNpTyGY5:\"Infinity\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{background:{alt:\"Benefits Image\",fit:\"fit\",pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`,src:\"https://framerusercontent.com/images/UTbNO0WB15xCxNpZAa8Vg7SYQ.jpg\",srcSet:\"https://framerusercontent.com/images/UTbNO0WB15xCxNpZAa8Vg7SYQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UTbNO0WB15xCxNpZAa8Vg7SYQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UTbNO0WB15xCxNpZAa8Vg7SYQ.jpg 1080w\"}},NV0IMzftj:{background:{alt:\"Benefits Image\",backgroundSize:1,fit:\"tile\",pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"top\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 152px) / 2, 50px) * 2 + 32px)`,src:\"https://framerusercontent.com/images/UTbNO0WB15xCxNpZAa8Vg7SYQ.jpg\",srcSet:\"https://framerusercontent.com/images/UTbNO0WB15xCxNpZAa8Vg7SYQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UTbNO0WB15xCxNpZAa8Vg7SYQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UTbNO0WB15xCxNpZAa8Vg7SYQ.jpg 1080w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"Benefits Image\",fit:\"fit\",pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.36)`,src:\"https://framerusercontent.com/images/E6jWNSWZq1554vuzgYxHFL8bew.png\",srcSet:\"https://framerusercontent.com/images/E6jWNSWZq1554vuzgYxHFL8bew.png?scale-down-to=512 512w,https://framerusercontent.com/images/E6jWNSWZq1554vuzgYxHFL8bew.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/E6jWNSWZq1554vuzgYxHFL8bew.png 1080w\"},className:\"framer-l9wezz\",\"data-border\":true,\"data-framer-name\":\"Product Image\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,pixelHeight:1080,pixelWidth:1080,sizes:\"341px\",src:\"https://framerusercontent.com/images/7MNdcKVqq9hWU3GkCyOrWHeu588.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7MNdcKVqq9hWU3GkCyOrWHeu588.png?scale-down-to=512 512w,https://framerusercontent.com/images/7MNdcKVqq9hWU3GkCyOrWHeu588.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7MNdcKVqq9hWU3GkCyOrWHeu588.png 1080w\"},className:\"framer-asqvzw hidden-1kt05l2 hidden-1oi2du7\",\"data-framer-name\":\"3\"}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,pixelHeight:1080,pixelWidth:1080,sizes:\"334px\",src:\"https://framerusercontent.com/images/wZU7C0wniyFodrXocHgb0vOKA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/wZU7C0wniyFodrXocHgb0vOKA.png?scale-down-to=512 512w,https://framerusercontent.com/images/wZU7C0wniyFodrXocHgb0vOKA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wZU7C0wniyFodrXocHgb0vOKA.png 1080w\"},className:\"framer-6kykpv hidden-1kt05l2 hidden-1oi2du7\",\"data-framer-name\":\"2\",transformTemplate:transformTemplate2})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p8se0f\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 152px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:198,width:`max(((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.64 - 64px) / 2, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:20,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-4c83t0-container\",nodeId:\"dmmvYP04v\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{variant:\"pdh9dpb50\"},NV0IMzftj:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentsBox,{b5lyZZ_GG:true,dkLbwmgIn:\"Discover multiple ways to make money\u2014from affiliate marketing to sponsored posts\u2014without the pressure of self-promotion\",height:\"100%\",id:\"dmmvYP04v\",layoutId:\"dmmvYP04v\",owOqFMHta:\"Step-by-Step Monetization Blueprint\",style:{width:\"100%\"},variant:\"kfmSDQsq7\",width:\"100%\",xMNpTyGY5:\"FastForward\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 152px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:198,width:`max(((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.64 - 64px) / 2, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:20,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-sqoxnl-container\",nodeId:\"lvCNZ_XDm\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NV0IMzftj:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentsBox,{b5lyZZ_GG:true,dkLbwmgIn:\"Unlock growth strategies used by successful Instagram pages that attract followers and boost engagement, fast\",height:\"100%\",id:\"lvCNZ_XDm\",layoutId:\"lvCNZ_XDm\",owOqFMHta:\"Proven Growth Hacks\",style:{width:\"100%\"},variant:\"pdh9dpb50\",width:\"100%\",xMNpTyGY5:\"Devices\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 152px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:198,width:`max(((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.64 - 64px) / 2, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:20,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-153sfy-container\",nodeId:\"PA8q1T74J\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{variant:\"pdh9dpb50\"},NV0IMzftj:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentsBox,{b5lyZZ_GG:true,dkLbwmgIn:\"Access a network of like-minded women who are on the same journey, ready to cheer you on every step of the way\",height:\"100%\",id:\"PA8q1T74J\",layoutId:\"PA8q1T74J\",owOqFMHta:\"Supportive Community\",style:{width:\"100%\"},variant:\"kfmSDQsq7\",width:\"100%\",xMNpTyGY5:\"Code\"})})})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ybu4hp\",\"data-styles-preset\":\"TiTn3K6pc\",style:{\"--framer-text-alignment\":\"center\"},children:\"Build a profitable Instagram theme page without ever showing your face. This course gives you the exact steps to grow, monetize, and earn \\xa32-\\xa35k/month\u2014privately and on your own terms\"})}),className:\"framer-1wll5za\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cd6cv0\",\"data-framer-name\":\"RESULT\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5zkzej\",\"data-framer-name\":\"Content Wrapper\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sqnh6j\",\"data-framer-name\":\"Heading Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px) * 0.6232, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.67, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hnzh79-container\",nodeId:\"MXAv0Ca0d\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{variant:\"r8oLg0_Wq\"}},children:/*#__PURE__*/_jsx(ComponentsSectionHeading,{height:\"100%\",I6DOV1pRR:\"Alex's Journey to \\xa35k/Month on Instagram\",id:\"MXAv0Ca0d\",layoutId:\"MXAv0Ca0d\",style:{width:\"100%\"},tuKQBbiAw:\"From feeling overwhelmed and unsure how to get started on Instagram, Alex now runs a successful anonymous theme page, earning \\xa35k/month. With no personal branding or face photos, she\u2019s built a thriving online business that gives her the flexibility and freedom she craved\",variant:\"zy2fH2zoP\",width:\"100%\",WTCErdx1k:\"Result\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17h3910-container\",nodeId:\"MTYg9q84J\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(ElementsButton,{bLFNckaxt:\"3nvunu\",cSvXw0UMF:\"https://calendly.com/viktoria-jagini/discovery-call\",cYr9gJc6L:\"ArrowRight\",height:\"100%\",id:\"MTYg9q84J\",kJmFsDdbK:\"start your story\",layoutId:\"MTYg9q84J\",m_edh05V5:0,variant:\"ZUQVwPrUw\",vX04FnKFX:\"regular\",width:\"100%\",yVMvYjPHf:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px) * 0.3768)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:158,width:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.33)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9a79gu-container\",nodeId:\"Dgp5SoWIC\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{variant:\"APKBIOv8K\"}},children:/*#__PURE__*/_jsx(ComponentsReview,{ePtRxbBKH:\"Alex B\",height:\"100%\",id:\"Dgp5SoWIC\",layoutId:\"Dgp5SoWIC\",style:{width:\"100%\"},variant:\"Nkv18XVmU\",width:\"100%\",wmTcwD60X:\"IBA Member\",ZMdTlQSsb:\"I never thought it was possible to make money on Instagram without showing my face. This course gave me the confidence and tools to build a profitable theme page while staying completely anonymous. Within just three months, I was earning \\xa34k/month, and I\u2019m now scaling my business even further!\",Zqn6hBsPf:addImageAlt({src:\"https://framerusercontent.com/images/p7T38QHarcF7xv3rJRUmfD5p0.png\",srcSet:\"https://framerusercontent.com/images/p7T38QHarcF7xv3rJRUmfD5p0.png?scale-down-to=512 512w,https://framerusercontent.com/images/p7T38QHarcF7xv3rJRUmfD5p0.png 514w\"},\"\")})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{style:{rotate:-90,rotateX:180,scale:.6}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-7i1n1d-container\",nodeId:\"RzhuHLl0S\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{rotate:-90},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ElementsArrow,{height:\"100%\",id:\"RzhuHLl0S\",layoutId:\"RzhuHLl0S\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-78bms7\",\"data-framer-name\":\"TESTIMONIALS\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-143ivmq\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pbhxnm-container\",nodeId:\"TikiKfoyA\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(ComponentsSectionHeading,{height:\"100%\",I6DOV1pRR:\"Hear from more people like you\",id:\"TikiKfoyA\",layoutId:\"TikiKfoyA\",style:{width:\"100%\"},tuKQBbiAw:\"Description\",variant:\"r8oLg0_Wq\",width:\"100%\",WTCErdx1k:\"testimonials\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14q1jgp-container\",nodeId:\"wc5pcErFP\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(ElementsSocialProof,{geBX2GIlC:addImageAlt({src:\"https://framerusercontent.com/images/8K12aqH8oxNw42PFJJpFVzBQg4k.png\",srcSet:\"https://framerusercontent.com/images/8K12aqH8oxNw42PFJJpFVzBQg4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/8K12aqH8oxNw42PFJJpFVzBQg4k.png 532w\"},\"\"),height:\"100%\",hWXwKyjTJ:addImageAlt({src:\"https://framerusercontent.com/images/OjBxCuPcQw3GKuDoOCkViTB9S4.png\"},\"\"),id:\"wc5pcErFP\",ju_l_vjHi:addImageAlt({src:\"https://framerusercontent.com/images/1FiljhbDfj4NXVYOtIB6viI4560.png\",srcSet:\"https://framerusercontent.com/images/1FiljhbDfj4NXVYOtIB6viI4560.png?scale-down-to=512 512w,https://framerusercontent.com/images/1FiljhbDfj4NXVYOtIB6viI4560.png 538w\"},\"\"),layoutId:\"wc5pcErFP\",OrmuH3p0o:addImageAlt({src:\"https://framerusercontent.com/images/BAChwWqNwVa2eihyMdfZc6rIuvo.png\",srcSet:\"https://framerusercontent.com/images/BAChwWqNwVa2eihyMdfZc6rIuvo.png?scale-down-to=512 512w,https://framerusercontent.com/images/BAChwWqNwVa2eihyMdfZc6rIuvo.png 532w\"},\"\"),SXDMm9Q7a:\"100+ Happy Clients\",variant:\"WQey8pMO7\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gi68dn\",\"data-framer-name\":\"Testimonials Wrapper\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{background:{alt:\"\",fit:\"fill\",pixelHeight:734,pixelWidth:1278,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`,src:\"https://framerusercontent.com/images/Tl0D6vp3LI9qyvGs31vL0dBvzu0.jpg\",srcSet:\"https://framerusercontent.com/images/Tl0D6vp3LI9qyvGs31vL0dBvzu0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Tl0D6vp3LI9qyvGs31vL0dBvzu0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tl0D6vp3LI9qyvGs31vL0dBvzu0.jpg 1278w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:734,pixelWidth:1278,sizes:\"400px\",src:\"https://framerusercontent.com/images/Tl0D6vp3LI9qyvGs31vL0dBvzu0.jpg\",srcSet:\"https://framerusercontent.com/images/Tl0D6vp3LI9qyvGs31vL0dBvzu0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Tl0D6vp3LI9qyvGs31vL0dBvzu0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tl0D6vp3LI9qyvGs31vL0dBvzu0.jpg 1278w\"},className:\"framer-11vetz7\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{background:{alt:\"\",fit:\"fill\",pixelHeight:1673,pixelWidth:1178,positionX:\"center\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`,src:\"https://framerusercontent.com/images/NAqRWYSBeCqjUcghJySjabMR0Dk.jpg\",srcSet:\"https://framerusercontent.com/images/NAqRWYSBeCqjUcghJySjabMR0Dk.jpg?scale-down-to=1024 721w,https://framerusercontent.com/images/NAqRWYSBeCqjUcghJySjabMR0Dk.jpg 1178w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1673,pixelWidth:1178,positionX:\"center\",positionY:\"top\",sizes:\"400px\",src:\"https://framerusercontent.com/images/NAqRWYSBeCqjUcghJySjabMR0Dk.jpg\",srcSet:\"https://framerusercontent.com/images/NAqRWYSBeCqjUcghJySjabMR0Dk.jpg?scale-down-to=1024 721w,https://framerusercontent.com/images/NAqRWYSBeCqjUcghJySjabMR0Dk.jpg 1178w\"},className:\"framer-icwa3r\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{background:{alt:\"\",fit:\"fill\",pixelHeight:910,pixelWidth:1284,positionX:\"left\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`,src:\"https://framerusercontent.com/images/NewjivxzRsL3QVranFh987XXs.jpg\",srcSet:\"https://framerusercontent.com/images/NewjivxzRsL3QVranFh987XXs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NewjivxzRsL3QVranFh987XXs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NewjivxzRsL3QVranFh987XXs.jpg 1284w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:910,pixelWidth:1284,sizes:\"400px\",src:\"https://framerusercontent.com/images/NewjivxzRsL3QVranFh987XXs.jpg\",srcSet:\"https://framerusercontent.com/images/NewjivxzRsL3QVranFh987XXs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NewjivxzRsL3QVranFh987XXs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NewjivxzRsL3QVranFh987XXs.jpg 1284w\"},className:\"framer-s59hfg\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{background:{alt:\"\",fit:\"fill\",pixelHeight:795,pixelWidth:1284,positionX:\"18.3%\",positionY:\"48.1%\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`,src:\"https://framerusercontent.com/images/t2zlJVm82o5QlNTi3VGuWfxh04.jpg\",srcSet:\"https://framerusercontent.com/images/t2zlJVm82o5QlNTi3VGuWfxh04.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/t2zlJVm82o5QlNTi3VGuWfxh04.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/t2zlJVm82o5QlNTi3VGuWfxh04.jpg 1284w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:795,pixelWidth:1284,positionX:\"left\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/t2zlJVm82o5QlNTi3VGuWfxh04.jpg\",srcSet:\"https://framerusercontent.com/images/t2zlJVm82o5QlNTi3VGuWfxh04.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/t2zlJVm82o5QlNTi3VGuWfxh04.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/t2zlJVm82o5QlNTi3VGuWfxh04.jpg 1284w\"},className:\"framer-sbta59\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{background:{alt:\"\",fit:\"fill\",pixelHeight:860,pixelWidth:1284,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`,src:\"https://framerusercontent.com/images/J1aSJkTPtr8NU4VruYJwEIkjks.jpg\",srcSet:\"https://framerusercontent.com/images/J1aSJkTPtr8NU4VruYJwEIkjks.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/J1aSJkTPtr8NU4VruYJwEIkjks.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/J1aSJkTPtr8NU4VruYJwEIkjks.jpg 1284w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:860,pixelWidth:1284,sizes:\"400px\",src:\"https://framerusercontent.com/images/J1aSJkTPtr8NU4VruYJwEIkjks.jpg\",srcSet:\"https://framerusercontent.com/images/J1aSJkTPtr8NU4VruYJwEIkjks.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/J1aSJkTPtr8NU4VruYJwEIkjks.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/J1aSJkTPtr8NU4VruYJwEIkjks.jpg 1284w\"},className:\"framer-1brxl4d\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{background:{alt:\"\",fit:\"fit\",pixelHeight:1073,pixelWidth:1284,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`,src:\"https://framerusercontent.com/images/pLZcXF5tM7LTWMSeDgrqI7MeFTA.jpg\",srcSet:\"https://framerusercontent.com/images/pLZcXF5tM7LTWMSeDgrqI7MeFTA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pLZcXF5tM7LTWMSeDgrqI7MeFTA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pLZcXF5tM7LTWMSeDgrqI7MeFTA.jpg 1284w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1073,pixelWidth:1284,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/pLZcXF5tM7LTWMSeDgrqI7MeFTA.jpg\",srcSet:\"https://framerusercontent.com/images/pLZcXF5tM7LTWMSeDgrqI7MeFTA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pLZcXF5tM7LTWMSeDgrqI7MeFTA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pLZcXF5tM7LTWMSeDgrqI7MeFTA.jpg 1284w\"},className:\"framer-150aipv\"})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"TOvV8urbo\"},implicitPathVariables:undefined},{href:{webPageId:\"TOvV8urbo\"},implicitPathVariables:undefined},{href:{webPageId:\"TOvV8urbo\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fxja3e-container\",nodeId:\"vbNdsgi5D\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{cSvXw0UMF:resolvedLinks[2]},NV0IMzftj:{cSvXw0UMF:resolvedLinks[1],kJmFsDdbK:\"read more results\"}},children:/*#__PURE__*/_jsx(ElementsButton,{bLFNckaxt:\"3nvunu\",cSvXw0UMF:resolvedLinks[0],cYr9gJc6L:\"ArrowRight\",height:\"100%\",id:\"vbNdsgi5D\",kJmFsDdbK:\"read more\",layoutId:\"vbNdsgi5D\",m_edh05V5:0,variant:\"ZUQVwPrUw\",vX04FnKFX:\"regular\",width:\"100%\",yVMvYjPHf:true})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m1gnq7\",\"data-framer-name\":\"FAQ\",id:elementId9,ref:ref10,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jxasto\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.4)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aiwoum-container\",nodeId:\"NlqvgB6_m\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{variant:\"r8oLg0_Wq\"},NV0IMzftj:{variant:\"r8oLg0_Wq\"}},children:/*#__PURE__*/_jsx(ComponentsSectionHeading,{height:\"100%\",I6DOV1pRR:\"here's everything that you'll learn\",id:\"NlqvgB6_m\",layoutId:\"NlqvgB6_m\",style:{width:\"100%\"},tuKQBbiAw:\"\",variant:\"zy2fH2zoP\",width:\"100%\",WTCErdx1k:\"curriculum\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fitzcw\",id:elementId10,ref:ref11,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.6 - 40px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-18x5roy-container\",nodeId:\"tBiORKfCD\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{variant:\"dVYAKmTh5\"}},children:/*#__PURE__*/_jsx(ElementsFAQ,{AiyNM6EIW:\"module 1: welcome\",height:\"100%\",id:\"tBiORKfCD\",layoutId:\"tBiORKfCD\",PcoTO7nHk:\"-Welcome to Instagram Business academy\\n-How to use Skool\\n-My Goal for this program \\n-How the get the most out of this program\",style:{width:\"100%\"},variant:\"oLWj9R7Tj\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.6 - 40px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nmrcmk-container\",nodeId:\"sOeaNX5hM\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ElementsFAQ,{AiyNM6EIW:\"module 2: Your journey from zero to hero\",height:\"100%\",id:\"sOeaNX5hM\",layoutId:\"sOeaNX5hM\",PcoTO7nHk:\"-Transforming your journey \\n-Personal Growth and development\\n-The ultimate formula to success\\n-Tools to manage Business & Personal life\",style:{width:\"100%\"},variant:\"dVYAKmTh5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.6 - 40px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-ntozr2-container\",nodeId:\"aBVSyEJtZ\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ElementsFAQ,{AiyNM6EIW:\"module 3: mindset\",height:\"100%\",id:\"aBVSyEJtZ\",layoutId:\"aBVSyEJtZ\",PcoTO7nHk:\"-Why is your mindset important\\n-Workflow theme page\\n-Affirmation Guide\\n-Bossbabe Routine\\n-Books you should read\\n-The 7 layers of purpose \\n-14-day identity transformation workbook\",style:{width:\"100%\"},variant:\"dVYAKmTh5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.6 - 40px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xu5x9v-container\",nodeId:\"PryYcCyvx\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ElementsFAQ,{AiyNM6EIW:\"module 4A: instagram theme pages\",height:\"100%\",id:\"PryYcCyvx\",layoutId:\"PryYcCyvx\",PcoTO7nHk:\"-Overview of your journey as a theme page owner:\\n-The power of Instagram Theme Pages\\n-How to choose a winning niche\\n-The perfect search engine optimization\\n -Market Research\\n -Content Research\\n-How to craft your perfect bio\\n-Logo and feed design\\n-Hashtags\\n-Captions\\n-The analysis of your market & content research\\n-Where and how to find viral content\\n-Developing a bulletproof Content strategy\\n-Stories\",style:{width:\"100%\"},variant:\"dVYAKmTh5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.6 - 40px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fivbec-container\",nodeId:\"BJmze70Ro\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ElementsFAQ,{AiyNM6EIW:\"module 4B: content creation\",height:\"100%\",id:\"BJmze70Ro\",layoutId:\"BJmze70Ro\",PcoTO7nHk:\"-6-8 Week Strategy\\n-How to create a reel 101:\\n-The importance of original content \\n-Original Reel & audio\\n-Create content on capcut like a pro\\n-Capcut tutorial start - finish  \\n-Edit Reels in Canva & capcut\\n-Capcut Rebrand - Logo - Captions\\n-CapCut Account name same place each timel\\n-CapCut logo design & placement\\n-Instagram Audio Sound - Control Panel\\n-Instagram Reel creation with text & audio\\n-IG- Saving Reel -Saving Audio & Uploading w_ Audio\\n-Capcut clip edits w_filter\\n-How to attract sounds on CapCut\",style:{width:\"100%\"},variant:\"dVYAKmTh5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.6 - 40px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-xj77c5-container\",nodeId:\"YNz8HrlGk\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ElementsFAQ,{AiyNM6EIW:\"module 5: Growth and monetization\",height:\"100%\",id:\"YNz8HrlGk\",layoutId:\"YNz8HrlGk\",PcoTO7nHk:\"-HTN Strategy\\n-The power of early engagement:\\n-The repost strategy\\n-The shout-out strategy\\n-The paid promotion strategy\\n-The unicorn strategy\",style:{width:\"100%\"},variant:\"dVYAKmTh5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.6 - 40px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1br4jcn-container\",nodeId:\"bDALUuv2K\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ElementsFAQ,{AiyNM6EIW:\"module 6: monetization\",height:\"100%\",id:\"bDALUuv2K\",layoutId:\"bDALUuv2K\",PcoTO7nHk:\"-How to grow your IG page:\\n-Monetize your Instagram Theme Page\\n-Different ways to monetize your theme page\\n-How to automate & scale your IG Theme Page\\n-Paid Promo Content and Captions\",style:{width:\"100%\"},variant:\"dVYAKmTh5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.6 - 40px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gubs7w-container\",nodeId:\"HgDRshMIU\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ElementsFAQ,{AiyNM6EIW:\"module 7: personal branding\",height:\"100%\",id:\"HgDRshMIU\",layoutId:\"HgDRshMIU\",PcoTO7nHk:\"-Finding Your Niche\\n-Your Ideal client\\n-Crafting your offer\\n-IG Foundation Set Up\\n-Engagement Strategy\\n-Create your Email List\\n-Your Workflow \",style:{width:\"100%\"},variant:\"dVYAKmTh5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.6 - 40px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-c87cq2-container\",nodeId:\"fP3EoqKCL\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ElementsFAQ,{AiyNM6EIW:\"module 8: content\",height:\"100%\",id:\"fP3EoqKCL\",layoutId:\"fP3EoqKCL\",PcoTO7nHk:\"-Create Content as a Brand\\n-Never Run out of Content Ideas Again \\n-1 Topic \\n-18 Viral Videos \",style:{width:\"100%\"},variant:\"dVYAKmTh5\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dlleld\",\"data-framer-name\":\"TESTIMONIALS\",id:elementId11,ref:ref12,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wthct3\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19segyk-container\",nodeId:\"hzrhS11VN\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(ComponentsSectionHeading,{height:\"100%\",I6DOV1pRR:\"Hear from more people like you\",id:\"hzrhS11VN\",layoutId:\"hzrhS11VN\",style:{width:\"100%\"},tuKQBbiAw:\"Description\",variant:\"r8oLg0_Wq\",width:\"100%\",WTCErdx1k:\"testimonials\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s4gud2-container\",nodeId:\"AdtVcpM31\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(ElementsSocialProof,{geBX2GIlC:addImageAlt({src:\"https://framerusercontent.com/images/8K12aqH8oxNw42PFJJpFVzBQg4k.png\",srcSet:\"https://framerusercontent.com/images/8K12aqH8oxNw42PFJJpFVzBQg4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/8K12aqH8oxNw42PFJJpFVzBQg4k.png 532w\"},\"\"),height:\"100%\",hWXwKyjTJ:addImageAlt({src:\"https://framerusercontent.com/images/OjBxCuPcQw3GKuDoOCkViTB9S4.png\"},\"\"),id:\"AdtVcpM31\",ju_l_vjHi:addImageAlt({src:\"https://framerusercontent.com/images/1FiljhbDfj4NXVYOtIB6viI4560.png\",srcSet:\"https://framerusercontent.com/images/1FiljhbDfj4NXVYOtIB6viI4560.png?scale-down-to=512 512w,https://framerusercontent.com/images/1FiljhbDfj4NXVYOtIB6viI4560.png 538w\"},\"\"),layoutId:\"AdtVcpM31\",OrmuH3p0o:addImageAlt({src:\"https://framerusercontent.com/images/BAChwWqNwVa2eihyMdfZc6rIuvo.png\",srcSet:\"https://framerusercontent.com/images/BAChwWqNwVa2eihyMdfZc6rIuvo.png?scale-down-to=512 512w,https://framerusercontent.com/images/BAChwWqNwVa2eihyMdfZc6rIuvo.png 532w\"},\"\"),SXDMm9Q7a:\"100+ Happy Clients\",variant:\"WQey8pMO7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12f2h6z\",\"data-framer-name\":\"Testimonials Wrapper\",id:elementId12,ref:ref13,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-99vzui-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nSuk9kuSU\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{html:'<!DOCTYPE html>\\n<html lang=\"en\">\\n<head>\\n    <meta charset=\"UTF-8\">\\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\\n    <title>Vimeo Video Slider</title>\\n    <style>\\n        html, body {\\n            margin: 0;\\n            padding: 0;\\n            width: 100%;\\n            height: 100%;\\n            overflow: hidden; /* Entfernt Scrollen */\\n        }\\n        body {\\n            font-family: Arial, sans-serif;\\n            display: flex;\\n            justify-content: center;\\n            align-items: center;\\n            background: #000;\\n        }\\n        .slider {\\n            width: 100%;\\n            height: 100%;\\n            position: relative;\\n            overflow: hidden;\\n        }\\n        .slider-wrapper {\\n            display: flex;\\n            height: 100%;\\n            transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);\\n        }\\n        .slider iframe {\\n            flex-shrink: 0;\\n            width: 100%;\\n            height: 100%;\\n            border: none;\\n            background: #000;\\n        }\\n        .arrow {\\n            position: absolute;\\n            top: 50%;\\n            transform: translateY(-50%);\\n            background: rgba(0, 0, 0, 0.5);\\n            color: white;\\n            border: none;\\n            font-size: 32px;\\n            padding: 15px;\\n            cursor: pointer;\\n            z-index: 10;\\n            border-radius: 50%;\\n        }\\n        .arrow.left {\\n            left: 20px;\\n        }\\n        .arrow.right {\\n            right: 20px;\\n        }\\n    </style>\\n</head>\\n<body>\\n    <div class=\"slider\">\\n        <button class=\"arrow left\" onclick=\"moveSlide(-1)\">&#8592;</button>\\n        <div class=\"slider-wrapper\" id=\"sliderWrapper\">\\n            <iframe src=\"https://player.vimeo.com/video/1040720778?autoplay=0&loop=0&title=0&byline=0&portrait=0\" title=\"Video 1\"></iframe>\\n            <iframe src=\"https://player.vimeo.com/video/914164447?autoplay=0&loop=0&title=0&byline=0&portrait=0\" title=\"Video 2\"></iframe>\\n            <iframe src=\"https://player.vimeo.com/video/914172578?autoplay=0&loop=0&title=0&byline=0&portrait=0\" title=\"Video 3\"></iframe>\\n            <iframe src=\"https://player.vimeo.com/video/914168100?autoplay=0&loop=0&title=0&byline=0&portrait=0\" title=\"Video 4\"></iframe>\\n            <iframe src=\"https://player.vimeo.com/video/914171531?autoplay=0&loop=0&title=0&byline=0&portrait=0\" title=\"Video 5\"></iframe>\\n        </div>\\n        <button class=\"arrow right\" onclick=\"moveSlide(1)\">&#8594;</button>\\n    </div>\\n\\n    <script>\\n        let currentIndex = 0;\\n\\n        function moveSlide(direction) {\\n            const sliderWrapper = document.getElementById(\\'sliderWrapper\\');\\n            const totalSlides = sliderWrapper.children.length;\\n            const slideWidth = sliderWrapper.children[0].getBoundingClientRect().width;\\n            currentIndex += direction;\\n\\n            if (currentIndex < 0) {\\n                currentIndex = totalSlides - 1;\\n            } else if (currentIndex >= totalSlides) {\\n                currentIndex = 0;\\n            }\\n\\n            const offset = -currentIndex * slideWidth;\\n            sliderWrapper.style.transform = `translateX(${offset}px)`;\\n        }\\n    </script>\\n</body>\\n</html>\\n'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!DOCTYPE html>\\n<html lang=\"en\">\\n<head>\\n    <meta charset=\"UTF-8\">\\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\\n    <title>Vimeo Video Slider</title>\\n    <style>\\n        body {\\n            font-family: Arial, sans-serif;\\n            margin: 0;\\n            padding: 0;\\n            display: flex;\\n            justify-content: center;\\n            align-items: center;\\n            height: 100vh;\\n            background: #fff;\\n        }\\n        .slider {\\n            width: 90%;\\n            overflow: hidden;\\n            position: relative;\\n        }\\n        .slider-wrapper {\\n            display: flex;\\n            transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);\\n        }\\n        .slider iframe {\\n            flex-shrink: 0;\\n            width: 100%;\\n            height: 960px;\\n            border: none;\\n            background: #fff;\\n        }\\n        .arrow {\\n            position: absolute;\\n            top: 50%;\\n            transform: translateY(-50%);\\n            background: rgba(0, 0, 0, 0.5);\\n            color: white;\\n            border: none;\\n            font-size: 32px;\\n            padding: 15px;\\n            cursor: pointer;\\n            z-index: 10;\\n            border-radius: 50%;\\n        }\\n        .arrow.left {\\n            left: 20px;\\n        }\\n        .arrow.right {\\n            right: 20px;\\n        }\\n    </style>\\n</head>\\n<body>\\n    <div class=\"slider\">\\n        <button class=\"arrow left\" onclick=\"moveSlide(-1)\">&#8592;</button>\\n        <div class=\"slider-wrapper\" id=\"sliderWrapper\">\\n            <iframe src=\"https://player.vimeo.com/video/1040720778?autoplay=0&loop=0&title=0&byline=0&portrait=0\" title=\"Video 1\"></iframe>\\n            <iframe src=\"https://player.vimeo.com/video/914164447?autoplay=0&loop=0&title=0&byline=0&portrait=0\" title=\"Video 2\"></iframe>\\n            <iframe src=\"https://player.vimeo.com/video/914172578?autoplay=0&loop=0&title=0&byline=0&portrait=0\" title=\"Video 5\"></iframe>\\n            <iframe src=\"https://player.vimeo.com/video/914168100?autoplay=0&loop=0&title=0&byline=0&portrait=0\" title=\"Video 4\"></iframe>\\n            <iframe src=\"https://player.vimeo.com/video/914171531?autoplay=0&loop=0&title=0&byline=0&portrait=0\" title=\"Video 3\"></iframe>\\n        </div>\\n        <button class=\"arrow right\" onclick=\"moveSlide(1)\">&#8594;</button>\\n    </div>\\n\\n    <script>\\n        let currentIndex = 0;\\n\\n        function moveSlide(direction) {\\n            const sliderWrapper = document.getElementById(\\'sliderWrapper\\');\\n            const totalSlides = sliderWrapper.children.length;\\n            const slideWidth = sliderWrapper.children[0].getBoundingClientRect().width;\\n            currentIndex += direction;\\n\\n            if (currentIndex < 0) {\\n                currentIndex = totalSlides - 1;\\n            } else if (currentIndex >= totalSlides) {\\n                currentIndex = 0;\\n            }\\n\\n            const offset = -currentIndex * slideWidth; // Move by the width of one slide\\n            sliderWrapper.style.transform = `translateX(${offset}px)`;\\n        }\\n    </script>\\n</body>\\n</html>\\n',id:\"nSuk9kuSU\",layoutId:\"nSuk9kuSU\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1thnuyb\",\"data-framer-name\":\"PRICING\",id:elementId13,ref:ref14,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jhp2by\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 960px)`},NV0IMzftj:{width:`min(${componentViewport?.width||\"100vw\"} - 120px, 960px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:`min(${componentViewport?.width||\"100vw\"} - 240px, 960px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yfyijt-container\",nodeId:\"BDvERFRQD\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(ComponentsSectionHeading,{height:\"100%\",I6DOV1pRR:\"bold price offer\",id:\"BDvERFRQD\",layoutId:\"BDvERFRQD\",style:{width:\"100%\"},tuKQBbiAw:\"description\",variant:\"r8oLg0_Wq\",width:\"100%\",WTCErdx1k:\"pricing\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-194c05p hidden-1oi2du7\",\"data-framer-name\":\"Pricing Wrapper\",id:elementId14,ref:ref15,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"w5vnw_IGC\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NV0IMzftj:{height:671,width:`calc(min(${componentViewport?.width||\"100vw\"} - 120px, 960px) / 1.411)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:522,width:\"960px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-65q82g-container\",nodeId:\"hTvL3zclk\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NV0IMzftj:{style:{width:\"100%\"},we5VmgciF:undefined}},children:/*#__PURE__*/_jsx(ComponentsPricingCard,{height:\"100%\",id:\"hTvL3zclk\",layoutId:\"hTvL3zclk\",pDVF3BWxr:\"$997\",style:{height:\"100%\",width:\"100%\"},variant:\"DgJkqo2oX\",we5VmgciF:resolvedLinks1[0],width:\"100%\",xsaIyDoJv:\"3nvunu\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14p4qbl\",\"data-framer-name\":\"Logos Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c0gt6a-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zxNIiGdYL\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:false},gap:32,height:\"100%\",hoverFactor:1,id:\"zxNIiGdYL\",layoutId:\"zxNIiGdYL\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j0uvzq\",\"data-framer-name\":\"Payment Icons Stack\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gxcjnd\",\"data-framer-name\":\"Payment Icons\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-llo6hy\",\"data-framer-name\":\"visa-logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 33 12\"><path d=\"M 8.834 11.203 L 6.087 11.203 L 4.028 3.115 C 3.93 2.743 3.723 2.414 3.417 2.259 C 2.655 1.869 1.816 1.559 0.9 1.403 L 0.9 1.092 L 5.324 1.092 C 5.935 1.092 6.393 1.559 6.469 2.103 L 7.537 7.937 L 10.282 1.092 L 12.952 1.092 Z M 14.479 11.203 L 11.885 11.203 L 14.021 1.092 L 16.615 1.092 Z M 19.97 3.893 C 20.047 3.348 20.504 3.037 21.039 3.037 C 21.878 2.959 22.793 3.115 23.556 3.503 L 24.014 1.326 C 23.251 1.015 22.411 0.858 21.649 0.858 C 19.132 0.858 17.3 2.259 17.3 4.203 C 17.3 5.681 18.598 6.458 19.514 6.926 C 20.504 7.392 20.886 7.703 20.81 8.17 C 20.81 8.869 20.047 9.181 19.285 9.181 C 18.369 9.181 17.453 8.948 16.615 8.558 L 16.157 10.736 C 17.073 11.125 18.063 11.281 18.979 11.281 C 21.802 11.358 23.556 9.959 23.556 7.858 C 23.556 5.214 19.97 5.059 19.97 3.893 Z M 32.633 11.203 L 30.574 1.092 L 28.362 1.092 C 27.904 1.092 27.446 1.403 27.293 1.869 L 23.48 11.203 L 26.15 11.203 L 26.683 9.725 L 29.963 9.725 L 30.268 11.203 Z M 28.743 3.815 L 29.505 7.625 L 27.37 7.625 Z\" fill=\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"></path></svg>',svgContentId:8927173196,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10jjo4v\",\"data-framer-name\":\"Payment Icons\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-rkwq7e\",\"data-framer-name\":\"Mastercard\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31 19\"><path d=\"M 15.405 16.498 C 13.827 17.828 11.779 18.632 9.541 18.632 C 4.548 18.632 0.5 14.632 0.5 9.698 C 0.5 4.765 4.548 0.765 9.541 0.765 C 11.779 0.765 13.827 1.568 15.405 2.899 C 16.984 1.568 19.032 0.765 21.27 0.765 C 26.263 0.765 30.311 4.765 30.311 9.698 C 30.311 14.632 26.263 18.632 21.27 18.632 C 19.032 18.632 16.984 17.828 15.405 16.498 Z\" fill=\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"></path><path d=\"M 15.405 16.498 C 17.349 14.859 18.582 12.421 18.582 9.698 C 18.582 6.976 17.349 4.538 15.405 2.899 C 16.984 1.568 19.032 0.765 21.27 0.765 C 26.263 0.765 30.311 4.765 30.311 9.698 C 30.311 14.632 26.263 18.632 21.27 18.632 C 19.032 18.632 16.984 17.828 15.405 16.498 Z\" fill=\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"></path><path d=\"M 15.405 16.498 C 17.349 14.859 18.582 12.421 18.582 9.698 C 18.582 6.976 17.349 4.538 15.405 2.899 C 13.461 4.538 12.229 6.976 12.229 9.698 C 12.229 12.421 13.461 14.859 15.405 16.498 Z\" fill=\"var(--token-61fb4351-3c21-4306-a322-2a64fd046bd1, rgba(15, 23, 42, 0.1))\"></path></svg>',svgContentId:12595510554,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qw4v6g\",\"data-framer-name\":\"Payment Icons\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jpcr3g\",\"data-framer-name\":\"ApplePay\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 34 15\"><path d=\"M 6.197 2.183 C 5.81 2.652 5.191 3.022 4.572 2.969 C 4.495 2.335 4.798 1.661 5.152 1.244 C 5.539 0.762 6.216 0.418 6.764 0.392 C 6.828 1.053 6.577 1.7 6.197 2.183 Z M 6.757 3.095 C 6.212 3.062 5.715 3.263 5.313 3.424 C 5.054 3.529 4.835 3.617 4.669 3.617 C 4.482 3.617 4.254 3.524 3.998 3.42 C 3.662 3.283 3.279 3.127 2.877 3.134 C 1.955 3.147 1.098 3.683 0.627 4.535 C -0.34 6.24 0.376 8.765 1.31 10.152 C 1.768 10.84 2.316 11.593 3.038 11.567 C 3.356 11.554 3.584 11.455 3.82 11.352 C 4.093 11.234 4.375 11.111 4.817 11.111 C 5.243 11.111 5.514 11.23 5.773 11.345 C 6.02 11.455 6.257 11.56 6.609 11.553 C 7.357 11.54 7.827 10.866 8.285 10.179 C 8.779 9.441 8.996 8.721 9.029 8.612 L 9.033 8.599 C 9.032 8.599 9.026 8.596 9.015 8.591 L 9.015 8.591 C 8.85 8.513 7.588 7.921 7.576 6.333 C 7.564 5 8.577 4.324 8.736 4.218 L 8.736 4.218 C 8.746 4.211 8.753 4.207 8.756 4.205 C 8.111 3.227 7.105 3.121 6.757 3.095 Z M 30.427 11.884 C 29.802 13.688 29.086 14.283 27.565 14.283 C 27.449 14.283 27.062 14.269 26.972 14.243 L 26.972 13.007 C 27.069 13.02 27.307 13.034 27.43 13.034 C 28.119 13.034 28.506 12.736 28.745 11.963 L 28.887 11.507 L 26.244 4.007 L 27.874 4.007 L 29.712 10.093 L 29.744 10.093 L 31.581 4.007 L 33.167 4.007 Z M 11.934 11.481 L 11.934 1.178 L 15.704 1.178 C 17.651 1.178 19.011 2.553 19.011 4.562 C 19.011 6.571 17.625 7.958 15.653 7.958 L 13.493 7.958 L 13.493 11.481 Z M 13.493 6.617 L 15.285 6.617 C 16.645 6.617 17.419 5.87 17.419 4.568 C 17.419 3.266 16.645 2.526 15.292 2.526 L 13.493 2.526 Z M 24.162 10.245 C 23.749 11.051 22.84 11.56 21.86 11.56 C 20.41 11.56 19.398 10.675 19.398 9.34 C 19.398 8.018 20.378 7.258 22.189 7.146 L 24.136 7.027 L 24.136 6.458 C 24.136 5.619 23.601 5.163 22.647 5.163 C 21.86 5.163 21.287 5.579 21.171 6.214 L 19.765 6.214 C 19.811 4.879 21.035 3.907 22.692 3.907 C 24.477 3.907 25.638 4.866 25.638 6.353 L 25.638 11.481 L 24.194 11.481 L 24.194 10.245 Z M 24.136 8.685 L 24.136 8.104 L 22.402 8.216 C 21.429 8.276 20.919 8.652 20.919 9.3 C 20.919 9.928 21.448 10.337 22.279 10.337 C 23.337 10.337 24.136 9.65 24.136 8.685 Z\" fill=\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"></path></svg>',svgContentId:10001754717,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nmzbhv\",\"data-framer-name\":\"Payment Icons\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-j22boi\",\"data-framer-name\":\"GooglePay\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 34 14\"><path d=\"M 15.91 10.762 L 15.91 6.85 L 17.93 6.85 C 18.757 6.85 19.456 6.572 20.025 6.025 L 20.162 5.887 C 21.202 4.755 21.134 2.991 20.025 1.943 C 19.471 1.389 18.712 1.088 17.93 1.104 L 14.688 1.104 L 14.688 10.762 Z M 15.911 5.663 L 15.911 2.29 L 17.961 2.29 C 18.401 2.29 18.819 2.459 19.13 2.767 C 19.791 3.414 19.806 4.493 19.168 5.163 C 18.857 5.494 18.416 5.679 17.961 5.663 Z M 25.864 4.67 C 25.34 4.184 24.626 3.938 23.723 3.938 C 22.561 3.938 21.688 4.369 21.111 5.224 L 22.189 5.91 C 22.584 5.324 23.123 5.032 23.806 5.032 C 24.239 5.032 24.657 5.194 24.983 5.486 C 25.302 5.764 25.484 6.164 25.484 6.588 L 25.484 6.873 C 25.013 6.611 24.421 6.472 23.692 6.472 C 22.842 6.472 22.159 6.672 21.65 7.081 C 21.141 7.489 20.883 8.028 20.883 8.714 C 20.868 9.337 21.134 9.931 21.604 10.331 C 22.083 10.762 22.69 10.978 23.404 10.978 C 24.247 10.978 24.915 10.601 25.423 9.846 L 25.476 9.846 L 25.476 10.762 L 26.646 10.762 L 26.646 6.688 C 26.646 5.833 26.387 5.155 25.864 4.67 Z M 22.546 9.545 C 22.296 9.361 22.144 9.06 22.144 8.737 C 22.144 8.375 22.311 8.074 22.637 7.835 C 22.971 7.597 23.389 7.473 23.883 7.473 C 24.566 7.466 25.097 7.62 25.477 7.928 C 25.477 8.452 25.272 8.906 24.87 9.291 C 24.505 9.661 24.012 9.869 23.495 9.869 C 23.154 9.877 22.819 9.761 22.546 9.545 Z M 29.273 13.666 L 33.357 4.154 L 32.028 4.154 L 30.138 8.898 L 30.115 8.898 L 28.179 4.154 L 26.851 4.154 L 29.531 10.339 L 28.012 13.666 Z\" fill=\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"></path><path d=\"M 11.691 6.002 C 11.691 5.625 11.66 5.247 11.599 4.878 L 6.444 4.878 L 6.444 7.011 L 9.398 7.011 C 9.276 7.697 8.881 8.313 8.304 8.698 L 8.304 10.085 L 10.066 10.085 C 11.098 9.122 11.691 7.697 11.691 6.002 Z\" fill=\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"></path><path d=\"M 6.444 11.425 C 7.917 11.425 9.162 10.932 10.066 10.085 L 8.305 8.698 C 7.811 9.037 7.181 9.23 6.444 9.23 C 5.017 9.23 3.81 8.251 3.377 6.942 L 1.563 6.942 L 1.563 8.375 C 2.489 10.246 4.379 11.425 6.444 11.425 Z\" fill=\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"></path><path d=\"M 3.377 6.942 C 3.15 6.256 3.15 5.509 3.377 4.816 L 3.377 3.391 L 1.563 3.391 C 0.781 4.955 0.781 6.803 1.563 8.367 Z\" fill=\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"></path><path d=\"M 6.444 2.528 C 7.226 2.513 7.978 2.813 8.54 3.36 L 10.104 1.774 C 9.109 0.834 7.803 0.318 6.444 0.333 C 4.379 0.333 2.489 1.519 1.563 3.391 L 3.377 4.824 C 3.81 3.507 5.017 2.528 6.444 2.528 Z\" fill=\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"></path></svg>',svgContentId:10213789764,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kohy31\",\"data-framer-name\":\"Payment Icons\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-24snro\",\"data-framer-name\":\"Stripe\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 35 15\"><path d=\"M 18.857 1.914 L 16.555 2.423 L 16.555 0.501 L 18.857 0.002 Z M 23.646 2.979 C 22.747 2.979 22.169 3.412 21.848 3.714 L 21.729 3.13 L 19.71 3.13 L 19.71 14.115 L 22.004 13.616 L 22.013 10.95 C 22.344 11.194 22.83 11.543 23.637 11.543 C 25.279 11.543 26.775 10.186 26.775 7.2 C 26.766 4.468 25.252 2.979 23.646 2.979 Z M 23.096 9.47 C 22.555 9.47 22.233 9.272 22.013 9.027 L 22.004 5.532 C 22.243 5.259 22.573 5.071 23.096 5.071 C 23.931 5.071 24.509 6.032 24.509 7.266 C 24.509 8.528 23.94 9.47 23.096 9.47 Z M 34.005 7.294 C 34.005 4.882 32.867 2.979 30.693 2.979 C 28.509 2.979 27.188 4.882 27.188 7.275 C 27.188 10.111 28.748 11.543 30.986 11.543 C 32.078 11.543 32.904 11.289 33.528 10.931 L 33.528 9.046 C 32.904 9.367 32.188 9.565 31.28 9.565 C 30.39 9.565 29.601 9.244 29.5 8.132 L 33.986 8.132 C 33.986 8.081 33.99 7.963 33.993 7.827 C 33.999 7.642 34.005 7.424 34.005 7.294 Z M 29.472 6.399 C 29.472 5.334 30.105 4.892 30.683 4.892 C 31.243 4.892 31.839 5.334 31.839 6.399 Z M 16.554 3.139 L 18.857 3.139 L 18.857 11.383 L 16.554 11.383 Z M 13.94 3.139 L 14.087 3.836 C 14.628 2.819 15.701 3.026 15.995 3.139 L 15.995 5.306 C 15.711 5.202 14.793 5.071 14.252 5.796 L 14.252 11.383 L 11.958 11.383 L 11.958 3.139 Z M 9.499 1.095 L 7.261 1.585 L 7.251 9.131 C 7.251 10.525 8.27 11.552 9.628 11.552 C 10.38 11.552 10.931 11.411 11.233 11.242 L 11.233 9.329 C 10.94 9.451 9.49 9.885 9.49 8.49 L 9.49 5.146 L 11.233 5.146 L 11.233 3.139 L 9.49 3.139 Z M 4.077 5.023 C 3.591 5.023 3.297 5.165 3.297 5.532 C 3.297 5.933 3.803 6.11 4.429 6.329 C 5.451 6.686 6.796 7.155 6.802 8.896 C 6.802 10.582 5.49 11.552 3.582 11.552 C 2.793 11.552 1.93 11.392 1.077 11.015 L 1.077 8.773 C 1.848 9.207 2.82 9.527 3.582 9.527 C 4.095 9.527 4.462 9.386 4.462 8.952 C 4.462 8.508 3.915 8.305 3.253 8.059 C 2.246 7.686 0.976 7.215 0.976 5.645 C 0.976 3.978 2.215 2.979 4.077 2.979 C 4.839 2.979 5.591 3.101 6.352 3.412 L 6.352 5.626 C 5.655 5.24 4.774 5.023 4.077 5.023 Z\" fill=\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"></path></svg>',svgContentId:10470858648,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hi9yvr\",\"data-framer-name\":\"Payment Icons\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1u7qflq\",\"data-framer-name\":\"PayPal\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 19\"><path d=\"M 4.986 17.656 L 5.28 15.724 L 4.624 15.708 L 1.494 15.708 L 3.67 1.45 C 3.676 1.407 3.698 1.367 3.73 1.338 C 3.762 1.31 3.803 1.294 3.846 1.294 L 9.125 1.294 C 10.877 1.294 12.087 1.671 12.718 2.415 C 13.014 2.764 13.203 3.129 13.294 3.53 C 13.39 3.951 13.391 4.454 13.298 5.068 L 13.291 5.113 L 13.291 5.506 L 13.587 5.679 C 13.836 5.816 14.034 5.972 14.187 6.151 C 14.44 6.45 14.603 6.829 14.673 7.279 C 14.744 7.741 14.72 8.291 14.603 8.915 C 14.468 9.631 14.25 10.255 13.955 10.766 C 13.684 11.236 13.338 11.627 12.928 11.929 C 12.536 12.216 12.071 12.435 11.545 12.574 C 11.035 12.711 10.454 12.781 9.816 12.781 L 9.405 12.781 C 9.111 12.781 8.826 12.89 8.602 13.086 C 8.378 13.286 8.229 13.559 8.184 13.858 L 8.152 14.032 L 7.632 17.438 L 7.609 17.563 C 7.603 17.603 7.592 17.622 7.576 17.636 C 7.562 17.648 7.542 17.656 7.522 17.656 L 4.986 17.656\" fill=\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"></path><path d=\"M 13.867 5.158 C 13.852 5.262 13.834 5.369 13.814 5.478 C 13.117 9.172 10.736 10.448 7.694 10.448 L 6.145 10.448 C 5.773 10.448 5.46 10.727 5.402 11.107 L 4.385 17.778 C 4.347 18.027 4.533 18.251 4.776 18.251 L 7.522 18.251 C 7.848 18.251 8.124 18.007 8.175 17.675 L 8.202 17.531 L 8.719 14.139 L 8.753 13.953 C 8.803 13.62 9.08 13.376 9.405 13.376 L 9.816 13.376 C 12.477 13.376 14.561 12.259 15.17 9.027 C 15.424 7.677 15.293 6.55 14.619 5.757 C 14.416 5.518 14.163 5.32 13.867 5.158\" fill=\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"></path><path d=\"M 13.139 4.858 C 13.033 4.826 12.923 4.797 12.81 4.771 C 12.697 4.745 12.581 4.722 12.462 4.703 C 12.044 4.633 11.587 4.6 11.097 4.6 L 6.959 4.6 C 6.857 4.6 6.761 4.624 6.674 4.667 C 6.483 4.761 6.341 4.948 6.307 5.177 L 5.427 10.939 L 5.402 11.107 C 5.459 10.727 5.773 10.448 6.145 10.448 L 7.694 10.448 C 10.735 10.448 13.117 9.171 13.813 5.478 C 13.834 5.369 13.851 5.262 13.867 5.158 C 13.691 5.061 13.5 4.979 13.295 4.908 C 13.244 4.891 13.192 4.874 13.139 4.858\" fill=\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"></path><path d=\"M 6.307 5.177 C 6.342 4.948 6.483 4.761 6.674 4.667 C 6.761 4.624 6.858 4.6 6.96 4.6 L 11.097 4.6 C 11.587 4.6 12.045 4.633 12.462 4.703 C 12.582 4.723 12.697 4.746 12.811 4.771 C 12.923 4.797 13.033 4.827 13.139 4.858 C 13.192 4.875 13.244 4.892 13.296 4.909 C 13.501 4.979 13.692 5.062 13.868 5.158 C 14.075 3.793 13.866 2.863 13.152 2.022 C 12.365 1.095 10.944 0.698 9.126 0.698 L 3.847 0.698 C 3.475 0.698 3.159 0.978 3.101 1.358 L 0.903 15.762 C 0.859 16.047 1.072 16.304 1.35 16.304 L 4.609 16.304 L 6.307 5.177\" fill=\"var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42))\"></path></svg>',svgContentId:10165799499,withExternalLayout:true})})]})],speed:10,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{height:614,width:\"353px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i3bbad-container hidden-v8561 hidden-1kt05l2\",nodeId:\"XWIyw3IkK\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(ComponentsPricingCard,{height:\"100%\",id:\"XWIyw3IkK\",layoutId:\"XWIyw3IkK\",pDVF3BWxr:\"$997\",style:{height:\"100%\",width:\"100%\"},variant:\"DgJkqo2oX\",we5VmgciF:\"https://calendly.com/viktoria-jagini/discovery-call\",width:\"100%\",xsaIyDoJv:\"3nvunu\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8ij6m0\",\"data-framer-name\":\"FAQ\",id:elementId15,ref:ref16,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u08a74\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.4)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xo519x-container\",nodeId:\"ccB0tMNXJ\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{variant:\"r8oLg0_Wq\"},NV0IMzftj:{variant:\"r8oLg0_Wq\"}},children:/*#__PURE__*/_jsx(ComponentsSectionHeading,{height:\"100%\",I6DOV1pRR:\"questions you're probably asking\",id:\"ccB0tMNXJ\",layoutId:\"ccB0tMNXJ\",style:{width:\"100%\"},tuKQBbiAw:\"If you've made it this far you're either very interested, or have questions. Here are a few frequently asked questions.\",variant:\"zy2fH2zoP\",width:\"100%\",WTCErdx1k:\"FAQ\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qq1uz8 hidden-1kt05l2 hidden-1oi2du7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-x2yoru\",\"data-styles-preset\":\"Wkx6BbgUb\",children:\"Still looking for answers?\"})}),className:\"framer-19zx8rk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nhmtmn-container\",nodeId:\"v6CVx_AFa\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(ElementsButton,{cSvXw0UMF:\"https://mail.google.com/mail/u/0/#inbox?compose=GTvVlcSKjskfgvVWHXtbvTcXZjpWhlxgWGGDFcXHKGmzksFxkCqSgCpWCcrNfZLTQCsFGqfFnjWhT\",cYr9gJc6L:\"EnvelopeSimple\",height:\"100%\",id:\"v6CVx_AFa\",kJmFsDdbK:\"Viktoria.jagini@femmeinfopreneurs.com\",layoutId:\"v6CVx_AFa\",m_edh05V5:0,variant:\"GHc3roRBx\",vX04FnKFX:\"regular\",width:\"100%\",yVMvYjPHf:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10iewhy\",id:elementId16,ref:ref17,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.6 - 40px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-8hbzc6-container\",nodeId:\"ZE8SM2ZxU\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{variant:\"dVYAKmTh5\"}},children:/*#__PURE__*/_jsx(ElementsFAQ,{AiyNM6EIW:\"How long would it take me to see the growth of my page?\",height:\"100%\",id:\"ZE8SM2ZxU\",layoutId:\"ZE8SM2ZxU\",PcoTO7nHk:\"You could start seeing growth in as little as 2 weeks, depending on the time and effort you\\ninvest in your Instagram account.\",style:{width:\"100%\"},variant:\"oLWj9R7Tj\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.6 - 40px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kt6usi-container\",nodeId:\"gITKNMz0p\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ElementsFAQ,{AiyNM6EIW:\"When can I start monetizing my page?\",height:\"100%\",id:\"gITKNMz0p\",layoutId:\"gITKNMz0p\",PcoTO7nHk:\"Monetization depends on your consistency and dedication. With regular effort, many users\\nstart earning within 4-6 weeks.\",style:{width:\"100%\"},variant:\"dVYAKmTh5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.6 - 40px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uygbu2-container\",nodeId:\"uaRF4d0Z6\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ElementsFAQ,{AiyNM6EIW:\"Do I need to create my own content?\",height:\"100%\",id:\"uaRF4d0Z6\",layoutId:\"uaRF4d0Z6\",PcoTO7nHk:\"Not necessarily. You can create your own content or use the strategies we teach to curate\\nhigh-quality, engaging content.\",style:{width:\"100%\"},variant:\"dVYAKmTh5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.6 - 40px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1783osk-container\",nodeId:\"NgMKqbvCD\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ElementsFAQ,{AiyNM6EIW:\"How do I find viral content?\",height:\"100%\",id:\"NgMKqbvCD\",layoutId:\"NgMKqbvCD\",PcoTO7nHk:\"Inside IBA, you\u2019ll learn proven methods to find and create viral content that resonates with\\nyour audience.\",style:{width:\"100%\"},variant:\"dVYAKmTh5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.6 - 40px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-k70kxm-container\",nodeId:\"Vks1nLY9Z\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ElementsFAQ,{AiyNM6EIW:\"Do I need a large following to make money?\",height:\"100%\",id:\"Vks1nLY9Z\",layoutId:\"Vks1nLY9Z\",PcoTO7nHk:\"Not necessarily. Even a smaller, engaged audience can generate income if you have the\\nright monetization strategy.\",style:{width:\"100%\"},variant:\"dVYAKmTh5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px) * 0.6 - 40px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-6341pg-container\",nodeId:\"StSqFYjYr\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ElementsFAQ,{AiyNM6EIW:\"Do I get support if I have questions?\",height:\"100%\",id:\"StSqFYjYr\",layoutId:\"StSqFYjYr\",PcoTO7nHk:\"Yes! We provide community support to help you along the way.\",style:{width:\"100%\"},variant:\"dVYAKmTh5\",width:\"100%\"})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-134z8ig hidden-v8561\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-x2yoru\",\"data-styles-preset\":\"Wkx6BbgUb\",style:{\"--framer-text-alignment\":\"center\"},children:\"Still looking for answers?\"})}),className:\"framer-18qdhx3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4x2luv-container\",nodeId:\"LHa9Okr1P\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{cSvXw0UMF:\"https://mail.google.com/mail/u/0/#inbox?compose=GTvVlcSKjskfgvVWHXtbvTcXZjpWhlxgWGGDFcXHKGmzksFxkCqSgCpWCcrNfZLTQCsFGqfFnjWhT\",kJmFsDdbK:\"Viktoria.Jagini@femmeinfopreneurs.com\",variant:\"GHc3roRBx\"},NV0IMzftj:{cSvXw0UMF:\"https://mail.google.com/mail/u/0/#inbox?compose=GTvVlcSKjskfgvVWHXtbvTcXZjpWhlxgWGGDFcXHKGmzksFxkCqSgCpWCcrNfZLTQCsFGqfFnjWhT\",kJmFsDdbK:\"Viktoria.jagini@femmeinfopreneurs.com\"}},children:/*#__PURE__*/_jsx(ElementsButton,{cSvXw0UMF:\"mailto:mike@pixljoy.design\",cYr9gJc6L:\"EnvelopeSimple\",height:\"100%\",id:\"LHa9Okr1P\",kJmFsDdbK:\"Send Me An Email\",layoutId:\"LHa9Okr1P\",m_edh05V5:0,variant:\"ZUQVwPrUw\",vX04FnKFX:\"regular\",width:\"100%\",yVMvYjPHf:true})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vcqzai\",\"data-framer-name\":\"ABOUT\",id:elementId17,ref:ref18,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},NV0IMzftj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 240px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m8iamd-container\",nodeId:\"cvYF0d58R\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(ComponentsSectionHeading,{height:\"100%\",I6DOV1pRR:\"Meet The Creator Behind IBA\",id:\"cvYF0d58R\",layoutId:\"cvYF0d58R\",style:{width:\"100%\"},tuKQBbiAw:\"\",variant:\"r8oLg0_Wq\",width:\"100%\",WTCErdx1k:\"About\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1celpie\",\"data-border\":true,\"data-framer-name\":\"Content Wrapper\",id:elementId18,ref:ref19,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1920,pixelWidth:1080,sizes:\"80px\",src:\"https://framerusercontent.com/images/bWEVa1QViNrvFyKmM4lRRegQDFA.webp\",srcSet:\"https://framerusercontent.com/images/bWEVa1QViNrvFyKmM4lRRegQDFA.webp?scale-down-to=1024 576w,https://framerusercontent.com/images/bWEVa1QViNrvFyKmM4lRRegQDFA.webp 1080w\"},className:\"framer-1c1zyda\",\"data-framer-name\":\"Picture\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Hey there! I\u2019m Viktoria Jagini, the creator of IBA, and I know what you\u2019re thinking\u2014another Instagram course? Why trust me?\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-alignment\":\"center\"},children:\"I get it. There are so many promises out there that it\u2019s hard to know what actually works. But here\u2019s the thing: I\u2019ve been where you are. I wanted to make money online without showing my face, but I didn\u2019t know where to start. The endless advice and complicated strategies left me frustrated and stuck. That\u2019s why I created this course\u2014to give you a clear, proven roadmap to success.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-alignment\":\"center\"},children:\"This isn\u2019t just another online course. It\u2019s a step-by-step system designed with one goal: to help you earn \\xa32-\\xa35k/month on Instagram without ever showing your face. Every strategy, every template, and every method in this course has been tested and refined to deliver real results. I\u2019ve done the hard work so you don\u2019t have to.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-alignment\":\"center\"},children:\"When you join, you\u2019re not just getting lessons\u2014you\u2019re getting a shortcut. A fast track to building a profitable Instagram theme page without the stress, guesswork, or trial-and-error. Imagine having a clear plan to grow your page, monetize it, and see your hard work pay off\u2014all while staying completely anonymous.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-alignment\":\"center\"},children:\"At the end of the day, I built this course for women like you\u2014the side hustlers, the dreamers, and the go-getters who want more. More income, more freedom, and more confidence in what you can achieve.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-alignment\":\"center\"},children:\"So, if you\u2019re ready to stop wondering and start earning, this is your moment.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mq1b3h\",\"data-styles-preset\":\"agHFDFZ94\",style:{\"--framer-text-alignment\":\"center\"},children:\"Instagram Business Academy\u2014made by a creator, for creators. Let\u2019s make something amazing together.\"})]}),className:\"framer-1fziqn4\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RnJlZWhhbmQtcmVndWxhcg==\",\"--framer-font-family\":'\"Freehand\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-abb09f6a-2c47-4cb9-9590-a0b822b55d8d, rgba(15, 23, 42, 0.8))\"},children:\"Viktoria Jagini\"})}),className:\"framer-nbegwt\",\"data-framer-name\":\"Signature\",effect:textEffect,fonts:[\"GF;Freehand-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uia3ql\",\"data-framer-name\":\"CALL TO ACTION\",id:elementId19,ref:ref20,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:32,rotateY:0,scale:1.4,skewX:0,skewY:0,x:0,y:40}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-vlvx55\",\"data-border\":true,\"data-framer-name\":\"Content Wrapper\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wey2bh\",\"data-framer-name\":\"Top Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x3wvsi\",\"data-framer-name\":\"Headline Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7xx32o\",\"data-styles-preset\":\"j0p3vAPHv\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(180deg, var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42)) 35%, var(--token-311d2b88-411e-41af-a1bb-3188c0599d5e, rgb(228, 230, 231)) 122%)\"},children:\"Are you ready to make \\xa32-\\xa35k/mo through instagram?\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7xx32o\",\"data-styles-preset\":\"j0p3vAPHv\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(180deg, var(--token-fdaba20f-fa34-4b9e-9b67-e30eca26be3e, rgb(15, 23, 42)) 35%, var(--token-311d2b88-411e-41af-a1bb-3188c0599d5e, rgb(228, 230, 231)) 122%)\"},children:\"Are you ready to make \\xa32-\\xa35k/mo through instagram?\"})})}),className:\"framer-1s8drqk\",\"data-framer-name\":\"Stop Wasting Your Hard Earned Money\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ybu4hp\",\"data-styles-preset\":\"TiTn3K6pc\",style:{\"--framer-text-alignment\":\"center\"},children:\"Description\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ybu4hp\",\"data-styles-preset\":\"TiTn3K6pc\",style:{\"--framer-text-alignment\":\"left\"},children:\"Description\"})}),className:\"framer-1s8xjir\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h3a4wd\",\"data-framer-name\":\"Bottom Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1koro83\",\"data-framer-name\":\"Button Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yptqto-container\",nodeId:\"v4a9AMkIt\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{style:{width:\"100%\"}},NV0IMzftj:{kJmFsDdbK:\"Start your journey now\"}},children:/*#__PURE__*/_jsx(ElementsButton,{bLFNckaxt:\"3nvunu\",cSvXw0UMF:\"https://calendly.com/viktoria-jagini/discovery-call\",cYr9gJc6L:\"ArrowRight\",height:\"100%\",id:\"v4a9AMkIt\",kJmFsDdbK:\"start your story\",layoutId:\"v4a9AMkIt\",m_edh05V5:0,variant:\"ZUQVwPrUw\",vX04FnKFX:\"regular\",width:\"100%\",yVMvYjPHf:true})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p1ydcz\",\"data-framer-name\":\"Social Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bzyvv8-container\",nodeId:\"gfhfFXSZd\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",style:{scale:.9},children:/*#__PURE__*/_jsx(ElementsSocialProof,{geBX2GIlC:addImageAlt({src:\"https://framerusercontent.com/images/8K12aqH8oxNw42PFJJpFVzBQg4k.png\",srcSet:\"https://framerusercontent.com/images/8K12aqH8oxNw42PFJJpFVzBQg4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/8K12aqH8oxNw42PFJJpFVzBQg4k.png 532w\"},\"\"),height:\"100%\",hWXwKyjTJ:addImageAlt({src:\"https://framerusercontent.com/images/OjBxCuPcQw3GKuDoOCkViTB9S4.png\"},\"\"),id:\"gfhfFXSZd\",ju_l_vjHi:addImageAlt({src:\"https://framerusercontent.com/images/1FiljhbDfj4NXVYOtIB6viI4560.png\",srcSet:\"https://framerusercontent.com/images/1FiljhbDfj4NXVYOtIB6viI4560.png?scale-down-to=512 512w,https://framerusercontent.com/images/1FiljhbDfj4NXVYOtIB6viI4560.png 538w\"},\"\"),layoutId:\"gfhfFXSZd\",OrmuH3p0o:addImageAlt({src:\"https://framerusercontent.com/images/BAChwWqNwVa2eihyMdfZc6rIuvo.png\",srcSet:\"https://framerusercontent.com/images/BAChwWqNwVa2eihyMdfZc6rIuvo.png?scale-down-to=512 512w,https://framerusercontent.com/images/BAChwWqNwVa2eihyMdfZc6rIuvo.png 532w\"},\"\"),SXDMm9Q7a:\"100+ Happy Clients\",variant:\"WQey8pMO7\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:99,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-zikuph-container\",nodeId:\"i8c1CJC_O\",scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{variant:\"dOwBQRYit\"},NV0IMzftj:{variant:\"dOwBQRYit\"}},children:/*#__PURE__*/_jsx(ComponentsFooter,{height:\"100%\",id:\"i8c1CJC_O\",layoutId:\"i8c1CJC_O\",style:{width:\"100%\"},variant:\"yMHaQlCdE\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oiko23-container\",layoutScroll:true,nodeId:\"ouEh6gth8\",rendersWithMotion:true,scopeId:\"bGV1hUG1I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hEahs4EIM:{__framer__variantAppearEffectEnabled:undefined,variant:\"S2rIdOVJy\"},NV0IMzftj:{__framer__variantAppearEffectEnabled:undefined,variant:\"S2rIdOVJy\"}},children:/*#__PURE__*/_jsx(NavigationNavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:80,ref:ref1,target:\"sRq2sP70C\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"ouEh6gth8\",igxy6gRDi:\"1nfxejd\",layoutId:\"ouEh6gth8\",msv2fidn_:\"https://www.copecart.com/us/products/257a085b/checkout\",style:{width:\"100%\"},variant:\"ni8aNO1hN\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-12Wpz.framer-13clwvu, .framer-12Wpz .framer-13clwvu { display: block; }\",\".framer-12Wpz.framer-v8561 { align-content: center; align-items: center; background-color: var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, #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-12Wpz .framer-uad555-container, .framer-12Wpz .framer-h6xwpq-container, .framer-12Wpz .framer-14q1jgp-container, .framer-12Wpz .framer-s4gud2-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-12Wpz .framer-5iq3yv { align-content: center; align-items: center; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-d4ttwf { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, #ffffff) 39.708262950450454%, var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250)) 73.42694256756756%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 160px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-1mn7tnw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 120px 0px 120px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-12Wpz .framer-1xzxf7b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 80%; }\",\".framer-12Wpz .framer-1knksnc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-d3hdwp-container { flex: none; height: auto; opacity: 0.8; position: relative; width: auto; }\",\".framer-12Wpz .framer-10z2nqt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-gjd5yo, .framer-12Wpz .framer-1s8drqk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-12Wpz .framer-p7a4ew { --framer-paragraph-spacing: 10px; --framer-text-wrap: balance; flex: none; height: auto; opacity: 0.9; overflow: visible; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-12Wpz .framer-htcs3v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-12Wpz .framer-10lsxvf { 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: 259px; }\",\".framer-12Wpz .framer-v62636-container, .framer-12Wpz .framer-17h3910-container, .framer-12Wpz .framer-1fxja3e-container, .framer-12Wpz .framer-nhmtmn-container, .framer-12Wpz .framer-4x2luv-container, .framer-12Wpz .framer-yptqto-container, .framer-12Wpz .framer-1bzyvv8-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-12Wpz .framer-101rn6t-container { flex: none; height: auto; left: -90px; opacity: 0.2; position: absolute; top: -49px; width: auto; z-index: 1; }\",\".framer-12Wpz .framer-7meatc { --border-bottom-width: 4px; --border-color: var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, #ebe9e8); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; align-content: center; align-items: center; aspect-ratio: 1.6580310880829014 / 1; background-color: var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, #ffffff); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 1px 40px 4px rgba(15, 23, 42, 0.15); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: var(--framer-aspect-ratio-supported, 579px); justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-12Wpz .framer-1lweq3d-container { flex: none; height: 482px; position: relative; width: 799px; }\",\".framer-12Wpz .framer-izrzvu-container { flex: none; height: auto; left: 46%; opacity: 0.2; position: absolute; top: 102%; transform: translate(-50%, -50%); width: auto; z-index: 1; }\",\".framer-12Wpz .framer-16hgcd0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 80px 120px 80px 120px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-1gbog8q { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 24px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-5myp6s-container, .framer-12Wpz .framer-1gk0f25-container, .framer-12Wpz .framer-ksios8-container, .framer-12Wpz .framer-1lrwgki-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-12Wpz .framer-1e9ecfq { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px 24px 24px 24px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-1y4hgx-container { flex: none; height: auto; left: 43%; opacity: 0.2; position: absolute; top: 102%; transform: translate(-50%, -50%); width: auto; z-index: 1; }\",\".framer-12Wpz .framer-e1djbv { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(17, 17, 17, 0) 72%, var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250)) 90%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-189diex { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 80px 120px 80px 120px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-12Wpz .framer-11ituvi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-jwvdzf-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-12Wpz .framer-xnm1h5 { --border-bottom-width: 5px; --border-color: var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, #ffffff); --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; align-content: flex-start; align-items: flex-start; background-color: var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, #fafafa); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-12Wpz .framer-44kubm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-12Wpz .framer-15frzuz-container { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.14) 29.995425112612615%, rgba(0, 0, 0, 0.4) 61.261261261261254%, rgba(0,0,0,1) 89%) add; flex: none; height: 48px; mask: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.14) 29.995425112612615%, rgba(0, 0, 0, 0.4) 61.261261261261254%, rgba(0,0,0,1) 89%) add; position: relative; width: 48px; }\",\".framer-12Wpz .framer-18qmylf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-12Wpz .framer-v1qx4o { -webkit-user-select: none; align-self: stretch; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-12Wpz .framer-1g8aa2j { --framer-text-wrap-override: balance; -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; width: 680px; }\",\".framer-12Wpz .framer-5aw6x9-container { aspect-ratio: 1.394736842105263 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 55px); left: 63%; opacity: 0.2; position: absolute; top: 60%; transform: translate(-50%, -50%); width: 76px; z-index: 1; }\",\".framer-12Wpz .framer-1exe3ri { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 80px 120px 80px 120px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-11ds9bw-container, .framer-12Wpz .framer-13k6q0d-container, .framer-12Wpz .framer-1rcvlri-container, .framer-12Wpz .framer-1fuxsnt-container, .framer-12Wpz .framer-4c83t0-container, .framer-12Wpz .framer-sqoxnl-container, .framer-12Wpz .framer-153sfy-container, .framer-12Wpz .framer-1hnzh79-container, .framer-12Wpz .framer-pbhxnm-container, .framer-12Wpz .framer-1aiwoum-container, .framer-12Wpz .framer-18x5roy-container, .framer-12Wpz .framer-1nmrcmk-container, .framer-12Wpz .framer-ntozr2-container, .framer-12Wpz .framer-1xu5x9v-container, .framer-12Wpz .framer-1fivbec-container, .framer-12Wpz .framer-xj77c5-container, .framer-12Wpz .framer-1br4jcn-container, .framer-12Wpz .framer-1gubs7w-container, .framer-12Wpz .framer-c87cq2-container, .framer-12Wpz .framer-19segyk-container, .framer-12Wpz .framer-yfyijt-container, .framer-12Wpz .framer-xo519x-container, .framer-12Wpz .framer-8hbzc6-container, .framer-12Wpz .framer-1kt6usi-container, .framer-12Wpz .framer-1uygbu2-container, .framer-12Wpz .framer-1783osk-container, .framer-12Wpz .framer-k70kxm-container, .framer-12Wpz .framer-6341pg-container, .framer-12Wpz .framer-m8iamd-container, .framer-12Wpz .framer-zikuph-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-12Wpz .framer-96iik7-container { flex: none; height: auto; left: 41%; opacity: 0.2; position: absolute; top: 2%; transform: translate(-50%, -50%); width: auto; z-index: 1; }\",\".framer-12Wpz .framer-1t091cw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-jah8j7 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-12Wpz .framer-l9wezz { --border-bottom-width: 4px; --border-color: var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, #fafafa); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; align-self: stretch; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: auto; overflow: hidden; position: relative; width: 36%; will-change: var(--framer-will-change-override, transform); }\",\".framer-12Wpz .framer-asqvzw { aspect-ratio: 1 / 1; bottom: -30px; flex: none; height: var(--framer-aspect-ratio-supported, 341px); overflow: visible; position: absolute; right: 0px; width: 341px; }\",\".framer-12Wpz .framer-6kykpv { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 334px); left: 50%; overflow: visible; position: absolute; top: 3px; transform: translateX(-50%); width: 334px; }\",\".framer-12Wpz .framer-1p8se0f { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-12Wpz .framer-1wll5za, .framer-12Wpz .framer-19zx8rk, .framer-12Wpz .framer-18qdhx3 { --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-12Wpz .framer-cd6cv0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 80px 120px 80px 120px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-5zkzej { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-1sqnh6j { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-12Wpz .framer-9a79gu-container { flex: none; height: auto; position: relative; width: 33%; }\",\".framer-12Wpz .framer-7i1n1d-container { flex: none; height: auto; left: 56%; opacity: 0.2; position: absolute; top: 9%; transform: translate(-50%, -50%); width: auto; z-index: 1; }\",\".framer-12Wpz .framer-78bms7, .framer-12Wpz .framer-dlleld { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 80px 120px 80px 120px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-12Wpz .framer-143ivmq, .framer-12Wpz .framer-wthct3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-1gi68dn, .framer-12Wpz .framer-12f2h6z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 24px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-11vetz7, .framer-12Wpz .framer-icwa3r, .framer-12Wpz .framer-s59hfg, .framer-12Wpz .framer-sbta59, .framer-12Wpz .framer-1brxl4d, .framer-12Wpz .framer-150aipv { flex: none; height: 300px; position: relative; width: 400px; }\",\".framer-12Wpz .framer-m1gnq7, .framer-12Wpz .framer-8ij6m0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 80px 120px 80px 120px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-12Wpz .framer-1jxasto, .framer-12Wpz .framer-u08a74 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 40%; }\",\".framer-12Wpz .framer-fitzcw, .framer-12Wpz .framer-10iewhy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-12Wpz .framer-99vzui-container { flex: none; height: 651px; position: relative; width: 377px; }\",\".framer-12Wpz .framer-1thnuyb { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, #ffffff) 23.35480011261261%, var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250)) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 80px 120px 80px 120px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-12Wpz .framer-jhp2by { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 960px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-194c05p { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 960px; }\",\".framer-12Wpz .framer-65q82g-container { flex: 1 0 0px; height: 522px; position: relative; width: 1px; }\",\".framer-12Wpz .framer-14p4qbl { align-content: center; align-items: center; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-12Wpz .framer-1c0gt6a-container { flex: none; height: 30px; opacity: 0.5; position: relative; width: 440px; }\",\".framer-12Wpz .framer-1j0uvzq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-12Wpz .framer-gxcjnd, .framer-12Wpz .framer-10jjo4v, .framer-12Wpz .framer-qw4v6g { aspect-ratio: 1.4375 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 46px; }\",\".framer-12Wpz .framer-llo6hy { flex: none; height: 12px; left: 6px; position: absolute; top: 10px; width: 33px; }\",\".framer-12Wpz .framer-rkwq7e { flex: none; height: 19px; left: 7px; position: absolute; top: 6px; width: 31px; }\",\".framer-12Wpz .framer-jpcr3g { flex: none; height: 15px; left: 6px; position: absolute; top: 9px; width: 34px; }\",\".framer-12Wpz .framer-1nmzbhv { aspect-ratio: 1.4375 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 46px; }\",\".framer-12Wpz .framer-j22boi { flex: none; height: 14px; left: 6px; position: absolute; top: 10px; width: 34px; }\",\".framer-12Wpz .framer-kohy31, .framer-12Wpz .framer-hi9yvr { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 32px; overflow: visible; position: relative; width: 46px; }\",\".framer-12Wpz .framer-24snro { flex: none; height: 15px; left: 5px; position: absolute; top: 8px; width: 35px; }\",\".framer-12Wpz .framer-1u7qflq { flex: none; height: 19px; left: 15px; position: absolute; top: 7px; width: 16px; }\",\".framer-12Wpz .framer-1i3bbad-container { flex: none; height: 614px; position: relative; width: 353px; }\",\".framer-12Wpz .framer-qq1uz8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-134z8ig { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-12Wpz .framer-vcqzai { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 80px 120px 30px 120px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-1celpie { --border-bottom-width: 4px; --border-color: var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, #fafafa); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; max-width: 620px; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-1c1zyda { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0px 0.7065919983928324px 2.119775995178497px -0.5px rgba(0, 0, 0, 0.06), 0px 1.8065619053231785px 5.4196857159695355px -1px rgba(0, 0, 0, 0.06), 0px 3.6217592146567767px 10.86527764397033px -1.5px rgba(0, 0, 0, 0.06), 0px 6.8655999097303715px 20.596799729191115px -2px rgba(0, 0, 0, 0.06), 0px 13.646761411524492px 40.940284234573475px -2.5px rgba(0, 0, 0, 0.05), 0px 30px 90px -3px rgba(0, 0, 0, 0.04); flex: none; height: var(--framer-aspect-ratio-supported, 80px); overflow: hidden; position: relative; width: 80px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-12Wpz .framer-1fziqn4 { --framer-text-wrap-override: balance; -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; width: 100%; }\",\".framer-12Wpz .framer-nbegwt { --framer-text-wrap: balance; -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-12Wpz .framer-1uia3ql { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 80px 120px 80px 120px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-vlvx55 { --border-bottom-width: 4px; --border-color: var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, #fafafa); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; align-content: center; align-items: center; background: linear-gradient(150deg, var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, #ffffff) 18%, var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, rgb(250, 250, 250)) 75%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 80px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-12Wpz .framer-1wey2bh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-x3wvsi, .framer-12Wpz .framer-1koro83 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-12Wpz .framer-1s8xjir { --framer-paragraph-spacing: 10px; flex: none; height: auto; opacity: 0.9; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-12Wpz .framer-1h3a4wd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-12Wpz .framer-p1ydcz { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 290px; }\",\".framer-12Wpz .framer-oiko23-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-12Wpz.framer-v8561, .framer-12Wpz .framer-5iq3yv, .framer-12Wpz .framer-d4ttwf, .framer-12Wpz .framer-1mn7tnw, .framer-12Wpz .framer-1xzxf7b, .framer-12Wpz .framer-1knksnc, .framer-12Wpz .framer-10z2nqt, .framer-12Wpz .framer-htcs3v, .framer-12Wpz .framer-10lsxvf, .framer-12Wpz .framer-7meatc, .framer-12Wpz .framer-16hgcd0, .framer-12Wpz .framer-1gbog8q, .framer-12Wpz .framer-1e9ecfq, .framer-12Wpz .framer-e1djbv, .framer-12Wpz .framer-189diex, .framer-12Wpz .framer-11ituvi, .framer-12Wpz .framer-xnm1h5, .framer-12Wpz .framer-44kubm, .framer-12Wpz .framer-18qmylf, .framer-12Wpz .framer-1exe3ri, .framer-12Wpz .framer-1t091cw, .framer-12Wpz .framer-jah8j7, .framer-12Wpz .framer-1p8se0f, .framer-12Wpz .framer-cd6cv0, .framer-12Wpz .framer-5zkzej, .framer-12Wpz .framer-1sqnh6j, .framer-12Wpz .framer-78bms7, .framer-12Wpz .framer-143ivmq, .framer-12Wpz .framer-1gi68dn, .framer-12Wpz .framer-m1gnq7, .framer-12Wpz .framer-fitzcw, .framer-12Wpz .framer-dlleld, .framer-12Wpz .framer-wthct3, .framer-12Wpz .framer-12f2h6z, .framer-12Wpz .framer-1thnuyb, .framer-12Wpz .framer-jhp2by, .framer-12Wpz .framer-194c05p, .framer-12Wpz .framer-14p4qbl, .framer-12Wpz .framer-1j0uvzq, .framer-12Wpz .framer-8ij6m0, .framer-12Wpz .framer-qq1uz8, .framer-12Wpz .framer-10iewhy, .framer-12Wpz .framer-134z8ig, .framer-12Wpz .framer-vcqzai, .framer-12Wpz .framer-1celpie, .framer-12Wpz .framer-1uia3ql, .framer-12Wpz .framer-vlvx55, .framer-12Wpz .framer-1wey2bh, .framer-12Wpz .framer-x3wvsi, .framer-12Wpz .framer-1h3a4wd, .framer-12Wpz .framer-1koro83, .framer-12Wpz .framer-p1ydcz { gap: 0px; } .framer-12Wpz.framer-v8561 > *, .framer-12Wpz .framer-5iq3yv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-12Wpz.framer-v8561 > :first-child, .framer-12Wpz .framer-5iq3yv > :first-child, .framer-12Wpz .framer-d4ttwf > :first-child, .framer-12Wpz .framer-1mn7tnw > :first-child, .framer-12Wpz .framer-1xzxf7b > :first-child, .framer-12Wpz .framer-10z2nqt > :first-child, .framer-12Wpz .framer-7meatc > :first-child, .framer-12Wpz .framer-16hgcd0 > :first-child, .framer-12Wpz .framer-e1djbv > :first-child, .framer-12Wpz .framer-189diex > :first-child, .framer-12Wpz .framer-11ituvi > :first-child, .framer-12Wpz .framer-44kubm > :first-child, .framer-12Wpz .framer-18qmylf > :first-child, .framer-12Wpz .framer-1exe3ri > :first-child, .framer-12Wpz .framer-jah8j7 > :first-child, .framer-12Wpz .framer-1p8se0f > :first-child, .framer-12Wpz .framer-cd6cv0 > :first-child, .framer-12Wpz .framer-1sqnh6j > :first-child, .framer-12Wpz .framer-78bms7 > :first-child, .framer-12Wpz .framer-143ivmq > :first-child, .framer-12Wpz .framer-fitzcw > :first-child, .framer-12Wpz .framer-dlleld > :first-child, .framer-12Wpz .framer-wthct3 > :first-child, .framer-12Wpz .framer-1thnuyb > :first-child, .framer-12Wpz .framer-jhp2by > :first-child, .framer-12Wpz .framer-14p4qbl > :first-child, .framer-12Wpz .framer-qq1uz8 > :first-child, .framer-12Wpz .framer-10iewhy > :first-child, .framer-12Wpz .framer-134z8ig > :first-child, .framer-12Wpz .framer-vcqzai > :first-child, .framer-12Wpz .framer-1celpie > :first-child, .framer-12Wpz .framer-1uia3ql > :first-child, .framer-12Wpz .framer-vlvx55 > :first-child, .framer-12Wpz .framer-x3wvsi > :first-child, .framer-12Wpz .framer-1koro83 > :first-child, .framer-12Wpz .framer-p1ydcz > :first-child { margin-top: 0px; } .framer-12Wpz.framer-v8561 > :last-child, .framer-12Wpz .framer-5iq3yv > :last-child, .framer-12Wpz .framer-d4ttwf > :last-child, .framer-12Wpz .framer-1mn7tnw > :last-child, .framer-12Wpz .framer-1xzxf7b > :last-child, .framer-12Wpz .framer-10z2nqt > :last-child, .framer-12Wpz .framer-7meatc > :last-child, .framer-12Wpz .framer-16hgcd0 > :last-child, .framer-12Wpz .framer-e1djbv > :last-child, .framer-12Wpz .framer-189diex > :last-child, .framer-12Wpz .framer-11ituvi > :last-child, .framer-12Wpz .framer-44kubm > :last-child, .framer-12Wpz .framer-18qmylf > :last-child, .framer-12Wpz .framer-1exe3ri > :last-child, .framer-12Wpz .framer-jah8j7 > :last-child, .framer-12Wpz .framer-1p8se0f > :last-child, .framer-12Wpz .framer-cd6cv0 > :last-child, .framer-12Wpz .framer-1sqnh6j > :last-child, .framer-12Wpz .framer-78bms7 > :last-child, .framer-12Wpz .framer-143ivmq > :last-child, .framer-12Wpz .framer-fitzcw > :last-child, .framer-12Wpz .framer-dlleld > :last-child, .framer-12Wpz .framer-wthct3 > :last-child, .framer-12Wpz .framer-1thnuyb > :last-child, .framer-12Wpz .framer-jhp2by > :last-child, .framer-12Wpz .framer-14p4qbl > :last-child, .framer-12Wpz .framer-qq1uz8 > :last-child, .framer-12Wpz .framer-10iewhy > :last-child, .framer-12Wpz .framer-134z8ig > :last-child, .framer-12Wpz .framer-vcqzai > :last-child, .framer-12Wpz .framer-1celpie > :last-child, .framer-12Wpz .framer-1uia3ql > :last-child, .framer-12Wpz .framer-vlvx55 > :last-child, .framer-12Wpz .framer-x3wvsi > :last-child, .framer-12Wpz .framer-1koro83 > :last-child, .framer-12Wpz .framer-p1ydcz > :last-child { margin-bottom: 0px; } .framer-12Wpz .framer-d4ttwf > *, .framer-12Wpz .framer-16hgcd0 > *, .framer-12Wpz .framer-jah8j7 > *, .framer-12Wpz .framer-1p8se0f > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-12Wpz .framer-1mn7tnw > *, .framer-12Wpz .framer-1exe3ri > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-12Wpz .framer-1xzxf7b > *, .framer-12Wpz .framer-189diex > *, .framer-12Wpz .framer-11ituvi > *, .framer-12Wpz .framer-cd6cv0 > *, .framer-12Wpz .framer-143ivmq > *, .framer-12Wpz .framer-wthct3 > *, .framer-12Wpz .framer-1thnuyb > *, .framer-12Wpz .framer-jhp2by > *, .framer-12Wpz .framer-vcqzai > *, .framer-12Wpz .framer-vlvx55 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-12Wpz .framer-1knksnc > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-12Wpz .framer-1knksnc > :first-child, .framer-12Wpz .framer-htcs3v > :first-child, .framer-12Wpz .framer-10lsxvf > :first-child, .framer-12Wpz .framer-1gbog8q > :first-child, .framer-12Wpz .framer-1e9ecfq > :first-child, .framer-12Wpz .framer-xnm1h5 > :first-child, .framer-12Wpz .framer-1t091cw > :first-child, .framer-12Wpz .framer-5zkzej > :first-child, .framer-12Wpz .framer-1gi68dn > :first-child, .framer-12Wpz .framer-m1gnq7 > :first-child, .framer-12Wpz .framer-12f2h6z > :first-child, .framer-12Wpz .framer-194c05p > :first-child, .framer-12Wpz .framer-1j0uvzq > :first-child, .framer-12Wpz .framer-8ij6m0 > :first-child, .framer-12Wpz .framer-1wey2bh > :first-child, .framer-12Wpz .framer-1h3a4wd > :first-child { margin-left: 0px; } .framer-12Wpz .framer-1knksnc > :last-child, .framer-12Wpz .framer-htcs3v > :last-child, .framer-12Wpz .framer-10lsxvf > :last-child, .framer-12Wpz .framer-1gbog8q > :last-child, .framer-12Wpz .framer-1e9ecfq > :last-child, .framer-12Wpz .framer-xnm1h5 > :last-child, .framer-12Wpz .framer-1t091cw > :last-child, .framer-12Wpz .framer-5zkzej > :last-child, .framer-12Wpz .framer-1gi68dn > :last-child, .framer-12Wpz .framer-m1gnq7 > :last-child, .framer-12Wpz .framer-12f2h6z > :last-child, .framer-12Wpz .framer-194c05p > :last-child, .framer-12Wpz .framer-1j0uvzq > :last-child, .framer-12Wpz .framer-8ij6m0 > :last-child, .framer-12Wpz .framer-1wey2bh > :last-child, .framer-12Wpz .framer-1h3a4wd > :last-child { margin-right: 0px; } .framer-12Wpz .framer-10z2nqt > *, .framer-12Wpz .framer-14p4qbl > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-12Wpz .framer-htcs3v > *, .framer-12Wpz .framer-5zkzej > *, .framer-12Wpz .framer-1wey2bh > *, .framer-12Wpz .framer-1h3a4wd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-12Wpz .framer-10lsxvf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-12Wpz .framer-7meatc > *, .framer-12Wpz .framer-1celpie > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-12Wpz .framer-1gbog8q > *, .framer-12Wpz .framer-194c05p > *, .framer-12Wpz .framer-1j0uvzq > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-12Wpz .framer-1e9ecfq > *, .framer-12Wpz .framer-1t091cw > *, .framer-12Wpz .framer-1gi68dn > *, .framer-12Wpz .framer-12f2h6z > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-12Wpz .framer-e1djbv > *, .framer-12Wpz .framer-44kubm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-12Wpz .framer-xnm1h5 > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-12Wpz .framer-18qmylf > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-12Wpz .framer-1sqnh6j > *, .framer-12Wpz .framer-fitzcw > *, .framer-12Wpz .framer-10iewhy > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-12Wpz .framer-78bms7 > *, .framer-12Wpz .framer-dlleld > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-12Wpz .framer-m1gnq7 > *, .framer-12Wpz .framer-8ij6m0 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-12Wpz .framer-qq1uz8 > *, .framer-12Wpz .framer-134z8ig > *, .framer-12Wpz .framer-p1ydcz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-12Wpz .framer-1uia3ql > *, .framer-12Wpz .framer-x3wvsi > *, .framer-12Wpz .framer-1koro83 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-12Wpz[data-border=\"true\"]::after, .framer-12Wpz [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-12Wpz.framer-v8561 { width: 810px; } .framer-12Wpz .framer-d4ttwf { padding: 60px 0px 60px 0px; } .framer-12Wpz .framer-1mn7tnw { padding: 0px 60px 0px 60px; } .framer-12Wpz .framer-1xzxf7b, .framer-12Wpz .framer-p7a4ew, .framer-12Wpz .framer-14p4qbl { width: 100%; } .framer-12Wpz .framer-7meatc { height: var(--framer-aspect-ratio-supported, 416px); } .framer-12Wpz .framer-1lweq3d-container { height: 385px; width: 686px; } .framer-12Wpz .framer-izrzvu-container { left: 64%; top: 102%; } .framer-12Wpz .framer-16hgcd0, .framer-12Wpz .framer-189diex, .framer-12Wpz .framer-1exe3ri, .framer-12Wpz .framer-cd6cv0, .framer-12Wpz .framer-78bms7, .framer-12Wpz .framer-dlleld, .framer-12Wpz .framer-1thnuyb, .framer-12Wpz .framer-vcqzai, .framer-12Wpz .framer-1uia3ql { padding: 60px; } .framer-12Wpz .framer-1gbog8q { flex-direction: column; padding: 0px; } .framer-12Wpz .framer-5myp6s-container, .framer-12Wpz .framer-fitzcw, .framer-12Wpz .framer-10iewhy, .framer-12Wpz .framer-134z8ig { flex: none; width: 100%; } .framer-12Wpz .framer-1gk0f25-container { flex: none; height: 198px; width: 100%; } .framer-12Wpz .framer-1e9ecfq { padding: 0px; } .framer-12Wpz .framer-ksios8-container, .framer-12Wpz .framer-1lrwgki-container, .framer-12Wpz .framer-13k6q0d-container, .framer-12Wpz .framer-1rcvlri-container, .framer-12Wpz .framer-1fuxsnt-container, .framer-12Wpz .framer-4c83t0-container, .framer-12Wpz .framer-sqoxnl-container, .framer-12Wpz .framer-153sfy-container { height: 100%; } .framer-12Wpz .framer-1y4hgx-container { left: 38%; top: 102%; } .framer-12Wpz .framer-xnm1h5 { --border-bottom-width: 0px; --border-color: var(--token-315a98b9-f45f-46ff-bc76-3d47326da7a9, #fafafa); --border-left-width: 0px; --border-right-width: 0px; --border-top-width: 0px; background-color: rgba(23, 23, 23, 0); } .framer-12Wpz .framer-44kubm { order: 0; } .framer-12Wpz .framer-18qmylf { order: 1; } .framer-12Wpz .framer-1g8aa2j { width: 440px; } .framer-12Wpz .framer-5aw6x9-container { left: 73%; top: 54%; } .framer-12Wpz .framer-96iik7-container { left: 31%; top: 2%; } .framer-12Wpz .framer-1t091cw { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); } .framer-12Wpz .framer-jah8j7 { align-self: start; flex: none; height: 1fr; justify-self: start; order: 1; width: 100%; } .framer-12Wpz .framer-l9wezz { align-self: start; grid-column: 1 / -1; height: 454px; justify-self: start; order: 0; width: 100%; } .framer-12Wpz .framer-1p8se0f { align-self: start; flex: none; height: auto; justify-self: start; order: 2; width: 100%; } .framer-12Wpz .framer-9a79gu-container { width: 38%; } .framer-12Wpz .framer-7i1n1d-container { left: 60%; top: 9%; } .framer-12Wpz .framer-m1gnq7, .framer-12Wpz .framer-8ij6m0 { flex-direction: column; padding: 60px; } .framer-12Wpz .framer-1jxasto, .framer-12Wpz .framer-u08a74 { align-self: unset; gap: 0px; height: min-content; justify-content: center; width: 100%; } .framer-12Wpz .framer-194c05p { align-content: flex-end; align-items: flex-end; flex-wrap: wrap; gap: 32px; width: 100%; } .framer-12Wpz .framer-65q82g-container { flex: none; height: auto; width: 71%; } .framer-12Wpz .framer-vlvx55 { padding: 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-12Wpz .framer-1gbog8q, .framer-12Wpz .framer-1t091cw, .framer-12Wpz .framer-m1gnq7, .framer-12Wpz .framer-1jxasto, .framer-12Wpz .framer-194c05p, .framer-12Wpz .framer-8ij6m0, .framer-12Wpz .framer-u08a74 { gap: 0px; } .framer-12Wpz .framer-1gbog8q > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-12Wpz .framer-1gbog8q > :first-child, .framer-12Wpz .framer-m1gnq7 > :first-child, .framer-12Wpz .framer-1jxasto > :first-child, .framer-12Wpz .framer-8ij6m0 > :first-child, .framer-12Wpz .framer-u08a74 > :first-child { margin-top: 0px; } .framer-12Wpz .framer-1gbog8q > :last-child, .framer-12Wpz .framer-m1gnq7 > :last-child, .framer-12Wpz .framer-1jxasto > :last-child, .framer-12Wpz .framer-8ij6m0 > :last-child, .framer-12Wpz .framer-u08a74 > :last-child { margin-bottom: 0px; } .framer-12Wpz .framer-1t091cw > *, .framer-12Wpz .framer-1t091cw > :first-child, .framer-12Wpz .framer-1t091cw > :last-child { margin: 0px; } .framer-12Wpz .framer-m1gnq7 > *, .framer-12Wpz .framer-8ij6m0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-12Wpz .framer-1jxasto > *, .framer-12Wpz .framer-u08a74 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-12Wpz .framer-194c05p > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-12Wpz .framer-194c05p > :first-child { margin-left: 0px; } .framer-12Wpz .framer-194c05p > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-12Wpz.framer-v8561 { overflow: hidden; width: 390px; } .framer-12Wpz .framer-d4ttwf { gap: 20px; padding: 80px 0px 32px 0px; } .framer-12Wpz .framer-1mn7tnw { gap: 32px; padding: 0px 20px 0px 20px; } .framer-12Wpz .framer-1xzxf7b { gap: 32px; width: 100%; } .framer-12Wpz .framer-1knksnc { width: 350px; } .framer-12Wpz .framer-htcs3v, .framer-12Wpz .framer-1gi68dn, .framer-12Wpz .framer-12f2h6z, .framer-12Wpz .framer-1wey2bh { flex-direction: column; gap: 24px; } .framer-12Wpz .framer-7meatc { height: var(--framer-aspect-ratio-supported, 211px); padding: 8px; } .framer-12Wpz .framer-1lweq3d-container { height: 192px; width: 358px; } .framer-12Wpz .framer-izrzvu-container { left: 74%; top: 100%; } .framer-12Wpz .framer-16hgcd0, .framer-12Wpz .framer-189diex, .framer-12Wpz .framer-1exe3ri, .framer-12Wpz .framer-cd6cv0, .framer-12Wpz .framer-78bms7, .framer-12Wpz .framer-dlleld, .framer-12Wpz .framer-1thnuyb { padding: 32px 20px 32px 20px; } .framer-12Wpz .framer-1gbog8q, .framer-12Wpz .framer-1e9ecfq { flex-direction: column; padding: 0px; } .framer-12Wpz .framer-5myp6s-container, .framer-12Wpz .framer-1gk0f25-container, .framer-12Wpz .framer-ksios8-container, .framer-12Wpz .framer-1lrwgki-container, .framer-12Wpz .framer-134z8ig, .framer-12Wpz .framer-1koro83 { flex: none; width: 100%; } .framer-12Wpz .framer-1y4hgx-container { left: 27%; top: 103%; } .framer-12Wpz .framer-xnm1h5 { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; background-color: rgba(23, 23, 23, 0); gap: 20px; overflow: visible; padding: 0px 32px 32px 0px; width: 100%; will-change: unset; } .framer-12Wpz .framer-44kubm { background-color: var(--token-7ac1099e-1a60-43ed-bc04-c0e84758bb14, #ffffff); padding: 0px 4px 4px 4px; } .framer-12Wpz .framer-18qmylf { flex: 1 0 0px; width: 1px; } .framer-12Wpz .framer-v1qx4o { align-self: unset; width: 100%; } .framer-12Wpz .framer-1g8aa2j, .framer-12Wpz .framer-9a79gu-container, .framer-12Wpz .framer-11vetz7, .framer-12Wpz .framer-icwa3r, .framer-12Wpz .framer-s59hfg, .framer-12Wpz .framer-sbta59, .framer-12Wpz .framer-1brxl4d, .framer-12Wpz .framer-150aipv, .framer-12Wpz .framer-1c0gt6a-container, .framer-12Wpz .framer-yptqto-container { width: 100%; } .framer-12Wpz .framer-96iik7-container { left: 74%; top: 0%; } .framer-12Wpz .framer-1t091cw { flex-direction: column; } .framer-12Wpz .framer-jah8j7 { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-12Wpz .framer-l9wezz { align-self: unset; height: 355px; order: 0; width: 100%; } .framer-12Wpz .framer-1p8se0f { flex: none; order: 2; width: 100%; } .framer-12Wpz .framer-1wll5za { width: 90%; } .framer-12Wpz .framer-5zkzej { flex-direction: column; gap: 32px; } .framer-12Wpz .framer-1sqnh6j { align-content: center; align-items: center; flex: none; width: 100%; } .framer-12Wpz .framer-7i1n1d-container { left: 22%; top: 6%; } .framer-12Wpz .framer-m1gnq7, .framer-12Wpz .framer-8ij6m0 { flex-direction: column; padding: 32px 20px 32px 20px; } .framer-12Wpz .framer-1jxasto, .framer-12Wpz .framer-u08a74 { align-self: unset; gap: 0px; height: min-content; justify-content: center; width: 100%; } .framer-12Wpz .framer-fitzcw, .framer-12Wpz .framer-10iewhy { flex: none; gap: 20px; width: 100%; } .framer-12Wpz .framer-99vzui-container { height: 599px; order: 0; width: 340px; } .framer-12Wpz .framer-jhp2by, .framer-12Wpz .framer-yfyijt-container, .framer-12Wpz .framer-1c1zyda { order: 0; } .framer-12Wpz .framer-14p4qbl { order: 2; width: 100%; } .framer-12Wpz .framer-1i3bbad-container, .framer-12Wpz .framer-1fziqn4 { order: 1; } .framer-12Wpz .framer-vcqzai { gap: 32px; padding: 32px 20px 12px 20px; } .framer-12Wpz .framer-1celpie { gap: 20px; padding: 24px; } .framer-12Wpz .framer-nbegwt { order: 2; } .framer-12Wpz .framer-1uia3ql { gap: 32px; padding: 32px 20px 32px 20px; } .framer-12Wpz .framer-vlvx55 { gap: 24px; padding: 32px 20px 32px 20px; } .framer-12Wpz .framer-x3wvsi { flex: none; gap: 8px; width: 100%; } .framer-12Wpz .framer-1h3a4wd { flex-direction: column; gap: 12px; } .framer-12Wpz .framer-p1ydcz { align-content: center; align-items: center; align-self: unset; height: 48px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-12Wpz .framer-d4ttwf, .framer-12Wpz .framer-1mn7tnw, .framer-12Wpz .framer-1xzxf7b, .framer-12Wpz .framer-htcs3v, .framer-12Wpz .framer-1gbog8q, .framer-12Wpz .framer-1e9ecfq, .framer-12Wpz .framer-xnm1h5, .framer-12Wpz .framer-1t091cw, .framer-12Wpz .framer-5zkzej, .framer-12Wpz .framer-1gi68dn, .framer-12Wpz .framer-m1gnq7, .framer-12Wpz .framer-1jxasto, .framer-12Wpz .framer-fitzcw, .framer-12Wpz .framer-12f2h6z, .framer-12Wpz .framer-8ij6m0, .framer-12Wpz .framer-u08a74, .framer-12Wpz .framer-10iewhy, .framer-12Wpz .framer-vcqzai, .framer-12Wpz .framer-1celpie, .framer-12Wpz .framer-1uia3ql, .framer-12Wpz .framer-vlvx55, .framer-12Wpz .framer-1wey2bh, .framer-12Wpz .framer-x3wvsi, .framer-12Wpz .framer-1h3a4wd { gap: 0px; } .framer-12Wpz .framer-d4ttwf > *, .framer-12Wpz .framer-fitzcw > *, .framer-12Wpz .framer-10iewhy > *, .framer-12Wpz .framer-1celpie > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-12Wpz .framer-d4ttwf > :first-child, .framer-12Wpz .framer-1mn7tnw > :first-child, .framer-12Wpz .framer-1xzxf7b > :first-child, .framer-12Wpz .framer-htcs3v > :first-child, .framer-12Wpz .framer-1gbog8q > :first-child, .framer-12Wpz .framer-1e9ecfq > :first-child, .framer-12Wpz .framer-1t091cw > :first-child, .framer-12Wpz .framer-5zkzej > :first-child, .framer-12Wpz .framer-1gi68dn > :first-child, .framer-12Wpz .framer-m1gnq7 > :first-child, .framer-12Wpz .framer-1jxasto > :first-child, .framer-12Wpz .framer-fitzcw > :first-child, .framer-12Wpz .framer-12f2h6z > :first-child, .framer-12Wpz .framer-8ij6m0 > :first-child, .framer-12Wpz .framer-u08a74 > :first-child, .framer-12Wpz .framer-10iewhy > :first-child, .framer-12Wpz .framer-vcqzai > :first-child, .framer-12Wpz .framer-1celpie > :first-child, .framer-12Wpz .framer-1uia3ql > :first-child, .framer-12Wpz .framer-vlvx55 > :first-child, .framer-12Wpz .framer-1wey2bh > :first-child, .framer-12Wpz .framer-x3wvsi > :first-child, .framer-12Wpz .framer-1h3a4wd > :first-child { margin-top: 0px; } .framer-12Wpz .framer-d4ttwf > :last-child, .framer-12Wpz .framer-1mn7tnw > :last-child, .framer-12Wpz .framer-1xzxf7b > :last-child, .framer-12Wpz .framer-htcs3v > :last-child, .framer-12Wpz .framer-1gbog8q > :last-child, .framer-12Wpz .framer-1e9ecfq > :last-child, .framer-12Wpz .framer-1t091cw > :last-child, .framer-12Wpz .framer-5zkzej > :last-child, .framer-12Wpz .framer-1gi68dn > :last-child, .framer-12Wpz .framer-m1gnq7 > :last-child, .framer-12Wpz .framer-1jxasto > :last-child, .framer-12Wpz .framer-fitzcw > :last-child, .framer-12Wpz .framer-12f2h6z > :last-child, .framer-12Wpz .framer-8ij6m0 > :last-child, .framer-12Wpz .framer-u08a74 > :last-child, .framer-12Wpz .framer-10iewhy > :last-child, .framer-12Wpz .framer-vcqzai > :last-child, .framer-12Wpz .framer-1celpie > :last-child, .framer-12Wpz .framer-1uia3ql > :last-child, .framer-12Wpz .framer-vlvx55 > :last-child, .framer-12Wpz .framer-1wey2bh > :last-child, .framer-12Wpz .framer-x3wvsi > :last-child, .framer-12Wpz .framer-1h3a4wd > :last-child { margin-bottom: 0px; } .framer-12Wpz .framer-1mn7tnw > *, .framer-12Wpz .framer-1xzxf7b > *, .framer-12Wpz .framer-1e9ecfq > *, .framer-12Wpz .framer-1t091cw > *, .framer-12Wpz .framer-5zkzej > *, .framer-12Wpz .framer-vcqzai > *, .framer-12Wpz .framer-1uia3ql > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-12Wpz .framer-htcs3v > *, .framer-12Wpz .framer-1gbog8q > *, .framer-12Wpz .framer-1gi68dn > *, .framer-12Wpz .framer-12f2h6z > *, .framer-12Wpz .framer-vlvx55 > *, .framer-12Wpz .framer-1wey2bh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-12Wpz .framer-xnm1h5 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-12Wpz .framer-xnm1h5 > :first-child { margin-left: 0px; } .framer-12Wpz .framer-xnm1h5 > :last-child { margin-right: 0px; } .framer-12Wpz .framer-m1gnq7 > *, .framer-12Wpz .framer-8ij6m0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-12Wpz .framer-1jxasto > *, .framer-12Wpz .framer-u08a74 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-12Wpz .framer-x3wvsi > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-12Wpz .framer-1h3a4wd > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11702\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NV0IMzftj\":{\"layout\":[\"fixed\",\"auto\"]},\"hEahs4EIM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"igeIoXNo4\":{\"pattern\":\":igeIoXNo4\",\"name\":\"nav\"},\"CCAdFOUOr\":{\"pattern\":\":CCAdFOUOr\",\"name\":\"who-content\"},\"i112AIhwN\":{\"pattern\":\":i112AIhwN\",\"name\":\"who-content\"},\"U3EI1jocC\":{\"pattern\":\":U3EI1jocC\",\"name\":\"benefits\"},\"fArNphS7g\":{\"pattern\":\":fArNphS7g\",\"name\":\"problem-content\"},\"GgbWgIwDQ\":{\"pattern\":\":GgbWgIwDQ\",\"name\":\"solution-content\"},\"l4gA2wCI9\":{\"pattern\":\":l4gA2wCI9\",\"name\":\"result-content\"},\"YDOvb_rkf\":{\"pattern\":\":YDOvb_rkf\",\"name\":\"testimonials\"},\"k8djHDUAH\":{\"pattern\":\":k8djHDUAH\",\"name\":\"testimonial-content\"},\"EPH1G8Tx4\":{\"pattern\":\":EPH1G8Tx4\",\"name\":\"faq\"},\"H0pXPVP7Z\":{\"pattern\":\":H0pXPVP7Z\",\"name\":\"faq-content\"},\"WqUrGkXSA\":{\"pattern\":\":WqUrGkXSA\",\"name\":\"testimonials\"},\"xY8sZFGMu\":{\"pattern\":\":xY8sZFGMu\",\"name\":\"testimonial-content\"},\"t6jMAJRU3\":{\"pattern\":\":t6jMAJRU3\",\"name\":\"pricing\"},\"Z6TNYnWLM\":{\"pattern\":\":Z6TNYnWLM\",\"name\":\"pricing-content\"},\"MwQXBHHw4\":{\"pattern\":\":MwQXBHHw4\",\"name\":\"faq\"},\"AqlDPiIfZ\":{\"pattern\":\":AqlDPiIfZ\",\"name\":\"faq-content\"},\"mqNdWyq95\":{\"pattern\":\":mqNdWyq95\",\"name\":\"about\"},\"LHCDgTTaF\":{\"pattern\":\":LHCDgTTaF\",\"name\":\"about-content\"},\"nPMIFttVh\":{\"pattern\":\":nPMIFttVh\",\"name\":\"result\"}}\n * @framerResponsiveScreen\n */const FramerbGV1hUG1I=withCSS(Component,css,\"framer-12Wpz\");export default FramerbGV1hUG1I;FramerbGV1hUG1I.displayName=\"Home\";FramerbGV1hUG1I.defaultProps={height:11702,width:1200};addFonts(FramerbGV1hUG1I,[{explicitInter:true,fonts:[{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjY1I8Gcw6Oi.woff2\",weight:\"700\"},{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNbYRI4CN2V.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Freehand\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/freehand/v32/cIf-Ma5eqk01VjKTgAmETmUOmZJk.woff2\",weight:\"400\"}]},...SmoothScrollFonts,...ElementsListTagFonts,...ElementsButtonFonts,...ElementsSocialProofFonts,...ElementsArrowFonts,...EmbedFonts,...ComponentsSectionHeadingFonts,...ComponentsBoxFonts,...PhosphorFonts,...ComponentsReviewFonts,...ElementsFAQFonts,...ComponentsPricingCardFonts,...TickerFonts,...ComponentsFooterFonts,...NavigationNavigationFonts,...ElementsCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbGV1hUG1I\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"11702\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NV0IMzftj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hEahs4EIM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"igeIoXNo4\\\":{\\\"pattern\\\":\\\":igeIoXNo4\\\",\\\"name\\\":\\\"nav\\\"},\\\"CCAdFOUOr\\\":{\\\"pattern\\\":\\\":CCAdFOUOr\\\",\\\"name\\\":\\\"who-content\\\"},\\\"i112AIhwN\\\":{\\\"pattern\\\":\\\":i112AIhwN\\\",\\\"name\\\":\\\"who-content\\\"},\\\"U3EI1jocC\\\":{\\\"pattern\\\":\\\":U3EI1jocC\\\",\\\"name\\\":\\\"benefits\\\"},\\\"fArNphS7g\\\":{\\\"pattern\\\":\\\":fArNphS7g\\\",\\\"name\\\":\\\"problem-content\\\"},\\\"GgbWgIwDQ\\\":{\\\"pattern\\\":\\\":GgbWgIwDQ\\\",\\\"name\\\":\\\"solution-content\\\"},\\\"l4gA2wCI9\\\":{\\\"pattern\\\":\\\":l4gA2wCI9\\\",\\\"name\\\":\\\"result-content\\\"},\\\"YDOvb_rkf\\\":{\\\"pattern\\\":\\\":YDOvb_rkf\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"k8djHDUAH\\\":{\\\"pattern\\\":\\\":k8djHDUAH\\\",\\\"name\\\":\\\"testimonial-content\\\"},\\\"EPH1G8Tx4\\\":{\\\"pattern\\\":\\\":EPH1G8Tx4\\\",\\\"name\\\":\\\"faq\\\"},\\\"H0pXPVP7Z\\\":{\\\"pattern\\\":\\\":H0pXPVP7Z\\\",\\\"name\\\":\\\"faq-content\\\"},\\\"WqUrGkXSA\\\":{\\\"pattern\\\":\\\":WqUrGkXSA\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"xY8sZFGMu\\\":{\\\"pattern\\\":\\\":xY8sZFGMu\\\",\\\"name\\\":\\\"testimonial-content\\\"},\\\"t6jMAJRU3\\\":{\\\"pattern\\\":\\\":t6jMAJRU3\\\",\\\"name\\\":\\\"pricing\\\"},\\\"Z6TNYnWLM\\\":{\\\"pattern\\\":\\\":Z6TNYnWLM\\\",\\\"name\\\":\\\"pricing-content\\\"},\\\"MwQXBHHw4\\\":{\\\"pattern\\\":\\\":MwQXBHHw4\\\",\\\"name\\\":\\\"faq\\\"},\\\"AqlDPiIfZ\\\":{\\\"pattern\\\":\\\":AqlDPiIfZ\\\",\\\"name\\\":\\\"faq-content\\\"},\\\"mqNdWyq95\\\":{\\\"pattern\\\":\\\":mqNdWyq95\\\",\\\"name\\\":\\\"about\\\"},\\\"LHCDgTTaF\\\":{\\\"pattern\\\":\\\":LHCDgTTaF\\\",\\\"name\\\":\\\"about-content\\\"},\\\"nPMIFttVh\\\":{\\\"pattern\\\":\\\":nPMIFttVh\\\",\\\"name\\\":\\\"result\\\"}}\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"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", "l", "cubicBezier", "__rest", "e", "r", "n", "e", "t", "r", "n", "calcGeneratorVelocity", "t", "s", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "o", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "noopReturn", "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", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "AiyNM6EIW", "PcoTO7nHk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ihqjoj", "args", "CycleVariantState", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerAeFnBTGf7", "withCSS", "AeFnBTGf7_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "bodyText", "height", "icon", "id", "showIcon", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "owOqFMHta", "dkLbwmgIn", "b5lyZZ_GG", "xMNpTyGY5", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "Framerky9I7UTxq", "withCSS", "ky9I7UTxq_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ElementsStarsFonts", "getFonts", "tVYLL3fH9_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "name1", "review", "role", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Zqn6hBsPf", "ePtRxbBKH", "ZMdTlQSsb", "wmTcwD60X", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "css", "FramernuP83hLe9", "withCSS", "nuP83hLe9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "fE3cVw3uz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntert682wp", "overlay", "paginationInfo", "args", "ref1", "pe", "ref2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "l", "u", "cx", "AnimatePresence", "Floating", "RichText2", "ComponentViewportProvider", "css", "FramerKYNVBykpG", "withCSS", "KYNVBykpG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "HelperInfoOverlaysFonts", "KYNVBykpG_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "infoIconVisible", "overlayText", "padding", "text", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "qGtZ4DZnr", "pp9Jn2WGt", "Y_ddFQkue", "iVyUmpPlV", "vMSgRukJP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerAPXWXdyVo", "withCSS", "APXWXdyVo_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "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", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "H66JozB37", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerfPTVvBdO5", "withCSS", "fPTVvBdO5_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "ElementsButtonFonts", "XNhmR7u5R_default", "ElementsListItemFonts", "APXWXdyVo_default", "ElementsTagFonts", "fPTVvBdO5_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cursor", "height", "id", "link", "price", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "we5VmgciF", "pDVF3BWxr", "xsaIyDoJv", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "RichText2", "css", "FramerxjZCbgFcg", "withCSS", "xjZCbgFcg_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "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", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "H66JozB37", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerfPTVvBdO5", "withCSS", "fPTVvBdO5_default", "addPropertyControls", "ControlType", "addFonts", "ElementsTagFonts", "getFonts", "fPTVvBdO5_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "byline", "height", "id", "tagText", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "WTCErdx1k", "I6DOV1pRR", "tuKQBbiAw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "visible", "visible1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerZFTu0Io5O", "withCSS", "ZFTu0Io5O_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "SmoothScrollFonts", "getFonts", "SmoothScroll", "ElementsListTagFonts", "gj8IwY_Dj_default", "ElementsButtonFonts", "XNhmR7u5R_default", "ElementsSocialProofFonts", "gNnktBTXP_default", "ElementsArrowFonts", "VKR10wKG4_default", "ContainerWithFX", "withFX", "Container", "EmbedFonts", "Embed", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "ComponentsSectionHeadingFonts", "ZFTu0Io5O_default", "ComponentsBoxFonts", "ky9I7UTxq_default", "PhosphorFonts", "Icon", "ComponentsReviewFonts", "nuP83hLe9_default", "ElementsFAQFonts", "AeFnBTGf7_default", "ComponentsPricingCardFonts", "xjZCbgFcg_default", "TickerFonts", "Ticker", "MotionDivWithFX", "ComponentsFooterFonts", "wEyi6INNi_default", "NavigationNavigationFonts", "adzXhjWKW_default", "NavigationNavigationWithVariantAppearEffect", "withVariantAppearEffect", "ElementsCursorFonts", "QGXwbS2Gt_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "transition1", "animation", "transition2", "animation1", "animation2", "transformTemplate1", "_", "transformTemplate2", "animation3", "transition3", "textEffect", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "transition4", "cursor1", "cursor2", "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", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "isDisplayed", "elementId5", "ref6", "isDisplayed1", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "router", "useRouter", "elementId9", "ref10", "elementId10", "ref11", "elementId11", "ref12", "elementId12", "ref13", "elementId13", "ref14", "elementId14", "ref15", "isDisplayed2", "elementId15", "ref16", "elementId16", "ref17", "isDisplayed3", "elementId17", "ref18", "elementId18", "ref19", "elementId19", "ref20", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "RichText2", "Image2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "SVG", "css", "FramerbGV1hUG1I", "withCSS", "bGV1hUG1I_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
