{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/qRicPjsn7lqAFhUpVEJw/wsYYtENjQk0KRlujgBY2/HgKWRU5cM.js", "ssg:https://framerusercontent.com/modules/4YWWzj4Km7yqicjoCm2H/jO5zdHqCH551J62O4W3P/JDIZfHyyT.js", "ssg:https://framerusercontent.com/modules/AeXfyHEiavK8hoNMLjKG/49dyHZL6Kw19xITwUUeV/kSGxmCCoQ.js", "ssg:https://framerusercontent.com/modules/GJWzCW81JgnedQVDuS9O/DLUrrpjoiwxYBe781ZBw/xc8lv2PQF.js", "ssg:https://framerusercontent.com/modules/NEOd1rMOa6dtD29QXUG2/k0SUi2eu9b5t3In7u6UR/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\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 axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea: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;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);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)})},index+\"-original\");});}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:isLayerTooBig===true?\"auto\":\"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(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// 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||supportsWaapi){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||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Inter-600\"]);export const fonts=[{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:css/HgKWRU5cM:default\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\",weight:\"600\"}];export const css=['.framer-6hRrT .framer-styles-preset-1wjjzog:not(.rich-text-wrapper), .framer-6hRrT .framer-styles-preset-1wjjzog.rich-text-wrapper p, .framer-6hRrT .framer-styles-preset-1wjjzog.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #666666; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-6hRrT\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0885f34)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/qRicPjsn7lqAFhUpVEJw/wsYYtENjQk0KRlujgBY2/HgKWRU5cM.js\";const cycleOrder=[\"N61FsPvBt\",\"JZTi9zOUa\"];const variantClassNames={JZTi9zOUa:\"framer-v-2lyczf\",N61FsPvBt:\"framer-v-1d51j9y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={Closed:\"N61FsPvBt\",Open:\"JZTi9zOUa\"};const transitions={default:{damping:40,delay:0,duration:0,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"N61FsPvBt\",question:W88zB8mIG=\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",answer:T8rQFvSBR=\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"N61FsPvBt\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap2wrxd7=activeVariantCallback(async(...args)=>{setVariant(\"JZTi9zOUa\");});const onTapzc6ei0=activeVariantCallback(async(...args)=>{setVariant(\"N61FsPvBt\");});const isDisplayed=()=>{if(baseVariant===\"JZTi9zOUa\")return true;return false;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-VVL85\",sharedStyle.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-1d51j9y\",className),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"N61FsPvBt\",ref:ref,style:{...style},transition:transition,...addPropertyOverrides({JZTi9zOUa:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-kc1y8h\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"bQOn5duVh\",onTap:onTap2wrxd7,transition:transition,...addPropertyOverrides({JZTi9zOUa:{onTap:onTapzc6ei0}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1k6lcpt\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"v4VcYOUIZ\",style:{opacity:.3,rotate:0},transition:transition,variants:{JZTi9zOUa:{rotate:45}},children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1cniqsp\",layoutDependency:layoutDependency,layoutId:\"O9no9JEmD\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},transition:transition}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-5jljo8\",layoutDependency:layoutDependency,layoutId:\"bQOcxcL7T\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},transition:transition})]}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-1wjjzog\",\"data-styles-preset\":\"HgKWRU5cM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"What is Framer?\"})}),className:\"framer-q7ceo4\",layoutDependency:layoutDependency,layoutId:\"c3uDyFyT2\",style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,transition:transition,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1xmf1aa\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"QSIj1YYQm\",style:{opacity:0},transition:transition,variants:{JZTi9zOUa:{opacity:1}},children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-1wjjzog\",\"data-styles-preset\":\"HgKWRU5cM\",children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1yk021p\",layoutDependency:layoutDependency,layoutId:\"YY93wzcf5\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,transition:transition,variants:{JZTi9zOUa:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})});});const css=['.framer-VVL85 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VVL85 * { box-sizing: border-box; }\",\".framer-VVL85 .framer-xy52j3 { display: block; }\",\".framer-VVL85 .framer-1d51j9y { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-VVL85 .framer-kc1y8h { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-VVL85 .framer-1k6lcpt { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-VVL85 .framer-1cniqsp { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-VVL85 .framer-5jljo8 { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-VVL85 .framer-q7ceo4 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-VVL85 .framer-1xmf1aa { 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 20px 20px 40px; position: relative; width: 100%; }\",\".framer-VVL85 .framer-1yk021p { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VVL85 .framer-1d51j9y, .framer-VVL85 .framer-kc1y8h, .framer-VVL85 .framer-1xmf1aa { gap: 0px; } .framer-VVL85 .framer-1d51j9y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-VVL85 .framer-1d51j9y > :first-child, .framer-VVL85 .framer-1xmf1aa > :first-child { margin-top: 0px; } .framer-VVL85 .framer-1d51j9y > :last-child, .framer-VVL85 .framer-1xmf1aa > :last-child { margin-bottom: 0px; } .framer-VVL85 .framer-kc1y8h > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-VVL85 .framer-kc1y8h > :first-child { margin-left: 0px; } .framer-VVL85 .framer-kc1y8h > :last-child { margin-right: 0px; } .framer-VVL85 .framer-1xmf1aa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JZTi9zOUa\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n */ const FramerJDIZfHyyT=withCSS(Component,css,\"framer-VVL85\");export default FramerJDIZfHyyT;FramerJDIZfHyyT.displayName=\"Row\";FramerJDIZfHyyT.defaultProps={height:88,width:400};addPropertyControls(FramerJDIZfHyyT,{variant:{options:[\"N61FsPvBt\",\"JZTi9zOUa\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerJDIZfHyyT,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJDIZfHyyT\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"88\",\"framerIntrinsicWidth\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JZTi9zOUa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JDIZfHyyT.map", "// Generated by Framer (51f36d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"KQvXSrEuI\",\"q6Tbx7wns\"];const serializationHash=\"framer-BaI25\";const variantClassNames={KQvXSrEuI:\"framer-v-1rmz8n1\",q6Tbx7wns:\"framer-v-a96wdm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const 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={Closed:\"KQvXSrEuI\",Open:\"q6Tbx7wns\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"KQvXSrEuI\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KQvXSrEuI\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ap9gx2=activeVariantCallback(async(...args)=>{setVariant(\"q6Tbx7wns\");});const onTap1ani10u=activeVariantCallback(async(...args)=>{setVariant(\"KQvXSrEuI\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"q6Tbx7wns\")return true;return false;};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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1rmz8n1\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"KQvXSrEuI\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({q6Tbx7wns:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jep1oj\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"luSKLL82f\",onTap:onTap1ap9gx2,...addPropertyOverrides({q6Tbx7wns:{onTap:onTap1ani10u}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qm706c\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"xQ4TKrGPD\",style:{opacity:.3,rotate:0},variants:{q6Tbx7wns:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ebtoi\",layoutDependency:layoutDependency,layoutId:\"kMpXCj9rv\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-my0xy\",layoutDependency:layoutDependency,layoutId:\"cTEWcymNN\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"What is Framer?\"})}),className:\"framer-1rnywq5\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"ibAkUeLe7\",style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wxv2em\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"pAz8c8WSf\",style:{opacity:0},variants:{q6Tbx7wns:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-38pwty\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"KpFefMqAU\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{q6Tbx7wns:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BaI25.framer-xwxwpl, .framer-BaI25 .framer-xwxwpl { display: block; }\",\".framer-BaI25.framer-1rmz8n1 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-BaI25 .framer-jep1oj { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-BaI25 .framer-qm706c { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-BaI25 .framer-5ebtoi { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-BaI25 .framer-my0xy { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-BaI25 .framer-1rnywq5 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-BaI25 .framer-wxv2em { 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 20px 20px 40px; position: relative; width: 100%; }\",\".framer-BaI25 .framer-38pwty { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BaI25.framer-1rmz8n1, .framer-BaI25 .framer-jep1oj, .framer-BaI25 .framer-wxv2em { gap: 0px; } .framer-BaI25.framer-1rmz8n1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BaI25.framer-1rmz8n1 > :first-child, .framer-BaI25 .framer-wxv2em > :first-child { margin-top: 0px; } .framer-BaI25.framer-1rmz8n1 > :last-child, .framer-BaI25 .framer-wxv2em > :last-child { margin-bottom: 0px; } .framer-BaI25 .framer-jep1oj > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-BaI25 .framer-jep1oj > :first-child { margin-left: 0px; } .framer-BaI25 .framer-jep1oj > :last-child { margin-right: 0px; } .framer-BaI25 .framer-wxv2em > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"q6Tbx7wns\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkSGxmCCoQ=withCSS(Component,css,\"framer-BaI25\");export default FramerkSGxmCCoQ;FramerkSGxmCCoQ.displayName=\"Row\";FramerkSGxmCCoQ.defaultProps={height:88,width:400};addPropertyControls(FramerkSGxmCCoQ,{variant:{options:[\"KQvXSrEuI\",\"q6Tbx7wns\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerkSGxmCCoQ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkSGxmCCoQ\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"88\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"400\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"q6Tbx7wns\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kSGxmCCoQ.map", "// Generated by Framer (51f36d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Row1 from\"https://framerusercontent.com/modules/4YWWzj4Km7yqicjoCm2H/jO5zdHqCH551J62O4W3P/JDIZfHyyT.js\";import Row from\"https://framerusercontent.com/modules/AeXfyHEiavK8hoNMLjKG/49dyHZL6Kw19xITwUUeV/kSGxmCCoQ.js\";const RowFonts=getFonts(Row);const Row1Fonts=getFonts(Row1);const serializationHash=\"framer-4I5MM\";const variantClassNames={QCFhJYNGV:\"framer-v-b00uvu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const 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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"QCFhJYNGV\",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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-b00uvu\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"QCFhJYNGV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-40c03004-286a-43c1-b36f-58b60663152c, rgb(242, 242, 242))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1for2ne-container\",layoutDependency:layoutDependency,layoutId:\"ODzJdYUDB-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"ODzJdYUDB\",layoutId:\"ODzJdYUDB\",style:{width:\"100%\"},T8rQFvSBR:\"AI Agent is a custom development agency focused on delivering solutions tailored to your business\u2019s unique needs. To ensure we fully understand your specific situation and processes, we offer a free consultation call. This discovery call allows us to gather all the necessary information to create an accurate and personalized pricing proposal designed just for your company.\",variant:\"KQvXSrEuI\",W88zB8mIG:\"What is AI Agent, and how does your pricing work?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11l7j20\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"zwyxa5rQK\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mz3qsk-container\",layoutDependency:layoutDependency,layoutId:\"mKXpRQ1qd-container\",children:/*#__PURE__*/_jsx(Row1,{answer:\"Our process begins with an in-depth strategy session after we partner with a new client. During this meeting, we evaluate your current workflows to identify what\u2019s working well and what could be improved. Based on this discussion, we create a detailed mind map that outlines tailored solutions designed specifically for your business needs.\\n\\nNext, we present this mind map to ensure it accurately reflects your requirements and desired outcomes. Once you provide input and approval, our development team begins building the customized solution.\\n\\nFinally, we handle the full implementation of the system for you. But we don\u2019t stop there \u2014 we provide comprehensive training to ensure your team is comfortable with the new automated workflows from day one. Our hands-on approach ensures a smooth transition and optimized processes.\",height:\"100%\",id:\"mKXpRQ1qd\",layoutId:\"mKXpRQ1qd\",question:\"How does your process work?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uzbw44\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"yIAishrO9\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cze2yh-container\",layoutDependency:layoutDependency,layoutId:\"GzudHEFlC-container\",children:/*#__PURE__*/_jsx(Row1,{answer:\"Yes, we back our services with a 30-day money-back guarantee. If you\u2019re not completely satisfied with the results within the first 30 days of working with us, we\u2019ll refund your investment \u2014 no questions asked. We\u2019re confident in our ability to deliver automated workflows that effectively streamline your business processes.\",height:\"100%\",id:\"GzudHEFlC\",layoutId:\"GzudHEFlC\",question:\"Do you offer a guarantee?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4I5MM.framer-zrtuxx, .framer-4I5MM .framer-zrtuxx { display: block; }\",\".framer-4I5MM.framer-b00uvu { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-4I5MM .framer-1for2ne-container, .framer-4I5MM .framer-mz3qsk-container, .framer-4I5MM .framer-cze2yh-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-4I5MM .framer-11l7j20, .framer-4I5MM .framer-uzbw44 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4I5MM.framer-b00uvu { gap: 0px; } .framer-4I5MM.framer-b00uvu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4I5MM.framer-b00uvu > :first-child { margin-top: 0px; } .framer-4I5MM.framer-b00uvu > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 194\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerxc8lv2PQF=withCSS(Component,css,\"framer-4I5MM\");export default Framerxc8lv2PQF;Framerxc8lv2PQF.displayName=\"Accordion 2\";Framerxc8lv2PQF.defaultProps={height:194,width:1e3};addFonts(Framerxc8lv2PQF,[{explicitInter:true,fonts:[]},...RowFonts,...Row1Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerxc8lv2PQF\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1000\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"194\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xc8lv2PQF.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Accordion2 from\"#framer/local/canvasComponent/xc8lv2PQF/xc8lv2PQF.js\";import*as sharedStyle1 from\"#framer/local/css/vKzdnkDPn/vKzdnkDPn.js\";import*as sharedStyle from\"#framer/local/css/zNTcJ6_Dw/zNTcJ6_Dw.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const RichTextWithFX=withFX(RichText);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const Accordion2Fonts=getFonts(Accordion2);const YouTubeFonts=getFonts(YouTube);const breakpoints={qQYUwnVPY:\"(min-width: 1920px)\",UTtXo12Bm:\"(min-width: 810px) and (max-width: 1279px)\",WQLkyLRf1:\"(min-width: 1455px) and (max-width: 1919px)\",Yqw9akofa:\"(min-width: 1280px) and (max-width: 1454px)\",Zqtsa08Qd:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-o53M3\";const variantClassNames={qQYUwnVPY:\"framer-v-1571b8j\",UTtXo12Bm:\"framer-v-195t1jw\",WQLkyLRf1:\"framer-v-72rtr7\",Yqw9akofa:\"framer-v-si7axr\",Zqtsa08Qd:\"framer-v-goj459\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition1};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:150};const transition3={delay:.4,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:150};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transition4={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition4};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop Small\":\"Yqw9akofa\",Desktop:\"WQLkyLRf1\",Phone:\"Zqtsa08Qd\",Tablet:\"UTtXo12Bm\",Wide:\"qQYUwnVPY\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-o53M3`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-o53M3`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Zqtsa08Qd\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"UTtXo12Bm\")return false;return true;};const elementId=useRouteElementId(\"l56Ei88bP\");const ref2=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"UTtXo12Bm\",\"Zqtsa08Qd\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"Zqtsa08Qd\")return true;return false;};const elementId1=useRouteElementId(\"y2GAuR3dU\");const ref3=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"UTtXo12Bm\")return true;return false;};const elementId2=useRouteElementId(\"ChrTVSJjI\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"YFUEGtR8s\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"bI_Vb5eMt\");const ref6=React.useRef(null);const isDisplayed5=()=>{if(!isBrowser())return true;if([\"Yqw9akofa\",\"UTtXo12Bm\",\"Zqtsa08Qd\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if(!isBrowser())return true;if([\"qQYUwnVPY\",\"UTtXo12Bm\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bjm7jr\",\"data-framer-name\":\"Section\",name:\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-135hc4d\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rh1lqj\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1328owg\",\"data-framer-name\":\"logo\",name:\"logo\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"Sc8N4J3Hk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773,intrinsicWidth:1280,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/VUS0kNLW11qn5XodMH7JcXVjfrM.png\"}},Zqtsa08Qd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition(9.5),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/VUS0kNLW11qn5XodMH7JcXVjfrM.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:773,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition(21),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/VUS0kNLW11qn5XodMH7JcXVjfrM.png\"},className:\"framer-byvrxf framer-lux5qc\",\"data-framer-name\":\"image 2\",name:\"image 2\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xh2cs9 hidden-goj459\",\"data-framer-name\":\"Column\",name:\"Column\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tiz745 hidden-195t1jw\",\"data-framer-name\":\"Column\",name:\"Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":y2GAuR3dU\",webPageId:\"augiA20Il\"},nodeId:\"PeqctOXnV\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-ruq87v\",\"data-styles-preset\":\"zNTcJ6_Dw\",children:\"Use Cases\"})})})}),className:\"framer-o0gi9k\",\"data-framer-name\":\"Link Two\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Link Two\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":bI_Vb5eMt\",webPageId:\"augiA20Il\"},nodeId:\"y_Rhb_vBP\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-ruq87v\",\"data-styles-preset\":\"zNTcJ6_Dw\",children:\"Why Us\"})})})}),className:\"framer-v3zljc\",\"data-framer-name\":\"Link Three\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Link Three\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":YFUEGtR8s\",webPageId:\"augiA20Il\"},nodeId:\"SI6eEYnWs\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-ruq87v\",\"data-styles-preset\":\"zNTcJ6_Dw\",children:\"Our Process\"})})})}),className:\"framer-1x85h6d\",\"data-framer-name\":\"Link One\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Link One\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ozhiug\",\"data-framer-name\":\"Actions\",name:\"Actions\",children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/buzzlead/ai-pilots-introductory-call\",nodeId:\"O8iKEWnPp\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-op8zkc framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(28, 31, 34)\"},children:\"Book a Meeting\"})}),className:\"framer-1a9cnp7\",\"data-framer-name\":\"Button\",fonts:[\"GF;Plus Jakarta Sans-700\"],name:\"Button\",verticalAlignment:\"top\",withExternalLayout:true})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jzngf4\",\"data-framer-name\":\"Section\",id:elementId,name:\"Section\",ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14pd3hh\",\"data-framer-name\":\"Column\",name:\"Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tohuhn\",\"data-framer-name\":\"Column\",name:\"Column\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8m8by6\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-iw0a9l\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s6cr8k\",\"data-framer-name\":\"Text Content\",name:\"Text Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zqtsa08Qd:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Is Your Business \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(70, 130, 180)\"},children:\"Future-Proof?\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let us Deploy Self-Learning AI Agents to Run Your Operations\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Is Your Business \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(70, 130, 180)\"},children:\"Future-Proof?\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let us Deploy Self-Learning AI Agents to Run Your Operations\"})]}),className:\"framer-1kpkk44\",\"data-framer-name\":\"Medium length hero headline goes here\",fonts:[\"GF;Plus Jakarta Sans-800\"],name:\"Medium length hero headline goes here\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.75)\"},children:[\"We combine \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(70, 130, 180, 0.75)\"},children:\"artificial intelligence\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(70, 130, 180, 0.75)\"},children:\"automation\"}),\" to build highly efficient workflows to replace manual work with revenue saving automations.\"]})}),className:\"framer-zlcl3a\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.75)\"},children:\"Fully customizable and done for you\"})}),className:\"framer-ayg7cn\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qbantn\",\"data-framer-name\":\"Column\",name:\"Column\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1648jc2\",\"data-framer-name\":\"Actions\",name:\"Actions\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lqy5p3\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-34wsus\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"What can you expect from working with us:\"})}),className:\"framer-1byhgjb\",\"data-framer-name\":\"Text\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tiy578\",\"data-framer-name\":\"Features\",name:\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eau9s9\",\"data-border\":true,\"data-framer-name\":\"Text\",name:\"Text\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-jzcaux hidden-195t1jw hidden-goj459\",\"data-framer-name\":\"Icon / check\",name:\"Icon / check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4gym29\",\"data-framer-name\":\"icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:15,name:\"icon\",svg:'<svg width=\"15\" height=\"12\" viewBox=\"0 0 15 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.99997 8.30277L1.70697 5.00977L0.292969 6.42377L4.99997 11.1308L14.707 1.42377L13.293 0.00976562L4.99997 8.30277Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fully Customizable AI Agent \"})}),className:\"framer-bc0yq9\",\"data-framer-name\":\"Text\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11mibdj\",\"data-border\":true,\"data-framer-name\":\"Text\",name:\"Text\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uwayqd hidden-195t1jw hidden-goj459\",\"data-framer-name\":\"Icon / check\",name:\"Icon / check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-hjcvqm\",\"data-framer-name\":\"icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:15,name:\"icon\",svg:'<svg width=\"15\" height=\"12\" viewBox=\"0 0 15 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.99997 8.30277L1.70697 5.00977L0.292969 6.42377L4.99997 11.1308L14.707 1.42377L13.293 0.00976562L4.99997 8.30277Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Orchestrated Technology Stack\"})}),className:\"framer-7to8cn\",\"data-framer-name\":\"Text\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/d/ckmr-kng-h2z\",nodeId:\"pzJhnOGyt\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ee58x2 framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a Meeting\"})}),className:\"framer-d0yxv4\",\"data-framer-name\":\"Button\",fonts:[\"GF;Plus Jakarta Sans-800\"],name:\"Button\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rixjqj\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:802,name:\"Line 1\",svg:'<svg width=\"802\" height=\"4\" viewBox=\"-1 -1 802 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.716797\" x2=\"800\" y2=\"0.716797\" stroke=\"white\" stroke-opacity=\"0.12\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15sxx69\",\"data-framer-name\":\"Logos\",name:\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"Trusted By:\"})}),className:\"framer-12avgio\",\"data-framer-name\":\"Trusted By:\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Trusted By:\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8k95rt-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zqtsa08Qd:{gap:48}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:64,height:\"100%\",hoverFactor:0,id:\"nf63ilv_d\",layoutId:\"nf63ilv_d\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:221,pixelWidth:818,sizes:\"146px\",src:\"https://framerusercontent.com/images/RzSWYgiwomnEOEuTHxQCQHUc.png\",srcSet:\"https://framerusercontent.com/images/RzSWYgiwomnEOEuTHxQCQHUc.png?scale-down-to=512 512w,https://framerusercontent.com/images/RzSWYgiwomnEOEuTHxQCQHUc.png 818w\"},className:\"framer-du4dl4\",\"data-framer-name\":\"image 4\",name:\"image 4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/Q8qUrgNSwQz7S8EncbXcbkKcfw.png\"},className:\"framer-tl62zj\",\"data-framer-name\":\"Client Logo 3\",name:\"Client Logo 3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/eid6l45JPn8mSzelHdWXhmJGJyw.png\"},className:\"framer-14ytoph\",\"data-framer-name\":\"Client Logo 3 1\",name:\"Client Logo 3 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/td0IxuqXEN2XwYYIEwQsTsiDb0.png\"},className:\"framer-10kgbfm\",\"data-framer-name\":\"image 5\",name:\"image 5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"151px\",src:\"https://framerusercontent.com/images/1JiZY1eO1dUmtkeRqDmRoeojMOc.png\",srcSet:\"https://framerusercontent.com/images/1JiZY1eO1dUmtkeRqDmRoeojMOc.png?scale-down-to=512 512w,https://framerusercontent.com/images/1JiZY1eO1dUmtkeRqDmRoeojMOc.png 604w\"},className:\"framer-1344bwo\",\"data-framer-name\":\"image 7\",name:\"image 7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"128px\",src:\"https://framerusercontent.com/images/S4bGvs9xuWKoXhuTTRce9FMQgWU.png\",srcSet:\"https://framerusercontent.com/images/S4bGvs9xuWKoXhuTTRce9FMQgWU.png?scale-down-to=512 512w,https://framerusercontent.com/images/S4bGvs9xuWKoXhuTTRce9FMQgWU.png 516w\"},className:\"framer-dar71d\",\"data-framer-name\":\"image 3\",name:\"image 3\"})],speed:65,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ojlpy hidden-72rtr7 hidden-1571b8j hidden-si7axr hidden-195t1jw\",\"data-framer-name\":\"Features Large\",name:\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17zekr\",\"data-framer-name\":\"Features\",name:\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x2fg3b\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zqtsa08Qd:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition(2324.4),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NXRw6GPJM32jyY2NTHHEKZQOrU8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NXRw6GPJM32jyY2NTHHEKZQOrU8.png\"},className:\"framer-1mt3jhs\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rwgn6y\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"42px\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"uppercase\"},children:\"customer service\"})}),className:\"framer-ui51wd\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Automate customer service tasks to provide prompt, personalized responses, ensuring satisfied customers and freeing up valuable time for your team.\"})}),className:\"framer-1ir48au\",fonts:[\"FS;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y80j7\",children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/buzzlead/ai-pilots-introductory-call\",nodeId:\"d7U8q4KKX\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1divu8u framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a Call\"})}),className:\"framer-15r6lb1\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t9h7ib\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d3qegp\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"uppercase\"},children:\"Sales funnels\"})}),className:\"framer-kyh78k\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Attract and captivate your ideal customers effortlessly with AI-driven sales funnels that nurture relationships and maximize revenue potential.\"})}),className:\"framer-93n9tr\",fonts:[\"FS;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o95kmu\",children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/buzzlead/ai-pilots-introductory-call\",nodeId:\"MET7lrhHR\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-139ihka framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a Call\"})}),className:\"framer-ov81a\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zqtsa08Qd:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition(3016.4),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZP9RNI2RCMiPRxvc1kSEDoWso.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZP9RNI2RCMiPRxvc1kSEDoWso.png\"},className:\"framer-1lded9p\",\"data-framer-name\":\"Image\",name:\"Image\"})})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-mbe0xn hidden-72rtr7 hidden-1571b8j hidden-si7axr hidden-195t1jw\",\"data-framer-name\":\"Features Large\",name:\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zj1zin\",\"data-framer-name\":\"Features\",name:\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vjf5jv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zqtsa08Qd:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition(3762.4),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tY8uUfDPbv8lDHqgDFrAiWIj0Fs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tY8uUfDPbv8lDHqgDFrAiWIj0Fs.png\"},className:\"framer-aa58e9\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-chcc5m\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"42px\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"uppercase\"},children:\"Client Onboarding \"})}),className:\"framer-2zs0ui\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Welcome new clients seamlessly, without lifting a finger. AI automation handles the entire onboarding process, allowing you to focus on building strong new relationships\"})}),className:\"framer-jdiith\",fonts:[\"FS;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wvoxnj\",children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/buzzlead/ai-pilots-introductory-call\",nodeId:\"clhEAGE7s\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-d1mouq framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a Call\"})}),className:\"framer-1o0y94l\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jy81f\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14dictk\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"uppercase\"},children:\"Document Generation\"})}),className:\"framer-o969ak\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Eliminate tedious drain of document creation by putting AI automation to work, unlocking newfound efficiency and focus on your business\"})}),className:\"framer-1kjgi0b\",fonts:[\"FS;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-khqvko\",children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/buzzlead/ai-pilots-introductory-call\",nodeId:\"FFctO_Q27\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-v7xcy2 framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a Call\"})}),className:\"framer-1jy8n01\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zqtsa08Qd:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition(4448.4),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WL6xE2O4FEODyJIL2HYBqryhr2M.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WL6xE2O4FEODyJIL2HYBqryhr2M.png\"},className:\"framer-im3e1u\",\"data-framer-name\":\"Image\",name:\"Image\"})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n1uctz\",\"data-framer-name\":\"Section\",id:elementId1,name:\"Section\",ref:ref3,children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jmidpq\",\"data-framer-name\":\"Section Title\",name:\"Section Title\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-l5d83f\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:\"Workflows We Automate\"})}),className:\"framer-4z4q7x\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Plus Jakarta Sans-800\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rgt927 hidden-goj459\",\"data-framer-name\":\"Container\",name:\"Container\",style:{transformPerspective:1200},children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r8vg67 hidden-195t1jw\",\"data-framer-name\":\"Row\",name:\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-90drzt\",\"data-border\":true,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition(2930.4),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/NXRw6GPJM32jyY2NTHHEKZQOrU8.png\"},className:\"framer-1p2usqp\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"42px\",\"--framer-text-transform\":\"uppercase\"},children:\"customer service\"})}),className:\"framer-s3ss16\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"26.4px\"},children:\"Seamless Support\"})}),className:\"framer-1t5dxil\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\"},children:\"Automate customer service tasks to provide prompt, personalized responses, ensuring satisfied customers and freeing up valuable time for your team.\"})}),className:\"framer-1nnwey6\",fonts:[\"FS;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/buzzlead/ai-pilots-introductory-call\",nodeId:\"KxLrug6Mv\",openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1vrabqq framer-lux5qc\",whileHover:animation6,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"Book a Call\"})}),className:\"framer-1hg4t6u\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i5q28r\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"->\"})}),className:\"framer-1y9uent\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f6xroi\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"42px\",\"--framer-text-transform\":\"uppercase\"},children:\"Sales funnels\"})}),className:\"framer-26uo5a\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"26.4px\"},children:\"Conversion Accelerator\"})}),className:\"framer-1f4tonl\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\"},children:\"Attract and captivate your ideal customers effortlessly with AI-driven sales funnels that nurture relationships and maximize revenue potential.\"})}),className:\"framer-1aorvw1\",fonts:[\"FS;Plus Jakarta Sans-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/buzzlead/ai-pilots-introductory-call\",nodeId:\"q0w3vAdlf\",openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1xk5k1f framer-lux5qc\",whileHover:animation6,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"Book a Call\"})}),className:\"framer-ng8qau\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-562qql\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"->\"})}),className:\"framer-16hqra3\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tje7b7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sqakac\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ziyxt\"})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition(2944.4),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/ZP9RNI2RCMiPRxvc1kSEDoWso.png\"},className:\"framer-1x7309w\",\"data-framer-name\":\"Funnel\",name:\"Funnel\",transformTemplate:transformTemplate1})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16jmk5v\",\"data-framer-name\":\"Line\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:2,intrinsicWidth:1184,name:\"Line\",svg:'<svg width=\"1184\" height=\"2\" viewBox=\"0 0 1184 2\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"24\" y1=\"0.716797\" x2=\"1160\" y2=\"0.716797\" stroke=\"white\" stroke-opacity=\"0.07\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l6z88h hidden-72rtr7 hidden-1571b8j hidden-si7axr hidden-goj459\",\"data-framer-name\":\"Features Large\",name:\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ti01h\",\"data-framer-name\":\"Features\",name:\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ui4i8c\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NXRw6GPJM32jyY2NTHHEKZQOrU8.png\"},className:\"framer-11za18o\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qrle13\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"42px\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"uppercase\"},children:\"customer service\"})}),className:\"framer-47yi53\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Automate customer service tasks to provide prompt, personalized responses, ensuring satisfied customers and freeing up valuable time for your team.\"})}),className:\"framer-1cp4b5k\",fonts:[\"FS;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6k0l7p\",children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/d/ckmr-kng-h2z\",nodeId:\"FLQr3_RDr\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1o4rzrs framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a Call\"})}),className:\"framer-orr2cb\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ysqgm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tlth2w\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-transform\":\"uppercase\"},children:\"Sales funnels\"})}),className:\"framer-yrjh0w\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Attract and captivate your ideal customers effortlessly with AI-driven sales funnels that nurture relationships and maximize revenue potential.\"})}),className:\"framer-yekx3s\",fonts:[\"FS;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tyvxc6\",children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/d/ckmr-kng-h2z\",nodeId:\"EygUTJBUS\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1ilz7jh framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a Call\"})}),className:\"framer-dc82bl\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZP9RNI2RCMiPRxvc1kSEDoWso.png\"},className:\"framer-pr3dsm\",\"data-framer-name\":\"Image\",name:\"Image\"})]})]})}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ndsl9q hidden-72rtr7 hidden-1571b8j hidden-si7axr hidden-goj459\",\"data-framer-name\":\"Features Large\",name:\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ebd9qz\",\"data-framer-name\":\"Features\",name:\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yu5u33\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tY8uUfDPbv8lDHqgDFrAiWIj0Fs.png\"},className:\"framer-11e6k3r\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9galmp\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"42px\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"uppercase\"},children:\"Client Onboarding \"})}),className:\"framer-1k7bu7h\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Welcome new clients seamlessly, without lifting a finger. AI automation handles the entire onboarding process, allowing you to focus on building strong new relationships\"})}),className:\"framer-9z0hsy\",fonts:[\"FS;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oibqth\",children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/d/ckmr-kng-h2z\",nodeId:\"rGRlH_10F\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-5uxu23 framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a Call\"})}),className:\"framer-o2tthp\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-koqsha\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i67jx7\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-transform\":\"uppercase\"},children:\"Document Generation\"})}),className:\"framer-1afwl2y\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Eliminate tedious drain of document creation by putting AI automation to work, unlocking newfound efficiency and focus on your business\"})}),className:\"framer-1pan5po\",fonts:[\"FS;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1luhsvu\",children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/d/ckmr-kng-h2z\",nodeId:\"Jy9kjLC_E\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-eqqqf3 framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a Call\"})}),className:\"framer-ty2slc\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WL6xE2O4FEODyJIL2HYBqryhr2M.png\"},className:\"framer-16r748f\",\"data-framer-name\":\"Image\",name:\"Image\"})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ma0v7l hidden-goj459\",\"data-framer-name\":\"Section\",id:elementId2,name:\"Section\",ref:ref4,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5h3j7a\",\"data-framer-name\":\"Container\",name:\"Container\",style:{transformPerspective:1200},children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q8sd43 hidden-195t1jw\",\"data-framer-name\":\"Row\",name:\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q0ggt4\",\"data-border\":true,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition(3521.4),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/tY8uUfDPbv8lDHqgDFrAiWIj0Fs.png\"},className:\"framer-1f4t2nw\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"42px\",\"--framer-text-transform\":\"uppercase\"},children:\"Client Onboarding \"})}),className:\"framer-k6mb2y\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"26.4px\"},children:\"Effortless Partnerships\"})}),className:\"framer-4p841\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\"},children:\"Welcome new clients seamlessly, without lifting a finger. AI automation handles the entire onboarding process, allowing you to focus on building strong new relationships\"})}),className:\"framer-8tqj1w\",fonts:[\"FS;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/d/ckmr-kng-h2z\",nodeId:\"RQXUiWI3U\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1xygclw framer-lux5qc\",whileHover:animation6,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"Book a Call\"})}),className:\"framer-1bfu05x\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2v4v74\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"->\"})}),className:\"framer-1el5cqi\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zf5iuc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"42px\",\"--framer-text-transform\":\"uppercase\"},children:\"Document Generation\"})}),className:\"framer-17ju55f\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"26.4px\"},children:\"Paperwork Simplified\"})}),className:\"framer-a5yzhv\",fonts:[\"FS;Plus Jakarta Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\"},children:\"Eliminate tedious drain of document creation by putting AI automation to work, unlocking newfound efficiency and focus on your business\"})}),className:\"framer-1mlqzlt\",fonts:[\"FS;Plus Jakarta Sans-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/d/ckmr-kng-h2z\",nodeId:\"QjTLDFbLy\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1h9vkzm framer-lux5qc\",whileHover:animation6,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"Book a Call\"})}),className:\"framer-1171s0o\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12k1u6f\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"->\"})}),className:\"framer-g3cvzm\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q6bvdf\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7egvkr\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4kqx7j\"})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition(3535.4),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/WL6xE2O4FEODyJIL2HYBqryhr2M.png\"},className:\"framer-g0xowr\",\"data-framer-name\":\"Funnel\",name:\"Funnel\",transformTemplate:transformTemplate1})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vo79th\",\"data-framer-name\":\"Line\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:2,intrinsicWidth:1184,name:\"Line\",svg:'<svg width=\"1184\" height=\"2\" viewBox=\"0 0 1184 2\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"24\" y1=\"0.716797\" x2=\"1160\" y2=\"0.716797\" stroke=\"white\" stroke-opacity=\"0.07\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sc09ji\",\"data-framer-name\":\"Section\",id:elementId3,name:\"Section\",ref:ref5,children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o5u912\",\"data-framer-name\":\"Section Title\",name:\"Section Title\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1d5tnga\",\"data-framer-name\":\"Section Title\",name:\"Section Title\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7g6s8\",\"data-framer-name\":\"Badge\",name:\"Badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Process\"})}),className:\"framer-hu1dth\",\"data-framer-name\":\"Subheading\",fonts:[\"GF;Plus Jakarta Sans-700\"],name:\"Subheading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-puhpaw\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zqtsa08Qd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Our simple\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(70, 130, 180)\"},children:\"3-step\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),\"process to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAwaXRhbGlj\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"skyrocket\"})}),\" your business\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Our simple\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(70, 130, 180)\"},children:\"3-step\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),\"process to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAwaXRhbGlj\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"skyrocket\"})}),\" your business\"]})}),className:\"framer-r1fmrg\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Plus Jakarta Sans-800\",\"GF;Plus Jakarta Sans-800italic\",\"GF;Plus Jakarta Sans-600italic\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"From Chatbots, to Voice Agents, to CRM Managers, and even content creation, we've got you covered on every step\"})}),className:\"framer-7q45v0\",fonts:[\"FS;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17tab9\",\"data-framer-name\":\"Container\",name:\"Container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pfa49q\",\"data-framer-name\":\"Row\",name:\"Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16jf9n2\",\"data-framer-name\":\"Step\",name:\"Step\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16x177v\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oy44hi\",\"data-framer-name\":\"Content Top\",name:\"Content Top\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1dph2rd\",\"data-framer-name\":\"Image\",layout:\"position\",name:\"Image\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 363 165\"><path d=\"M 135.345 72.76 C 131.14 69.76 130.306 65.15 133.571 61.548 C 137.325 57.411 141.139 53.137 146.061 49.719 C 152.786 45.041 160.972 41.52 170.677 40.602 C 175.804 40.116 180.236 38.876 184.647 37.041 C 192.99 33.561 201.989 31.938 211.793 33.534 C 215.479 34.13 218.126 35.404 219.391 38.65 C 208.185 34.294 197.862 36.185 187.098 39.719 C 190.461 40.527 193.343 41.15 196.156 41.904 C 216.401 47.349 228.733 61.452 226.773 76.274 C 225.9 82.829 221.116 88.178 215.116 92.931 C 203.303 102.294 187.706 107 170.746 109.863 C 163.03 111.164 155.354 111.424 147.737 109.514 C 139.345 107.411 133.855 101.924 132.894 95.719 C 131.943 89.555 135.502 84.109 137.326 78.363 C 139.561 71.287 144.61 65.15 150.217 59.267 C 155.227 54.02 160.972 49.123 168.295 45.274 C 168.658 45.089 168.883 44.774 169.628 44.116 C 159.236 45.63 152.188 49.883 145.786 54.787 C 139.345 59.719 134.855 65.281 135.355 72.753 Z M 158.599 106.561 C 169.089 106.397 177.54 104.466 185.765 102.164 C 197.45 98.89 207.146 93.842 214.391 86.411 C 221.812 78.794 223.106 70.801 218.891 62.322 C 214.685 53.863 205.705 48.349 194.205 45.137 C 182.863 41.972 180.912 41.637 173.079 47.26 C 172.746 47.5 172.304 47.657 171.942 47.876 C 153.795 58.876 142.237 72.486 138.551 89.192 C 136.228 99.726 144.864 106.685 158.609 106.561 Z\" fill=\"rgb(70, 130, 180)\"></path><path d=\"M 189.024 115.278 C 176.796 115.441 166.886 103.401 167.426 91.482 C 167.419 80.761 175.601 72.844 185.444 70.091 C 198.564 67.029 212.849 79.698 212.926 92.757 C 212.514 97.918 210.208 103.826 206.912 108.3 C 206.548 108.441 206.187 108.661 205.849 108.99 C 201.362 113.535 195.166 114.819 189.024 115.278 Z M 230.792 128.788 C 226.483 121.26 219.429 116.083 212.846 110.603 C 214.59 108.332 216.05 105.627 216.768 104.391 C 229.674 83.08 204.377 54.806 181.577 62.826 C 148.555 72.819 155.035 121.33 189.271 122.03 C 195.927 121.461 203 119.494 208.162 115.084 C 212.154 119.896 216.302 124.527 221.006 128.66 C 223.392 130.368 226.206 133.814 229.466 132.7 C 230.913 131.984 231.507 130.234 230.792 128.788 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9513375480,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vrlrpb\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(70, 130, 180)\"},children:\"Step 1\"})})},Zqtsa08Qd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(70, 130, 180)\"},children:\"Step 1\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(70, 130, 180)\"},children:\"Step 1\"})}),className:\"framer-1ba941x\",\"data-framer-name\":\"Subheading\",fonts:[\"GF;Plus Jakarta Sans-600\"],name:\"Subheading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1og36fd\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Diagnose\"})})},Zqtsa08Qd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Diagnose\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Diagnose\"})}),className:\"framer-13jqiql\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Plus Jakarta Sans-700\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jhpunj\",\"data-border\":true,\"data-framer-name\":\"Deliverables\",name:\"Deliverables\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16qyvs7\",\"data-styles-preset\":\"vKzdnkDPn\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We'll start by analyzing your business workflows to identify bottlenecks and determine where our AI Agents can help\"})})},Zqtsa08Qd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16qyvs7\",\"data-styles-preset\":\"vKzdnkDPn\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We'll start by analyzing your business workflows to identify bottlenecks and determine where our AI Agents can help\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16qyvs7\",\"data-styles-preset\":\"vKzdnkDPn\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We'll start by analyzing your business workflows to identify bottlenecks and determine where our AI Agents can help\"})}),className:\"framer-13wsfe3\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kw5xjt\",\"data-framer-name\":\"Step\",name:\"Step\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a5phqs\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16yj2t7\",\"data-framer-name\":\"Content Top\",name:\"Content Top\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-f4431r\",\"data-framer-name\":\"Image\",layout:\"position\",name:\"Image\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 364 165\"><path d=\"M 153.227 114.992 C 154.806 114.636 156.367 114.058 157.954 113.956 C 171.983 113.107 186.055 112.708 200.041 111.442 C 210.998 110.448 221.887 108.588 232.759 106.804 C 245.235 104.757 257.787 102.94 270.06 99.993 C 281.253 97.3 292.572 94.54 302.761 88.704 C 304.018 87.982 305.259 87.235 306.466 86.436 C 313.033 82.071 311.387 76.694 306.593 72.677 C 300.406 67.496 292.775 65.381 285.102 63.529 C 270.516 60.004 255.685 58.186 240.744 57.074 C 215.345 55.188 189.954 54.942 164.513 56.25 C 142.279 57.388 120.273 60.174 98.453 64.446 C 87.1 66.672 75.848 69.5 65.44 74.741 C 61.988 76.482 58.763 78.911 55.885 81.527 C 52.323 84.772 52.576 88.925 55.877 92.51 C 61.389 98.498 68.682 101.564 75.865 104.723 C 89.236 110.601 103.222 114.619 117.471 117.608 C 125.633 119.316 133.931 120.352 142.153 121.745 C 144.153 122.085 146.12 122.62 148.255 123.104 C 138.43 126.833 128.79 124.242 119.244 122.696 C 105.788 120.513 92.612 117.082 79.959 111.875 C 70.378 107.934 60.975 103.602 53.15 96.595 C 45.595 89.826 47.579 81.077 54.408 75.666 C 64.36 67.776 76.363 64.37 88.543 61.711 C 95.111 60.276 101.686 58.866 108.304 57.702 C 114.905 56.547 121.548 55.655 128.191 54.806 C 129.812 54.594 131.508 54.984 132.428 55.044 C 134.463 54.611 135.881 54.313 137.29 53.999 C 139.435 53.532 141.849 53.574 143.79 53.549 C 146.66 53.506 149.572 51.324 152.729 53.311 C 153.919 54.059 156.249 52.861 158.072 52.708 C 162.732 52.309 167.4 51.969 172.068 51.655 C 177.073 51.324 182.087 50.89 187.101 50.805 C 190.115 50.754 193.128 51.451 196.15 51.527 C 198.421 51.587 200.7 51.009 202.97 51.043 C 206.676 51.094 210.373 51.51 214.079 51.578 C 216.442 51.621 218.992 50.661 221.144 51.264 C 226.791 52.835 232.48 51.952 238.127 52.317 C 245.024 52.759 251.929 53.37 258.783 54.279 C 274.137 56.309 289.576 58.186 303.765 65.066 C 306.508 66.4 309.167 68.243 311.32 70.4 C 318.208 77.323 316.731 86.564 308.365 91.584 C 297.122 98.328 284.815 102.124 272.136 104.664 C 255.87 107.926 239.486 110.61 223.187 113.718 C 207.925 116.632 192.537 118.033 177.031 117.931 C 169.873 117.88 162.723 117.048 155.565 116.513 C 154.797 116.453 154.063 116.02 153.312 115.757 C 153.286 115.502 153.261 115.247 153.236 114.992 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 157.395 59.833 C 153.294 58.642 154.233 65.454 152.589 67.231 C 151.605 68.56 150.551 68.187 148.736 68.35 C 135.752 68.723 122.551 67.305 109.542 68.907 C 110.421 67.589 111.312 66.332 112.291 65.32 C 114.511 63.606 112.31 60.165 109.838 61.554 C 107.717 62.809 106.47 64.254 105.185 65.679 C 99.733 71.989 99.506 71.826 105.765 77.414 C 107.093 78.559 108.436 79.71 110.079 80.422 C 111.833 81.285 113.899 79.32 113.08 77.507 C 112.406 76.02 111.489 74.798 110.478 73.667 C 113.765 73.531 117.064 73.49 120.392 73.608 C 129.892 73.856 139.403 74.947 149.015 74.339 C 154.39 74.44 158.387 71.109 158.52 65.509 C 158.599 64.235 158.547 63.022 158.611 62.403 C 158.822 61.38 158.432 60.273 157.395 59.833 Z\" fill=\"rgb(70, 130, 180)\"></path><path d=\"M 106.006 51.868 C 106.017 49.433 106.254 47.221 107.807 46.174 C 108.875 45.648 110.484 45.344 111.779 45.148 C 123.836 44.258 136.727 45.87 149.074 44.93 C 148.426 45.884 147.776 46.839 147.179 47.838 C 145.769 49.986 148.677 52.499 150.601 50.751 C 152.878 48.714 154.945 46.489 156.979 44.234 C 157.925 43.187 157.965 41.575 157.019 40.477 C 155.322 38.332 151.855 31.517 147.891 33.164 C 145.119 35.044 148.479 37.969 149.377 39.906 L 149.382 39.915 C 141.368 39.09 133.337 39.083 125.284 39.019 C 115.592 39.172 99.573 37.488 101.523 52.093 C 101.771 54.965 106.048 54.752 106.006 51.868 Z\" fill=\"rgb(70, 130, 180)\"></path><path d=\"M 277.789 102.643 L 277.725 111.817 C 277.631 114.539 277.78 122.86 277.787 125.295 C 277.78 125.574 277.715 125.801 277.679 125.919 C 276.793 126.506 275.125 126.717 273.579 126.793 C 271.152 126.967 267.185 126.571 264.691 126.449 C 254.317 126.024 244.119 127.206 233.909 126.33 C 231.589 126.22 230.987 124.497 231.193 122.447 C 230.877 118.158 230.973 113.432 230.87 109.008 L 230.755 96.706 C 230.779 96.622 230.827 96.567 230.844 96.476 C 230.872 96.337 230.899 96.23 230.927 96.101 C 235.34 100.796 240.291 105.529 245.428 109.849 C 248.89 112.988 254.634 115.674 258.961 112.83 C 261.728 111.277 265.778 107.252 268.23 105.324 C 271.439 102.593 274.612 99.821 277.763 97.026 C 277.875 98.634 277.773 100.729 277.789 102.643 Z M 262.237 93.656 L 271.39 93.914 C 272.351 93.964 273.28 93.928 274.155 93.943 C 271.008 96.313 267.873 98.697 264.774 101.125 L 258.808 105.769 C 256.28 107.63 255.128 108.545 253.324 107.74 C 249.585 105.862 246.856 103.012 243.428 100.293 C 240.448 98.155 237.813 95.565 234.774 93.099 L 234.788 93.097 C 240.623 93.357 256.194 93.579 262.237 93.656 Z M 283.65 120.857 L 283.559 111.816 L 283.485 102.642 C 283.318 98.344 284.259 92.208 279.552 89.544 C 276.939 88.122 273.928 88.579 271.486 88.493 L 262.297 88.376 L 243.946 88.412 L 234.697 88.366 C 229.871 88.168 226.794 91.367 226.414 95.742 C 226.356 96.109 226.376 96.442 226.452 96.736 C 226.094 100.805 225.769 104.842 225.63 108.985 C 225.582 112.877 225.13 117.775 225.537 121.787 C 225.398 122.783 225.398 123.567 225.48 124.51 C 225.769 129.348 230.019 132.318 234.533 132.294 L 236.898 132.464 C 244.592 132.899 252.476 132.471 259.979 132.485 C 266.504 132.222 272.891 133.995 279.337 131.816 C 284.348 130.149 284.008 124.749 283.65 120.857 Z\" fill=\"rgb(70, 130, 180)\"></path></svg>',svgContentId:12516543208,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jz2emn\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(70, 130, 180)\"},children:\"Step 2\"})})},Zqtsa08Qd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(70, 130, 180)\"},children:\"Step 2\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(70, 130, 180)\"},children:\"Step 2\"})}),className:\"framer-18cdy8\",\"data-framer-name\":\"Subheading\",fonts:[\"GF;Plus Jakarta Sans-600\"],name:\"Subheading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16t1cfv\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Roadmap\"})})},Zqtsa08Qd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Roadmap\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Roadmap\"})}),className:\"framer-1703mvz\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Plus Jakarta Sans-700\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6czt39\",\"data-border\":true,\"data-framer-name\":\"Deliverables\",name:\"Deliverables\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Then, we lay out a step by step guide of which solutions will have the highest impact and ROI for your business\"})})},Zqtsa08Qd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Then, we lay out a step by step guide of which solutions will have the highest impact and ROI for your business\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Then, we lay out a step by step guide of which solutions will have the highest impact and ROI for your business\"})}),className:\"framer-8lrpfj\",\"data-framer-name\":\"Text\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lbie9a\",\"data-framer-name\":\"Step\",name:\"Step\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12u89xn\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xxlt76\",\"data-framer-name\":\"Content Top\",name:\"Content Top\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-129o97r\",\"data-framer-name\":\"Image\",layout:\"position\",name:\"Image\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 363 165\"><path d=\"M 226.106 129.648 C 225.314 130.291 224.9 130.905 224.381 131.01 C 220.726 131.743 217.043 132.972 213.382 132.916 C 199.745 132.707 186.059 132.672 172.507 131.415 C 157.327 130.011 142.231 127.546 127.157 125.171 C 114.776 123.223 102.584 120.346 90.849 115.82 C 81.61 112.259 73.34 107.112 66.262 100.226 C 62.53 96.594 60.061 92.327 61.204 86.684 C 62.179 81.872 65.806 79.4 69.426 77.019 C 77.822 71.473 87.306 68.477 96.972 66.054 C 102.269 64.727 107.586 63.442 112.952 62.437 C 120.984 60.935 129.03 59.44 137.125 58.407 C 147.738 57.052 158.393 56.011 169.056 55.111 C 175.313 54.587 181.633 54.258 187.897 54.51 C 192.239 54.684 196.511 54.021 200.811 54.273 C 204.585 54.489 208.345 54.999 212.119 55.215 C 213.045 55.271 214.02 54.44 214.96 54.468 C 220.957 54.636 226.969 54.782 232.946 55.285 C 234.264 55.397 235.499 55.739 236.846 55.383 C 237.267 55.271 237.842 55.69 238.333 55.893 C 238.803 56.088 239.259 56.312 239.722 56.521 C 239.785 56.2 239.848 55.886 239.911 55.564 C 240.872 55.83 241.826 56.088 243.012 56.416 C 243.874 56.291 245.207 55.697 246.259 56.018 C 250.146 57.206 254.158 56.284 258.086 57.059 C 262.113 57.855 266.265 57.981 270.334 58.581 C 278.85 59.839 287.246 61.731 294.871 65.782 C 297.53 67.192 299.95 69.7 301.563 72.277 C 303.857 75.936 301.227 82.117 296.899 85.162 C 290.55 89.631 283.262 91.873 275.96 94.017 C 258.479 99.143 240.451 101.448 222.508 104.241 C 204.648 107.021 186.684 108.508 168.628 108.62 C 158.611 108.683 148.587 108.257 138.57 107.894 C 136.739 107.831 134.894 107.125 133.133 106.497 C 131.183 105.806 130.671 104.339 131.387 102.384 C 132.158 100.267 133.715 100.945 134.985 101.483 C 140.078 103.641 145.416 104.199 150.866 104.095 C 165.696 103.808 180.532 103.689 195.347 103.103 C 202.277 102.83 209.201 101.804 216.075 100.805 C 228.884 98.948 241.749 97.271 254.439 94.75 C 267.353 92.18 280.309 89.408 292.059 83.004 C 293.258 82.354 294.408 81.572 295.447 80.685 C 299.733 77.053 299.368 74.309 295.299 70.789 C 291.098 67.15 285.752 65.698 280.463 64.727 C 271.386 63.058 262.253 61.368 253.071 60.642 C 238.193 59.461 223.251 58.693 208.331 58.421 C 194.603 58.169 180.833 58.365 167.127 59.147 C 146.363 60.327 125.761 63.072 105.523 68.023 C 95.345 70.517 85.223 73.247 75.977 78.332 C 73.08 79.924 70.323 81.928 67.889 84.17 C 64.55 87.25 64.614 90.825 67.363 94.436 C 70.955 99.157 75.739 102.446 80.586 105.694 C 90.771 112.517 102.409 115.422 114.151 118.013 C 120.296 119.368 126.441 120.758 132.642 121.812 C 139.72 123.013 146.847 123.9 153.967 124.836 C 158.982 125.5 164.005 126.142 169.042 126.568 C 176.884 127.232 184.733 127.867 192.59 128.209 C 201.814 128.614 211.053 128.663 220.284 128.936 C 222.045 128.985 223.798 129.348 226.106 129.634 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 250.021 92.706 C 248.996 92.56 247.939 92.914 247.189 93.665 C 246.059 94.793 245.797 96.667 246.671 98.004 C 246.89 98.336 247.165 98.614 247.483 98.838 C 248.093 99.384 248.888 99.697 249.73 99.697 C 249.8 99.697 249.868 99.697 249.938 99.692 C 250.245 99.673 250.539 99.613 250.82 99.519 C 252.149 99.162 253.18 98.007 253.307 96.554 C 253.404 95.474 252.981 94.469 252.244 93.784 C 251.669 93.16 250.874 92.771 250.021 92.706 Z\" fill=\"rgb(70, 130, 180)\"></path><path d=\"M 260.263 99.82 C 260.874 99.82 261.49 99.656 262.033 99.318 C 262.903 98.861 263.652 97.988 263.887 97.055 C 264.089 96.266 264.111 95.058 263.082 93.774 C 262.395 92.923 261.379 92.46 260.244 92.517 C 259.206 92.579 258.069 93.201 257.477 94.061 C 256.977 94.79 256.771 95.68 256.885 96.577 C 256.912 97.315 257.182 98.05 257.704 98.653 C 258.371 99.426 259.314 99.82 260.263 99.82 Z\" fill=\"rgb(70, 130, 180)\"></path><path d=\"M 271.272 92.521 C 270.455 92.526 269.638 92.829 268.994 93.43 C 268.439 93.95 268.07 94.683 267.938 95.449 C 267.765 96.207 267.86 96.975 268.143 97.617 C 268.695 98.884 269.972 99.669 271.299 99.669 C 271.67 99.669 272.048 99.607 272.411 99.477 C 273.063 99.245 273.603 98.827 273.99 98.299 C 274.212 98.062 274.406 97.787 274.57 97.487 C 275.281 96.185 275.055 94.57 274.015 93.511 C 273.279 92.764 272.255 92.424 271.272 92.521 Z\" fill=\"rgb(70, 130, 180)\"></path><path d=\"M 261.126 103.215 C 259.289 102.928 257.563 104.195 257.28 106.038 L 257.269 106.103 C 256.845 107.243 257.05 108.575 257.916 109.545 C 258.583 110.288 259.502 110.667 260.428 110.667 C 261.231 110.667 262.035 110.383 262.677 109.805 C 262.766 109.726 262.847 109.645 262.923 109.562 C 263.778 108.792 264.201 107.608 263.98 106.433 C 263.929 104.844 262.75 103.466 261.126 103.215 Z\" fill=\"rgb(70, 130, 180)\"></path><path d=\"M 272.693 103.576 C 270.907 102.855 269.651 103.387 268.917 103.954 C 268.124 104.568 267.639 105.676 267.588 106.713 C 267.347 108.111 268.013 109.564 269.331 110.267 C 269.837 110.537 270.384 110.667 270.923 110.667 C 271.597 110.667 272.257 110.464 272.818 110.089 C 273.013 110.005 273.202 109.902 273.375 109.781 C 273.833 109.464 275.276 108.246 274.715 105.919 C 274.458 104.857 273.706 103.987 272.693 103.576 Z\" fill=\"rgb(70, 130, 180)\"></path><path d=\"M 249.758 114.228 C 249.257 114.206 248.724 114.287 248.223 114.503 C 246.509 115.245 245.722 117.227 246.466 118.937 C 246.869 119.863 247.765 120.661 248.74 120.936 C 248.978 121.006 249.308 121.071 249.701 121.071 C 250.312 121.071 251.07 120.914 251.863 120.367 C 253.404 119.307 253.785 117.208 252.724 115.676 C 252.028 114.676 250.919 114.193 249.757 114.228 Z\" fill=\"rgb(70, 130, 180)\"></path><path d=\"M 238.903 99.811 C 239.178 99.811 239.454 99.781 239.718 99.716 C 240.42 99.565 241.068 99.192 241.556 98.632 C 242.333 97.742 242.703 96.308 242.347 95.183 C 242.107 94.429 241.578 93.777 240.908 93.341 C 240.123 92.763 239.089 92.527 238.075 92.79 C 237.057 93.049 236.266 93.75 235.854 94.637 L 235.848 94.642 C 235.111 95.859 235.217 97.42 236.102 98.526 C 236.763 99.349 237.84 99.811 238.903 99.811 Z\" fill=\"rgb(70, 130, 180)\"></path><path d=\"M 247.583 109.885 C 248.169 110.295 248.846 110.497 249.521 110.497 C 249.645 110.497 249.772 110.489 249.896 110.475 C 250.868 110.438 251.818 109.982 252.453 109.149 C 253.314 108.017 253.349 106.516 252.655 105.367 C 252.607 105.265 252.547 105.165 252.482 105.068 C 251.548 103.659 249.634 103.152 248.112 103.89 C 247.205 104.33 246.573 105.13 246.328 106.044 C 245.847 107.454 246.352 109.022 247.583 109.885 Z\" fill=\"rgb(70, 130, 180)\"></path><path d=\"M 240.054 103.619 C 238.837 103.281 237.461 103.703 236.603 104.628 C 235.34 105.993 235.416 108.127 236.773 109.395 C 237.404 110.079 238.3 110.493 239.258 110.493 C 239.49 110.493 239.724 110.466 239.959 110.417 C 241.783 110.031 242.946 108.238 242.56 106.41 C 242.298 105.174 241.268 103.957 240.054 103.619 Z\" fill=\"rgb(70, 130, 180)\"></path><path d=\"M 238.852 114.428 C 238.757 114.428 238.663 114.436 238.566 114.444 L 238.563 114.444 L 238.56 114.444 L 238.558 114.444 C 236.766 114.624 235.422 116.181 235.527 117.987 C 235.635 119.773 237.119 121.149 238.895 121.149 C 238.96 121.149 239.027 121.149 239.094 121.144 C 239.146 121.139 239.197 121.139 239.248 121.136 L 239.248 121.131 C 240.401 121.012 241.553 120.313 242.071 119.286 C 242.611 118.211 242.535 116.933 241.872 115.931 C 241.24 114.971 240.039 114.403 238.852 114.428 Z\" fill=\"rgb(70, 130, 180)\"></path><path d=\"M 279.366 91.388 C 278.864 94.443 279.021 98.589 279.045 101.853 C 278.98 105.2 278.804 113.972 278.734 117.206 C 278.651 119.683 278.842 123.514 277.763 125.182 C 276.521 126.218 272.324 125.603 270.443 125.811 C 267.889 125.905 262.734 126.059 260.181 126.156 C 251.965 125.792 242.934 125.3 234.893 125.43 C 233.025 125.314 231.816 125.074 230.938 124.061 C 230.41 122.731 230.895 120.231 230.728 118.393 C 230.531 116.104 231.109 114.39 231.187 111.972 C 231.171 109.645 231.316 105.353 231.281 102.989 C 231.357 98.076 231.2 92.724 231.049 87.814 C 231.068 86.273 231.281 84.98 231.659 84.413 C 232.437 83.512 233.832 83.12 235.292 82.921 C 235.349 83.935 235.557 84.913 236.318 85.86 C 237.557 87.312 239.87 87.315 241.109 85.857 C 241.611 85.126 241.9 84.346 242.056 83.539 C 243.371 83.806 244.701 83.981 246.04 84.081 C 246.145 84.702 246.34 85.32 246.82 86 C 248.904 88.872 252.154 87.026 252.669 84.17 C 253.271 84.149 253.873 84.124 254.472 84.097 C 255.206 84.07 255.949 84.051 256.688 84.03 C 256.837 84.78 257.031 85.423 257.258 85.838 C 259.493 89.566 263.336 87.428 263.401 83.787 C 264.645 83.728 265.895 83.639 267.147 83.531 C 267.153 83.609 267.147 83.684 267.153 83.763 C 267.22 84.85 267.69 86.254 268.71 87.107 C 269.981 88.162 271.868 87.984 272.921 86.71 C 273.544 85.73 273.838 84.659 273.962 83.552 C 275.819 83.574 277.79 83.549 278.319 83.989 C 279.334 85.917 279.676 89.002 279.366 91.388 Z M 281.731 79.809 C 279.639 78.152 277.226 78.306 275.107 78.338 C 274.851 78.352 274.205 78.362 273.59 78.371 C 273.423 77.472 273.239 76.584 273.093 75.736 C 272.511 73.242 268.651 73.175 268.027 75.709 C 267.833 76.503 267.668 77.296 267.525 78.09 C 265.895 77.957 264.249 77.839 262.583 77.725 C 262.502 77.285 262.419 76.846 262.365 76.427 C 262.276 75.436 261.776 74.497 260.783 74.076 C 258.486 73.264 257.255 75.005 256.718 77.407 C 255.155 77.348 253.598 77.318 252.046 77.313 C 251.981 76.956 251.906 76.576 251.868 76.276 C 251.77 75.283 251.298 74.333 250.305 73.901 C 247.744 72.98 246.669 75.105 246.216 77.402 C 244.661 77.437 243.109 77.534 241.573 77.744 C 241.395 76.994 241.212 76.254 241.066 75.55 C 240.472 73.053 236.601 73.007 235.992 75.55 C 235.784 76.306 235.657 77.056 235.56 77.796 C 233.819 77.839 232.108 78.044 230.248 78.67 C 226.699 79.742 225.06 84.695 225.071 87.486 C 224.882 92.825 224.996 97.683 224.704 103.014 C 224.693 105.352 224.483 109.651 224.491 111.946 C 223.835 115.865 223.894 119.452 223.886 123.663 C 223.829 129.15 229.964 132.546 234.588 132.349 C 241.768 132.478 248.073 132.049 254.966 132.786 C 257.995 133.113 262.416 132.751 265.544 132.627 C 279.215 131.871 285.515 134.098 284.913 117.201 C 284.926 113.932 284.934 105.219 284.945 101.843 C 284.889 98.264 284.589 95.586 285.059 91.864 C 285.196 87.629 285.018 83.132 281.731 79.809 Z\" fill=\"rgb(70, 130, 180)\"></path><path d=\"M 119.786 86.642 C 117.16 86.374 112.354 86.35 110.13 85.293 C 109.659 84.986 109.644 85.007 109.361 84.419 C 108.975 83.296 108.781 82.108 108.663 80.886 C 113.707 83.425 119.643 82.69 124.922 82.387 C 126.531 82.455 128.286 82.174 129.84 81.515 C 129.753 82.374 129.63 83.22 129.334 84.046 C 127.933 86.623 123.503 86.596 119.786 86.642 Z M 113.598 39.012 C 117.814 38.094 123.652 37.859 127.457 39.853 C 131.68 42.122 129.842 45.235 125.914 47.147 C 121.136 48.925 109.435 49.435 108.6 42.73 C 108.578 42.515 108.5 42.319 108.419 42.124 C 109.692 40.487 111.438 39.548 113.598 39.012 Z M 129.07 54.883 C 128.425 56.838 127.431 56.588 124.815 57.122 C 120.061 57.778 114.54 57.582 110.115 55.79 C 108.717 54.813 108.473 52.448 108.386 50.194 C 111.394 52.411 115.496 53.056 118.95 53.152 C 122.609 53.353 126.681 52.797 129.907 50.992 C 129.615 52.409 129.269 53.889 129.07 54.883 Z M 129.487 63.449 C 129.022 66.725 126.814 67.453 123.503 67.577 C 120.113 67.636 115.874 67.662 112.563 66.899 C 110.941 66.514 109.609 65.807 109.001 64.997 C 108.369 63.608 108.214 62.076 108.203 60.489 C 108.883 60.859 109.661 61.165 110.564 61.378 C 115.407 62.956 120.543 63.292 125.578 62.664 C 127.004 62.453 128.447 62.213 129.796 61.627 C 129.7 62.248 129.611 62.878 129.487 63.449 Z M 108.761 71.024 C 111.253 72.273 114.372 72.829 117.57 72.999 C 122.655 73.498 126.827 73.234 129.77 71.715 C 129.535 73.459 129.158 75.183 128.307 76.229 C 126.673 77.012 121.341 76.94 119.191 77.258 C 115.431 77.395 111.27 77.528 109.101 75.146 C 108.624 73.801 108.713 72.487 108.761 71.024 Z M 112.151 34.197 C 109.925 34.618 103.933 38.816 104.872 41.761 C 104.255 42.777 104.537 44.381 105.082 45.813 C 104.593 46.121 104.22 46.622 104.181 47.374 C 103.966 49.698 103.846 52.183 104.242 54.426 C 104.229 54.502 104.192 54.556 104.186 54.637 C 104.074 56.424 103.75 58.48 103.628 60.592 C 103.298 63.343 103.713 65.499 104.635 67.201 C 104.543 67.46 104.497 67.755 104.521 68.088 C 104.711 70.333 103.667 73.57 104.48 76.367 C 104.421 76.543 104.351 76.718 104.345 76.914 C 104.212 79.831 103.911 82.972 104.831 86.01 C 105.733 89.879 110.954 91.209 113.807 91.396 C 120.561 92.373 131.274 93.87 134.396 85.672 C 135.268 82.64 134.566 79.323 134.226 76.653 C 134.213 76.498 134.163 76.352 134.114 76.208 C 134.697 73.326 134.703 70.562 134.056 67.722 C 134.006 67.508 133.914 67.31 133.799 67.129 C 134.64 64.858 134.832 61.872 134.228 57.968 C 134.195 57.687 134.082 57.431 133.938 57.194 C 134.487 55.607 134.478 54.086 134.544 53.1 C 134.54 51.973 135.087 48.723 134.215 46.844 C 134.609 46.164 134.945 45.425 135.198 44.612 C 136.798 32.552 120.301 31.375 112.151 34.197 Z\" fill=\"rgb(70, 130, 180)\"></path></svg>',svgContentId:9880635921,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cotjmn\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(70, 130, 180)\"},children:\"Step 3\"})})},Zqtsa08Qd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(70, 130, 180)\"},children:\"Step 3\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(70, 130, 180)\"},children:\"Step 3\"})}),className:\"framer-t9g2ob\",\"data-framer-name\":\"Subheading\",fonts:[\"GF;Plus Jakarta Sans-600\"],name:\"Subheading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aio7f8\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Execute\"})})},Zqtsa08Qd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Execute\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Execute\"})}),className:\"framer-96u001\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Plus Jakarta Sans-700\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dr2hfl\",\"data-border\":true,\"data-framer-name\":\"Deliverables\",name:\"Deliverables\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Once approved, our team begins creating your custom solutions, implementing them, and connecting them to your tech stack\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})},Zqtsa08Qd:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Once approved, our team begins creating your custom solutions, implementing them, and connecting them to your tech stack\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Once approved, our team begins creating your custom solutions, implementing them, and connecting them to your tech stack\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-z2ve8s\",\"data-framer-name\":\"Text\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fyojvf\",\"data-framer-name\":\"Section\",id:elementId4,name:\"Section\",ref:ref6,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dvvpp5\",\"data-framer-name\":\"Section\",name:\"Section\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6dv4cr\",\"data-framer-name\":\"Section Title\",name:\"Section Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wngmlc\",\"data-framer-name\":\"Badge\",name:\"Badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The AI Agent Difference\"})}),className:\"framer-c414bb\",\"data-framer-name\":\"Subheading\",fonts:[\"GF;Plus Jakarta Sans-700\"],name:\"Subheading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6eprnh\",\"data-framer-name\":\"Content\",name:\"Content\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-5okzq2 hidden-195t1jw hidden-goj459\",\"data-framer-name\":\"Underline\",name:\"Underline\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zqtsa08Qd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'We\\'re not just your average \"one size fits all\" AI Agency'})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'We\\'re not just your average \"one size fits all\" AI Agency'})}),className:\"framer-1bu11qw\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Plus Jakarta Sans-800\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(224, 224, 224)\"},children:\"We\u2019re not just your average \u201Cone-size-fits-all\u201D AI agency \u2014 we\u2019re your long-term partner in success. At AI Pilots, we go beyond providing technology solutions. We take the time to understand your unique business challenges and objectives, offering tailored consulting and implementation services designed to empower your team.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(224, 224, 224)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(224, 224, 224)\"},children:\"Our focus is on equipping you with the latest technologies that align with your goals, streamline your workflows, and ensure your business stays ahead of the competition. Whether it\u2019s automating processes, optimizing operations, or enhancing customer experiences, we\u2019re with you every step of the way to deliver results that truly make a difference.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(224, 224, 224)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(224, 224, 224)\"},children:\"Discover how our hands-on, personalized approach can transform your business into an industry leader.\"})]}),className:\"framer-8lag5q\",\"data-framer-name\":\"Text\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition(5656.4),pixelHeight:4032,pixelWidth:3024,positionX:\"center\",positionY:\"center\",sizes:\"347px\",src:\"https://framerusercontent.com/images/ZJ7Fknm4M1K210g6ohmcOJVJXA.jpg\",srcSet:\"https://framerusercontent.com/images/ZJ7Fknm4M1K210g6ohmcOJVJXA.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/ZJ7Fknm4M1K210g6ohmcOJVJXA.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/ZJ7Fknm4M1K210g6ohmcOJVJXA.jpg 3024w\"},className:\"framer-b6u6ge hidden-195t1jw hidden-goj459\",\"data-framer-name\":\"IMG_3893 1\",name:\"IMG_3893 1\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dy97gw\",\"data-border\":true,\"data-framer-name\":\"Section\",name:\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wwqzz6\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g2ek1e\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"If you're ready to put your manual operations on autopilot,\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 119, 52)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(70, 130, 180)\"},children:\"book your call\"})]})})},Zqtsa08Qd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"If you're ready to put your manual operations on autopilot,\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 119, 52)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(70, 130, 180)\"},children:\"book your call\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"If you're ready to put your manual operations on autopilot,\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 119, 52)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(70, 130, 180)\"},children:\"book your call\"})]})}),className:\"framer-1fcxnbi\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Plus Jakarta Sans-800\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"On a call, we\u2019ll be asking questions about your business and internal workflows to see if we can help. And don\u2019t worry, we\u2019ll answer any questions you might have about our service so you can feel confident  deciding if we can or can not help you.\"})}),className:\"framer-1poy3vq\",\"data-framer-name\":\"Text\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wfqfn6\",\"data-framer-name\":\"Actions\",name:\"Actions\",whileHover:animation,children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/buzzlead/ai-pilots-introductory-call\",nodeId:\"hqKSwOZih\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1h4qoqf framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a Meeting\"})}),className:\"framer-1h9shsi\",\"data-framer-name\":\"Button\",fonts:[\"GF;Plus Jakarta Sans-800\"],name:\"Button\",verticalAlignment:\"top\",withExternalLayout:true})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-iqknj0 hidden-si7axr hidden-195t1jw hidden-goj459\",\"data-framer-name\":\"Right\",name:\"Right\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-a79mfi\",\"data-framer-name\":\"Vector\",layout:\"position\",name:\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 162 51\"><path d=\"M 17.845 22.456 C 16.272 23.336 14.065 24.559 10.885 26.325 C 15.493 28.257 19.276 30.071 23.215 31.423 C 26.763 32.644 30.456 33.453 34.134 34.244 C 36.545 34.765 37.723 36.311 37.49 38.576 C 37.216 41.303 34.953 42.72 32.432 41.752 C 22.941 38.093 13.48 34.367 4.11 30.397 C 2.934 29.902 1.721 27.785 1.764 26.454 C 1.807 24.994 2.961 23.06 4.205 22.234 C 9.338 18.814 14.787 15.898 19.905 12.459 C 22.946 10.416 25.605 7.752 28.428 5.358 C 29.378 4.555 30.207 3.33 31.271 3.035 C 32.48 2.706 34.035 2.927 35.173 3.488 C 35.642 3.719 35.791 5.641 35.408 6.466 C 34.737 7.934 33.667 9.263 32.558 10.442 C 29.925 13.211 27.159 15.858 24.43 18.577 C 26.528 18.913 29.067 19.633 31.619 19.683 C 60.954 20.252 90.297 20.806 119.638 21.169 C 130.336 21.297 141.037 20.918 151.742 20.71 C 152.929 20.69 154.124 20.326 155.297 20.038 C 158.024 19.368 159.718 20.347 160.245 22.966 C 160.711 25.263 159.119 27.373 156.519 27.406 C 149.095 27.507 141.672 27.367 134.243 27.424 C 124.875 27.493 115.513 27.725 106.147 27.768 C 100.475 27.793 94.8 27.603 89.126 27.533 C 81.816 27.436 74.509 27.416 67.203 27.275 C 60.222 27.14 53.248 26.893 46.271 26.698 C 42.712 26.596 39.137 26.596 35.588 26.356 C 31.54 26.073 27.485 25.773 23.49 25.097 C 21.748 24.803 20.164 23.574 17.837 22.447 Z\" fill=\"rgb(70, 130, 180)\"></path></svg>',svgContentId:12650752725,withExternalLayout:true})}),isDisplayed5()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-n0vjf hidden-si7axr hidden-195t1jw hidden-goj459\",\"data-framer-name\":\"Left\",name:\"Left\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ll0rvk\",\"data-framer-name\":\"Vector\",layout:\"position\",name:\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 158 119\"><path d=\"M 133.356 74.468 C 131.685 74.113 130.028 73.733 128.352 73.408 C 125.28 72.803 123.38 70.317 123.924 67.573 C 124.455 64.931 126.553 63.891 129.977 64.829 C 134.357 66.032 138.669 67.52 143.059 68.686 C 145.413 69.307 147.957 69.224 150.242 69.99 C 151.978 70.564 154.086 71.655 154.82 73.103 C 155.446 74.33 154.749 76.677 153.887 78.07 C 151.657 81.702 149.029 85.105 146.514 88.559 C 145.843 89.485 145.156 90.64 144.194 91.062 C 142.781 91.69 141.113 91.747 139.557 92.059 C 139.325 90.152 138.344 87.921 139.005 86.396 C 140.314 83.371 142.528 80.744 144.471 77.775 C 142.527 76.624 141.212 76.119 140.308 78.644 C 139.509 80.859 137.733 81.989 135.276 82.272 C 122.556 83.746 109.877 86.161 97.121 86.526 C 88.212 86.779 79.124 84.571 70.234 82.838 C 65.621 81.939 60.967 80.219 56.853 77.933 C 49.196 73.672 44.066 67.604 46.508 57.833 C 39.469 55.648 32.688 53.55 25.912 51.422 C 19.64 49.452 13.49 47.236 8.967 42.072 C 8.819 41.905 8.531 41.833 8.413 41.65 C 7.04 39.398 4.606 36.813 6.908 34.483 C 9.4 31.966 11.809 34.418 13.727 36.332 C 19.109 41.719 26.287 43.333 33.125 45.646 C 37.644 47.173 42.295 48.341 46.763 50.002 C 49.108 50.877 50.451 50.319 51.738 48.446 C 58.527 38.566 68.679 34.831 80.099 33.798 C 85.252 33.332 89.979 35.437 94.282 38.075 C 98.623 40.724 98.739 46.126 95.747 50.074 C 87.463 61.011 75.547 60.878 63.589 60.743 C 60.259 60.708 56.928 60.177 53.543 59.865 C 52.388 63.805 53.232 66.683 56.375 69.031 C 63.131 74.081 70.865 76.55 79.021 77.87 C 89.199 79.522 99.432 80.577 109.693 79.071 C 117.603 77.915 125.462 76.451 133.335 75.124 C 133.333 74.908 133.332 74.692 133.331 74.475 Z M 57.559 51.959 C 66.643 54.672 86.627 53.758 90.585 43.448 C 83.462 36.719 63.671 42.139 57.559 51.959 Z\" fill=\"rgb(70, 130, 180)\"></path></svg>',svgContentId:9450414919,withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m99xn1 hidden-goj459\",\"data-framer-name\":\"Logos\",name:\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"Trusted By:\"})}),className:\"framer-o20ojx\",\"data-framer-name\":\"Trusted By:\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Trusted By:\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v81jj7\",\"data-framer-name\":\"Frame 11\",name:\"Frame 11\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{background:{alt:\"\",fit:\"stretch\",pixelHeight:221,pixelWidth:818,positionX:\"center\",positionY:\"center\",sizes:\"145.8333px\",src:\"https://framerusercontent.com/images/RzSWYgiwomnEOEuTHxQCQHUc.png\",srcSet:\"https://framerusercontent.com/images/RzSWYgiwomnEOEuTHxQCQHUc.png?scale-down-to=512 512w,https://framerusercontent.com/images/RzSWYgiwomnEOEuTHxQCQHUc.png 818w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(7606.299999999999),pixelHeight:221,pixelWidth:818,positionX:\"center\",positionY:\"center\",sizes:\"145.8333px\",src:\"https://framerusercontent.com/images/RzSWYgiwomnEOEuTHxQCQHUc.png\",srcSet:\"https://framerusercontent.com/images/RzSWYgiwomnEOEuTHxQCQHUc.png?scale-down-to=512 512w,https://framerusercontent.com/images/RzSWYgiwomnEOEuTHxQCQHUc.png 818w\"},className:\"framer-ngczae\",\"data-framer-name\":\"image 4\",name:\"image 4\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7608.799999999999),sizes:\"137.4545px\",src:\"https://framerusercontent.com/images/DpFP4kvDbzyB7kGAbQhLuTaEJlU.png\",srcSet:\"https://framerusercontent.com/images/DpFP4kvDbzyB7kGAbQhLuTaEJlU.png?scale-down-to=512 512w,https://framerusercontent.com/images/DpFP4kvDbzyB7kGAbQhLuTaEJlU.png 756w\"},className:\"framer-dy7hkf hidden-195t1jw\",\"data-framer-name\":\"Client Logo 4\",name:\"Client Logo 4\"}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7603.799999999999),src:\"https://framerusercontent.com/images/Q8qUrgNSwQz7S8EncbXcbkKcfw.png\"},className:\"framer-916242 hidden-195t1jw\",\"data-framer-name\":\"Client Logo 3\",name:\"Client Logo 3\"}),isDisplayed6()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7608.799999999999),src:\"https://framerusercontent.com/images/eid6l45JPn8mSzelHdWXhmJGJyw.png\"},className:\"framer-1qqvd06 hidden-1571b8j hidden-195t1jw\",\"data-framer-name\":\"Client Logo 3 1\",name:\"Client Logo 3 1\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9Z8tjwTvGp7ndJbjKCHARtRCvo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(7606.299999999999),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9Z8tjwTvGp7ndJbjKCHARtRCvo.png\"},className:\"framer-b58cs1\",\"data-framer-name\":\"image 5\",name:\"image 5\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"151px\",src:\"https://framerusercontent.com/images/1JiZY1eO1dUmtkeRqDmRoeojMOc.png\",srcSet:\"https://framerusercontent.com/images/1JiZY1eO1dUmtkeRqDmRoeojMOc.png?scale-down-to=512 512w,https://framerusercontent.com/images/1JiZY1eO1dUmtkeRqDmRoeojMOc.png 604w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(7612.799999999999),positionX:\"center\",positionY:\"center\",sizes:\"151px\",src:\"https://framerusercontent.com/images/1JiZY1eO1dUmtkeRqDmRoeojMOc.png\",srcSet:\"https://framerusercontent.com/images/1JiZY1eO1dUmtkeRqDmRoeojMOc.png?scale-down-to=512 512w,https://framerusercontent.com/images/1JiZY1eO1dUmtkeRqDmRoeojMOc.png 604w\"},className:\"framer-x2cuu6\",\"data-framer-name\":\"image 7\",name:\"image 7\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"128.3208px\",src:\"https://framerusercontent.com/images/S4bGvs9xuWKoXhuTTRce9FMQgWU.png\",srcSet:\"https://framerusercontent.com/images/S4bGvs9xuWKoXhuTTRce9FMQgWU.png?scale-down-to=512 512w,https://framerusercontent.com/images/S4bGvs9xuWKoXhuTTRce9FMQgWU.png 516w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(7603.799999999999),positionX:\"center\",positionY:\"center\",sizes:\"128.3208px\",src:\"https://framerusercontent.com/images/S4bGvs9xuWKoXhuTTRce9FMQgWU.png\",srcSet:\"https://framerusercontent.com/images/S4bGvs9xuWKoXhuTTRce9FMQgWU.png?scale-down-to=512 512w,https://framerusercontent.com/images/S4bGvs9xuWKoXhuTTRce9FMQgWU.png 516w\"},className:\"framer-3wkp1d\",\"data-framer-name\":\"image 3\",name:\"image 3\"})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yckuzg\",\"data-framer-name\":\"FAQ\",name:\"FAQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"FAQ\"})}),className:\"framer-dv30fr\",fonts:[\"FS;Plus Jakarta Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2v529q\",\"data-framer-name\":\"Column\",name:\"Column\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{y:undefined},Zqtsa08Qd:{y:10132.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,width:\"max(min(1000px, 100vw), 1px)\",y:7915.799999999999,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kp4qvt-container\",children:/*#__PURE__*/_jsx(Accordion2,{height:\"100%\",id:\"jSa9yUws2\",layoutId:\"jSa9yUws2\",style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d186s7\",\"data-border\":true,\"data-framer-name\":\"Section\",name:\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16wq4fu\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":l56Ei88bP\",webPageId:\"augiA20Il\"},nodeId:\"tYDHuQVj3\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-hgtq9z framer-lux5qc\",\"data-framer-name\":\"logo\",name:\"logo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UTtXo12Bm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773,intrinsicWidth:1280,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/VUS0kNLW11qn5XodMH7JcXVjfrM.png\"}},Zqtsa08Qd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition(10417.9),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/VUS0kNLW11qn5XodMH7JcXVjfrM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition(8289.3),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/VUS0kNLW11qn5XodMH7JcXVjfrM.png\"},className:\"framer-16iw2je\",\"data-framer-name\":\"image 2\",name:\"image 2\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jyqknj hidden-goj459\",\"data-framer-name\":\"Column\",name:\"Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Use Cases\"})}),className:\"framer-1g5nypj\",\"data-framer-name\":\"Link Two\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Link Two\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":bI_Vb5eMt\",webPageId:\"augiA20Il\"},nodeId:\"Ak8qVFVuF\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-ruq87v\",\"data-styles-preset\":\"zNTcJ6_Dw\",children:\"Why Us\"})})})}),className:\"framer-19u3iqg\",\"data-framer-name\":\"Link Three\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Link Three\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":YFUEGtR8s\",webPageId:\"augiA20Il\"},nodeId:\"svHCbsLzw\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-ruq87v\",\"data-styles-preset\":\"zNTcJ6_Dw\",children:\"Our Process\"})})})}),className:\"framer-159sltz\",\"data-framer-name\":\"Link One\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Link One\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1njifmx hidden-goj459\",\"data-framer-name\":\"Social Links\",name:\"Social Links\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c4q1hl\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-akm0l9-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"n0pMSqPtx\",isMixedBorderRadius:false,isRed:true,layoutId:\"n0pMSqPtx\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c2e20h\",\"data-framer-name\":\"Icon / Instagram\",name:\"Icon / Instagram\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/nickkonstaa/?hl=en\",nodeId:\"I22:1671;2415:7591\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-vg315s framer-lux5qc\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:18,name:\"Vector\",svg:'<svg width=\"18\" height=\"19\" viewBox=\"0 0 18 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13 0.417969H5C2.23858 0.417969 0 2.65655 0 5.41797V13.418C0 16.1794 2.23858 18.418 5 18.418H13C15.7614 18.418 18 16.1794 18 13.418V5.41797C18 2.65655 15.7614 0.417969 13 0.417969ZM16.25 13.418C16.2445 15.2106 14.7926 16.6625 13 16.668H5C3.20735 16.6625 1.75549 15.2106 1.75 13.418V5.41797C1.75549 3.62532 3.20735 2.17346 5 2.16797H13C14.7926 2.17346 16.2445 3.62532 16.25 5.41797V13.418ZM13.75 5.66797C14.3023 5.66797 14.75 5.22025 14.75 4.66797C14.75 4.11569 14.3023 3.66797 13.75 3.66797C13.1977 3.66797 12.75 4.11569 12.75 4.66797C12.75 5.22025 13.1977 5.66797 13.75 5.66797ZM9 4.91797C6.51472 4.91797 4.5 6.93269 4.5 9.41797C4.5 11.9033 6.51472 13.918 9 13.918C11.4853 13.918 13.5 11.9033 13.5 9.41797C13.5027 8.22367 13.0294 7.07754 12.1849 6.23305C11.3404 5.38856 10.1943 4.91531 9 4.91797ZM6.25 9.41797C6.25 10.9368 7.4812 12.168 9 12.168C10.5188 12.168 11.75 10.9368 11.75 9.41797C11.75 7.89917 10.5188 6.66797 9 6.66797C7.4812 6.66797 6.25 7.89917 6.25 9.41797Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s4jwm0\",\"data-framer-name\":\"Icon / Twitter\",name:\"Icon / Twitter\",children:/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/Nickkonsta\",nodeId:\"I22:1672;2415:5700\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-104r62t framer-lux5qc\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:18,name:\"Vector\",svg:'<svg width=\"18\" height=\"17\" viewBox=\"0 0 18 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.9727 3.13537C17.5083 3.75489 16.9469 4.2953 16.3102 4.73573C16.3102 4.89756 16.3102 5.05939 16.3102 5.23022C16.3153 8.16907 15.1414 10.9871 13.0517 13.0525C10.9619 15.1179 8.13108 16.2579 5.19393 16.2169C3.49587 16.2226 1.81955 15.8349 0.2963 15.0841C0.21416 15.0482 0.16119 14.967 0.1615 14.8773V14.7784C0.1615 14.6493 0.26611 14.5447 0.39515 14.5447C2.0643 14.4896 3.6739 13.9109 4.99622 12.8904C3.48541 12.8599 2.12607 11.9649 1.50048 10.5887C1.46889 10.5136 1.47872 10.4273 1.52645 10.3612C1.57417 10.2951 1.65288 10.2587 1.73413 10.2651C2.1933 10.3112 2.65706 10.2685 3.10008 10.1392C1.43227 9.79297 0.17909 8.40837 -0.000260003 6.71367C-0.00663 6.63237 0.0297999 6.55367 0.0958799 6.50587C0.16195 6.45817 0.24812 6.44827 0.32326 6.47997C0.77082 6.67747 1.25397 6.78147 1.74312 6.78557C0.28172 5.82643 -0.34951 4.00202 0.20643 2.34419C0.26382 2.1831 0.40169 2.06409 0.56938 2.03091C0.73706 1.99772 0.90984 2.05525 1.0242 2.18236C2.99627 4.28122 5.70592 5.53193 8.58178 5.67076C8.50818 5.37682 8.47198 5.07473 8.47398 4.77169C8.50088 3.18269 9.48408 1.76718 10.9633 1.18784C12.4424 0.60851 14.1248 0.980001 15.2229 2.12841C15.9713 1.98582 16.6949 1.73442 17.3706 1.38218C17.4201 1.35128 17.4829 1.35128 17.5324 1.38218C17.5633 1.4317 17.5633 1.49449 17.5324 1.54401C17.2051 2.29349 16.6522 2.92209 15.9508 3.34216C16.565 3.27093 17.1684 3.12604 17.7481 2.91061C17.7969 2.87739 17.861 2.87739 17.9098 2.91061C17.9507 2.92931 17.9813 2.96508 17.9934 3.00839C18.0055 3.0517 17.9979 3.09815 17.9727 3.13537Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-iboba3\",\"data-framer-name\":\"Icon / LinkedIn\",name:\"Icon / LinkedIn\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/buzzlead-io/?viewAsMember=true\",nodeId:\"I22:1673;2415:5703\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-9b1tuu framer-lux5qc\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:18,name:\"Vector\",svg:'<svg width=\"18\" height=\"19\" viewBox=\"0 0 18 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 0.417969H16C17.1046 0.417969 18 1.3134 18 2.41797V16.418C18 17.5226 17.1046 18.418 16 18.418H2C0.89543 18.418 0 17.5226 0 16.418V2.41797C0 1.3134 0.89543 0.417969 2 0.417969ZM5 15.418C5.27614 15.418 5.5 15.1941 5.5 14.918V7.91797C5.5 7.64187 5.27614 7.41797 5 7.41797H3.5C3.22386 7.41797 3 7.64187 3 7.91797V14.918C3 15.1941 3.22386 15.418 3.5 15.418H5ZM4.25 6.41797C3.42157 6.41797 2.75 5.7464 2.75 4.91797C2.75 4.08954 3.42157 3.41797 4.25 3.41797C5.07843 3.41797 5.75 4.08954 5.75 4.91797C5.75 5.7464 5.07843 6.41797 4.25 6.41797ZM14.5 15.418C14.7761 15.418 15 15.1941 15 14.918V10.318C15.0325 8.72877 13.8576 7.37249 12.28 7.17797C11.177 7.07722 10.1083 7.59237 9.5 8.51797V7.91797C9.5 7.64187 9.2761 7.41797 9 7.41797H7.5C7.2239 7.41797 7 7.64187 7 7.91797V14.918C7 15.1941 7.2239 15.418 7.5 15.418H9C9.2761 15.418 9.5 15.1941 9.5 14.918V11.168C9.5 10.3396 10.1716 9.66797 11 9.66797C11.8284 9.66797 12.5 10.3396 12.5 11.168V14.918C12.5 15.1941 12.7239 15.418 13 15.418H14.5Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-o53M3 { background: white; }`,\".framer-o53M3.framer-lux5qc, .framer-o53M3 .framer-lux5qc { display: block; }\",\".framer-o53M3.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1455px; }\",\".framer-o53M3 .framer-bjm7jr { align-content: center; align-items: center; background-color: #1c1f22; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 128px 24px 128px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-135hc4d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1184px; }\",\".framer-o53M3 .framer-1rh1lqj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-o53M3 .framer-1328owg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 33px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-o53M3 .framer-byvrxf { flex: none; height: 62px; position: relative; text-decoration: none; width: 250px; }\",\".framer-o53M3 .framer-1xh2cs9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-o53M3 .framer-1tiz745 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-o53M3 .framer-o0gi9k, .framer-o53M3 .framer-v3zljc, .framer-o53M3 .framer-1x85h6d, .framer-o53M3 .framer-1a9cnp7, .framer-o53M3 .framer-1byhgjb, .framer-o53M3 .framer-bc0yq9, .framer-o53M3 .framer-7to8cn, .framer-o53M3 .framer-d0yxv4, .framer-o53M3 .framer-12avgio, .framer-o53M3 .framer-hu1dth, .framer-o53M3 .framer-c414bb, .framer-o53M3 .framer-1h9shsi, .framer-o53M3 .framer-o20ojx, .framer-o53M3 .framer-1g5nypj, .framer-o53M3 .framer-19u3iqg, .framer-o53M3 .framer-159sltz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-o53M3 .framer-ozhiug { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-o53M3 .framer-op8zkc { align-content: center; align-items: center; background-color: #4682b4; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 16px 24px 16px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-o53M3 .framer-1jzngf4 { align-content: center; align-items: center; background-color: #1c1f22; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 32px 112px 32px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-14pd3hh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1376px; }\",\".framer-o53M3 .framer-1tohuhn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-8m8by6 { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-iw0a9l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-s6cr8k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-1kpkk44 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1129px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-zlcl3a, .framer-o53M3 .framer-ayg7cn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 696px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-1qbantn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-o53M3 .framer-1648jc2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-lqy5p3, .framer-o53M3 .framer-l5d83f, .framer-o53M3 .framer-puhpaw, .framer-o53M3 .framer-g2ek1e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-34wsus { align-content: center; align-items: center; background-color: #4682b4; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 24px 8px 24px; position: relative; width: min-content; }\",\".framer-o53M3 .framer-tiy578 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-eau9s9, .framer-o53M3 .framer-11mibdj { --border-bottom-width: 1px; --border-color: #373a3d; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 1px; }\",\".framer-o53M3 .framer-jzcaux, .framer-o53M3 .framer-1uwayqd, .framer-o53M3 .framer-c2e20h, .framer-o53M3 .framer-s4jwm0, .framer-o53M3 .framer-iboba3 { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-o53M3 .framer-4gym29, .framer-o53M3 .framer-hjcvqm { bottom: 6px; flex: none; left: 5px; position: absolute; right: 5px; top: 7px; }\",\".framer-o53M3 .framer-1ee58x2 { align-content: center; align-items: center; background-color: #4682b4; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 20px 40px 20px 40px; position: relative; text-decoration: none; width: 100%; }\",\".framer-o53M3 .framer-1rixjqj { flex: none; height: 4px; position: relative; width: 802px; }\",\".framer-o53M3 .framer-15sxx69, .framer-o53M3 .framer-m99xn1 { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-o53M3 .framer-8k95rt-container { flex: none; height: 62px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-du4dl4 { aspect-ratio: 4.166666521344866 / 1; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 146px; }\",\".framer-o53M3 .framer-tl62zj { aspect-ratio: 2.296296310424805 / 1; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 92px; }\",\".framer-o53M3 .framer-14ytoph { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-o53M3 .framer-10kgbfm { aspect-ratio: 2.426666695731027 / 1; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 85px; }\",\".framer-o53M3 .framer-1344bwo { aspect-ratio: 6.863636363636363 / 1; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 151px; }\",\".framer-o53M3 .framer-dar71d { aspect-ratio: 3.20802001953125 / 1; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 128px; }\",\".framer-o53M3 .framer-12ojlpy, .framer-o53M3 .framer-1l6z88h { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-17zekr, .framer-o53M3 .framer-5ti01h, .framer-o53M3 .framer-1ebd9qz { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-o53M3 .framer-1x2fg3b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: 632px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-1mt3jhs { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 240px); will-change: var(--framer-will-change-override, transform); }\",\".framer-o53M3 .framer-rwgn6y, .framer-o53M3 .framer-d3qegp, .framer-o53M3 .framer-1qrle13, .framer-o53M3 .framer-1tlth2w, .framer-o53M3 .framer-9galmp, .framer-o53M3 .framer-1i67jx7 { 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; padding: 0px; position: relative; width: 1px; }\",\".framer-o53M3 .framer-ui51wd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 350px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-1ir48au { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 348px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-y80j7, .framer-o53M3 .framer-o95kmu, .framer-o53M3 .framer-1wvoxnj, .framer-o53M3 .framer-khqvko, .framer-o53M3 .framer-6k0l7p, .framer-o53M3 .framer-tyvxc6, .framer-o53M3 .framer-1oibqth, .framer-o53M3 .framer-1luhsvu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-o53M3 .framer-1divu8u, .framer-o53M3 .framer-139ihka, .framer-o53M3 .framer-d1mouq, .framer-o53M3 .framer-v7xcy2 { align-content: center; align-items: center; background-color: #4682b4; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; z-index: 1; }\",\".framer-o53M3 .framer-15r6lb1, .framer-o53M3 .framer-ov81a, .framer-o53M3 .framer-1o0y94l, .framer-o53M3 .framer-1jy8n01, .framer-o53M3 .framer-orr2cb, .framer-o53M3 .framer-dc82bl, .framer-o53M3 .framer-o2tthp, .framer-o53M3 .framer-ty2slc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-o53M3 .framer-t9h7ib, .framer-o53M3 .framer-16ysqgm, .framer-o53M3 .framer-koqsha { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-kyh78k { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 342px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-93n9tr { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 350px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-1lded9p, .framer-o53M3 .framer-11za18o, .framer-o53M3 .framer-pr3dsm, .framer-o53M3 .framer-11e6k3r, .framer-o53M3 .framer-16r748f { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 167px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-o53M3 .framer-mbe0xn { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-zj1zin { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-o53M3 .framer-vjf5jv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-aa58e9, .framer-o53M3 .framer-im3e1u { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 167px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-o53M3 .framer-chcc5m, .framer-o53M3 .framer-14dictk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-2zs0ui { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 310px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-jdiith, .framer-o53M3 .framer-1kjgi0b { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 310px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-1jy81f { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-o969ak { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 312px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-n1uctz, .framer-o53M3 .framer-1ma0v7l { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-jmidpq, .framer-o53M3 .framer-o5u912, .framer-o53M3 .framer-1d5tnga { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 768px; }\",\".framer-o53M3 .framer-4z4q7x, .framer-o53M3 .framer-r1fmrg, .framer-o53M3 .framer-1fcxnbi { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 768px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-rgt927, .framer-o53M3 .framer-5h3j7a { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 1184px; }\",\".framer-o53M3 .framer-1r8vg67, .framer-o53M3 .framer-q8sd43 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 573px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-90drzt, .framer-o53M3 .framer-1f6xroi, .framer-o53M3 .framer-1q0ggt4, .framer-o53M3 .framer-zf5iuc { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-o53M3 .framer-1p2usqp, .framer-o53M3 .framer-1f4t2nw { aspect-ratio: 1 / 1; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: var(--framer-aspect-ratio-supported, 177px); left: 5px; position: absolute; top: 196px; width: 177px; }\",\".framer-o53M3 .framer-s3ss16, .framer-o53M3 .framer-k6mb2y { -webkit-user-select: none; flex: none; height: auto; left: 242px; pointer-events: auto; position: absolute; top: 107px; user-select: none; white-space: pre-wrap; width: 299px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-1t5dxil, .framer-o53M3 .framer-4p841 { -webkit-user-select: none; flex: none; height: auto; left: 242px; pointer-events: auto; position: absolute; top: 211px; user-select: none; white-space: pre; width: auto; }\",\".framer-o53M3 .framer-1nnwey6, .framer-o53M3 .framer-8tqj1w { -webkit-user-select: none; flex: none; height: auto; left: 242px; pointer-events: auto; position: absolute; top: 248px; user-select: none; white-space: pre-wrap; width: 299px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-1vrabqq, .framer-o53M3 .framer-1xygclw { background-color: #4682b4; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: 58px; left: 242px; overflow: hidden; position: absolute; text-decoration: none; top: 408px; width: 215px; will-change: var(--framer-will-change-override, transform); }\",\".framer-o53M3 .framer-1hg4t6u, .framer-o53M3 .framer-ng8qau, .framer-o53M3 .framer-1bfu05x, .framer-o53M3 .framer-1171s0o { -webkit-user-select: none; flex: none; height: auto; left: 28px; pointer-events: auto; position: absolute; top: 18px; user-select: none; white-space: pre; width: auto; }\",\".framer-o53M3 .framer-1i5q28r, .framer-o53M3 .framer-562qql, .framer-o53M3 .framer-2v4v74, .framer-o53M3 .framer-12k1u6f { background-color: #090909; flex: none; height: 20px; left: 151px; opacity: 0.3; overflow: visible; position: absolute; top: 19px; width: 1px; }\",\".framer-o53M3 .framer-1y9uent, .framer-o53M3 .framer-16hqra3, .framer-o53M3 .framer-1el5cqi, .framer-o53M3 .framer-g3cvzm { -webkit-user-select: none; flex: none; height: auto; left: 167px; pointer-events: auto; position: absolute; top: 18px; user-select: none; white-space: pre; width: auto; }\",\".framer-o53M3 .framer-26uo5a { -webkit-user-select: none; flex: none; height: auto; left: 36px; pointer-events: auto; position: absolute; top: 128px; user-select: none; white-space: pre-wrap; width: 299px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-1f4tonl { -webkit-user-select: none; flex: none; height: auto; left: 33px; pointer-events: auto; position: absolute; top: 211px; user-select: none; white-space: pre; width: auto; }\",\".framer-o53M3 .framer-1aorvw1 { -webkit-user-select: none; flex: none; height: auto; left: 36px; pointer-events: auto; position: absolute; top: 50%; transform: translateY(-50%); user-select: none; white-space: pre-wrap; width: 299px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-1xk5k1f, .framer-o53M3 .framer-1h9vkzm { background-color: #4682b4; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; bottom: 160px; flex: none; height: 58px; left: 36px; overflow: hidden; position: absolute; text-decoration: none; width: 215px; will-change: var(--framer-will-change-override, transform); }\",\".framer-o53M3 .framer-tje7b7, .framer-o53M3 .framer-q6bvdf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 5px; justify-content: center; left: 267px; overflow: hidden; padding: 0px; position: absolute; right: 316px; top: calc(54.10122164048868% - 5px / 2); }\",\".framer-o53M3 .framer-1sqakac, .framer-o53M3 .framer-7egvkr { background-color: #bbddff; flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-o53M3 .framer-12ziyxt, .framer-o53M3 .framer-4kqx7j { background-color: #cceeff; flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-o53M3 .framer-1x7309w, .framer-o53M3 .framer-g0xowr { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 162px); left: 409px; overflow: visible; position: absolute; top: 51%; transform: translateY(-50%); width: 162px; }\",\".framer-o53M3 .framer-16jmk5v, .framer-o53M3 .framer-vo79th { flex: none; height: 2px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-1ui4i8c, .framer-o53M3 .framer-1yu5u33 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-47yi53, .framer-o53M3 .framer-1k7bu7h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 323px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-1cp4b5k, .framer-o53M3 .framer-9z0hsy { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 327px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-1o4rzrs, .framer-o53M3 .framer-1ilz7jh, .framer-o53M3 .framer-5uxu23, .framer-o53M3 .framer-eqqqf3 { align-content: center; align-items: center; background-color: #4682b4; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-o53M3 .framer-yrjh0w, .framer-o53M3 .framer-1afwl2y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-yekx3s, .framer-o53M3 .framer-1pan5po { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-1ndsl9q { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-17ju55f { -webkit-user-select: none; flex: none; height: auto; left: 36px; pointer-events: auto; position: absolute; top: 107px; user-select: none; white-space: pre-wrap; width: 299px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-a5yzhv { -webkit-user-select: none; flex: none; height: auto; left: 36px; pointer-events: auto; position: absolute; top: 211px; user-select: none; white-space: pre; width: auto; }\",\".framer-o53M3 .framer-1mlqzlt { -webkit-user-select: none; flex: none; height: auto; left: 36px; pointer-events: auto; position: absolute; top: 51%; transform: translateY(-50%); user-select: none; white-space: pre-wrap; width: 299px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-1sc09ji { align-content: center; align-items: center; background-color: #1c1f22; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 112px 128px 168px 128px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-7g6s8, .framer-o53M3 .framer-wngmlc { align-content: center; align-items: center; background-color: #4682b4; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 12px 6px 12px; position: relative; width: min-content; }\",\".framer-o53M3 .framer-7q45v0 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 452px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-17tab9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1184px; }\",\".framer-o53M3 .framer-1pfa49q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-16jf9n2, .framer-o53M3 .framer-1kw5xjt, .framer-o53M3 .framer-1lbie9a { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-o53M3 .framer-16x177v, .framer-o53M3 .framer-1a5phqs, .framer-o53M3 .framer-12u89xn { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-1oy44hi, .framer-o53M3 .framer-xxlt76 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-1dph2rd { background-color: rgba(0, 0, 0, 0); flex: none; height: 165px; position: relative; width: 363px; }\",\".framer-o53M3 .framer-vrlrpb, .framer-o53M3 .framer-1og36fd, .framer-o53M3 .framer-1cotjmn, .framer-o53M3 .framer-1aio7f8 { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-1ba941x, .framer-o53M3 .framer-13jqiql, .framer-o53M3 .framer-13wsfe3, .framer-o53M3 .framer-18cdy8, .framer-o53M3 .framer-1703mvz, .framer-o53M3 .framer-8lrpfj, .framer-o53M3 .framer-t9g2ob, .framer-o53M3 .framer-96u001, .framer-o53M3 .framer-z2ve8s { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 363px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-jhpunj, .framer-o53M3 .framer-6czt39, .framer-o53M3 .framer-dr2hfl { --border-bottom-width: 0px; --border-color: rgba(0, 0, 0, 0.15); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-16yj2t7 { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-f4431r { flex: none; height: 165px; position: relative; width: 364px; }\",\".framer-o53M3 .framer-1jz2emn, .framer-o53M3 .framer-16t1cfv { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-129o97r { flex: none; height: 165px; position: relative; width: 363px; }\",\".framer-o53M3 .framer-1fyojvf { align-content: center; align-items: center; background-color: #1c1f22; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 112px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 112px 128px 112px 128px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-dvvpp5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1184px; }\",\".framer-o53M3 .framer-6dv4cr { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 754px; }\",\".framer-o53M3 .framer-6eprnh { 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-o53M3 .framer-5okzq2 { flex: none; height: 44px; left: calc(22.26562500000002% - 165px / 2); overflow: hidden; position: absolute; top: calc(61.41522029372499% - 44px / 2); width: 165px; z-index: 0; }\",\".framer-o53M3 .framer-1bu11qw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 769px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-8lag5q { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 667px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-b6u6ge { aspect-ratio: 0.7875894988066826 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 441px); position: relative; width: 347px; }\",\".framer-o53M3 .framer-dy97gw { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #1c1f22; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 112px 128px 112px 128px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-wwqzz6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 768px; }\",\".framer-o53M3 .framer-1poy3vq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 626px; word-break: break-word; word-wrap: break-word; }\",\".framer-o53M3 .framer-1wfqfn6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-o53M3 .framer-1h4qoqf { align-content: center; align-items: center; background-color: #4682b4; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 20px 40px 20px 40px; position: relative; text-decoration: none; width: min-content; }\",\".framer-o53M3 .framer-iqknj0 { bottom: 8px; flex: none; height: 51px; left: 566px; overflow: hidden; position: absolute; width: 162px; z-index: 1; }\",\".framer-o53M3 .framer-a79mfi { flex: none; height: 51px; left: 0px; position: absolute; top: 0px; width: 162px; }\",\".framer-o53M3 .framer-n0vjf { bottom: 57px; flex: none; height: 51px; left: 57px; overflow: visible; position: absolute; width: 162px; z-index: 1; }\",\".framer-o53M3 .framer-ll0rvk { background-color: rgba(70, 130, 180, 0); flex: none; height: 119px; left: 0px; position: absolute; top: 0px; width: 158px; }\",\".framer-o53M3 .framer-1v81jj7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-ngczae { aspect-ratio: 4.166666521344866 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 146px; }\",\".framer-o53M3 .framer-dy7hkf { aspect-ratio: 4.581818135579427 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 137px; }\",\".framer-o53M3 .framer-916242 { aspect-ratio: 2.296296310424805 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 92px; }\",\".framer-o53M3 .framer-1qqvd06 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-o53M3 .framer-b58cs1 { aspect-ratio: 2.426666695731027 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 85px; }\",\".framer-o53M3 .framer-x2cuu6 { aspect-ratio: 6.863636363636363 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 151px; }\",\".framer-o53M3 .framer-3wkp1d { aspect-ratio: 3.20802001953125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 128px; }\",\".framer-o53M3 .framer-yckuzg { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-dv30fr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-o53M3 .framer-2v529q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-o53M3 .framer-1kp4qvt-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-o53M3 .framer-1d186s7 { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #1c1f22; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 64px 80px 64px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-16wq4fu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o53M3 .framer-hgtq9z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 33px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-o53M3 .framer-16iw2je { aspect-ratio: 5.408450826009115 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 185px; }\",\".framer-o53M3 .framer-1jyqknj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-o53M3 .framer-1njifmx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-o53M3 .framer-1c4q1hl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 24px; }\",\".framer-o53M3 .framer-akm0l9-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-o53M3 .framer-vg315s, .framer-o53M3 .framer-9b1tuu { bottom: 4px; flex: none; left: 3px; position: absolute; right: 3px; text-decoration: none; top: 3px; }\",\".framer-o53M3 .framer-104r62t { bottom: 5px; flex: none; left: 3px; position: absolute; right: 3px; text-decoration: none; top: 4px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-o53M3.framer-72rtr7, .framer-o53M3 .framer-bjm7jr, .framer-o53M3 .framer-1rh1lqj, .framer-o53M3 .framer-1328owg, .framer-o53M3 .framer-1xh2cs9, .framer-o53M3 .framer-1tiz745, .framer-o53M3 .framer-ozhiug, .framer-o53M3 .framer-op8zkc, .framer-o53M3 .framer-1jzngf4, .framer-o53M3 .framer-14pd3hh, .framer-o53M3 .framer-1tohuhn, .framer-o53M3 .framer-8m8by6, .framer-o53M3 .framer-iw0a9l, .framer-o53M3 .framer-s6cr8k, .framer-o53M3 .framer-1qbantn, .framer-o53M3 .framer-1648jc2, .framer-o53M3 .framer-lqy5p3, .framer-o53M3 .framer-34wsus, .framer-o53M3 .framer-tiy578, .framer-o53M3 .framer-eau9s9, .framer-o53M3 .framer-11mibdj, .framer-o53M3 .framer-1ee58x2, .framer-o53M3 .framer-15sxx69, .framer-o53M3 .framer-12ojlpy, .framer-o53M3 .framer-17zekr, .framer-o53M3 .framer-1x2fg3b, .framer-o53M3 .framer-1mt3jhs, .framer-o53M3 .framer-rwgn6y, .framer-o53M3 .framer-y80j7, .framer-o53M3 .framer-1divu8u, .framer-o53M3 .framer-t9h7ib, .framer-o53M3 .framer-d3qegp, .framer-o53M3 .framer-o95kmu, .framer-o53M3 .framer-139ihka, .framer-o53M3 .framer-1lded9p, .framer-o53M3 .framer-mbe0xn, .framer-o53M3 .framer-zj1zin, .framer-o53M3 .framer-vjf5jv, .framer-o53M3 .framer-aa58e9, .framer-o53M3 .framer-chcc5m, .framer-o53M3 .framer-1wvoxnj, .framer-o53M3 .framer-d1mouq, .framer-o53M3 .framer-1jy81f, .framer-o53M3 .framer-14dictk, .framer-o53M3 .framer-khqvko, .framer-o53M3 .framer-v7xcy2, .framer-o53M3 .framer-im3e1u, .framer-o53M3 .framer-n1uctz, .framer-o53M3 .framer-jmidpq, .framer-o53M3 .framer-l5d83f, .framer-o53M3 .framer-rgt927, .framer-o53M3 .framer-1r8vg67, .framer-o53M3 .framer-tje7b7, .framer-o53M3 .framer-1l6z88h, .framer-o53M3 .framer-5ti01h, .framer-o53M3 .framer-1ui4i8c, .framer-o53M3 .framer-11za18o, .framer-o53M3 .framer-1qrle13, .framer-o53M3 .framer-6k0l7p, .framer-o53M3 .framer-1o4rzrs, .framer-o53M3 .framer-16ysqgm, .framer-o53M3 .framer-1tlth2w, .framer-o53M3 .framer-tyvxc6, .framer-o53M3 .framer-1ilz7jh, .framer-o53M3 .framer-pr3dsm, .framer-o53M3 .framer-1ndsl9q, .framer-o53M3 .framer-1ebd9qz, .framer-o53M3 .framer-1yu5u33, .framer-o53M3 .framer-11e6k3r, .framer-o53M3 .framer-9galmp, .framer-o53M3 .framer-1oibqth, .framer-o53M3 .framer-5uxu23, .framer-o53M3 .framer-koqsha, .framer-o53M3 .framer-1i67jx7, .framer-o53M3 .framer-1luhsvu, .framer-o53M3 .framer-eqqqf3, .framer-o53M3 .framer-16r748f, .framer-o53M3 .framer-1ma0v7l, .framer-o53M3 .framer-5h3j7a, .framer-o53M3 .framer-q8sd43, .framer-o53M3 .framer-q6bvdf, .framer-o53M3 .framer-1sc09ji, .framer-o53M3 .framer-o5u912, .framer-o53M3 .framer-1d5tnga, .framer-o53M3 .framer-7g6s8, .framer-o53M3 .framer-puhpaw, .framer-o53M3 .framer-17tab9, .framer-o53M3 .framer-1pfa49q, .framer-o53M3 .framer-16jf9n2, .framer-o53M3 .framer-16x177v, .framer-o53M3 .framer-1oy44hi, .framer-o53M3 .framer-vrlrpb, .framer-o53M3 .framer-1og36fd, .framer-o53M3 .framer-jhpunj, .framer-o53M3 .framer-1kw5xjt, .framer-o53M3 .framer-1a5phqs, .framer-o53M3 .framer-16yj2t7, .framer-o53M3 .framer-1jz2emn, .framer-o53M3 .framer-16t1cfv, .framer-o53M3 .framer-6czt39, .framer-o53M3 .framer-1lbie9a, .framer-o53M3 .framer-12u89xn, .framer-o53M3 .framer-xxlt76, .framer-o53M3 .framer-1cotjmn, .framer-o53M3 .framer-1aio7f8, .framer-o53M3 .framer-dr2hfl, .framer-o53M3 .framer-1fyojvf, .framer-o53M3 .framer-6dv4cr, .framer-o53M3 .framer-wngmlc, .framer-o53M3 .framer-6eprnh, .framer-o53M3 .framer-dy97gw, .framer-o53M3 .framer-wwqzz6, .framer-o53M3 .framer-g2ek1e, .framer-o53M3 .framer-1wfqfn6, .framer-o53M3 .framer-1h4qoqf, .framer-o53M3 .framer-m99xn1, .framer-o53M3 .framer-yckuzg, .framer-o53M3 .framer-2v529q, .framer-o53M3 .framer-1d186s7, .framer-o53M3 .framer-16wq4fu, .framer-o53M3 .framer-hgtq9z, .framer-o53M3 .framer-1jyqknj, .framer-o53M3 .framer-1njifmx, .framer-o53M3 .framer-1c4q1hl { gap: 0px; } .framer-o53M3.framer-72rtr7 > *, .framer-o53M3 .framer-bjm7jr > *, .framer-o53M3 .framer-n1uctz > *, .framer-o53M3 .framer-1ma0v7l > *, .framer-o53M3 .framer-16jf9n2 > *, .framer-o53M3 .framer-1kw5xjt > *, .framer-o53M3 .framer-1lbie9a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-o53M3.framer-72rtr7 > :first-child, .framer-o53M3 .framer-bjm7jr > :first-child, .framer-o53M3 .framer-1328owg > :first-child, .framer-o53M3 .framer-1jzngf4 > :first-child, .framer-o53M3 .framer-14pd3hh > :first-child, .framer-o53M3 .framer-1tohuhn > :first-child, .framer-o53M3 .framer-8m8by6 > :first-child, .framer-o53M3 .framer-iw0a9l > :first-child, .framer-o53M3 .framer-s6cr8k > :first-child, .framer-o53M3 .framer-1qbantn > :first-child, .framer-o53M3 .framer-1648jc2 > :first-child, .framer-o53M3 .framer-lqy5p3 > :first-child, .framer-o53M3 .framer-15sxx69 > :first-child, .framer-o53M3 .framer-17zekr > :first-child, .framer-o53M3 .framer-1mt3jhs > :first-child, .framer-o53M3 .framer-rwgn6y > :first-child, .framer-o53M3 .framer-d3qegp > :first-child, .framer-o53M3 .framer-1lded9p > :first-child, .framer-o53M3 .framer-zj1zin > :first-child, .framer-o53M3 .framer-vjf5jv > :first-child, .framer-o53M3 .framer-aa58e9 > :first-child, .framer-o53M3 .framer-chcc5m > :first-child, .framer-o53M3 .framer-1jy81f > :first-child, .framer-o53M3 .framer-14dictk > :first-child, .framer-o53M3 .framer-im3e1u > :first-child, .framer-o53M3 .framer-n1uctz > :first-child, .framer-o53M3 .framer-jmidpq > :first-child, .framer-o53M3 .framer-l5d83f > :first-child, .framer-o53M3 .framer-rgt927 > :first-child, .framer-o53M3 .framer-5ti01h > :first-child, .framer-o53M3 .framer-11za18o > :first-child, .framer-o53M3 .framer-1qrle13 > :first-child, .framer-o53M3 .framer-1tlth2w > :first-child, .framer-o53M3 .framer-pr3dsm > :first-child, .framer-o53M3 .framer-1ebd9qz > :first-child, .framer-o53M3 .framer-11e6k3r > :first-child, .framer-o53M3 .framer-9galmp > :first-child, .framer-o53M3 .framer-1i67jx7 > :first-child, .framer-o53M3 .framer-16r748f > :first-child, .framer-o53M3 .framer-1ma0v7l > :first-child, .framer-o53M3 .framer-5h3j7a > :first-child, .framer-o53M3 .framer-1sc09ji > :first-child, .framer-o53M3 .framer-o5u912 > :first-child, .framer-o53M3 .framer-1d5tnga > :first-child, .framer-o53M3 .framer-puhpaw > :first-child, .framer-o53M3 .framer-17tab9 > :first-child, .framer-o53M3 .framer-16jf9n2 > :first-child, .framer-o53M3 .framer-16x177v > :first-child, .framer-o53M3 .framer-1oy44hi > :first-child, .framer-o53M3 .framer-vrlrpb > :first-child, .framer-o53M3 .framer-1og36fd > :first-child, .framer-o53M3 .framer-jhpunj > :first-child, .framer-o53M3 .framer-1kw5xjt > :first-child, .framer-o53M3 .framer-1a5phqs > :first-child, .framer-o53M3 .framer-16yj2t7 > :first-child, .framer-o53M3 .framer-1jz2emn > :first-child, .framer-o53M3 .framer-16t1cfv > :first-child, .framer-o53M3 .framer-6czt39 > :first-child, .framer-o53M3 .framer-1lbie9a > :first-child, .framer-o53M3 .framer-12u89xn > :first-child, .framer-o53M3 .framer-xxlt76 > :first-child, .framer-o53M3 .framer-1cotjmn > :first-child, .framer-o53M3 .framer-1aio7f8 > :first-child, .framer-o53M3 .framer-dr2hfl > :first-child, .framer-o53M3 .framer-1fyojvf > :first-child, .framer-o53M3 .framer-6dv4cr > :first-child, .framer-o53M3 .framer-6eprnh > :first-child, .framer-o53M3 .framer-dy97gw > :first-child, .framer-o53M3 .framer-wwqzz6 > :first-child, .framer-o53M3 .framer-g2ek1e > :first-child, .framer-o53M3 .framer-m99xn1 > :first-child, .framer-o53M3 .framer-yckuzg > :first-child, .framer-o53M3 .framer-1d186s7 > :first-child, .framer-o53M3 .framer-hgtq9z > :first-child { margin-top: 0px; } .framer-o53M3.framer-72rtr7 > :last-child, .framer-o53M3 .framer-bjm7jr > :last-child, .framer-o53M3 .framer-1328owg > :last-child, .framer-o53M3 .framer-1jzngf4 > :last-child, .framer-o53M3 .framer-14pd3hh > :last-child, .framer-o53M3 .framer-1tohuhn > :last-child, .framer-o53M3 .framer-8m8by6 > :last-child, .framer-o53M3 .framer-iw0a9l > :last-child, .framer-o53M3 .framer-s6cr8k > :last-child, .framer-o53M3 .framer-1qbantn > :last-child, .framer-o53M3 .framer-1648jc2 > :last-child, .framer-o53M3 .framer-lqy5p3 > :last-child, .framer-o53M3 .framer-15sxx69 > :last-child, .framer-o53M3 .framer-17zekr > :last-child, .framer-o53M3 .framer-1mt3jhs > :last-child, .framer-o53M3 .framer-rwgn6y > :last-child, .framer-o53M3 .framer-d3qegp > :last-child, .framer-o53M3 .framer-1lded9p > :last-child, .framer-o53M3 .framer-zj1zin > :last-child, .framer-o53M3 .framer-vjf5jv > :last-child, .framer-o53M3 .framer-aa58e9 > :last-child, .framer-o53M3 .framer-chcc5m > :last-child, .framer-o53M3 .framer-1jy81f > :last-child, .framer-o53M3 .framer-14dictk > :last-child, .framer-o53M3 .framer-im3e1u > :last-child, .framer-o53M3 .framer-n1uctz > :last-child, .framer-o53M3 .framer-jmidpq > :last-child, .framer-o53M3 .framer-l5d83f > :last-child, .framer-o53M3 .framer-rgt927 > :last-child, .framer-o53M3 .framer-5ti01h > :last-child, .framer-o53M3 .framer-11za18o > :last-child, .framer-o53M3 .framer-1qrle13 > :last-child, .framer-o53M3 .framer-1tlth2w > :last-child, .framer-o53M3 .framer-pr3dsm > :last-child, .framer-o53M3 .framer-1ebd9qz > :last-child, .framer-o53M3 .framer-11e6k3r > :last-child, .framer-o53M3 .framer-9galmp > :last-child, .framer-o53M3 .framer-1i67jx7 > :last-child, .framer-o53M3 .framer-16r748f > :last-child, .framer-o53M3 .framer-1ma0v7l > :last-child, .framer-o53M3 .framer-5h3j7a > :last-child, .framer-o53M3 .framer-1sc09ji > :last-child, .framer-o53M3 .framer-o5u912 > :last-child, .framer-o53M3 .framer-1d5tnga > :last-child, .framer-o53M3 .framer-puhpaw > :last-child, .framer-o53M3 .framer-17tab9 > :last-child, .framer-o53M3 .framer-16jf9n2 > :last-child, .framer-o53M3 .framer-16x177v > :last-child, .framer-o53M3 .framer-1oy44hi > :last-child, .framer-o53M3 .framer-vrlrpb > :last-child, .framer-o53M3 .framer-1og36fd > :last-child, .framer-o53M3 .framer-jhpunj > :last-child, .framer-o53M3 .framer-1kw5xjt > :last-child, .framer-o53M3 .framer-1a5phqs > :last-child, .framer-o53M3 .framer-16yj2t7 > :last-child, .framer-o53M3 .framer-1jz2emn > :last-child, .framer-o53M3 .framer-16t1cfv > :last-child, .framer-o53M3 .framer-6czt39 > :last-child, .framer-o53M3 .framer-1lbie9a > :last-child, .framer-o53M3 .framer-12u89xn > :last-child, .framer-o53M3 .framer-xxlt76 > :last-child, .framer-o53M3 .framer-1cotjmn > :last-child, .framer-o53M3 .framer-1aio7f8 > :last-child, .framer-o53M3 .framer-dr2hfl > :last-child, .framer-o53M3 .framer-1fyojvf > :last-child, .framer-o53M3 .framer-6dv4cr > :last-child, .framer-o53M3 .framer-6eprnh > :last-child, .framer-o53M3 .framer-dy97gw > :last-child, .framer-o53M3 .framer-wwqzz6 > :last-child, .framer-o53M3 .framer-g2ek1e > :last-child, .framer-o53M3 .framer-m99xn1 > :last-child, .framer-o53M3 .framer-yckuzg > :last-child, .framer-o53M3 .framer-1d186s7 > :last-child, .framer-o53M3 .framer-hgtq9z > :last-child { margin-bottom: 0px; } .framer-o53M3 .framer-1rh1lqj > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-o53M3 .framer-1rh1lqj > :first-child, .framer-o53M3 .framer-1xh2cs9 > :first-child, .framer-o53M3 .framer-1tiz745 > :first-child, .framer-o53M3 .framer-ozhiug > :first-child, .framer-o53M3 .framer-op8zkc > :first-child, .framer-o53M3 .framer-34wsus > :first-child, .framer-o53M3 .framer-tiy578 > :first-child, .framer-o53M3 .framer-eau9s9 > :first-child, .framer-o53M3 .framer-11mibdj > :first-child, .framer-o53M3 .framer-1ee58x2 > :first-child, .framer-o53M3 .framer-12ojlpy > :first-child, .framer-o53M3 .framer-1x2fg3b > :first-child, .framer-o53M3 .framer-y80j7 > :first-child, .framer-o53M3 .framer-1divu8u > :first-child, .framer-o53M3 .framer-t9h7ib > :first-child, .framer-o53M3 .framer-o95kmu > :first-child, .framer-o53M3 .framer-139ihka > :first-child, .framer-o53M3 .framer-mbe0xn > :first-child, .framer-o53M3 .framer-1wvoxnj > :first-child, .framer-o53M3 .framer-d1mouq > :first-child, .framer-o53M3 .framer-khqvko > :first-child, .framer-o53M3 .framer-v7xcy2 > :first-child, .framer-o53M3 .framer-1r8vg67 > :first-child, .framer-o53M3 .framer-tje7b7 > :first-child, .framer-o53M3 .framer-1l6z88h > :first-child, .framer-o53M3 .framer-1ui4i8c > :first-child, .framer-o53M3 .framer-6k0l7p > :first-child, .framer-o53M3 .framer-1o4rzrs > :first-child, .framer-o53M3 .framer-16ysqgm > :first-child, .framer-o53M3 .framer-tyvxc6 > :first-child, .framer-o53M3 .framer-1ilz7jh > :first-child, .framer-o53M3 .framer-1ndsl9q > :first-child, .framer-o53M3 .framer-1yu5u33 > :first-child, .framer-o53M3 .framer-1oibqth > :first-child, .framer-o53M3 .framer-5uxu23 > :first-child, .framer-o53M3 .framer-koqsha > :first-child, .framer-o53M3 .framer-1luhsvu > :first-child, .framer-o53M3 .framer-eqqqf3 > :first-child, .framer-o53M3 .framer-q8sd43 > :first-child, .framer-o53M3 .framer-q6bvdf > :first-child, .framer-o53M3 .framer-7g6s8 > :first-child, .framer-o53M3 .framer-1pfa49q > :first-child, .framer-o53M3 .framer-wngmlc > :first-child, .framer-o53M3 .framer-1wfqfn6 > :first-child, .framer-o53M3 .framer-1h4qoqf > :first-child, .framer-o53M3 .framer-2v529q > :first-child, .framer-o53M3 .framer-16wq4fu > :first-child, .framer-o53M3 .framer-1jyqknj > :first-child, .framer-o53M3 .framer-1njifmx > :first-child, .framer-o53M3 .framer-1c4q1hl > :first-child { margin-left: 0px; } .framer-o53M3 .framer-1rh1lqj > :last-child, .framer-o53M3 .framer-1xh2cs9 > :last-child, .framer-o53M3 .framer-1tiz745 > :last-child, .framer-o53M3 .framer-ozhiug > :last-child, .framer-o53M3 .framer-op8zkc > :last-child, .framer-o53M3 .framer-34wsus > :last-child, .framer-o53M3 .framer-tiy578 > :last-child, .framer-o53M3 .framer-eau9s9 > :last-child, .framer-o53M3 .framer-11mibdj > :last-child, .framer-o53M3 .framer-1ee58x2 > :last-child, .framer-o53M3 .framer-12ojlpy > :last-child, .framer-o53M3 .framer-1x2fg3b > :last-child, .framer-o53M3 .framer-y80j7 > :last-child, .framer-o53M3 .framer-1divu8u > :last-child, .framer-o53M3 .framer-t9h7ib > :last-child, .framer-o53M3 .framer-o95kmu > :last-child, .framer-o53M3 .framer-139ihka > :last-child, .framer-o53M3 .framer-mbe0xn > :last-child, .framer-o53M3 .framer-1wvoxnj > :last-child, .framer-o53M3 .framer-d1mouq > :last-child, .framer-o53M3 .framer-khqvko > :last-child, .framer-o53M3 .framer-v7xcy2 > :last-child, .framer-o53M3 .framer-1r8vg67 > :last-child, .framer-o53M3 .framer-tje7b7 > :last-child, .framer-o53M3 .framer-1l6z88h > :last-child, .framer-o53M3 .framer-1ui4i8c > :last-child, .framer-o53M3 .framer-6k0l7p > :last-child, .framer-o53M3 .framer-1o4rzrs > :last-child, .framer-o53M3 .framer-16ysqgm > :last-child, .framer-o53M3 .framer-tyvxc6 > :last-child, .framer-o53M3 .framer-1ilz7jh > :last-child, .framer-o53M3 .framer-1ndsl9q > :last-child, .framer-o53M3 .framer-1yu5u33 > :last-child, .framer-o53M3 .framer-1oibqth > :last-child, .framer-o53M3 .framer-5uxu23 > :last-child, .framer-o53M3 .framer-koqsha > :last-child, .framer-o53M3 .framer-1luhsvu > :last-child, .framer-o53M3 .framer-eqqqf3 > :last-child, .framer-o53M3 .framer-q8sd43 > :last-child, .framer-o53M3 .framer-q6bvdf > :last-child, .framer-o53M3 .framer-7g6s8 > :last-child, .framer-o53M3 .framer-1pfa49q > :last-child, .framer-o53M3 .framer-wngmlc > :last-child, .framer-o53M3 .framer-1wfqfn6 > :last-child, .framer-o53M3 .framer-1h4qoqf > :last-child, .framer-o53M3 .framer-2v529q > :last-child, .framer-o53M3 .framer-16wq4fu > :last-child, .framer-o53M3 .framer-1jyqknj > :last-child, .framer-o53M3 .framer-1njifmx > :last-child, .framer-o53M3 .framer-1c4q1hl > :last-child { margin-right: 0px; } .framer-o53M3 .framer-1328owg > *, .framer-o53M3 .framer-jhpunj > *, .framer-o53M3 .framer-6czt39 > *, .framer-o53M3 .framer-dr2hfl > *, .framer-o53M3 .framer-hgtq9z > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-o53M3 .framer-1xh2cs9 > *, .framer-o53M3 .framer-1tiz745 > *, .framer-o53M3 .framer-1r8vg67 > *, .framer-o53M3 .framer-q8sd43 > *, .framer-o53M3 .framer-16wq4fu > *, .framer-o53M3 .framer-1jyqknj > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-o53M3 .framer-ozhiug > *, .framer-o53M3 .framer-eau9s9 > *, .framer-o53M3 .framer-11mibdj > *, .framer-o53M3 .framer-1wfqfn6 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-o53M3 .framer-op8zkc > *, .framer-o53M3 .framer-1ee58x2 > *, .framer-o53M3 .framer-1h4qoqf > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-o53M3 .framer-1jzngf4 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-o53M3 .framer-14pd3hh > *, .framer-o53M3 .framer-1tohuhn > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-o53M3 .framer-8m8by6 > *, .framer-o53M3 .framer-17tab9 > *, .framer-o53M3 .framer-1oy44hi > *, .framer-o53M3 .framer-16yj2t7 > *, .framer-o53M3 .framer-xxlt76 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-o53M3 .framer-iw0a9l > *, .framer-o53M3 .framer-jmidpq > *, .framer-o53M3 .framer-rgt927 > *, .framer-o53M3 .framer-5h3j7a > *, .framer-o53M3 .framer-o5u912 > *, .framer-o53M3 .framer-1d5tnga > *, .framer-o53M3 .framer-vrlrpb > *, .framer-o53M3 .framer-1og36fd > *, .framer-o53M3 .framer-1jz2emn > *, .framer-o53M3 .framer-16t1cfv > *, .framer-o53M3 .framer-1cotjmn > *, .framer-o53M3 .framer-1aio7f8 > *, .framer-o53M3 .framer-6dv4cr > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-o53M3 .framer-s6cr8k > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-o53M3 .framer-1qbantn > *, .framer-o53M3 .framer-1648jc2 > *, .framer-o53M3 .framer-1sc09ji > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-o53M3 .framer-lqy5p3 > *, .framer-o53M3 .framer-15sxx69 > *, .framer-o53M3 .framer-l5d83f > *, .framer-o53M3 .framer-puhpaw > *, .framer-o53M3 .framer-16x177v > *, .framer-o53M3 .framer-1a5phqs > *, .framer-o53M3 .framer-12u89xn > *, .framer-o53M3 .framer-6eprnh > *, .framer-o53M3 .framer-wwqzz6 > *, .framer-o53M3 .framer-g2ek1e > *, .framer-o53M3 .framer-m99xn1 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-o53M3 .framer-34wsus > *, .framer-o53M3 .framer-7g6s8 > *, .framer-o53M3 .framer-wngmlc > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-o53M3 .framer-tiy578 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-o53M3 .framer-12ojlpy > *, .framer-o53M3 .framer-1divu8u > *, .framer-o53M3 .framer-139ihka > *, .framer-o53M3 .framer-d1mouq > *, .framer-o53M3 .framer-v7xcy2 > *, .framer-o53M3 .framer-tje7b7 > *, .framer-o53M3 .framer-1l6z88h > *, .framer-o53M3 .framer-1o4rzrs > *, .framer-o53M3 .framer-1ilz7jh > *, .framer-o53M3 .framer-1ndsl9q > *, .framer-o53M3 .framer-5uxu23 > *, .framer-o53M3 .framer-eqqqf3 > *, .framer-o53M3 .framer-q6bvdf > *, .framer-o53M3 .framer-2v529q > *, .framer-o53M3 .framer-1c4q1hl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-o53M3 .framer-17zekr > *, .framer-o53M3 .framer-5ti01h > *, .framer-o53M3 .framer-1ebd9qz > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-o53M3 .framer-1x2fg3b > *, .framer-o53M3 .framer-t9h7ib > *, .framer-o53M3 .framer-1ui4i8c > *, .framer-o53M3 .framer-16ysqgm > *, .framer-o53M3 .framer-1yu5u33 > *, .framer-o53M3 .framer-koqsha > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-o53M3 .framer-1mt3jhs > *, .framer-o53M3 .framer-rwgn6y > *, .framer-o53M3 .framer-d3qegp > *, .framer-o53M3 .framer-1lded9p > *, .framer-o53M3 .framer-aa58e9 > *, .framer-o53M3 .framer-chcc5m > *, .framer-o53M3 .framer-14dictk > *, .framer-o53M3 .framer-im3e1u > *, .framer-o53M3 .framer-11za18o > *, .framer-o53M3 .framer-1qrle13 > *, .framer-o53M3 .framer-1tlth2w > *, .framer-o53M3 .framer-pr3dsm > *, .framer-o53M3 .framer-11e6k3r > *, .framer-o53M3 .framer-9galmp > *, .framer-o53M3 .framer-1i67jx7 > *, .framer-o53M3 .framer-16r748f > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-o53M3 .framer-y80j7 > *, .framer-o53M3 .framer-o95kmu > *, .framer-o53M3 .framer-1wvoxnj > *, .framer-o53M3 .framer-khqvko > *, .framer-o53M3 .framer-6k0l7p > *, .framer-o53M3 .framer-tyvxc6 > *, .framer-o53M3 .framer-1oibqth > *, .framer-o53M3 .framer-1luhsvu > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-o53M3 .framer-mbe0xn > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-o53M3 .framer-zj1zin > *, .framer-o53M3 .framer-yckuzg > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-o53M3 .framer-vjf5jv > *, .framer-o53M3 .framer-1jy81f > *, .framer-o53M3 .framer-dy97gw > *, .framer-o53M3 .framer-1d186s7 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-o53M3 .framer-1pfa49q > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-o53M3 .framer-1fyojvf > * { margin: 0px; margin-bottom: calc(112px / 2); margin-top: calc(112px / 2); } .framer-o53M3 .framer-1njifmx > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",`@media (min-width: 1920px) { .${metadata.bodyClassName}-framer-o53M3 { background: white; } .framer-o53M3.framer-72rtr7 { width: 1920px; } .framer-o53M3 .framer-1f4tonl { left: 37px; } .framer-o53M3 .framer-1aorvw1 { top: 51%; } .framer-o53M3 .framer-m99xn1 { width: 1184px; }}`,`@media (min-width: 1280px) and (max-width: 1454px) { .${metadata.bodyClassName}-framer-o53M3 { background: white; } .framer-o53M3.framer-72rtr7 { width: 1280px; } .framer-o53M3 .framer-bjm7jr { padding: 24px 64px 24px 64px; } .framer-o53M3 .framer-135hc4d, .framer-o53M3 .framer-14pd3hh, .framer-o53M3 .framer-jmidpq, .framer-o53M3 .framer-rgt927, .framer-o53M3 .framer-o5u912, .framer-o53M3 .framer-1d5tnga, .framer-o53M3 .framer-17tab9, .framer-o53M3 .framer-13jqiql, .framer-o53M3 .framer-13wsfe3, .framer-o53M3 .framer-1703mvz, .framer-o53M3 .framer-8lrpfj, .framer-o53M3 .framer-96u001, .framer-o53M3 .framer-z2ve8s, .framer-o53M3 .framer-dvvpp5, .framer-o53M3 .framer-8lag5q, .framer-o53M3 .framer-wwqzz6 { width: 100%; } .framer-o53M3 .framer-1jzngf4 { padding: 80px 64px 112px 64px; } .framer-o53M3 .framer-1kpkk44 { width: 1152px; } .framer-o53M3 .framer-zlcl3a, .framer-o53M3 .framer-ayg7cn { width: 1009px; } .framer-o53M3 .framer-n1uctz { padding: 0px 64px 0px 64px; } .framer-o53M3 .framer-1sc09ji { padding: 112px 64px 168px 64px; } .framer-o53M3 .framer-1fyojvf, .framer-o53M3 .framer-dy97gw { padding: 112px 64px 112px 64px; } .framer-o53M3 .framer-5okzq2 { top: calc(66.66666666666669% - 44px / 2); }}`,`@media (min-width: 810px) and (max-width: 1279px) { .${metadata.bodyClassName}-framer-o53M3 { background: white; } .framer-o53M3.framer-72rtr7 { width: 810px; } .framer-o53M3 .framer-bjm7jr { padding: 24px 64px 24px 64px; } .framer-o53M3 .framer-135hc4d, .framer-o53M3 .framer-14pd3hh, .framer-o53M3 .framer-1kpkk44, .framer-o53M3 .framer-zlcl3a, .framer-o53M3 .framer-ayg7cn, .framer-o53M3 .framer-1qbantn, .framer-o53M3 .framer-1rixjqj, .framer-o53M3 .framer-jmidpq, .framer-o53M3 .framer-4z4q7x, .framer-o53M3 .framer-rgt927, .framer-o53M3 .framer-o5u912, .framer-o53M3 .framer-1d5tnga, .framer-o53M3 .framer-r1fmrg, .framer-o53M3 .framer-17tab9, .framer-o53M3 .framer-13jqiql, .framer-o53M3 .framer-13wsfe3, .framer-o53M3 .framer-1703mvz, .framer-o53M3 .framer-8lrpfj, .framer-o53M3 .framer-96u001, .framer-o53M3 .framer-z2ve8s, .framer-o53M3 .framer-6dv4cr, .framer-o53M3 .framer-1bu11qw, .framer-o53M3 .framer-8lag5q, .framer-o53M3 .framer-wwqzz6, .framer-o53M3 .framer-1fcxnbi { width: 100%; } .framer-o53M3 .framer-1jzngf4 { padding: 56px 64px 112px 64px; } .framer-o53M3 .framer-s6cr8k { gap: 32px; } .framer-o53M3 .framer-eau9s9, .framer-o53M3 .framer-11mibdj { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-o53M3 .framer-n1uctz { padding: 0px 64px 0px 64px; } .framer-o53M3 .framer-1l6z88h { padding: 60px 40px 60px 40px; } .framer-o53M3 .framer-11za18o, .framer-o53M3 .framer-pr3dsm, .framer-o53M3 .framer-11e6k3r, .framer-o53M3 .framer-16r748f { height: var(--framer-aspect-ratio-supported, 271px); } .framer-o53M3 .framer-1sc09ji { padding: 80px 64px 112px 64px; } .framer-o53M3 .framer-1pfa49q { flex-direction: column; } .framer-o53M3 .framer-16jf9n2, .framer-o53M3 .framer-1kw5xjt, .framer-o53M3 .framer-1lbie9a { flex: none; width: 100%; } .framer-o53M3 .framer-16x177v, .framer-o53M3 .framer-1oy44hi, .framer-o53M3 .framer-vrlrpb, .framer-o53M3 .framer-1og36fd, .framer-o53M3 .framer-16yj2t7, .framer-o53M3 .framer-1jz2emn, .framer-o53M3 .framer-xxlt76, .framer-o53M3 .framer-1cotjmn { align-content: center; align-items: center; } .framer-o53M3 .framer-1fyojvf { gap: 80px; padding: 112px 64px 112px 64px; } .framer-o53M3 .framer-dvvpp5 { flex-direction: column; gap: 112px; justify-content: flex-start; width: 100%; } .framer-o53M3 .framer-dy97gw { padding: 112px 64px 112px 64px; } .framer-o53M3 .framer-yckuzg { padding: 80px 40px 80px 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-o53M3 .framer-s6cr8k, .framer-o53M3 .framer-eau9s9, .framer-o53M3 .framer-11mibdj, .framer-o53M3 .framer-1pfa49q, .framer-o53M3 .framer-1fyojvf, .framer-o53M3 .framer-dvvpp5 { gap: 0px; } .framer-o53M3 .framer-s6cr8k > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-o53M3 .framer-s6cr8k > :first-child, .framer-o53M3 .framer-eau9s9 > :first-child, .framer-o53M3 .framer-11mibdj > :first-child, .framer-o53M3 .framer-1pfa49q > :first-child, .framer-o53M3 .framer-1fyojvf > :first-child, .framer-o53M3 .framer-dvvpp5 > :first-child { margin-top: 0px; } .framer-o53M3 .framer-s6cr8k > :last-child, .framer-o53M3 .framer-eau9s9 > :last-child, .framer-o53M3 .framer-11mibdj > :last-child, .framer-o53M3 .framer-1pfa49q > :last-child, .framer-o53M3 .framer-1fyojvf > :last-child, .framer-o53M3 .framer-dvvpp5 > :last-child { margin-bottom: 0px; } .framer-o53M3 .framer-eau9s9 > *, .framer-o53M3 .framer-11mibdj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-o53M3 .framer-1pfa49q > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-o53M3 .framer-1fyojvf > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-o53M3 .framer-dvvpp5 > * { margin: 0px; margin-bottom: calc(112px / 2); margin-top: calc(112px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-o53M3 { background: white; } .framer-o53M3.framer-72rtr7 { height: 7978px; width: 390px; } .framer-o53M3 .framer-bjm7jr { padding: 24px 32px 24px 32px; } .framer-o53M3 .framer-135hc4d { gap: 0px; justify-content: center; width: 100%; } .framer-o53M3 .framer-1rh1lqj, .framer-o53M3 .framer-16wq4fu { justify-content: center; } .framer-o53M3 .framer-1jzngf4 { padding: 38px 32px 112px 32px; } .framer-o53M3 .framer-14pd3hh, .framer-o53M3 .framer-1kpkk44, .framer-o53M3 .framer-zlcl3a, .framer-o53M3 .framer-ayg7cn, .framer-o53M3 .framer-1qbantn, .framer-o53M3 .framer-1rixjqj, .framer-o53M3 .framer-jmidpq, .framer-o53M3 .framer-4z4q7x, .framer-o53M3 .framer-o5u912, .framer-o53M3 .framer-1d5tnga, .framer-o53M3 .framer-r1fmrg, .framer-o53M3 .framer-7q45v0, .framer-o53M3 .framer-17tab9, .framer-o53M3 .framer-1ba941x, .framer-o53M3 .framer-13jqiql, .framer-o53M3 .framer-13wsfe3, .framer-o53M3 .framer-18cdy8, .framer-o53M3 .framer-1703mvz, .framer-o53M3 .framer-8lrpfj, .framer-o53M3 .framer-t9g2ob, .framer-o53M3 .framer-96u001, .framer-o53M3 .framer-z2ve8s, .framer-o53M3 .framer-6dv4cr, .framer-o53M3 .framer-1bu11qw, .framer-o53M3 .framer-8lag5q, .framer-o53M3 .framer-wwqzz6, .framer-o53M3 .framer-1fcxnbi, .framer-o53M3 .framer-1poy3vq { width: 100%; } .framer-o53M3 .framer-s6cr8k { gap: 32px; } .framer-o53M3 .framer-tiy578, .framer-o53M3 .framer-1x2fg3b, .framer-o53M3 .framer-t9h7ib, .framer-o53M3 .framer-1pfa49q { flex-direction: column; } .framer-o53M3 .framer-eau9s9, .framer-o53M3 .framer-11mibdj { flex: none; flex-direction: column; width: 100%; } .framer-o53M3 .framer-12ojlpy { gap: 20px; padding: 60px 20px 60px 20px; } .framer-o53M3 .framer-17zekr { gap: 60px; } .framer-o53M3 .framer-1mt3jhs { flex: 1 0 0px; height: 1px; width: var(--framer-aspect-ratio-supported, 350px); } .framer-o53M3 .framer-rwgn6y, .framer-o53M3 .framer-16jf9n2, .framer-o53M3 .framer-1kw5xjt, .framer-o53M3 .framer-1lbie9a { flex: none; width: 100%; } .framer-o53M3 .framer-1divu8u, .framer-o53M3 .framer-15r6lb1 { order: 0; } .framer-o53M3 .framer-d3qegp { flex: none; order: 1; width: 100%; } .framer-o53M3 .framer-1lded9p { flex: none; height: var(--framer-aspect-ratio-supported, 292px); order: 0; width: 100%; } .framer-o53M3 .framer-aa58e9 { height: var(--framer-aspect-ratio-supported, 292px); } .framer-o53M3 .framer-14dictk { order: 1; } .framer-o53M3 .framer-im3e1u { height: var(--framer-aspect-ratio-supported, 292px); order: 0; } .framer-o53M3 .framer-n1uctz { flex: 1 0 0px; height: 1px; } .framer-o53M3 .framer-1sc09ji { padding: 80px 32px 112px 32px; } .framer-o53M3 .framer-16x177v, .framer-o53M3 .framer-1oy44hi, .framer-o53M3 .framer-vrlrpb, .framer-o53M3 .framer-1og36fd, .framer-o53M3 .framer-16yj2t7, .framer-o53M3 .framer-1jz2emn, .framer-o53M3 .framer-xxlt76, .framer-o53M3 .framer-1cotjmn, .framer-o53M3 .framer-hgtq9z { align-content: center; align-items: center; } .framer-o53M3 .framer-1fyojvf { gap: 80px; padding: 80px 32px 112px 32px; } .framer-o53M3 .framer-dvvpp5 { flex-direction: column; gap: 112px; justify-content: flex-start; width: 100%; } .framer-o53M3 .framer-dy97gw { padding: 112px 32px 112px 32px; } .framer-o53M3 .framer-yckuzg { padding: 60px 20px 60px 20px; } .framer-o53M3 .framer-1d186s7 { padding: 32px; } .framer-o53M3 .framer-16iw2je { height: var(--framer-aspect-ratio-supported, 34px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-o53M3 .framer-135hc4d, .framer-o53M3 .framer-s6cr8k, .framer-o53M3 .framer-tiy578, .framer-o53M3 .framer-eau9s9, .framer-o53M3 .framer-11mibdj, .framer-o53M3 .framer-12ojlpy, .framer-o53M3 .framer-17zekr, .framer-o53M3 .framer-1x2fg3b, .framer-o53M3 .framer-t9h7ib, .framer-o53M3 .framer-1pfa49q, .framer-o53M3 .framer-1fyojvf, .framer-o53M3 .framer-dvvpp5 { gap: 0px; } .framer-o53M3 .framer-135hc4d > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-o53M3 .framer-135hc4d > :first-child, .framer-o53M3 .framer-12ojlpy > :first-child { margin-left: 0px; } .framer-o53M3 .framer-135hc4d > :last-child, .framer-o53M3 .framer-12ojlpy > :last-child { margin-right: 0px; } .framer-o53M3 .framer-s6cr8k > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-o53M3 .framer-s6cr8k > :first-child, .framer-o53M3 .framer-tiy578 > :first-child, .framer-o53M3 .framer-eau9s9 > :first-child, .framer-o53M3 .framer-11mibdj > :first-child, .framer-o53M3 .framer-17zekr > :first-child, .framer-o53M3 .framer-1x2fg3b > :first-child, .framer-o53M3 .framer-t9h7ib > :first-child, .framer-o53M3 .framer-1pfa49q > :first-child, .framer-o53M3 .framer-1fyojvf > :first-child, .framer-o53M3 .framer-dvvpp5 > :first-child { margin-top: 0px; } .framer-o53M3 .framer-s6cr8k > :last-child, .framer-o53M3 .framer-tiy578 > :last-child, .framer-o53M3 .framer-eau9s9 > :last-child, .framer-o53M3 .framer-11mibdj > :last-child, .framer-o53M3 .framer-17zekr > :last-child, .framer-o53M3 .framer-1x2fg3b > :last-child, .framer-o53M3 .framer-t9h7ib > :last-child, .framer-o53M3 .framer-1pfa49q > :last-child, .framer-o53M3 .framer-1fyojvf > :last-child, .framer-o53M3 .framer-dvvpp5 > :last-child { margin-bottom: 0px; } .framer-o53M3 .framer-tiy578 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-o53M3 .framer-eau9s9 > *, .framer-o53M3 .framer-11mibdj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-o53M3 .framer-12ojlpy > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-o53M3 .framer-17zekr > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-o53M3 .framer-1x2fg3b > *, .framer-o53M3 .framer-t9h7ib > *, .framer-o53M3 .framer-1fyojvf > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-o53M3 .framer-1pfa49q > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-o53M3 .framer-dvvpp5 > * { margin: 0px; margin-bottom: calc(112px / 2); margin-top: calc(112px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,'.framer-o53M3[data-border=\"true\"]::after, .framer-o53M3 [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 5731\n * @framerIntrinsicWidth 1455\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qQYUwnVPY\":{\"layout\":[\"fixed\",\"auto\"]},\"Yqw9akofa\":{\"layout\":[\"fixed\",\"auto\"]},\"UTtXo12Bm\":{\"layout\":[\"fixed\",\"auto\"]},\"Zqtsa08Qd\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-o53M3\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5731,width:1455};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNTxXUEKi4Rw.woff2\",weight:\"800\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/ZLH2B3SFZRQ3US4ZUYG2367OYUMTVTGK/RSOPFK2EORTGBCOBZRY42GDLXFFB4IQW/JZ35FM4UJSKC7X2PM65RH75Q5KLE552S.woff2\",weight:\"600\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TX2N2Q6ZO2LBO34H72H5RVJTBQFGU4GV/ZICVNTLTT4V7CCIJPWNY363N6LIP2AET/OUUAK2X2MEGEKC6ULA4CFSBY4PE5EGPV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_VMq2oR82k.woff2\",weight:\"800\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ37Dh_VMq2oR82k.woff2\",weight:\"600\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNTxXUEKi4Rw.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"}]},...TickerFonts,...Accordion2Fonts,...YouTubeFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"5731\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qQYUwnVPY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Yqw9akofa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UTtXo12Bm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zqtsa08Qd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1455\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "d", "f", "l", "g", "glide", "u", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "o", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "i", "s", "__rest", "inView$1", "o", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "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", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "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", "keyframes", "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", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "W88zB8mIG", "T8rQFvSBR", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap2wrxd7", "args", "onTapzc6ei0", "isDisplayed", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "css", "FramerJDIZfHyyT", "withCSS", "JDIZfHyyT_default", "addPropertyControls", "ControlType", "addFonts", "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", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ap9gx2", "args", "onTap1ani10u", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerkSGxmCCoQ", "withCSS", "kSGxmCCoQ_default", "addPropertyControls", "ControlType", "addFonts", "RowFonts", "getFonts", "kSGxmCCoQ_default", "Row1Fonts", "JDIZfHyyT_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "kSGxmCCoQ_default", "JDIZfHyyT_default", "css", "Framerxc8lv2PQF", "withCSS", "xc8lv2PQF_default", "addFonts", "RowFonts", "Row1Fonts", "RichTextWithFX", "withFX", "RichText2", "TickerFonts", "getFonts", "Ticker", "MotionDivWithFX", "motion", "Accordion2Fonts", "xc8lv2PQF_default", "YouTubeFonts", "Youtube", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "animation5", "transition4", "animation6", "transformTemplate1", "_", "t", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref2", "isDisplayed2", "isDisplayed3", "elementId1", "ref3", "isDisplayed4", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "isDisplayed5", "isDisplayed6", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "Link", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "SVG", "ComponentViewportProvider", "Container", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
