{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.13.1/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/yevww260oHitAFGt4Ffa/Ticker.js", "ssg:https://framerusercontent.com/modules/g61hnI270iHMakXGbSMB/EvoQdh9oLIuBGJsBRcPS/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,progress as o,isFunction as i,defaults as s,isCubicBezier as r,isEasingGenerator as a,isEasingList as c,isNumber as l,time as f,noop as u,removeItem as d,mix as g,getEasingForSegment as m,isString as h,defaultOffset as p,fillOffset as v,velocityPerSecond as y,interpolate as w}from\"@motionone/utils\";import{Animation as E,getEasingFunction as b}from\"@motionone/animation\";import{__rest as S}from\"tslib\";import{invariant as A}from\"hey-listen\";import{pregenerateKeyframes as O,calcGeneratorVelocity as x,spring as V,glide as z}from\"@motionone/generators\";const W=new WeakMap;function getAnimationData(e){W.has(e)||W.set(e,{transforms:[],values:new Map});return W.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const L=[\"\",\"X\",\"Y\",\"Z\"];const T=[\"translate\",\"scale\",\"rotate\",\"skew\"];const D={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const M={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const k={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:M,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:M};const B=new Map;const asTransformCssVar=e=>`--motion-${e}`;const j=[\"x\",\"y\",\"z\"];T.forEach((e=>{L.forEach((t=>{j.push(e+t);B.set(asTransformCssVar(e+t),k[e])}))}));const compareTransformOrder=(e,t)=>j.indexOf(e)-j.indexOf(t);const P=new Set(j);const isTransform=e=>P.has(e);const addTransformToElement=(e,t)=>{D[t]&&(t=D[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const $=new Set;function registerCssVariable(e){if(!$.has(e)){$.add(e);try{const{syntax:t,initialValue:n}=B.has(e)?B.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const testAnimation=(e,t)=>document.createElement(\"div\").animate(e,t);const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]},{duration:.001}).finished),linearEasing:()=>{try{testAnimation({opacity:0},{easing:\"linear(0, 1)\"})}catch(e){return false}return true}};const R={};const H={};for(const e in C)H[e]=()=>{void 0===R[e]&&(R[e]=C[e]());return R[e]};const I=.015;const generateLinearEasingPoints=(e,t)=>{let n=\"\";const i=Math.round(t/I);for(let t=0;t<i;t++)n+=e(o(0,i-1,t))+\", \";return n.substring(0,n.length-2)};const convertEasing=(e,t)=>i(e)?H.linearEasing()?`linear(${generateLinearEasingPoints(e,t)})`:s.easing:r(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){D[e]&&(e=D[e]);return isTransform(e)?asTransformCssVar(e):e}const N={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=B.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const r=getDevToolsRecord();const d=false!==o.record&&r;let g;let{duration:m=s.duration,delay:h=s.delay,endDelay:p=s.endDelay,repeat:v=s.repeat,easing:y=s.easing,direction:w,offset:b,allowWebkitAcceleration:S=false}=o;const A=getAnimationData(e);const O=isTransform(t);let x=H.waapi();O&&addTransformToElement(e,t);const V=getStyleName(t);const z=getMotionValue(A.values,V);const W=B.get(V);stopAnimation(z.animation,!(a(y)&&z.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=N.get(e,V))&&void 0!==t?t:null===W||void 0===W?void 0:W.initialValue)&&void 0!==n?n:0};let s=hydrateKeyframes(keyframesList(n),readInitialValue);if(a(y)){const e=y.createAnimation(s,readInitialValue,O,V,z);y=e.easing;void 0!==e.keyframes&&(s=e.keyframes);void 0!==e.duration&&(m=e.duration)}isCssVar(V)&&(H.cssRegisterProperty()?registerCssVariable(V):x=false);O&&!H.linearEasing()&&(i(y)||c(y)&&y.some(i))&&(x=false);if(x){W&&(s=s.map((e=>l(e)?W.toDefaultUnit(e):e)));1!==s.length||H.partialKeyframes()&&!d||s.unshift(readInitialValue());const t={delay:f.ms(h),duration:f.ms(m),endDelay:f.ms(p),easing:c(y)?void 0:convertEasing(y,m),direction:w,iterations:v+1,fill:\"both\"};g=e.animate({[V]:s,offset:b,easing:c(y)?y.map((e=>convertEasing(e,m))):void 0},t);g.finished||(g.finished=new Promise(((e,t)=>{g.onfinish=e;g.oncancel=t})));const n=s[s.length-1];g.finished.then((()=>{N.set(e,V,n);g.cancel()})).catch(u);S||(g.playbackRate=1.000001)}else if(O){s=s.map((e=>\"string\"===typeof e?parseFloat(e):e));1===s.length&&s.unshift(parseFloat(readInitialValue()));const render=t=>{W&&(t=W.toDefaultUnit(t));N.set(e,V,t)};g=new E(render,s,Object.assign(Object.assign({},o),{duration:m,easing:y}))}else{const t=s[s.length-1];N.set(e,V,W&&l(t)?W.toDefaultUnit(t):t)}d&&r(e,t,s,{duration:m,delay:h,easing:y,repeat:v,offset:b},\"motion-one\");z.setAnimation(g);return g}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=s.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},F);const getActiveAnimation=e=>e.animations[0];const F={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return f.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(u));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=f.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const r=l(n)?n:getFromIndex(n,s);const a=Math.abs(r-i);let c=e*a;if(o){const t=s*e;const n=b(o);c=n(c/t)*t}return t+c}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return i(e)?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return l(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){d(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:g(i,s,o[r]),easing:m(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,i=S(t,[\"defaultOptions\"]);const r=[];const c=new Map;const l={};const f=new Map;let u=0;let d=0;let g=0;for(let t=0;t<e.length;t++){const o=e[t];if(h(o)){f.set(o,d);continue}if(!Array.isArray(o)){f.set(o.name,calcNextTime(d,o.at,u,f));continue}const[i,r,m={}]=o;void 0!==m.at&&(d=calcNextTime(d,m.at,u,f));let y=0;const w=resolveElements(i,l);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,c);for(const t in r){const i=getValueSequence(t,o);let c=keyframesList(r[t]);const l=getOptions(m,t);let{duration:f=n.duration||s.duration,easing:u=n.easing||s.easing}=l;if(a(u)){const e=isTransform(t);A(2===c.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=u.createAnimation(c,(()=>\"0\"),e);u=n.easing;void 0!==n.keyframes&&(c=n.keyframes);void 0!==n.duration&&(f=n.duration)}const h=resolveOption(m.delay,e,E)||0;const w=d+h;const b=w+f;let{offset:S=p(c.length)}=l;1===S.length&&0===S[0]&&(S[1]=1);const O=length-c.length;O>0&&v(S,O);1===c.length&&c.unshift(null);addKeyframes(i,c,u,S,w,b);y=Math.max(h+f,y);g=Math.max(b,g)}}u=d;d+=y}c.forEach(((e,t)=>{for(const a in e){const c=e[a];c.sort(compareByTime);const l=[];const f=[];const u=[];for(let e=0;e<c.length;e++){const{at:t,value:n,easing:i}=c[e];l.push(n);f.push(o(0,g,t));u.push(i||s.easing)}if(0!==f[0]){f.unshift(0);l.unshift(l[0]);u.unshift(\"linear\")}if(1!==f[f.length-1]){f.push(1);l.push(null)}r.push([t,a,l,Object.assign(Object.assign(Object.assign({},n),{duration:g,easing:u,offset:f}),i)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,O(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=x((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const U=createGeneratorEasing(V);const q=createGeneratorEasing(z);const K={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:s=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const r=resolveElements(e);const a=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=a.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);i(n)?a.set(e.target,n):c.unobserve(e.target)}else if(n){n(e);a.delete(e.target)}}))};const c=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof s?s:K[s]});r.forEach((e=>c.observe(e)));return()=>c.disconnect()}const G=new WeakMap;let _;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=G.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(_=new ResizeObserver(notifyAll))}function resizeElement(e,t){_||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=G.get(e);if(!n){n=new Set;G.set(e,n)}n.add(t);null===_||void 0===_?void 0:_.observe(e)}));return()=>{n.forEach((e=>{const n=G.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===_||void 0===_?void 0:_.unobserve(e))}))}}const Z=new Set;let X;function createWindowResizeHandler(){X=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};Z.forEach((e=>e(t)))};window.addEventListener(\"resize\",X)}function resizeWindow(e){Z.add(e);X||createWindowResizeHandler();return()=>{Z.delete(e);!Z.size&&X&&(X=void 0)}}function resize(e,t){return i(e)?resizeWindow(e):resizeElement(e,t)}const Y=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const J={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,i){const s=n[t];const{length:r,position:a}=J[t];const c=s.current;const l=n.time;s.current=e[\"scroll\"+a];s.scrollLength=e[\"scroll\"+r]-e[\"client\"+r];s.offset.length=0;s.offset[0]=0;s.offset[1]=s.scrollLength;s.progress=o(0,s.scrollLength,s.current);const f=i-l;s.velocity=f>Y?0:y(s.current-c,f)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Q={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const ee={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==ee[e]&&(e=ee[e]);if(h(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}l(e)&&(o=t*e);return n+o}const te=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:te;let s=0;let r=0;if(l(e))i=[e,e];else if(h(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,ee[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);r=resolveEdge(i[1],t);return s-r}const ne={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Q.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ne;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=w(p(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const s=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:i(t)?()=>t(n):scrubAnimation(t,n[s])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const oe=new WeakMap;const ie=new WeakMap;const se=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=S(t,[\"container\"]);let i=se.get(n);if(!i){i=new Set;se.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!oe.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};oe.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ie.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=oe.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=se.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=oe.get(n);oe.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ie.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let re;function processScheduledAnimations(){if(!re)return;const e=re.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);re=void 0}function scheduleAnimation(e){if(re)n(re,e);else{re=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){re&&d(re,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const ae={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=S(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const ce={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const le={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const fe={inView:ae,hover:ce,press:le};const ue=[\"initial\",\"animate\",...Object.keys(fe),\"exit\"];const de=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of ue)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},l=S(c,[\"transition\"]);const f=Object.assign({},l);function*animateUpdates(){var t,o;const s=l;l={};const r={};for(const n of ue){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){l[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(l),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===l[e]&&(l[e]=f[e]);if(hasChanged(s[e],l[e])){null!==(t=f[e])&&void 0!==t?t:f[e]=N.get(n,e);c.push(animateStyle(n,e,l[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=l;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(u)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in fe){const o=fe[t].isActive(e);const i=s[t];if(o&&!i)s[t]=fe[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>l,getOptions:()=>e,getContext:()=>r,mount:e=>{A(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;de.set(n,d);updateGestureSubscriptions();return()=>{de.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){D[o]&&(o=D[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const r=B.get(o);r&&(s=l(i)?r.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Q as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,q as glide,inView$1 as inView,de as mountedStates,resize,scroll,U as spring,stagger,N as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (e22b717)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/yevww260oHitAFGt4Ffa/Ticker.js\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/vFZ651v9QEXXQW2ze9aP/Input.js\";import Widget3EmailReplies from\"#framer/local/canvasComponent/BeP4wcPml/BeP4wcPml.js\";import Footer from\"#framer/local/canvasComponent/CibtiOm6U/CibtiOm6U.js\";import SectionBadge from\"#framer/local/canvasComponent/g1Ms3aCva/g1Ms3aCva.js\";import Accordion from\"#framer/local/canvasComponent/lleYxrUID/lleYxrUID.js\";import NavigationBar from\"#framer/local/canvasComponent/oSOtMFvR3/oSOtMFvR3.js\";import*as sharedStyle3 from\"#framer/local/css/bEiodWSQ3/bEiodWSQ3.js\";import*as sharedStyle2 from\"#framer/local/css/khVb1D_Cy/khVb1D_Cy.js\";import*as sharedStyle from\"#framer/local/css/MOqZA7eLR/MOqZA7eLR.js\";import*as sharedStyle1 from\"#framer/local/css/Oeaeo0pwX/Oeaeo0pwX.js\";import*as sharedStyle6 from\"#framer/local/css/QfKwTOU7W/QfKwTOU7W.js\";import*as sharedStyle5 from\"#framer/local/css/sWkIeX9Y3/sWkIeX9Y3.js\";import*as sharedStyle4 from\"#framer/local/css/UgheUOojp/UgheUOojp.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationBarFonts=getFonts(NavigationBar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TickerFonts=getFonts(Ticker);const MotionAWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.a));const ImageWithFX=withFX(Image);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const Widget3EmailRepliesFonts=getFonts(Widget3EmailReplies);const SectionBadgeFonts=getFonts(SectionBadge);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const AccordionFonts=getFonts(Accordion);const InputFonts=getFonts(Input);const FooterFonts=getFonts(Footer);const breakpoints={ntIxot2Qi:\"(max-width: 809px)\",u6R6NsvSc:\"(min-width: 810px) and (max-width: 1399px)\",WQLkyLRf1:\"(min-width: 1400px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-IslMY\";const variantClassNames={ntIxot2Qi:\"framer-v-1xaffxx\",u6R6NsvSc:\"framer-v-1ed9oh6\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:30,delay:0,mass:1,stiffness:140,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-50};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={damping:50,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition3={damping:50,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition4};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition4};const transition5={damping:30,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition6={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transition7={damping:30,delay:.5,mass:1,stiffness:150,type:\"spring\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const transition8={damping:30,delay:.4,mass:1,stiffness:150,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const transition9={damping:50,delay:.6,mass:1,stiffness:150,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const animation16={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-20,y:0};const animation17={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:20,y:0};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1250,x:0,y:10};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition10={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition11={damping:20,delay:.2,mass:1,stiffness:110,type:\"spring\"};const animation21={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:8};const transition12={delay:.3,duration:1.2,ease:[.44,0,.56,1],type:\"tween\"};const transition13={delay:.7,duration:.6,ease:[.12,.23,.23,.98],type:\"tween\"};const animation22={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:0};const animation23={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition14={delay:1.4,duration:.6,ease:[.12,.23,.23,.98],type:\"tween\"};const animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition14,x:0,y:0};const transition15={delay:1,duration:.6,ease:[.12,.23,.23,.98],type:\"tween\"};const animation26={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition15,x:0,y:0};const transition16={delay:.5,duration:.6,ease:[.12,.23,.23,.98],type:\"tween\"};const animation27={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition16,x:0,y:0};const transition17={damping:60,delay:.5,mass:1,stiffness:400,type:\"spring\"};const animation28={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition17,x:0,y:0};const transition18={damping:60,delay:.9,mass:1,stiffness:400,type:\"spring\"};const animation29={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition18,x:0,y:0};const transition19={damping:60,delay:1.3,mass:1,stiffness:400,type:\"spring\"};const animation30={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition19,x:0,y:0};const animation31={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,transformPerspective:1200,x:-110,y:0};const transition20={delay:.5,duration:1.5,ease:[.81,-.03,.56,1],type:\"tween\"};const animation32={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition21={damping:60,delay:.6,mass:1,stiffness:380,type:\"spring\"};const animation33={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition21,x:0,y:0};const transition22={damping:60,delay:.7,mass:1,stiffness:350,type:\"spring\"};const animation34={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition22,x:0,y:0};const transition23={damping:60,delay:.8,mass:1,stiffness:320,type:\"spring\"};const animation35={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition23,x:0,y:0};const transition24={damping:60,delay:.9,mass:1,stiffness:300,type:\"spring\"};const animation36={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition24,x:0,y:0};const transition25={damping:60,delay:1,mass:1,stiffness:260,type:\"spring\"};const animation37={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition25,x:0,y:0};const transition26={damping:60,delay:1.1,mass:1,stiffness:240,type:\"spring\"};const animation38={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition26,x:0,y:0};const transition27={damping:60,delay:1.2,mass:1,stiffness:220,type:\"spring\"};const animation39={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition27,x:0,y:0};const transition28={damping:60,delay:1.3,mass:1,stiffness:180,type:\"spring\"};const animation40={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition28,x:0,y:0};const transition29={damping:60,delay:1.4,mass:1,stiffness:160,type:\"spring\"};const animation41={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition29,x:0,y:0};const transition30={damping:60,delay:1.5,mass:1,stiffness:140,type:\"spring\"};const animation42={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition30,x:0,y:0};const transition31={damping:60,delay:1.6,mass:1,stiffness:120,type:\"spring\"};const animation43={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition31,x:0,y:0};const transition32={damping:60,delay:1.7,mass:1,stiffness:100,type:\"spring\"};const animation44={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition32,x:0,y:0};const transition33={damping:20,delay:.4,mass:1,stiffness:110,type:\"spring\"};const transition34={damping:20,delay:.6,mass:1,stiffness:110,type:\"spring\"};const transition35={damping:20,delay:.3,mass:1,stiffness:110,type:\"spring\"};const transition36={damping:20,delay:.1,mass:1,stiffness:110,type:\"spring\"};const transition37={damping:20,delay:.2,mass:1,stiffness:150,type:\"spring\"};const transition38={damping:20,delay:.4,mass:1,stiffness:150,type:\"spring\"};const transition39={damping:20,delay:.6,mass:1,stiffness:150,type:\"spring\"};const transition40={damping:20,delay:0,mass:1,stiffness:110,type:\"spring\"};const transition41={damping:30,delay:.3,mass:1,stiffness:150,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"ntIxot2Qi\",Tablet:\"u6R6NsvSc\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"rwJHzxlJ1\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"u6R6NsvSc\",\"ntIxot2Qi\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ntIxot2Qi\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"ntIxot2Qi\")return false;return true;};const elementId1=useRouteElementId(\"z1iKI5fcO\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"wz4WUDXJ0\");const ref3=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"u6R6NsvSc\")return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"u6R6NsvSc\")return true;return false;};const isDisplayed5=()=>{if(!isBrowser())return true;if([\"u6R6NsvSc\",\"ntIxot2Qi\"].includes(baseVariant))return true;return false;};const elementId3=useRouteElementId(\"SmoawOunl\");const ref4=React.useRef(null);const ref5=React.useRef(null);const elementId4=useRouteElementId(\"YS7mhwaJ6\");const elementId5=useRouteElementId(\"BAnpyFO8F\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"LmO7ES3eY\");const ref7=React.useRef(null);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(13, 13, 13); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{width:\"100vw\",y:32},u6R6NsvSc:{y:(componentViewport?.y||0)+32+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+48+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{layoutScroll:true,transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-a4ey5c-container\",\"data-framer-appear-id\":\"a4ey5c\",initial:animation1,nodeId:\"i_QgWbjef\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{variant:\"KuKiMuW5U\"},u6R6NsvSc:{variant:\"Z0iiBWfvp\"}},children:/*#__PURE__*/_jsx(NavigationBar,{height:\"100%\",id:\"i_QgWbjef\",layoutId:\"i_QgWbjef\",style:{width:\"100%\"},variant:\"RJp808YVP\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1l1mvsd\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gemaw4\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-plfr9o\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ighdqo\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1doxabh\",\"data-styles-preset\":\"MOqZA7eLR\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(2005deg, rgb(255, 255, 247) 8.55094%, rgb(114, 114, 103) 107.012%)\"},children:[\"Sales Tech \",/*#__PURE__*/_jsx(\"br\",{}),\"That works\"]})})}),className:\"framer-12mfih4\",\"data-framer-appear-id\":\"12mfih4\",\"data-framer-name\":\"Design work, the efficient way\",fonts:[\"Inter\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oyzs5\",\"data-framer-name\":\"Subheading\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-alignment\":\"center\"},children:\"We build and run a fully managed sales tech system that connects you with high-intent buyers without hiring an SDR team.\"})}),className:\"framer-x5wpx9\",\"data-framer-appear-id\":\"x5wpx9\",\"data-framer-name\":\"Design services for tech companies and startups bored by the standard design approach. Soon on this planet.\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-6dch74\",\"data-framer-appear-id\":\"6dch74\",\"data-framer-name\":\"Book Meeting\",initial:animation8,optimized:true,style:{transformPerspective:1200},whileHover:animation6,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-f2gogh\",\"data-styles-preset\":\"khVb1D_Cy\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(0, 0, 0) 81.7116%, rgba(0, 0, 0, 0) 100%)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JO83GN48o\"},motionChild:true,nodeId:\"iUzuyg4JU\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1u4289p\",\"data-styles-preset\":\"bEiodWSQ3\",children:\"Get Started\"})})})})}),className:\"framer-1xb4wej\",fonts:[\"Inter\"],verticalAlignment:\"top\",whileTap:animation9,withExternalLayout:true})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n5x1p9 hidden-1ed9oh6 hidden-1xaffxx\",\"data-framer-name\":\"dark-layer-container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ozql3s\",\"data-framer-name\":\"dark-layer\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t8kidz\",\"data-framer-name\":\"graphics-BG\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vnqiti-container hidden-72rtr7 hidden-1ed9oh6\",id:\"vnqiti\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"A2XIPJ4ML\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"A2XIPJ4ML\",layoutId:\"A2XIPJ4ML\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://www.behance.net/muslakov\",motionChild:true,nodeId:\"mqMqFWXrd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:212,intrinsicWidth:208.5,pixelHeight:834,pixelWidth:1e3,sizes:\"133px\",src:\"https://framerusercontent.com/images/TlrmwEcVnIJLlHP75TjCIvTkrg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/TlrmwEcVnIJLlHP75TjCIvTkrg.png?scale-down-to=512 512w,https://framerusercontent.com/images/TlrmwEcVnIJLlHP75TjCIvTkrg.png 1000w\"},className:\"framer-dbg6wi framer-lux5qc\",\"data-framer-name\":\"image_01\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:798,intrinsicWidth:1e3,pixelHeight:3e3,pixelWidth:3e3,sizes:\"176px\",src:\"https://framerusercontent.com/images/RehQGMkJxwUaBFAkyh1hlIvgw0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/RehQGMkJxwUaBFAkyh1hlIvgw0.png?scale-down-to=512 512w,https://framerusercontent.com/images/RehQGMkJxwUaBFAkyh1hlIvgw0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RehQGMkJxwUaBFAkyh1hlIvgw0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RehQGMkJxwUaBFAkyh1hlIvgw0.png 3000w\"},className:\"framer-1nenp3c\",\"data-framer-name\":\"image_02\"}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/nurpraditya/status/1684912547705843714?s=46\",motionChild:true,nodeId:\"rFJkIR0mx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:248,intrinsicWidth:357,pixelHeight:3e3,pixelWidth:3e3,sizes:\"180px\",src:\"https://framerusercontent.com/images/3mn6HLkfvwA5HrO4GbaSlnJ8Qck.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/3mn6HLkfvwA5HrO4GbaSlnJ8Qck.png?scale-down-to=512 512w,https://framerusercontent.com/images/3mn6HLkfvwA5HrO4GbaSlnJ8Qck.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3mn6HLkfvwA5HrO4GbaSlnJ8Qck.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3mn6HLkfvwA5HrO4GbaSlnJ8Qck.png 3000w\"},className:\"framer-r6sv25 framer-lux5qc\",\"data-framer-name\":\"image_03\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/aryanuiux?s=20\",motionChild:true,nodeId:\"BBGoxf2d1\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:781,intrinsicWidth:1e3,pixelHeight:736,pixelWidth:1e3,sizes:\"140px\",src:\"https://framerusercontent.com/images/pTzNlMJQefZTC6aGfzSH2HnPZ0g.png\",srcSet:\"https://framerusercontent.com/images/pTzNlMJQefZTC6aGfzSH2HnPZ0g.png?scale-down-to=512 512w,https://framerusercontent.com/images/pTzNlMJQefZTC6aGfzSH2HnPZ0g.png 1000w\"},className:\"framer-1tix1uc framer-lux5qc\",\"data-framer-name\":\"image_05\"})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{href:undefined}},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":q4CYhW3ts\",webPageId:\"JO83GN48o\"},motionChild:true,nodeId:\"Q9AUqsnOu\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MotionAWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:1e3}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,animate:animation10,className:\"framer-4ggj12 framer-lux5qc\",\"data-framer-appear-id\":\"4ggj12\",\"data-framer-name\":\"image\",initial:animation11,optimized:true,style:{transformPerspective:1200},children:isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{u6R6NsvSc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:212,intrinsicWidth:208.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+61+120+336+-140+0),pixelHeight:815,pixelWidth:1e3,sizes:\"207px\",src:\"https://framerusercontent.com/images/GeieIz2gJPWC4lDDZ8g97UkQOs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GeieIz2gJPWC4lDDZ8g97UkQOs.png?scale-down-to=512 512w,https://framerusercontent.com/images/GeieIz2gJPWC4lDDZ8g97UkQOs.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:212,intrinsicWidth:208.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+61+120+336+-240+0),pixelHeight:815,pixelWidth:1e3,sizes:\"207px\",src:\"https://framerusercontent.com/images/GeieIz2gJPWC4lDDZ8g97UkQOs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GeieIz2gJPWC4lDDZ8g97UkQOs.png?scale-down-to=512 512w,https://framerusercontent.com/images/GeieIz2gJPWC4lDDZ8g97UkQOs.png 1000w\"},className:\"framer-5p4ake hidden-1xaffxx\",\"data-framer-name\":\"image_01\"})})})})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-400}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,animate:animation12,className:\"framer-5lfu4t\",\"data-framer-appear-id\":\"5lfu4t\",\"data-framer-name\":\"image\",initial:animation11,optimized:true,style:{transformPerspective:1200},children:isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{u6R6NsvSc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:374,intrinsicWidth:327.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+61+120+336+165+0),pixelHeight:3e3,pixelWidth:3e3,sizes:\"190px\",src:\"https://framerusercontent.com/images/RehQGMkJxwUaBFAkyh1hlIvgw0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RehQGMkJxwUaBFAkyh1hlIvgw0.png?scale-down-to=512 512w,https://framerusercontent.com/images/RehQGMkJxwUaBFAkyh1hlIvgw0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RehQGMkJxwUaBFAkyh1hlIvgw0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RehQGMkJxwUaBFAkyh1hlIvgw0.png 3000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-400}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:374,intrinsicWidth:327.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+61+120+336+39+0),pixelHeight:3e3,pixelWidth:3e3,sizes:\"355px\",src:\"https://framerusercontent.com/images/RehQGMkJxwUaBFAkyh1hlIvgw0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RehQGMkJxwUaBFAkyh1hlIvgw0.png?scale-down-to=512 512w,https://framerusercontent.com/images/RehQGMkJxwUaBFAkyh1hlIvgw0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RehQGMkJxwUaBFAkyh1hlIvgw0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RehQGMkJxwUaBFAkyh1hlIvgw0.png 3000w\"},className:\"framer-cvnjn8 hidden-1xaffxx\",\"data-framer-name\":\"image_02\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{href:undefined}},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":q4CYhW3ts\",webPageId:\"JO83GN48o\"},motionChild:true,nodeId:\"cS16l4s5N\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MotionAWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:800}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,animate:animation13,className:\"framer-sjc1l5 framer-lux5qc\",\"data-framer-appear-id\":\"sjc1l5\",\"data-framer-name\":\"image\",initial:animation11,optimized:true,style:{transformPerspective:1200},children:isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{u6R6NsvSc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:774,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+61+120+336+-180+0),pixelHeight:675,pixelWidth:1e3,sizes:\"219px\",src:\"https://framerusercontent.com/images/lV5sEPmXL3zn7ajURByvMdbM0Sg.png\",srcSet:\"https://framerusercontent.com/images/lV5sEPmXL3zn7ajURByvMdbM0Sg.png?scale-down-to=512 512w,https://framerusercontent.com/images/lV5sEPmXL3zn7ajURByvMdbM0Sg.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:774,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+61+120+336+-230+0),pixelHeight:675,pixelWidth:1e3,sizes:\"219px\",src:\"https://framerusercontent.com/images/lV5sEPmXL3zn7ajURByvMdbM0Sg.png\",srcSet:\"https://framerusercontent.com/images/lV5sEPmXL3zn7ajURByvMdbM0Sg.png?scale-down-to=512 512w,https://framerusercontent.com/images/lV5sEPmXL3zn7ajURByvMdbM0Sg.png 1000w\"},className:\"framer-13q9igv hidden-1xaffxx\",\"data-framer-name\":\"image_05\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{u6R6NsvSc:{y:(componentViewport?.y||0)+32+61+120+336+149}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:122,width:\"304px\",y:(componentViewport?.y||0)+48+61+120+336+149,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12y3raf-container hidden-1xaffxx\",nodeId:\"J64oljH3G\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Widget3EmailReplies,{height:\"100%\",id:\"J64oljH3G\",layoutId:\"J64oljH3G\",style:{height:\"100%\",width:\"100%\"},variant:\"um4b7q1J3\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{openInNewTab:true},u6R6NsvSc:{href:\"https://thomascullen.io/\",openInNewTab:true}},children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"i6TD30sxG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MotionAWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-600}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,animate:animation14,className:\"framer-1hde453 framer-lux5qc\",\"data-framer-appear-id\":\"1hde453\",\"data-framer-name\":\"image\",initial:animation11,optimized:true,style:{transformPerspective:1200},children:isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{u6R6NsvSc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:358.5,intrinsicWidth:331,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+61+120+336+148+29),pixelHeight:3e3,pixelWidth:3e3,sizes:\"206.6644px\",src:\"https://framerusercontent.com/images/3mn6HLkfvwA5HrO4GbaSlnJ8Qck.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/3mn6HLkfvwA5HrO4GbaSlnJ8Qck.png?scale-down-to=512 512w,https://framerusercontent.com/images/3mn6HLkfvwA5HrO4GbaSlnJ8Qck.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3mn6HLkfvwA5HrO4GbaSlnJ8Qck.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3mn6HLkfvwA5HrO4GbaSlnJ8Qck.png 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:358.5,intrinsicWidth:331,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+61+120+336+0+39),pixelHeight:3e3,pixelWidth:3e3,sizes:\"312px\",src:\"https://framerusercontent.com/images/3mn6HLkfvwA5HrO4GbaSlnJ8Qck.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/3mn6HLkfvwA5HrO4GbaSlnJ8Qck.png?scale-down-to=512 512w,https://framerusercontent.com/images/3mn6HLkfvwA5HrO4GbaSlnJ8Qck.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3mn6HLkfvwA5HrO4GbaSlnJ8Qck.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3mn6HLkfvwA5HrO4GbaSlnJ8Qck.png 3000w\"},className:\"framer-ny4cd hidden-1xaffxx\",\"data-framer-name\":\"image_04\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation15,className:\"framer-rs3uhp hidden-1xaffxx\",\"data-framer-appear-id\":\"rs3uhp\",\"data-framer-name\":\"graphics\",initial:animation16,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gj9lqe\",\"data-framer-name\":\"user_pointer_02\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 94 68\"><g transform=\"translate(74 4.041)\" id=\"ss11019521722_1\"><path d=\"M 11.246 15.959 L 14.377 0 L 0 7.877 L 7.082 9.932 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 11.246 15.959 L 14.377 0 L 0 7.877 L 7.082 9.932 Z\" fill=\"transparent\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g><g transform=\"translate(6 20)\" id=\"ss11019521722_4\"><path d=\"M 70 2 C 70 0.895 69.105 0 68 0 L 17 0 C 7.611 0 0 7.611 0 17 C 0 26.389 7.611 34 17 34 L 46 34 C 59.255 34 70 23.255 70 10 Z\" fill=\"rgb(117,183,143)\"></path><path d=\"M 18.605 22.18 C 17.395 22.18 16.42 21.835 15.68 21.145 C 14.94 20.445 14.55 19.63 14.51 18.7 L 16.685 18.7 C 16.765 19.17 16.98 19.535 17.33 19.795 C 17.68 20.045 18.105 20.17 18.605 20.17 C 19.055 20.17 19.42 20.075 19.7 19.885 C 19.98 19.685 20.12 19.42 20.12 19.09 C 20.12 18.5 19.645 18.07 18.695 17.8 L 17.57 17.47 C 16.7 17.22 16.02 16.83 15.53 16.3 C 15.04 15.77 14.79 15.11 14.78 14.32 C 14.78 13.35 15.105 12.585 15.755 12.025 C 16.405 11.455 17.27 11.17 18.35 11.17 C 19.44 11.17 20.325 11.5 21.005 12.16 C 21.685 12.81 22.045 13.56 22.085 14.41 L 19.925 14.41 C 19.815 13.99 19.615 13.68 19.325 13.48 C 19.035 13.28 18.71 13.18 18.35 13.18 C 17.95 13.18 17.62 13.27 17.36 13.45 C 17.11 13.62 16.98 13.86 16.97 14.17 C 16.96 14.49 17.065 14.75 17.285 14.95 C 17.505 15.15 17.845 15.315 18.305 15.445 L 19.55 15.79 C 21.39 16.3 22.31 17.375 22.31 19.015 C 22.31 19.935 21.965 20.695 21.275 21.295 C 20.595 21.885 19.705 22.18 18.605 22.18 Z M 26.777 22.165 C 25.787 22.165 24.952 21.78 24.272 21.01 C 23.592 20.24 23.252 19.32 23.252 18.25 C 23.252 17.18 23.592 16.26 24.272 15.49 C 24.952 14.72 25.787 14.335 26.777 14.335 C 27.257 14.335 27.687 14.435 28.067 14.635 C 28.447 14.835 28.737 15.07 28.937 15.34 L 28.937 14.5 L 30.992 14.5 L 30.992 22 L 28.937 22 L 28.937 21.16 C 28.737 21.43 28.447 21.665 28.067 21.865 C 27.687 22.065 27.257 22.165 26.777 22.165 Z M 25.832 19.72 C 26.182 20.1 26.642 20.29 27.212 20.29 C 27.782 20.29 28.237 20.1 28.577 19.72 C 28.927 19.34 29.102 18.85 29.102 18.25 C 29.102 17.65 28.927 17.16 28.577 16.78 C 28.237 16.4 27.782 16.21 27.212 16.21 C 26.642 16.21 26.182 16.4 25.832 16.78 C 25.492 17.16 25.322 17.65 25.322 18.25 C 25.322 18.85 25.492 19.34 25.832 19.72 Z M 32.839 22 L 32.839 14.5 L 34.894 14.5 L 34.894 15.7 C 35.024 15.33 35.259 15.025 35.599 14.785 C 35.949 14.535 36.334 14.41 36.754 14.41 C 37.014 14.41 37.244 14.44 37.444 14.5 L 37.444 16.585 C 37.114 16.475 36.804 16.42 36.514 16.42 C 36.024 16.42 35.629 16.6 35.329 16.96 C 35.039 17.31 34.894 17.795 34.894 18.415 L 34.894 22 L 32.84 22 Z M 41.389 22.165 C 40.399 22.165 39.564 21.78 38.884 21.01 C 38.204 20.24 37.864 19.32 37.864 18.25 C 37.864 17.18 38.204 16.26 38.884 15.49 C 39.564 14.72 40.399 14.335 41.389 14.335 C 41.869 14.335 42.299 14.435 42.679 14.635 C 43.059 14.835 43.349 15.07 43.549 15.34 L 43.549 14.5 L 45.604 14.5 L 45.604 22 L 43.549 22 L 43.549 21.16 C 43.349 21.43 43.059 21.665 42.679 21.865 C 42.299 22.065 41.869 22.165 41.389 22.165 Z M 40.444 19.72 C 40.794 20.1 41.254 20.29 41.824 20.29 C 42.394 20.29 42.849 20.1 43.189 19.72 C 43.539 19.34 43.714 18.85 43.714 18.25 C 43.714 17.65 43.539 17.16 43.189 16.78 C 42.849 16.4 42.394 16.21 41.824 16.21 C 41.254 16.21 40.794 16.4 40.444 16.78 C 40.104 17.16 39.934 17.65 39.934 18.25 C 39.934 18.85 40.104 19.34 40.444 19.72 Z M 49.507 22 L 47.452 22 L 47.452 10.75 L 49.507 10.75 L 49.507 15.355 C 49.967 14.675 50.682 14.335 51.652 14.335 C 52.552 14.335 53.257 14.635 53.766 15.235 C 54.286 15.825 54.546 16.615 54.546 17.605 L 54.546 22 L 52.492 22 L 52.492 17.95 C 52.492 17.4 52.377 16.975 52.147 16.675 C 51.917 16.365 51.592 16.21 51.172 16.21 C 50.672 16.21 50.267 16.39 49.957 16.75 C 49.657 17.11 49.507 17.64 49.507 18.34 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.8\"></path></g></svg>',svgContentId:11019521722,withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation15,className:\"framer-usan5o hidden-1xaffxx\",\"data-framer-appear-id\":\"usan5o\",\"data-framer-name\":\"graphics\",initial:animation17,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sdbtva\",\"data-framer-name\":\"user_pointer_01\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 76 54\"><g transform=\"translate(0.623 4.041)\" id=\"ss12527103871_1\"><path d=\"M 3.131 15.959 L 0 0 L 14.377 7.877 L 7.295 9.932 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 3.131 15.959 L 0 0 L 14.377 7.877 L 7.295 9.932 Z\" fill=\"transparent\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g><path d=\"M 13 22 C 13 20.895 13.895 20 15 20 L 59 20 C 68.389 20 76 27.611 76 37 C 76 46.389 68.389 54 59 54 L 37 54 C 23.745 54 13 43.255 13 30 Z\" fill=\"rgb(30,59,131)\"></path><path d=\"M 28.185 42 L 28.185 31.35 L 34.815 31.35 L 34.815 33.42 L 30.36 33.42 L 30.36 35.61 L 33.915 35.61 L 33.915 37.68 L 30.36 37.68 L 30.36 39.93 L 34.815 39.93 L 34.815 42 Z M 36.307 42 L 36.307 30.75 L 38.362 30.75 L 38.362 42 Z M 41.205 33.27 C 40.855 33.27 40.55 33.145 40.29 32.895 C 40.037 32.652 39.896 32.316 39.9 31.965 C 39.9 31.605 40.03 31.3 40.29 31.05 C 40.55 30.79 40.855 30.66 41.205 30.66 C 41.575 30.66 41.885 30.79 42.135 31.05 C 42.395 31.3 42.525 31.605 42.525 31.965 C 42.525 32.325 42.395 32.635 42.135 32.895 C 41.885 33.145 41.575 33.27 41.205 33.27 Z M 40.185 42 L 40.185 34.5 L 42.24 34.5 L 42.24 42 Z M 47.108 42.165 C 46.118 42.165 45.283 41.78 44.603 41.01 C 43.923 40.24 43.583 39.32 43.583 38.25 C 43.583 37.18 43.923 36.26 44.603 35.49 C 45.283 34.72 46.118 34.335 47.108 34.335 C 47.588 34.335 48.018 34.435 48.398 34.635 C 48.778 34.835 49.068 35.07 49.268 35.34 L 49.268 34.5 L 51.323 34.5 L 51.323 42 L 49.268 42 L 49.268 41.16 C 49.068 41.43 48.778 41.665 48.398 41.865 C 48.018 42.065 47.588 42.165 47.108 42.165 Z M 46.163 39.72 C 46.513 40.1 46.973 40.29 47.543 40.29 C 48.113 40.29 48.568 40.1 48.908 39.72 C 49.258 39.34 49.433 38.85 49.433 38.25 C 49.433 37.65 49.258 37.16 48.908 36.78 C 48.568 36.4 48.113 36.21 47.543 36.21 C 46.973 36.21 46.513 36.4 46.163 36.78 C 45.823 37.16 45.653 37.65 45.653 38.25 C 45.653 38.85 45.823 39.34 46.163 39.72 Z M 55.226 42 L 53.171 42 L 53.171 30.75 L 55.226 30.75 L 55.226 35.355 C 55.686 34.675 56.401 34.335 57.371 34.335 C 58.271 34.335 58.976 34.635 59.486 35.235 C 60.006 35.825 60.266 36.615 60.266 37.605 L 60.266 42 L 58.211 42 L 58.211 37.95 C 58.211 37.4 58.096 36.975 57.866 36.675 C 57.636 36.365 57.311 36.21 56.891 36.21 C 56.391 36.21 55.986 36.39 55.676 36.75 C 55.376 37.11 55.226 37.64 55.226 38.34 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.8\"></path></svg>',svgContentId:12527103871,withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-tu23w1\",\"data-framer-name\":\"Introduction\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13ktf0t\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dgcz8a\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{y:(componentViewport?.y||0)+32+725+60+0+0+0+0+0},u6R6NsvSc:{y:(componentViewport?.y||0)+32+937+80+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:(componentViewport?.y||0)+48+937+96+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rgvtwe-container\",nodeId:\"t30mNLrrb\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1250},children:/*#__PURE__*/_jsx(SectionBadge,{h5mTi1koL:\"Introducing GroomLead\",height:\"100%\",id:\"t30mNLrrb\",layoutId:\"t30mNLrrb\",MFTk1J6dD:true,variant:\"TZUt4cyyI\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1khn87f\",\"data-styles-preset\":\"UgheUOojp\",children:[\"We know what\u2019s going on. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(77, 77, 77)\"},children:\"You require a scalable approach to connect with thousands of prospects monthly, driving increased meetings and revenue.\"}),/*#__PURE__*/_jsx(\"br\",{}),\"That\u2019s when Groomlead comes in.\"]})}),className:\"framer-159rema\",\"data-framer-name\":\"We know what\u2019s going on. You need top-notch design to stand out in the tech world, but hiring in-house designers can be costly and time-consuming. That\u2019s when it comes in.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lx9bmf\",\"data-framer-name\":\"Benefits\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s26pkc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qxruv9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{y:(componentViewport?.y||0)+32+944.8+60+0+0+0+0+0},u6R6NsvSc:{y:(componentViewport?.y||0)+32+1196.8+80+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:(componentViewport?.y||0)+48+1228.8+96+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t1qb7w-container\",nodeId:\"psXdzT6Bl\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionBadge,{h5mTi1koL:\"What you\u2019ll get\",height:\"100%\",id:\"psXdzT6Bl\",layoutId:\"psXdzT6Bl\",MFTk1J6dD:true,variant:\"TZUt4cyyI\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1khn87f\",\"data-styles-preset\":\"UgheUOojp\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, rgb(255, 255, 247) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:\"More Sales, Less Effort\u2014Powered by the Right Sales Tech\"})})}),className:\"framer-1v785in\",\"data-framer-name\":\"Benefits of being a member\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n97mo2\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1807pzt\",\"data-border\":true,\"data-framer-name\":\"Feature Card\",style:{transformPerspective:1200},children:[isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ac2535 hidden-1ed9oh6\",\"data-framer-name\":\"feature-visual-01\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5uz80n\",\"data-framer-name\":\"widget\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qx3wsy\",\"data-framer-name\":\"Rectangle 148248\"})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation21,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ifzm0l\",\"data-border\":true,\"data-framer-name\":\"widget\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14az0bh\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation22,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular A Medium\", \"Euclid Circular A Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18.37px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(221, 255, 0)\"},children:\"Growth\"})}),className:\"framer-1clfnso\",\"data-framer-appear-id\":\"1clfnso\",\"data-framer-name\":\"Growth\",fonts:[\"CUSTOM;Euclid Circular A Medium\"],initial:animation23,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXVjbGlkIENpcmN1bGFyIEEtNTAw\",\"--framer-font-family\":'\"Euclid Circular A\", \"Euclid Circular A Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.21)\"},children:\"Today\"})}),className:\"framer-jyt7o8\",\"data-framer-name\":\"Today\",fonts:[\"GF;Euclid Circular A-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation26,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXVjbGlkIENpcmN1bGFyIEEtNTAw\",\"--framer-font-family\":'\"Euclid Circular A\", \"Euclid Circular A Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.21)\"},children:\"Nov, 11\"})}),className:\"framer-15lk5aa\",\"data-framer-name\":\"Nov, 11\",fonts:[\"GF;Euclid Circular A-500\"],style:{transformPerspective:1200},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXVjbGlkIENpcmN1bGFyIEEtNTAw\",\"--framer-font-family\":'\"Euclid Circular A\", \"Euclid Circular A Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.21)\"},children:\"Nov, 10\"})}),className:\"framer-1kefmoh\",\"data-framer-name\":\"Nov, 10\",fonts:[\"GF;Euclid Circular A-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation28,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ttjtzz\",\"data-framer-name\":\"line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wl91gb\",\"data-framer-name\":\"line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation30,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13mm2id\",\"data-framer-name\":\"line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation31,__framer__exit:animation32,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19arwrd\",\"data-framer-name\":\"Ellipse 6196\",style:{transformPerspective:1200},transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation28,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ee8lpo\",\"data-border\":true,\"data-framer-name\":\"pill\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yj6rhd\",\"data-border\":true,\"data-framer-name\":\"pill\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition22},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation34,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1buj85x\",\"data-border\":true,\"data-framer-name\":\"pill\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition23},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tv624k\",\"data-border\":true,\"data-framer-name\":\"pill\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition24},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation36,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1d2n0ax\",\"data-border\":true,\"data-framer-name\":\"pill\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition25},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation37,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nu27j8\",\"data-border\":true,\"data-framer-name\":\"pill\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition26},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation38,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tn0kxg\",\"data-border\":true,\"data-framer-name\":\"pill\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition27},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation39,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rgccrf\",\"data-border\":true,\"data-framer-name\":\"pill\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation40,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dnlblv\",\"data-border\":true,\"data-framer-name\":\"pill\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation41,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-two0pz\",\"data-border\":true,\"data-framer-name\":\"pill\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition30},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation42,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ordyv1\",\"data-border\":true,\"data-framer-name\":\"pill\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition31},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation43,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-191r8vf\",\"data-border\":true,\"data-framer-name\":\"pill\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition32},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation44,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nmyx1d\",\"data-border\":true,\"data-framer-name\":\"pill\",style:{transformPerspective:1200}})]})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-323p0g hidden-72rtr7 hidden-1xaffxx\",\"data-framer-name\":\"visual-container\",children:isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-wklun7 hidden-72rtr7\",\"data-framer-name\":\"feature_visual_01\",fill:\"black\",intrinsicHeight:212,intrinsicWidth:281,svg:'<svg width=\"281\" height=\"212\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><rect x=\"1.278\" y=\".918\" width=\"278.304\" height=\"209.417\" rx=\"26.636\" fill=\"#131313\" stroke=\"url(#b)\" stroke-width=\"1.837\"/><path d=\"M235.213 187.352v-6.578h-2.266v-1.232h5.83v1.232H236.5v6.578h-1.287Zm7.794-.715c-.55.55-1.232.825-2.046.825-.814 0-1.499-.275-2.057-.825-.55-.558-.825-1.236-.825-2.035 0-.8.275-1.474.825-2.024.558-.558 1.243-.836 2.057-.836.814 0 1.496.278 2.046.836.558.55.836 1.224.836 2.024 0 .799-.278 1.477-.836 2.035Zm-2.046-.297c.477 0 .869-.165 1.177-.495.316-.338.473-.752.473-1.243 0-.492-.157-.902-.473-1.232-.308-.338-.7-.506-1.177-.506-.484 0-.883.168-1.199.506-.308.33-.462.74-.462 1.232 0 .491.154.905.462 1.243.316.33.715.495 1.199.495Zm6.024 1.122c-.748 0-1.378-.279-1.892-.836-.506-.558-.759-1.232-.759-2.024s.253-1.467.759-2.024c.514-.558 1.144-.836 1.892-.836.374 0 .719.084 1.034.253.316.161.558.359.726.594v-3.487h1.21v8.25h-1.21v-.737c-.168.234-.41.436-.726.605a2.24 2.24 0 0 1-1.034.242Zm-.957-1.606c.308.337.701.506 1.177.506.477 0 .869-.169 1.177-.506.308-.338.462-.756.462-1.254 0-.499-.154-.917-.462-1.254-.308-.338-.7-.506-1.177-.506-.476 0-.869.168-1.177.506-.308.337-.462.755-.462 1.254 0 .498.154.916.462 1.254Zm7.491 1.606c-.748 0-1.378-.279-1.892-.836-.506-.558-.759-1.232-.759-2.024s.253-1.467.759-2.024c.514-.558 1.144-.836 1.892-.836.374 0 .719.084 1.034.253.316.161.558.359.726.594v-.737h1.21v5.5h-1.21v-.737c-.168.234-.41.436-.726.605a2.24 2.24 0 0 1-1.034.242Zm-.957-1.606c.308.337.701.506 1.177.506.477 0 .869-.169 1.177-.506.308-.338.462-.756.462-1.254 0-.499-.154-.917-.462-1.254-.308-.338-.7-.506-1.177-.506-.476 0-.869.168-1.177.506-.308.337-.462.755-.462 1.254 0 .498.154.916.462 1.254Zm6.997 3.795h-1.331l1.177-2.596-2.365-5.203h1.331l1.683 3.894 1.694-3.894h1.342l-3.531 7.799Zm-130.193-2.299h-1.122l-4.4-5.621v5.621h-1.287v-7.81h1.122l4.389 5.61v-5.61h1.298v7.81Zm5.865-.715c-.55.55-1.232.825-2.046.825-.814 0-1.5-.275-2.057-.825-.55-.558-.825-1.236-.825-2.035 0-.8.275-1.474.825-2.024.557-.558 1.243-.836 2.057-.836.814 0 1.496.278 2.046.836.557.55.836 1.224.836 2.024 0 .799-.279 1.477-.836 2.035Zm-2.046-.297c.477 0 .869-.165 1.177-.495.315-.338.473-.752.473-1.243 0-.492-.158-.902-.473-1.232-.308-.338-.7-.506-1.177-.506-.484 0-.884.168-1.199.506-.308.33-.462.74-.462 1.232 0 .491.154.905.462 1.243.315.33.715.495 1.199.495Zm5.345 1.012-2.486-5.5h1.342l1.672 3.861 1.683-3.861h1.353l-2.497 5.5h-1.067Zm4.981-.275-1.177 1.892h-.748l.759-1.617a.87.87 0 0 1-.385-.33.982.982 0 0 1-.154-.539.91.91 0 0 1 .275-.671.894.894 0 0 1 .671-.286c.264 0 .487.095.671.286a.914.914 0 0 1 .275.671c0 .212-.063.41-.187.594Zm4.267.275v-6.611h-1.573l.924-1.199h1.859v7.81h-1.21Zm3.473 0v-6.611h-1.573l.924-1.199h1.859v7.81h-1.21Z\" fill=\"#fff\" fill-opacity=\".21\"/><path d=\"M28.153 37.428c-1.947 0-3.57-.643-4.868-1.93-1.298-1.297-1.947-2.902-1.947-4.812 0-1.91.643-3.509 1.929-4.795 1.298-1.298 2.92-1.947 4.868-1.947 1.433 0 2.712.386 3.84 1.157 1.126.772 1.904 1.745 2.332 2.921h-2.443c-.343-.6-.851-1.084-1.525-1.451a4.462 4.462 0 0 0-2.204-.551c-1.347 0-2.456.447-3.325 1.34-.87.895-1.304 2.003-1.304 3.326 0 1.322.434 2.43 1.304 3.325.87.894 1.984 1.34 3.343 1.34 1.188 0 2.162-.342 2.921-1.028.76-.686 1.212-1.592 1.36-2.719H27.97v-2.02h6.668c.232 2.424-.288 4.34-1.562 5.75-1.261 1.395-2.902 2.093-4.923 2.093Zm8.004-.221v-9.185h2.02v1.635c.172-.514.484-.93.937-1.25a2.588 2.588 0 0 1 1.488-.477c.319 0 .582.025.79.074v2.075a2.866 2.866 0 0 0-1.01-.165c-.612 0-1.133.251-1.562.753-.428.49-.643 1.176-.643 2.058v4.482h-2.02Zm13.673-1.194c-.919.919-2.058 1.378-3.417 1.378-1.36 0-2.505-.46-3.435-1.378-.919-.93-1.378-2.064-1.378-3.398 0-1.335.46-2.462 1.377-3.38.931-.931 2.076-1.397 3.436-1.397 1.36 0 2.498.466 3.417 1.396.93.919 1.396 2.046 1.396 3.38 0 1.335-.466 2.468-1.396 3.399Zm-3.417-.496c.796 0 1.45-.276 1.965-.827.527-.563.79-1.255.79-2.075 0-.821-.263-1.507-.79-2.058-.514-.563-1.17-.845-1.965-.845-.809 0-1.476.282-2.003.845-.514.551-.771 1.237-.771 2.058 0 .82.257 1.512.771 2.075.527.552 1.194.827 2.003.827Zm14.048 1.69-2.021-5.933-2.002 5.933h-1.91l-3.087-9.185h2.131l1.984 6.338 2.112-6.338h1.544l2.075 6.338 2.021-6.338h2.15l-3.087 9.185h-1.91Zm9.943.092c-.93 0-1.69-.257-2.278-.772-.576-.526-.863-1.285-.863-2.278v-4.427h-1.91v-1.8h1.91V25.47h2.02v2.553h2.627v1.8h-2.627v4.097c0 .563.123.967.368 1.212.245.233.636.35 1.175.35.441 0 .803-.062 1.084-.184v1.8c-.44.134-.943.202-1.506.202Zm4.892-.092h-2.02V23.43h2.02v5.841c.576-.955 1.506-1.433 2.792-1.433 1.066 0 1.917.35 2.554 1.047.637.698.955 1.63.955 2.793v5.529h-2.02v-5.199c0-.734-.172-1.304-.515-1.708-.343-.416-.808-.625-1.396-.625-.698 0-1.268.264-1.709.79-.44.527-.66 1.268-.66 2.223v4.519Z\" fill=\"#DF0\"/><path d=\"M37.516 187.352h-1.122l-4.4-5.621v5.621h-1.287v-7.81h1.122l4.389 5.61v-5.61h1.298v7.81Zm5.865-.715c-.55.55-1.232.825-2.046.825-.814 0-1.5-.275-2.057-.825-.55-.558-.825-1.236-.825-2.035 0-.8.275-1.474.825-2.024.558-.558 1.243-.836 2.057-.836.814 0 1.496.278 2.046.836.558.55.836 1.224.836 2.024 0 .799-.278 1.477-.836 2.035Zm-2.046-.297c.477 0 .87-.165 1.177-.495.316-.338.473-.752.473-1.243 0-.492-.157-.902-.473-1.232-.308-.338-.7-.506-1.177-.506-.484 0-.883.168-1.199.506-.308.33-.462.74-.462 1.232 0 .491.154.905.462 1.243.316.33.715.495 1.2.495Zm5.346 1.012-2.486-5.5h1.341l1.672 3.861 1.684-3.861h1.352l-2.496 5.5H46.68Zm4.98-.275-1.177 1.892h-.748l.759-1.617a.873.873 0 0 1-.385-.33.984.984 0 0 1-.154-.539c0-.264.092-.488.275-.671a.894.894 0 0 1 .671-.286c.264 0 .488.095.671.286a.913.913 0 0 1 .275.671c0 .212-.062.41-.187.594Zm4.267.275v-6.611h-1.573l.924-1.199h1.86v7.81h-1.21Zm7.323-.726c-.528.557-1.206.836-2.035.836-.829 0-1.507-.279-2.035-.836-.528-.565-.792-1.287-.792-2.167v-2.046c0-.88.264-1.599.792-2.156.528-.565 1.206-.847 2.035-.847.829 0 1.507.282 2.035.847.535.557.803 1.276.803 2.156v2.046c0 .88-.268 1.602-.803 2.167Zm-2.035-.352c.491 0 .884-.162 1.177-.484.3-.323.45-.767.45-1.331v-2.046c0-.565-.15-1.009-.45-1.331-.293-.323-.686-.484-1.177-.484-.484 0-.876.161-1.177.484-.293.322-.44.766-.44 1.331v2.046c0 .564.147 1.008.44 1.331.3.322.693.484 1.177.484Z\" fill=\"#fff\" fill-opacity=\".21\"/><path stroke=\"#BDFF1C\" stroke-opacity=\".1\" stroke-width=\"1.837\" d=\"M226.309 68.887v121.241M115.17 68.887v121.241M23.321 68.887v121.241\"/><g clip-path=\"url(#c)\"><mask id=\"e\" maskUnits=\"userSpaceOnUse\" x=\"-40.299\" y=\"60.376\" width=\"294\" height=\"110\" fill=\"#000\"><path fill=\"#fff\" d=\"M-40.299 60.376h294v110h-294z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M191.407 63.376a4.593 4.593 0 0 0-4.593 4.593v68.887a4.592 4.592 0 0 0 9.185 0V67.969a4.592 4.592 0 0 0-4.592-4.593Zm-18.37 39.495a4.593 4.593 0 0 0-4.593 4.593v46.843a4.592 4.592 0 0 0 9.185 0v-46.843a4.592 4.592 0 0 0-4.592-4.593Zm-22.963 20.207a4.592 4.592 0 0 1 9.185 0v39.495a4.592 4.592 0 1 1-9.185 0v-39.495Zm-13.777-13.777a4.592 4.592 0 0 0-4.593 4.592v30.311a4.592 4.592 0 0 0 9.185 0v-30.311a4.592 4.592 0 0 0-4.592-4.592Zm-22.963-15.615a4.593 4.593 0 0 1 9.185 0v43.17a4.592 4.592 0 0 1-9.185 0v-43.17Zm-13.777 9.185a4.593 4.593 0 0 0-4.593 4.593v19.288a4.593 4.593 0 1 0 9.185 0v-19.288a4.592 4.592 0 0 0-4.592-4.593Zm-22.962 1.837a4.592 4.592 0 0 1 9.184 0v12.859a4.592 4.592 0 1 1-9.184 0v-12.859Zm-13.778.919a4.592 4.592 0 0 0-4.592 4.592v33.985a4.592 4.592 0 0 0 9.185 0v-33.985a4.592 4.592 0 0 0-4.593-4.592Zm-22.962 24.799a4.592 4.592 0 0 1 9.185 0v13.778a4.592 4.592 0 0 1-9.185 0v-13.778Zm-13.778-11.022a4.592 4.592 0 0 0-4.592 4.593v13.777a4.593 4.593 0 0 0 9.185 0v-13.777a4.593 4.593 0 0 0-4.593-4.593Zm-26.636-3.215a6.888 6.888 0 0 1 13.777 0v11.022a6.889 6.889 0 1 1-13.777 0v-11.022Zm-11.481 5.971a6.888 6.888 0 0 0-6.889 6.888v2.756a6.89 6.89 0 0 0 13.778 0v-2.756a6.888 6.888 0 0 0-6.89-6.888Zm-25.259 2.296a6.889 6.889 0 1 1 13.778 0v2.755a6.889 6.889 0 1 1-13.778 0v-2.755Zm246.157-49.14a4.593 4.593 0 0 0-4.593 4.593v31.229a4.593 4.593 0 0 0 9.185 0v-31.23a4.592 4.592 0 0 0-4.592-4.592Zm13.777 11.94a4.593 4.593 0 0 1 9.185 0v26.637a4.592 4.592 0 1 1-9.185 0V87.257Zm22.963 15.615a4.593 4.593 0 0 0-4.593 4.593v22.044a4.592 4.592 0 0 0 9.185 0v-22.044a4.592 4.592 0 0 0-4.592-4.593Z\"/></mask><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M191.407 63.376a4.593 4.593 0 0 0-4.593 4.593v68.887a4.592 4.592 0 0 0 9.185 0V67.969a4.592 4.592 0 0 0-4.592-4.593Zm-18.37 39.495a4.593 4.593 0 0 0-4.593 4.593v46.843a4.592 4.592 0 0 0 9.185 0v-46.843a4.592 4.592 0 0 0-4.592-4.593Zm-22.963 20.207a4.592 4.592 0 0 1 9.185 0v39.495a4.592 4.592 0 1 1-9.185 0v-39.495Zm-13.777-13.777a4.592 4.592 0 0 0-4.593 4.592v30.311a4.592 4.592 0 0 0 9.185 0v-30.311a4.592 4.592 0 0 0-4.592-4.592Zm-22.963-15.615a4.593 4.593 0 0 1 9.185 0v43.17a4.592 4.592 0 0 1-9.185 0v-43.17Zm-13.777 9.185a4.593 4.593 0 0 0-4.593 4.593v19.288a4.593 4.593 0 1 0 9.185 0v-19.288a4.592 4.592 0 0 0-4.592-4.593Zm-22.962 1.837a4.592 4.592 0 0 1 9.184 0v12.859a4.592 4.592 0 1 1-9.184 0v-12.859Zm-13.778.919a4.592 4.592 0 0 0-4.592 4.592v33.985a4.592 4.592 0 0 0 9.185 0v-33.985a4.592 4.592 0 0 0-4.593-4.592Zm-22.962 24.799a4.592 4.592 0 0 1 9.185 0v13.778a4.592 4.592 0 0 1-9.185 0v-13.778Zm-13.778-11.022a4.592 4.592 0 0 0-4.592 4.593v13.777a4.593 4.593 0 0 0 9.185 0v-13.777a4.593 4.593 0 0 0-4.593-4.593Zm-26.636-3.215a6.888 6.888 0 0 1 13.777 0v11.022a6.889 6.889 0 1 1-13.777 0v-11.022Zm-11.481 5.971a6.888 6.888 0 0 0-6.889 6.888v2.756a6.89 6.89 0 0 0 13.778 0v-2.756a6.888 6.888 0 0 0-6.89-6.888Zm-25.259 2.296a6.889 6.889 0 1 1 13.778 0v2.755a6.889 6.889 0 1 1-13.778 0v-2.755Zm246.157-49.14a4.593 4.593 0 0 0-4.593 4.593v31.229a4.593 4.593 0 0 0 9.185 0v-31.23a4.592 4.592 0 0 0-4.592-4.592Zm13.777 11.94a4.593 4.593 0 0 1 9.185 0v26.637a4.592 4.592 0 1 1-9.185 0V87.257Zm22.963 15.615a4.593 4.593 0 0 0-4.593 4.593v22.044a4.592 4.592 0 0 0 9.185 0v-22.044a4.592 4.592 0 0 0-4.592-4.593Z\" fill=\"url(#d)\"/><path d=\"M189.57 67.969c0-1.015.822-1.837 1.837-1.837V60.62a7.347 7.347 0 0 0-7.348 7.349h5.511Zm0 68.887V67.969h-5.511v68.887h5.511Zm1.837 1.837a1.837 1.837 0 0 1-1.837-1.837h-5.511a7.348 7.348 0 0 0 7.348 7.348v-5.511Zm1.836-1.837a1.837 1.837 0 0 1-1.836 1.837v5.511a7.347 7.347 0 0 0 7.347-7.348h-5.511Zm0-68.887v68.887h5.511V67.969h-5.511Zm-1.836-1.837c1.014 0 1.836.822 1.836 1.837h5.511a7.347 7.347 0 0 0-7.347-7.348v5.51ZM171.2 107.464c0-1.015.822-1.837 1.837-1.837v-5.511a7.348 7.348 0 0 0-7.348 7.348h5.511Zm0 46.843v-46.843h-5.511v46.843h5.511Zm1.837 1.837a1.836 1.836 0 0 1-1.837-1.837h-5.511a7.348 7.348 0 0 0 7.348 7.348v-5.511Zm1.837-1.837a1.837 1.837 0 0 1-1.837 1.837v5.511a7.348 7.348 0 0 0 7.348-7.348h-5.511Zm0-46.843v46.843h5.511v-46.843h-5.511Zm-1.837-1.837c1.014 0 1.837.822 1.837 1.837h5.511a7.348 7.348 0 0 0-7.348-7.348v5.511Zm-18.37 10.103a7.348 7.348 0 0 0-7.348 7.348h5.511c0-1.014.822-1.837 1.837-1.837v-5.511Zm7.348 7.348a7.348 7.348 0 0 0-7.348-7.348v5.511c1.014 0 1.837.823 1.837 1.837h5.511Zm0 39.495v-39.495h-5.511v39.495h5.511Zm-7.348 7.348a7.348 7.348 0 0 0 7.348-7.348h-5.511a1.837 1.837 0 0 1-1.837 1.837v5.511Zm-7.348-7.348a7.348 7.348 0 0 0 7.348 7.348v-5.511a1.836 1.836 0 0 1-1.837-1.837h-5.511Zm0-39.495v39.495h5.511v-39.495h-5.511Zm-12.859-9.185c0-1.014.822-1.837 1.837-1.837v-5.511a7.348 7.348 0 0 0-7.348 7.348h5.511Zm0 30.311v-30.311h-5.511v30.311h5.511Zm1.837 1.837a1.837 1.837 0 0 1-1.837-1.837h-5.511a7.348 7.348 0 0 0 7.348 7.348v-5.511Zm1.837-1.837a1.838 1.838 0 0 1-1.837 1.837v5.511a7.348 7.348 0 0 0 7.348-7.348h-5.511Zm0-30.311v30.311h5.511v-30.311h-5.511Zm-1.837-1.837c1.014 0 1.837.823 1.837 1.837h5.511a7.348 7.348 0 0 0-7.348-7.348v5.511Zm-18.37-25.718a7.348 7.348 0 0 0-7.348 7.348h5.511c0-1.014.822-1.837 1.837-1.837v-5.51Zm7.348 7.348a7.348 7.348 0 0 0-7.348-7.348v5.511c1.014 0 1.837.823 1.837 1.837h5.511Zm0 43.17v-43.17h-5.511v43.17h5.511Zm-7.348 7.348a7.348 7.348 0 0 0 7.348-7.348h-5.511a1.838 1.838 0 0 1-1.837 1.837v5.511Zm-7.348-7.348a7.348 7.348 0 0 0 7.348 7.348v-5.511a1.837 1.837 0 0 1-1.837-1.837h-5.511Zm0-43.17v43.17h5.511v-43.17h-5.511ZM97.72 107.464c0-1.015.822-1.837 1.837-1.837v-5.511a7.348 7.348 0 0 0-7.348 7.348h5.511Zm0 19.288v-19.288h-5.511v19.288h5.511Zm1.837 1.837a1.837 1.837 0 0 1-1.837-1.837h-5.511a7.348 7.348 0 0 0 7.348 7.348v-5.511Zm1.837-1.837a1.836 1.836 0 0 1-1.837 1.837v5.511a7.348 7.348 0 0 0 7.348-7.348h-5.511Zm0-19.288v19.288h5.511v-19.288h-5.511Zm-1.837-1.837c1.015 0 1.837.822 1.837 1.837h5.511a7.348 7.348 0 0 0-7.348-7.348v5.511Zm-18.37-8.267a7.348 7.348 0 0 0-7.348 7.348h5.511c0-1.014.823-1.837 1.837-1.837v-5.51Zm7.348 7.348a7.348 7.348 0 0 0-7.348-7.348v5.511c1.015 0 1.837.823 1.837 1.837h5.511Zm0 12.859v-12.859h-5.51v12.859h5.51Zm-7.348 7.348a7.348 7.348 0 0 0 7.348-7.348h-5.51a1.837 1.837 0 0 1-1.838 1.837v5.511Zm-7.348-7.348a7.348 7.348 0 0 0 7.348 7.348v-5.511a1.837 1.837 0 0 1-1.837-1.837h-5.51Zm0-12.859v12.859h5.511v-12.859h-5.51Zm-12.859 5.511c0-1.014.823-1.837 1.837-1.837v-5.511a7.348 7.348 0 0 0-7.348 7.348h5.511Zm0 33.985v-33.985h-5.51v33.985h5.51Zm1.837 1.837a1.837 1.837 0 0 1-1.837-1.837h-5.51a7.348 7.348 0 0 0 7.347 7.348v-5.511Zm1.837-1.837a1.837 1.837 0 0 1-1.837 1.837v5.511a7.348 7.348 0 0 0 7.348-7.348h-5.51Zm0-33.985v33.985h5.511v-33.985h-5.51Zm-1.837-1.837c1.015 0 1.837.823 1.837 1.837h5.511a7.348 7.348 0 0 0-7.348-7.348v5.511Zm-18.37 14.696a7.348 7.348 0 0 0-7.348 7.348h5.511c0-1.014.823-1.837 1.837-1.837v-5.511Zm7.348 7.348a7.348 7.348 0 0 0-7.348-7.348v5.511c1.015 0 1.837.823 1.837 1.837h5.511Zm0 13.778v-13.778h-5.51v13.778h5.51Zm-7.348 7.348a7.348 7.348 0 0 0 7.348-7.348h-5.51a1.837 1.837 0 0 1-1.838 1.837v5.511Zm-7.348-7.348a7.348 7.348 0 0 0 7.348 7.348v-5.511a1.837 1.837 0 0 1-1.837-1.837H37.1Zm0-13.778v13.778h5.511v-13.778H37.1Zm-12.859-6.429c0-1.015.823-1.837 1.837-1.837v-5.511a7.347 7.347 0 0 0-7.348 7.348h5.511Zm0 13.777v-13.777h-5.51v13.777h5.51Zm1.837 1.837a1.837 1.837 0 0 1-1.837-1.837h-5.51a7.348 7.348 0 0 0 7.347 7.348v-5.511Zm1.837-1.837a1.837 1.837 0 0 1-1.837 1.837v5.511a7.348 7.348 0 0 0 7.348-7.348h-5.51Zm0-13.777v13.777h5.511v-13.777h-5.51Zm-1.837-1.837c1.015 0 1.837.822 1.837 1.837h5.511a7.347 7.347 0 0 0-7.348-7.348v5.511ZM6.33 106.545a9.644 9.644 0 0 0-9.644 9.644h5.51a4.133 4.133 0 0 1 4.134-4.133v-5.511Zm9.644 9.644c0-5.326-4.318-9.644-9.644-9.644v5.511a4.133 4.133 0 0 1 4.133 4.133h5.51Zm0 11.022v-11.022h-5.511v11.022h5.51Zm-9.644 9.645c5.326 0 9.644-4.318 9.644-9.645h-5.511a4.134 4.134 0 0 1-4.133 4.134v5.511Zm-9.644-9.645c0 5.327 4.317 9.645 9.644 9.645v-5.511a4.134 4.134 0 0 1-4.134-4.134h-5.51Zm0-11.022v11.022h5.51v-11.022h-5.51Zm-12.86 12.859a4.133 4.133 0 0 1 4.134-4.133v-5.511a9.644 9.644 0 0 0-9.644 9.644h5.51Zm0 2.756v-2.756h-5.51v2.756h5.51Zm4.134 4.133a4.133 4.133 0 0 1-4.133-4.133h-5.511a9.644 9.644 0 0 0 9.644 9.644v-5.511Zm4.133-4.133a4.133 4.133 0 0 1-4.133 4.133v5.511c5.326 0 9.644-4.318 9.644-9.644h-5.511Zm0-2.756v2.756h5.511v-2.756h-5.511Zm-4.133-4.133a4.133 4.133 0 0 1 4.133 4.133h5.511c0-5.326-4.318-9.644-9.644-9.644v5.511Zm-18.37-10.103c-5.326 0-9.644 4.318-9.644 9.644h5.51a4.133 4.133 0 0 1 4.134-4.133v-5.511Zm9.644 9.644c0-5.326-4.318-9.644-9.644-9.644v5.511a4.133 4.133 0 0 1 4.133 4.133h5.511Zm0 2.755v-2.755h-5.51v2.755h5.51Zm-9.644 9.645c5.326 0 9.644-4.318 9.644-9.645h-5.51a4.134 4.134 0 0 1-4.134 4.134v5.511Zm-9.644-9.645c0 5.327 4.318 9.645 9.644 9.645v-5.511a4.134 4.134 0 0 1-4.133-4.134h-5.511Zm0-2.755v2.755h5.51v-2.755h-5.51ZM207.02 79.909c0-1.015.822-1.837 1.837-1.837V72.56a7.348 7.348 0 0 0-7.348 7.348h5.511Zm0 31.229v-31.23h-5.511v31.23h5.511Zm1.837 1.837a1.837 1.837 0 0 1-1.837-1.837h-5.511a7.348 7.348 0 0 0 7.348 7.348v-5.511Zm1.837-1.837a1.838 1.838 0 0 1-1.837 1.837v5.511a7.348 7.348 0 0 0 7.348-7.348h-5.511Zm0-31.23v31.23h5.511v-31.23h-5.511Zm-1.837-1.836c1.014 0 1.837.822 1.837 1.837h5.511a7.348 7.348 0 0 0-7.348-7.348v5.51Zm18.37 1.837a7.348 7.348 0 0 0-7.348 7.348h5.511c0-1.015.822-1.837 1.837-1.837v-5.511Zm7.348 7.348a7.348 7.348 0 0 0-7.348-7.348v5.51c1.014 0 1.837.823 1.837 1.838h5.511Zm0 26.636V87.257h-5.511v26.636h5.511Zm-7.348 7.348a7.348 7.348 0 0 0 7.348-7.348h-5.511a1.837 1.837 0 0 1-1.837 1.837v5.511Zm-7.348-7.348a7.348 7.348 0 0 0 7.348 7.348v-5.511a1.836 1.836 0 0 1-1.837-1.837h-5.511Zm0-26.636v26.636h5.511V87.257h-5.511Zm23.881 20.207c0-1.015.822-1.837 1.837-1.837v-5.511a7.348 7.348 0 0 0-7.348 7.348h5.511Zm0 22.044v-22.044h-5.511v22.044h5.511Zm1.837 1.837a1.837 1.837 0 0 1-1.837-1.837h-5.511a7.348 7.348 0 0 0 7.348 7.348v-5.511Zm1.837-1.837a1.838 1.838 0 0 1-1.837 1.837v5.511a7.348 7.348 0 0 0 7.348-7.348h-5.511Zm0-22.044v22.044h5.511v-22.044h-5.511Zm-1.837-1.837c1.014 0 1.837.822 1.837 1.837h5.511a7.348 7.348 0 0 0-7.348-7.348v5.511Z\" fill=\"#141414\" mask=\"url(#e)\"/></g></g><defs><linearGradient id=\"b\" x1=\"8.626\" y1=\"0\" x2=\"143.768\" y2=\"201.952\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#292929\"/><stop offset=\"1\" stop-color=\"#292929\" stop-opacity=\".41\"/></linearGradient><linearGradient id=\"d\" x1=\"106.905\" y1=\"63.376\" x2=\"106.905\" y2=\"167.166\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#00C2FF\"/><stop offset=\"1\" stop-color=\"#BCFF1C\"/></linearGradient><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.36)\" d=\"M0 0h280v212H0z\"/></clipPath><clipPath id=\"c\"><path fill=\"#fff\" transform=\"translate(13.219 63.376)\" d=\"M0 0h237.89v103.79H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1varcdm\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:\"Pay only for results\"})}),className:\"framer-1i3f12u\",\"data-framer-name\":\"Pay only for results\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"Get a robust outbound infrastructure and pay only when we book meetings for you\"})}),className:\"framer-1bd9ek\",\"data-framer-name\":\"Get a robust outbound infrastructure and pay only when we book meetings for you\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition33},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u814k9\",\"data-border\":true,\"data-framer-name\":\"Feature Card\",style:{transformPerspective:1200},children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{height:122,width:\"304px\",y:(componentViewport?.y||0)+32+944.8+60+131.8+0+461+32+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bbkybi-container hidden-72rtr7 hidden-1ed9oh6\",nodeId:\"vRAqWRwVS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Widget3EmailReplies,{height:\"100%\",id:\"vRAqWRwVS\",layoutId:\"vRAqWRwVS\",style:{height:\"100%\",width:\"100%\"},variant:\"wab5_xnTu\",width:\"100%\"})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{u6R6NsvSc:{height:132,width:\"244px\",y:(componentViewport?.y||0)+32+1196.8+80+159.8+0+32+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-iqv3d1-container hidden-72rtr7 hidden-1xaffxx\",nodeId:\"fQrsjVpba\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Widget3EmailReplies,{height:\"100%\",id:\"fQrsjVpba\",layoutId:\"fQrsjVpba\",style:{height:\"100%\",width:\"100%\"},variant:\"N6lAmGLLb\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o3cu2m hidden-1ed9oh6 hidden-1xaffxx\",\"data-framer-name\":\"feature-visual-02\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fjixg3\",\"data-framer-name\":\"lines\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pu22yg\",\"data-framer-name\":\"graphic-lines\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:120,intrinsicWidth:357,svg:'<svg width=\"357\" height=\"120\" viewBox=\"0 0 357 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"80.166\" y1=\"19\" x2=\"251.277\" y2=\"19\" stroke=\"url(#paint0_linear_397_1141)\" stroke-opacity=\"0.18\" stroke-width=\"2\" stroke-dasharray=\"4.67 4.67\"/>\\n<line x1=\"80.166\" y1=\"99\" x2=\"251.277\" y2=\"99\" stroke=\"url(#paint1_linear_397_1141)\" stroke-opacity=\"0.18\" stroke-width=\"2\" stroke-dasharray=\"4.67 4.67\"/>\\n<line x1=\"80.166\" y1=\"39\" x2=\"251.277\" y2=\"39\" stroke=\"url(#paint2_linear_397_1141)\" stroke-opacity=\"0.18\" stroke-width=\"2\" stroke-dasharray=\"4.67 4.67\"/>\\n<line x1=\"80.166\" y1=\"59\" x2=\"356.277\" y2=\"59\" stroke=\"url(#paint3_linear_397_1141)\" stroke-opacity=\"0.18\" stroke-width=\"2\" stroke-dasharray=\"4.67 4.67\"/>\\n<line x1=\"80.166\" y1=\"79\" x2=\"356.277\" y2=\"79\" stroke=\"url(#paint4_linear_397_1141)\" stroke-opacity=\"0.18\" stroke-width=\"2\" stroke-dasharray=\"4.67 4.67\"/>\\n<line x1=\"0.166016\" y1=\"119\" x2=\"276.277\" y2=\"119\" stroke=\"url(#paint5_linear_397_1141)\" stroke-opacity=\"0.18\" stroke-width=\"2\" stroke-dasharray=\"4.67 4.67\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_397_1141\" x1=\"242.333\" y1=\"20\" x2=\"40.8883\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#ACF80B\"/>\\n<stop offset=\"1\" stop-color=\"#ACF80B\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_397_1141\" x1=\"242.333\" y1=\"100\" x2=\"40.8883\" y2=\"100\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#ACF80B\"/>\\n<stop offset=\"1\" stop-color=\"#ACF80B\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_397_1141\" x1=\"242.333\" y1=\"40\" x2=\"40.8883\" y2=\"40\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#ACF80B\"/>\\n<stop offset=\"1\" stop-color=\"#ACF80B\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_397_1141\" x1=\"341.844\" y1=\"60\" x2=\"16.786\" y2=\"60\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#ACF80B\"/>\\n<stop offset=\"1\" stop-color=\"#ACF80B\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_397_1141\" x1=\"341.844\" y1=\"80\" x2=\"16.786\" y2=\"80\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#ACF80B\"/>\\n<stop offset=\"1\" stop-color=\"#ACF80B\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_397_1141\" x1=\"261.844\" y1=\"120\" x2=\"-63.214\" y2=\"120\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#ACF80B\"/>\\n<stop offset=\"1\" stop-color=\"#ACF80B\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:122,width:\"304px\",y:(componentViewport?.y||0)+48+1228.8+96+159.8+0+40+-52.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wd9es-container\",nodeId:\"CiMo_I0OS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Widget3EmailReplies,{height:\"100%\",id:\"CiMo_I0OS\",layoutId:\"CiMo_I0OS\",style:{height:\"100%\",width:\"100%\"},variant:\"um4b7q1J3\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12xjypu\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:\"Personalized Outreach\"})}),className:\"framer-1st96w9\",\"data-framer-name\":\"Cost effective solution\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"We've got the expertise to personalize every email we send to your prospects\"})}),className:\"framer-1hbqbz0\",\"data-framer-name\":\"Get high-quality design work at a fraction of the cost.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition34},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vdevfa\",\"data-border\":true,\"data-framer-name\":\"Feature Card\",style:{transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ap0e7m hidden-1ed9oh6 hidden-1xaffxx\",\"data-framer-name\":\"graphic-visual\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-660lc\",\"data-framer-name\":\"Line 215\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:174,intrinsicWidth:5,svg:'<svg width=\"5\" height=\"174\" viewBox=\"-1 -1 5 174\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1.27778\" y1=\"0.5\" x2=\"1.27778\" y2=\"171.611\" stroke=\"url(#paint0_linear_382_1603)\" stroke-width=\"1.55555\" stroke-dasharray=\"4.67 4.67\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_382_1603\" x1=\"0.499998\" y1=\"162.667\" x2=\"0.499996\" y2=\"-38.7778\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#303030\"/>\\n<stop offset=\"1\" stop-color=\"#2C2C2C\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1g7vggl\",\"data-framer-name\":\"Line 216\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:174,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"174\" viewBox=\"-1 -1 4 174\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1.1684\" y1=\"0.5\" x2=\"1.16841\" y2=\"171.611\" stroke=\"url(#paint0_linear_382_1604)\" stroke-width=\"1.55555\" stroke-dasharray=\"4.67 4.67\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_382_1604\" x1=\"0.390623\" y1=\"162.667\" x2=\"0.390621\" y2=\"-38.7778\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#303030\"/>\\n<stop offset=\"1\" stop-color=\"#2C2C2C\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-su7im7\",\"data-framer-name\":\"Line 217\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:174,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"174\" viewBox=\"-1 -1 4 174\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1.05512\" y1=\"0.5\" x2=\"1.05513\" y2=\"171.611\" stroke=\"url(#paint0_linear_382_1605)\" stroke-width=\"1.55555\" stroke-dasharray=\"4.67 4.67\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_382_1605\" x1=\"0.277342\" y1=\"162.667\" x2=\"0.27734\" y2=\"-38.7778\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#303030\"/>\\n<stop offset=\"1\" stop-color=\"#2C2C2C\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rbp2wt\",\"data-framer-name\":\"Line 218\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:174,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"174\" viewBox=\"-1 -1 4 174\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.945746\" y1=\"0.5\" x2=\"0.945753\" y2=\"171.611\" stroke=\"url(#paint0_linear_382_1606)\" stroke-width=\"1.55555\" stroke-dasharray=\"4.67 4.67\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_382_1606\" x1=\"0.167967\" y1=\"162.667\" x2=\"0.167965\" y2=\"-38.7778\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#303030\"/>\\n<stop offset=\"1\" stop-color=\"#2C2C2C\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lgjvw8\",\"data-framer-name\":\"Line 219\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:268,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"268\" viewBox=\"-1 -1 4 268\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.834418\" y1=\"-10.5\" x2=\"0.83443\" y2=\"265.611\" stroke=\"url(#paint0_linear_382_1607)\" stroke-width=\"1.55555\" stroke-dasharray=\"4.67 4.67\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_382_1607\" x1=\"0.0566429\" y1=\"251.178\" x2=\"0.0566466\" y2=\"-73.88\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#303030\"/>\\n<stop offset=\"1\" stop-color=\"#2C2C2C\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12fh2gx\",\"data-framer-name\":\"Line 220\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:268,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"268\" viewBox=\"-1 -1 4 268\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.834418\" y1=\"-10.5\" x2=\"0.83443\" y2=\"265.611\" stroke=\"url(#paint0_linear_382_1608)\" stroke-width=\"1.55555\" stroke-dasharray=\"4.67 4.67\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_382_1608\" x1=\"0.0566429\" y1=\"251.178\" x2=\"0.0566466\" y2=\"-73.88\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#303030\"/>\\n<stop offset=\"1\" stop-color=\"#2C2C2C\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-y8fhku\",\"data-framer-name\":\"Line 221\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:268,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"268\" viewBox=\"-1 -1 4 268\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.834418\" y1=\"-10.5\" x2=\"0.83443\" y2=\"265.611\" stroke=\"url(#paint0_linear_382_1609)\" stroke-width=\"1.55555\" stroke-dasharray=\"4.67 4.67\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_382_1609\" x1=\"0.0566429\" y1=\"251.178\" x2=\"0.0566466\" y2=\"-73.88\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#303030\"/>\\n<stop offset=\"1\" stop-color=\"#2C2C2C\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14zh6km\",\"data-framer-name\":\"Vector 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:317,intrinsicWidth:314,svg:'<svg width=\"314\" height=\"317\" viewBox=\"-3 -3 314 317\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.833984 310.501C11.1022 297.66 40.6232 273.263 56.0255 269.411C71.4278 265.559 85.5466 269.411 97.0983 260.423C108.65 251.434 108.65 241.162 121.485 238.594C134.32 236.026 148.439 254.002 163.842 248.866C179.244 243.73 188.228 223.186 193.363 197.505C198.497 171.824 197.334 98.5008 247.334 98.5008C297.334 98.5008 307.834 17.5 307.834 0\" stroke=\"#292929\" stroke-width=\"4.66666\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nmd6lp\",\"data-framer-name\":\"Vector 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:146,intrinsicWidth:202,svg:'<svg width=\"202\" height=\"146\" viewBox=\"-3 -3 202 146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.833984 139.5C11.1022 126.66 40.6232 102.263 56.0255 98.4108C71.4278 94.5586 85.5466 98.4108 97.0983 89.4224C108.65 80.4341 108.65 70.1617 121.485 67.5936C134.32 65.0255 148.439 83.0022 163.842 77.866C179.244 72.7298 194.112 46.9447 195.667 0.666992\" stroke=\"url(#paint0_linear_382_1611)\" stroke-width=\"4.66666\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_382_1611\" x1=\"140.334\" y1=\"70.5\" x2=\"29.834\" y2=\"127\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#ACFA30\"/>\\n<stop offset=\"1\" stop-color=\"#65E386\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16rxpvz\",\"data-framer-name\":\"Ellipse 6194\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9ouxo6\",\"data-framer-name\":\"Ellipse 6195\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kemis8\",\"data-framer-name\":\"Ellipse 6196\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXVjbGlkIENpcmN1bGFyIEEtcmVndWxhcg==\",\"--framer-font-family\":'\"Euclid Circular A\", \"Euclid Circular A Placeholder\", sans-serif',\"--framer-font-size\":\"18.67px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.08)\"},children:\"45\"})}),className:\"framer-17gtxbf\",\"data-framer-name\":\"45\",fonts:[\"GF;Euclid Circular A-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXVjbGlkIENpcmN1bGFyIEEtcmVndWxhcg==\",\"--framer-font-family\":'\"Euclid Circular A\", \"Euclid Circular A Placeholder\", sans-serif',\"--framer-font-size\":\"18.67px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.08)\"},children:\"35\"})}),className:\"framer-14b8it0\",\"data-framer-name\":\"45\",fonts:[\"GF;Euclid Circular A-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXVjbGlkIENpcmN1bGFyIEEtcmVndWxhcg==\",\"--framer-font-family\":'\"Euclid Circular A\", \"Euclid Circular A Placeholder\", sans-serif',\"--framer-font-size\":\"18.67px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.08)\"},children:\"25\"})}),className:\"framer-1pemfr5\",\"data-framer-name\":\"45\",fonts:[\"GF;Euclid Circular A-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXVjbGlkIENpcmN1bGFyIEEtcmVndWxhcg==\",\"--framer-font-family\":'\"Euclid Circular A\", \"Euclid Circular A Placeholder\", sans-serif',\"--framer-font-size\":\"18.67px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.08)\"},children:\"15\"})}),className:\"framer-9z53l4\",\"data-framer-name\":\"45\",fonts:[\"GF;Euclid Circular A-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXVjbGlkIENpcmN1bGFyIEEtcmVndWxhcg==\",\"--framer-font-family\":'\"Euclid Circular A\", \"Euclid Circular A Placeholder\", sans-serif',\"--framer-font-size\":\"18.67px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.08)\"},children:\"5\"})}),className:\"framer-3ijr8e\",\"data-framer-name\":\"45\",fonts:[\"GF;Euclid Circular A-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXVjbGlkIENpcmN1bGFyIEEtcmVndWxhcg==\",\"--framer-font-family\":'\"Euclid Circular A\", \"Euclid Circular A Placeholder\", sans-serif',\"--framer-font-size\":\"18.67px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.08)\"},children:\"0\"})}),className:\"framer-kw53dd\",\"data-framer-name\":\"45\",fonts:[\"GF;Euclid Circular A-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXVjbGlkIENpcmN1bGFyIEEtcmVndWxhcg==\",\"--framer-font-family\":'\"Euclid Circular A\", \"Euclid Circular A Placeholder\", sans-serif',\"--framer-font-size\":\"18.67px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.08)\"},children:\"-5\"})}),className:\"framer-vbca5x\",\"data-framer-name\":\"45\",fonts:[\"GF;Euclid Circular A-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed5()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-fr9hi4 hidden-72rtr7\",\"data-framer-name\":\"visual-contaienr\",children:isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-15l608 hidden-72rtr7\",\"data-framer-name\":\"feature_visual_03\",fill:\"black\",intrinsicHeight:237,intrinsicWidth:288,svg:'<svg width=\"288\" height=\"237\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path stroke=\"url(#a)\" stroke-width=\"2\" stroke-dasharray=\"3.5 3.5\" d=\"M26 93v129\"/><path stroke=\"url(#b)\" stroke-width=\"2\" stroke-dasharray=\"3.5 3.5\" d=\"M66 93v129\"/><path stroke=\"url(#c)\" stroke-width=\"2\" stroke-dasharray=\"3.5 3.5\" d=\"M106 93v129\"/><path stroke=\"url(#d)\" stroke-width=\"2\" stroke-dasharray=\"3.5 3.5\" d=\"M145 93v129\"/><path stroke=\"url(#e)\" stroke-width=\"2\" stroke-dasharray=\"3.5 3.5\" d=\"M185 13v209\"/><path stroke=\"url(#f)\" stroke-width=\"2\" stroke-dasharray=\"3.5 3.5\" d=\"M224 13v209\"/><path stroke=\"url(#g)\" stroke-width=\"2\" stroke-dasharray=\"3.5 3.5\" d=\"M263 13v209\"/><path d=\"M21.658 225c7.705-9.636 29.858-27.943 41.416-30.834 11.558-2.891 22.153 0 30.82-6.745 8.669-6.745 8.669-14.453 18.301-16.38 9.631-1.927 20.226 11.562 31.784 7.708 11.558-3.854 18.3-19.27 22.153-38.541 3.852-19.271 2.98-53.208 40.5-53.208s45.399-60.783 45.399-73.915\" stroke=\"#404040\" stroke-width=\"3.502\"/><path d=\"M21.658 224.999c7.705-9.636 29.858-27.943 41.416-30.834 11.558-2.89 22.153 0 30.82-6.745 8.669-6.744 8.669-14.453 18.301-16.38 9.631-1.927 20.226 11.563 31.784 7.708 11.558-3.854 22.715-23.203 23.882-57.93\" stroke=\"url(#h)\" stroke-width=\"3.502\"/><circle cx=\"168.316\" cy=\"121.274\" r=\"6\" fill=\"#93F24D\"/><circle cx=\"167.977\" cy=\"120.685\" r=\"18\" fill=\"#6CE57D\" fill-opacity=\".15\"/><g filter=\"url(#i)\"><ellipse cx=\"168\" cy=\"118.5\" rx=\"66\" ry=\"64.5\" fill=\"#E2FA06\" fill-opacity=\".06\"/></g><path d=\"M38.861 182.553v-2.704h-5.295v-.966l5.45-6.276h1.05v6.108h1.372v1.134h-1.372v2.704H38.86Zm-3.726-3.838h3.726v-4.287l-3.726 4.287Zm10.256 3.978c-.896 0-1.671-.28-2.325-.841-.654-.56-.99-1.223-1.009-1.989h1.233c.112.486.36.883.742 1.191.383.308.836.462 1.36.462.606 0 1.115-.205 1.526-.616a2.06 2.06 0 0 0 .616-1.513c0-.607-.196-1.116-.588-1.527-.392-.411-.892-.616-1.499-.616-.83 0-1.457.336-1.877 1.008l-1.148-.336 1.022-5.309h4.65v1.177h-3.683l-.547 2.844c.486-.346 1.065-.519 1.737-.519.925 0 1.681.327 2.27.981.597.644.896 1.461.896 2.451 0 .878-.322 1.625-.967 2.241-.644.607-1.447.911-2.409.911Z\" fill=\"#fff\" fill-opacity=\".08\"/><defs><linearGradient id=\"a\" x1=\"25\" y1=\"215.257\" x2=\"25\" y2=\"63.389\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#585858\"/><stop offset=\"1\" stop-color=\"#2C2C2C\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"b\" x1=\"65\" y1=\"215.257\" x2=\"65\" y2=\"63.389\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#585858\"/><stop offset=\"1\" stop-color=\"#2C2C2C\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"c\" x1=\"105\" y1=\"215.257\" x2=\"105\" y2=\"63.389\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#585858\"/><stop offset=\"1\" stop-color=\"#2C2C2C\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"d\" x1=\"144\" y1=\"215.257\" x2=\"144\" y2=\"63.389\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#585858\"/><stop offset=\"1\" stop-color=\"#2C2C2C\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"e\" x1=\"184\" y1=\"211.075\" x2=\"184\" y2=\"-34.975\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#585858\"/><stop offset=\"1\" stop-color=\"#2C2C2C\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"f\" x1=\"223\" y1=\"211.075\" x2=\"223\" y2=\"-34.975\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#585858\"/><stop offset=\"1\" stop-color=\"#2C2C2C\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"g\" x1=\"262\" y1=\"211.075\" x2=\"262\" y2=\"-34.975\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#585858\"/><stop offset=\"1\" stop-color=\"#2C2C2C\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"h\" x1=\"126.339\" y1=\"173.221\" x2=\"43.42\" y2=\"215.619\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#ACFA30\"/><stop offset=\"1\" stop-color=\"#65E386\" stop-opacity=\"0\"/></linearGradient><filter id=\"i\" x=\"48.784\" y=\".784\" width=\"238.432\" height=\"235.432\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feBlend in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/><feGaussianBlur stdDeviation=\"26.608\" result=\"effect1_foregroundBlur_666_3103\"/></filter></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nwvj3v\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:\"Scalable as you grow\"})}),className:\"framer-4oaa8e\",\"data-framer-name\":\"Scalable as you grow\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"We can send from 10,000 to 100,000 personalized emails every month without spamming anyone\"})}),className:\"framer-15r3t4b\",\"data-framer-name\":\"We\u2019re ready to meet your evolving needs.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ylb3cw\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10t01c2\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n37c1y\",\"data-border\":true,\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1umhd9i\",\"data-framer-name\":\"visual\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9utft2\",\"data-framer-name\":\"Integration_visual\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 282 172\"><path d=\"M 53.906 129.634 C 53.906 107.417 71.917 89.406 94.134 89.406 C 116.351 89.406 134.362 107.417 134.362 129.634 C 134.362 151.851 116.351 169.862 94.134 169.862 C 71.917 169.862 53.906 151.851 53.906 129.634 Z\" fill=\"rgba(19,19,19,0.89)\" stroke-width=\"0.813\" stroke=\"rgb(NaN,NaN,NaN)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(77.61 114.193)\" id=\"ss9930780893_2\"><path d=\"M 0 0 L 32.508 0 L 32.508 30.84 L 0 30.84 Z\" fill=\"transparent\"></path><path d=\"M 0.556 0.715 L 12.688 16.936 L 0.48 30.125 L 3.227 30.125 L 13.916 18.578 L 22.552 30.125 L 31.902 30.125 L 19.088 12.991 L 30.451 0.715 L 27.703 0.715 L 17.86 11.35 L 9.907 0.715 L 0.557 0.715 Z M 4.597 2.739 L 8.893 2.739 L 27.861 28.101 L 23.565 28.101 Z\" fill=\"rgb(255,255,255)\"></path></g><path d=\"M 147.637 130.104 C 147.637 107.887 165.648 89.876 187.865 89.876 C 210.082 89.876 228.093 107.887 228.093 130.104 C 228.093 152.321 210.082 170.332 187.865 170.332 C 165.648 170.332 147.637 152.321 147.637 130.104 Z\" fill=\"rgba(19,19,19,0.89)\" stroke-width=\"0.813\" stroke=\"rgb(NaN,NaN,NaN)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(169.443 111.756)\" id=\"ss9930780893_6\"><path d=\"M 0 0 L 37.384 0 L 37.384 37.384 L 0 37.384 Z\" fill=\"transparent\"></path><path d=\"M 23.365 18.7 C 23.366 20.048 23.122 21.385 22.647 22.646 C 21.385 23.121 20.048 23.365 18.7 23.365 L 18.684 23.365 C 17.336 23.365 15.999 23.122 14.738 22.647 C 14.262 21.385 14.019 20.048 14.019 18.7 L 14.019 18.684 C 14.019 17.336 14.261 15.999 14.736 14.738 C 15.998 14.262 17.336 14.018 18.684 14.019 L 18.7 14.019 C 20.048 14.018 21.386 14.262 22.647 14.738 C 23.123 15.999 23.366 17.336 23.365 18.683 Z M 37.124 15.576 L 26.214 15.576 L 33.928 7.861 C 33.323 7.011 32.647 6.212 31.909 5.474 L 31.909 5.473 C 31.171 4.736 30.372 4.061 29.522 3.456 L 21.807 11.171 L 21.807 0.26 C 20.781 0.087 19.742 0 18.702 0 L 18.682 0 C 17.624 0 16.587 0.09 15.577 0.26 L 15.577 11.171 L 7.862 3.456 C 7.011 4.061 6.213 4.736 5.476 5.475 L 5.472 5.477 C 4.735 6.215 4.06 7.012 3.455 7.861 L 11.171 15.576 L 0.261 15.576 C 0.261 15.576 0 17.626 0 18.685 L 0 18.698 C 0 19.758 0.09 20.796 0.261 21.807 L 11.171 21.807 L 3.456 29.522 C 4.669 31.226 6.158 32.715 7.862 33.928 L 15.577 26.213 L 15.577 37.124 C 16.602 37.296 17.639 37.383 18.679 37.384 L 18.705 37.384 C 19.744 37.383 20.782 37.296 21.807 37.124 L 21.807 26.213 L 29.523 33.928 C 30.373 33.323 31.171 32.648 31.909 31.91 L 31.911 31.908 C 32.648 31.17 33.323 30.372 33.928 29.522 L 26.212 21.807 L 37.124 21.807 C 37.294 20.798 37.383 19.763 37.384 18.705 L 37.384 18.678 C 37.383 17.639 37.296 16.601 37.124 15.576 Z\" fill=\"rgb(255,74,0)\"></path></g><path d=\"M 241.637 129.634 C 241.637 107.417 259.648 89.406 281.865 89.406 C 304.082 89.406 322.093 107.417 322.093 129.634 C 322.093 151.851 304.082 169.862 281.865 169.862 C 259.648 169.862 241.637 151.851 241.637 129.634 Z\" fill=\"rgba(19,19,19,0.89)\" stroke-width=\"0.813\" stroke=\"rgb(NaN,NaN,NaN)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(262.088 114.193)\" id=\"ss9930780893_10\"><path d=\"M 0.002 0 L 39.531 0 L 39.531 30.621 L 0.002 30.621 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0.231)\" id=\"ss9930780893_12\"><path d=\"M 33.463 2.497 C 30.9 1.321 28.196 0.482 25.417 0.002 C 25.365 -0.008 25.313 0.017 25.288 0.063 C 24.919 0.732 24.585 1.419 24.286 2.121 C 21.291 1.666 18.244 1.666 15.249 2.121 C 14.979 1.473 14.58 0.681 14.231 0.063 C 14.205 0.018 14.154 -0.006 14.102 0.002 C 11.323 0.482 8.619 1.32 6.056 2.497 C 6.034 2.507 6.016 2.523 6.003 2.543 C 0.878 10.199 -0.525 17.667 0.163 25.042 C 0.167 25.079 0.186 25.113 0.215 25.135 C 3.596 27.618 6.871 29.125 10.085 30.124 C 10.136 30.14 10.192 30.122 10.224 30.079 C 10.986 29.042 11.661 27.943 12.243 26.794 C 12.259 26.762 12.261 26.725 12.248 26.692 C 12.235 26.659 12.209 26.633 12.175 26.62 C 11.11 26.212 10.079 25.721 9.091 25.15 C 9.055 25.129 9.031 25.091 9.029 25.049 C 9.026 25.006 9.045 24.966 9.079 24.94 C 9.286 24.785 9.493 24.623 9.691 24.46 C 9.727 24.431 9.777 24.424 9.819 24.443 C 16.288 27.397 23.292 27.397 29.685 24.443 C 29.728 24.423 29.778 24.43 29.814 24.459 C 30.012 24.622 30.219 24.785 30.428 24.94 C 30.462 24.966 30.481 25.006 30.478 25.048 C 30.476 25.09 30.453 25.129 30.417 25.15 C 29.432 25.726 28.4 26.217 27.332 26.619 C 27.299 26.632 27.272 26.658 27.26 26.692 C 27.247 26.725 27.249 26.762 27.265 26.794 C 27.856 27.937 28.531 29.034 29.283 30.077 C 29.314 30.121 29.37 30.14 29.421 30.124 C 32.651 29.125 35.926 27.618 39.307 25.135 C 39.337 25.114 39.356 25.081 39.359 25.044 C 40.183 16.517 37.978 9.11 33.514 2.544 C 33.503 2.523 33.485 2.507 33.463 2.497 Z M 13.209 20.551 C 11.262 20.551 9.657 18.763 9.657 16.567 C 9.657 14.371 11.23 12.583 13.209 12.583 C 15.204 12.583 16.793 14.387 16.762 16.567 C 16.762 18.763 15.188 20.551 13.209 20.551 Z M 26.344 20.551 C 24.396 20.551 22.792 18.763 22.792 16.567 C 22.792 14.371 24.365 12.583 26.344 12.583 C 28.338 12.583 29.928 14.387 29.897 16.567 C 29.897 18.763 28.338 20.551 26.344 20.551 Z\" fill=\"rgb(88,101,242)\"></path></g></g><path d=\"M 1.178 41.141 C 1.178 18.903 19.205 0.876 41.443 0.876 C 63.681 0.876 81.708 18.903 81.708 41.141 C 81.708 63.379 63.681 81.406 41.443 81.406 C 19.205 81.406 1.178 63.379 1.178 41.141 Z\" fill=\"rgba(19,19,19,0.89)\" stroke-width=\"0.813\" stroke=\"rgb(NaN,NaN,NaN)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(30.055 23.59)\" id=\"ss9930780893_15\"><path d=\"M 0 0 L 22.776 0 L 22.776 34.166 L 0 34.166 Z\" fill=\"transparent\"></path><path d=\"M 11.377 17.089 C 11.378 13.945 13.928 11.396 17.072 11.397 C 20.216 11.396 22.766 13.945 22.767 17.089 C 22.767 20.234 20.217 22.784 17.072 22.784 C 13.927 22.784 11.377 20.234 11.377 17.089 Z\" fill=\"rgb(26,188,254)\"></path><path d=\"M 0 28.459 C 0.001 25.315 2.551 22.766 5.695 22.767 L 11.39 22.767 L 11.39 28.459 C 11.388 31.603 8.839 34.151 5.695 34.15 C 4.185 34.152 2.735 33.554 1.667 32.486 C 0.598 31.418 -0.001 29.969 0 28.459 Z\" fill=\"rgb(10,207,131)\"></path><path d=\"M 11.377 0.028 L 11.377 11.398 L 17.072 11.398 C 20.216 11.399 22.765 8.851 22.767 5.707 C 22.766 2.563 20.216 0.014 17.072 0.015 L 11.377 0.015 Z\" fill=\"rgb(255,114,98)\"></path><path d=\"M 0 5.72 C 0.002 8.864 2.551 11.411 5.695 11.41 L 11.39 11.41 L 11.39 0.029 L 5.695 0.029 C 4.184 0.027 2.735 0.625 1.666 1.693 C 0.598 2.761 -0.002 4.21 0 5.721 Z\" fill=\"rgb(242,78,30)\"></path><path d=\"M 0 17.089 C 0.002 20.233 2.551 22.78 5.695 22.779 L 11.39 22.779 L 11.39 11.398 L 5.695 11.398 C 2.551 11.397 0.001 13.946 0 17.09 Z\" fill=\"rgb(162,89,255)\"></path></g><path d=\"M 95.264 40.672 C 95.264 18.434 113.291 0.407 135.529 0.407 C 157.767 0.407 175.794 18.434 175.794 40.672 C 175.794 62.91 157.767 80.937 135.529 80.937 C 113.291 80.937 95.264 62.91 95.264 40.672 Z\" fill=\"rgba(19,19,19,0.89)\" stroke-width=\"0.813\" stroke=\"rgb(NaN,NaN,NaN)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 120.154 23.575 L 140.845 22.047 C 143.387 21.829 144.04 21.976 145.638 23.137 L 152.243 27.791 C 153.332 28.591 153.695 28.809 153.695 29.681 L 153.695 55.199 C 153.695 56.799 153.114 57.744 151.081 57.889 L 127.053 59.344 C 125.528 59.416 124.801 59.198 124.002 58.179 L 119.138 51.855 C 118.266 50.691 117.904 49.819 117.904 48.801 L 117.904 26.118 C 117.904 24.81 118.485 23.72 120.154 23.575 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 140.387 23.666 L 121.577 25.063 C 120.059 25.195 119.531 26.191 119.531 27.386 L 119.531 48.109 C 119.531 49.039 119.86 49.836 120.653 50.899 L 125.075 56.678 C 125.801 57.608 126.462 57.808 127.849 57.741 L 149.692 56.412 C 151.539 56.28 152.068 55.416 152.068 53.955 L 152.068 30.64 C 152.068 29.885 151.772 29.667 150.898 29.022 L 150.747 28.913 L 144.744 24.662 C 143.291 23.601 142.697 23.466 140.387 23.665 Z M 128.343 30.259 C 126.559 30.379 126.154 30.407 125.141 29.579 L 122.566 27.52 C 122.304 27.254 122.436 26.921 123.095 26.855 L 141.178 25.527 C 142.696 25.394 143.487 25.926 144.081 26.39 L 147.182 28.649 C 147.315 28.716 147.645 29.113 147.248 29.113 L 128.574 30.243 Z M 126.263 53.756 L 126.263 33.964 C 126.263 33.099 126.527 32.7 127.318 32.634 L 148.766 31.372 C 149.494 31.305 149.823 31.77 149.823 32.633 L 149.823 52.293 C 149.823 53.158 149.69 53.889 148.502 53.955 L 127.978 55.151 C 126.79 55.217 126.263 54.819 126.263 53.756 Z M 146.524 35.025 C 146.655 35.623 146.524 36.221 145.929 36.289 L 144.94 36.486 L 144.94 51.099 C 144.081 51.563 143.29 51.829 142.629 51.829 C 141.573 51.829 141.309 51.496 140.518 50.501 L 134.049 40.272 L 134.049 50.168 L 136.096 50.634 C 136.096 50.634 136.096 51.83 134.445 51.83 L 129.893 52.095 C 129.76 51.829 129.893 51.165 130.354 51.033 L 131.543 50.701 L 131.543 37.617 L 129.893 37.482 C 129.76 36.884 130.09 36.022 131.015 35.954 L 135.898 35.624 L 142.629 45.984 L 142.629 36.818 L 140.914 36.62 C 140.781 35.888 141.309 35.356 141.969 35.291 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 188.809 40.672 C 188.809 18.434 206.836 0.407 229.074 0.407 C 251.312 0.407 269.339 18.434 269.339 40.672 C 269.339 62.91 251.312 80.937 229.074 80.937 C 206.836 80.937 188.809 62.91 188.809 40.672 Z\" fill=\"rgba(19,19,19,0.89)\" stroke-width=\"0.813\" stroke=\"rgb(NaN,NaN,NaN)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 224.058 22.775 C 222.037 22.775 220.398 24.414 220.398 26.436 C 220.399 28.457 222.038 30.095 224.059 30.095 L 227.72 30.095 L 227.72 26.437 C 227.719 24.415 226.08 22.776 224.058 22.775 C 224.059 22.775 224.059 22.775 224.058 22.775 Z M 224.058 32.536 L 214.298 32.536 C 212.276 32.535 210.637 34.174 210.637 36.195 C 210.636 38.217 212.274 39.856 214.296 39.857 L 224.058 39.857 C 226.046 39.811 227.633 38.186 227.633 36.197 C 227.633 34.208 226.046 32.583 224.058 32.537 Z\" fill=\"rgb(54,197,240)\"></path><path d=\"M 247.24 36.196 C 247.24 35.225 246.854 34.294 246.168 33.608 C 245.481 32.921 244.55 32.536 243.579 32.536 C 242.608 32.536 241.677 32.921 240.99 33.608 C 240.304 34.294 239.918 35.225 239.918 36.196 L 239.918 39.857 L 243.579 39.857 C 244.55 39.857 245.481 39.472 246.168 38.785 C 246.854 38.099 247.24 37.168 247.24 36.197 Z M 237.479 36.196 L 237.479 26.436 C 237.422 24.455 235.8 22.879 233.819 22.879 C 231.837 22.879 230.215 24.455 230.158 26.436 L 230.158 36.196 C 230.158 38.218 231.797 39.857 233.819 39.857 C 235.84 39.857 237.479 38.218 237.479 36.196 Z\" fill=\"rgb(46,182,125)\"></path><path d=\"M 233.819 59.38 C 235.84 59.38 237.479 57.741 237.479 55.72 C 237.479 53.699 235.84 52.06 233.819 52.06 L 230.158 52.06 L 230.158 55.72 C 230.16 57.741 231.798 59.379 233.819 59.38 Z M 233.819 49.617 L 243.58 49.617 C 245.578 49.585 247.181 47.956 247.182 45.957 C 247.182 43.959 245.58 42.33 243.582 42.296 L 233.821 42.296 C 231.8 42.295 230.161 43.934 230.16 45.955 C 230.159 47.976 231.798 49.615 233.819 49.616 Z\" fill=\"rgb(236,178,46)\"></path><path d=\"M 210.637 45.958 C 210.637 47.98 212.276 49.619 214.298 49.619 C 216.32 49.619 217.959 47.98 217.959 45.958 L 217.959 42.298 L 214.298 42.298 C 213.327 42.298 212.396 42.683 211.709 43.37 C 211.023 44.056 210.637 44.987 210.637 45.958 Z M 220.398 45.958 L 220.398 55.718 C 220.397 57.74 222.036 59.379 224.057 59.379 C 226.079 59.38 227.718 57.742 227.719 55.72 L 227.719 45.96 C 227.687 43.962 226.058 42.359 224.059 42.358 C 222.061 42.358 220.432 43.96 220.398 45.958 Z\" fill=\"rgb(224,30,90)\"></path><path d=\"M 282.354 40.672 C 282.354 18.434 300.381 0.407 322.619 0.407 C 344.857 0.407 362.884 18.434 362.884 40.672 C 362.884 62.91 344.857 80.937 322.619 80.937 C 300.381 80.937 282.354 62.91 282.354 40.672 Z\" fill=\"rgba(19,19,19,0.89)\" stroke-width=\"0.813\" stroke=\"rgb(NaN,NaN,NaN)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9930780893,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tewtig\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:\"Tools of Choice\"})}),className:\"framer-v6r9il\",\"data-framer-name\":\"Workflow integration\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"Some of our favourite tools to use internally, and deploy for clients.\"})}),className:\"framer-ghf5nh\",\"data-framer-name\":\"Seamlessly connect all your existing apps.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition35},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-172sw1v\",\"data-border\":true,\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14ialtl\",\"data-framer-name\":\"Visual\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1of6wnc\",\"data-framer-name\":\"user-profile\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a6tcy9\",\"data-framer-name\":\"Ellipse 6192\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ug32xg\",\"data-border\":true,\"data-framer-name\":\"Ellipse 6200\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13r58nv\",\"data-framer-name\":\"user-profile\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mk1cv9\",\"data-framer-name\":\"Ellipse 6192\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5760,intrinsicWidth:3840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+944.8+60+1472.2+0+0+0+479.2+30+0+35+9),pixelHeight:5760,pixelWidth:3840,sizes:\"68px\",src:\"https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg\",srcSet:\"https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg 3840w\"}},u6R6NsvSc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5760,intrinsicWidth:3840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+1196.8+80+677+0+0+0+32+0+44+9),pixelHeight:5760,pixelWidth:3840,sizes:\"68px\",src:\"https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg\",srcSet:\"https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5760,intrinsicWidth:3840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+1228.8+96+648.8+0+0+0+59+0+9),pixelHeight:5760,pixelWidth:3840,sizes:\"68px\",src:\"https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg\",srcSet:\"https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg 3840w\"},className:\"framer-pxt8qs\",\"data-border\":true,\"data-framer-name\":\"Ellipse 6200\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ba3vns\",\"data-framer-name\":\"Ellipse 6196\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qgqmrk\",\"data-framer-name\":\"user-profile\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z3nzy6\",\"data-framer-name\":\"Ellipse 6192\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6220,intrinsicWidth:6220,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+944.8+60+1472.2+0+0+0+479.2+30+0+35+9),pixelHeight:6220,pixelWidth:6220,sizes:\"68px\",src:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg\",srcSet:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg 6220w\"}},u6R6NsvSc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6220,intrinsicWidth:6220,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+1196.8+80+677+0+0+0+32+0+44+9),pixelHeight:6220,pixelWidth:6220,sizes:\"68px\",src:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg\",srcSet:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg 6220w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6220,intrinsicWidth:6220,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+1228.8+96+648.8+0+0+0+59+0+9),pixelHeight:6220,pixelWidth:6220,sizes:\"68px\",src:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg\",srcSet:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg 6220w\"},className:\"framer-1wq589r\",\"data-border\":true,\"data-framer-name\":\"Ellipse 6200\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mtfx3\",\"data-framer-name\":\"user-profile\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xwizi9\",\"data-framer-name\":\"Ellipse 6192\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5616,intrinsicWidth:3744,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+944.8+60+1472.2+0+0+0+479.2+30+0+35+9),pixelHeight:5616,pixelWidth:3744,sizes:\"68px\",src:\"https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg\",srcSet:\"https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg 3744w\"}},u6R6NsvSc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5616,intrinsicWidth:3744,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+1196.8+80+677+0+0+0+32+0+44+9),pixelHeight:5616,pixelWidth:3744,sizes:\"68px\",src:\"https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg\",srcSet:\"https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg 3744w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5616,intrinsicWidth:3744,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+1228.8+96+648.8+0+0+0+59+0+9),pixelHeight:5616,pixelWidth:3744,sizes:\"68px\",src:\"https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg\",srcSet:\"https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg 3744w\"},className:\"framer-1uk4ocm\",\"data-border\":true,\"data-framer-name\":\"Ellipse 6200\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a80zsd\",\"data-framer-name\":\"Comment cursor\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xyt3t\",\"data-framer-name\":\"Cursor\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_666_3197)\">\\n<path d=\"M8.75418 20.0002L5.62291 4.04113L20 11.9184L12.9181 13.973L8.75418 20.0002Z\" fill=\"black\"/>\\n<path d=\"M8.75418 20.0002L5.62291 4.04113L20 11.9184L12.9181 13.973L8.75418 20.0002Z\" stroke=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_666_3197\" x=\"2.92578\" y=\"2.09082\" width=\"20.3711\" height=\"22.1738\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1\"/>\\n<feGaussianBlur stdDeviation=\"1\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_666_3197\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_666_3197\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9s0kp1\",\"data-framer-name\":\"Comment\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"24px\"},children:\"Eliah\"})}),fonts:[\"GF;Poppins-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXVjbGlkIENpcmN1bGFyIEEtNjAw\",\"--framer-font-family\":'\"Euclid Circular A\", \"Euclid Circular A Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"24px\"},children:\"Eliah\"})}),className:\"framer-qkpkjs\",\"data-framer-name\":\"Eliah\",fonts:[\"GF;Euclid Circular A-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c0evew\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:[\"Collaborate \",/*#__PURE__*/_jsx(\"br\",{}),\"in real-time\"]})})},u6R6NsvSc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:\"Collaborate in real-time\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:[\"Collaborate\",/*#__PURE__*/_jsx(\"br\",{}),\"real-time\"]})}),className:\"framer-1ifarik\",\"data-framer-name\":\"Collaborate real-time\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"We can send you real time updates of every reply you get in your existing CRM\"})}),className:\"framer-17bnstn\",\"data-framer-name\":\"Seamlessly connect all your existing apps.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qp3nb7 hidden-1xaffxx\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c9xvqu\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vwoodp\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition36},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-in799o\",\"data-border\":true,\"data-framer-name\":\"Small-Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-4yjppp\",\"data-framer-name\":\"AsteriskSimple\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_666_3207)\">\\n<path d=\"M12.5 2.34375C10.4913 2.34375 8.52768 2.9394 6.85749 4.05539C5.18731 5.17137 3.88556 6.75756 3.11685 8.61337C2.34815 10.4692 2.14702 12.5113 2.5389 14.4814C2.93079 16.4515 3.89807 18.2612 5.31845 19.6816C6.73883 21.1019 8.5485 22.0692 10.5186 22.4611C12.4887 22.853 14.5308 22.6519 16.3866 21.8832C18.2424 21.1144 19.8286 19.8127 20.9446 18.1425C22.0606 16.4723 22.6563 14.5087 22.6563 12.5C22.6534 9.80727 21.5825 7.22564 19.6784 5.32159C17.7744 3.41754 15.1927 2.34659 12.5 2.34375ZM18.2764 10.874L13.7695 12.8047L17.0049 16.6875C17.1375 16.8468 17.2014 17.0522 17.1825 17.2586C17.1637 17.465 17.0636 17.6555 16.9043 17.7881C16.745 17.9207 16.5396 17.9846 16.3332 17.9657C16.1268 17.9469 15.9363 17.8468 15.8037 17.6875L12.5 13.7207L9.19434 17.6875C9.06173 17.8468 8.87128 17.9469 8.66488 17.9657C8.45848 17.9846 8.25304 17.9207 8.09375 17.7881C7.93447 17.6555 7.83439 17.465 7.81552 17.2586C7.79666 17.0522 7.86056 16.8468 7.99317 16.6875L11.2305 12.8047L6.72364 10.874C6.6264 10.8357 6.53784 10.7782 6.46321 10.705C6.38859 10.6319 6.3294 10.5444 6.28916 10.448C6.24893 10.3515 6.22845 10.248 6.22896 10.1434C6.22947 10.0389 6.25095 9.93555 6.29212 9.83948C6.3333 9.74341 6.39333 9.65657 6.46867 9.58412C6.544 9.51167 6.63311 9.45507 6.73072 9.41768C6.82833 9.38029 6.93244 9.36286 7.0369 9.36643C7.14137 9.37001 7.24405 9.3945 7.33887 9.43848L11.7188 11.3154V6.83594C11.7188 6.62874 11.8011 6.43002 11.9476 6.28351C12.0941 6.137 12.2928 6.05469 12.5 6.05469C12.7072 6.05469 12.9059 6.137 13.0524 6.28351C13.1989 6.43002 13.2813 6.62874 13.2813 6.83594V11.3154L17.6611 9.43848C17.756 9.3945 17.8586 9.37001 17.9631 9.36643C18.0676 9.36286 18.1717 9.38029 18.2693 9.41768C18.3669 9.45507 18.456 9.51167 18.5313 9.58412C18.6067 9.65657 18.6667 9.74341 18.7079 9.83948C18.7491 9.93555 18.7705 10.0389 18.771 10.1434C18.7716 10.248 18.7511 10.3515 18.7108 10.448C18.6706 10.5444 18.6114 10.6319 18.5368 10.705C18.4622 10.7782 18.3736 10.8357 18.2764 10.874Z\" fill=\"#E2FF02\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_666_3207\">\\n<rect width=\"25\" height=\"25\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"Custom dashboard\"})}),className:\"framer-5e7fnd\",\"data-framer-name\":\"Design workshops\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o4waem\",\"data-border\":true,\"data-framer-name\":\"Small-Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1gs723k\",\"data-framer-name\":\"AsteriskSimple\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_666_3237)\">\\n<path d=\"M12.5 2.34375C10.4913 2.34375 8.52768 2.9394 6.85749 4.05539C5.18731 5.17137 3.88556 6.75756 3.11685 8.61337C2.34815 10.4692 2.14702 12.5113 2.5389 14.4814C2.93079 16.4515 3.89807 18.2612 5.31845 19.6816C6.73883 21.1019 8.5485 22.0692 10.5186 22.4611C12.4887 22.853 14.5308 22.6519 16.3866 21.8832C18.2424 21.1144 19.8286 19.8127 20.9446 18.1425C22.0606 16.4723 22.6563 14.5087 22.6563 12.5C22.6534 9.80727 21.5825 7.22564 19.6784 5.32159C17.7744 3.41754 15.1927 2.34659 12.5 2.34375ZM18.2764 10.874L13.7695 12.8047L17.0049 16.6875C17.1375 16.8468 17.2014 17.0522 17.1825 17.2586C17.1637 17.465 17.0636 17.6555 16.9043 17.7881C16.745 17.9207 16.5396 17.9846 16.3332 17.9657C16.1268 17.9469 15.9363 17.8468 15.8037 17.6875L12.5 13.7207L9.19434 17.6875C9.06173 17.8468 8.87128 17.9469 8.66488 17.9657C8.45848 17.9846 8.25304 17.9207 8.09375 17.7881C7.93447 17.6555 7.83439 17.465 7.81552 17.2586C7.79666 17.0522 7.86056 16.8468 7.99317 16.6875L11.2305 12.8047L6.72364 10.874C6.6264 10.8357 6.53784 10.7782 6.46321 10.705C6.38859 10.6319 6.3294 10.5444 6.28916 10.448C6.24893 10.3515 6.22845 10.248 6.22896 10.1434C6.22947 10.0389 6.25095 9.93555 6.29212 9.83948C6.3333 9.74341 6.39333 9.65657 6.46867 9.58412C6.544 9.51167 6.63311 9.45507 6.73072 9.41768C6.82833 9.38029 6.93244 9.36286 7.0369 9.36643C7.14137 9.37001 7.24405 9.3945 7.33887 9.43848L11.7188 11.3154V6.83594C11.7188 6.62874 11.8011 6.43002 11.9476 6.28351C12.0941 6.137 12.2928 6.05469 12.5 6.05469C12.7072 6.05469 12.9059 6.137 13.0524 6.28351C13.1989 6.43002 13.2813 6.62874 13.2813 6.83594V11.3154L17.6611 9.43848C17.756 9.3945 17.8586 9.37001 17.9631 9.36643C18.0676 9.36286 18.1717 9.38029 18.2693 9.41768C18.3669 9.45507 18.456 9.51167 18.5313 9.58412C18.6067 9.65657 18.6667 9.74341 18.7079 9.83948C18.7491 9.93555 18.7705 10.0389 18.771 10.1434C18.7716 10.248 18.7511 10.3515 18.7108 10.448C18.6706 10.5444 18.6114 10.6319 18.5368 10.705C18.4622 10.7782 18.3736 10.8357 18.2764 10.874Z\" fill=\"#E2FF02\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_666_3237\">\\n<rect width=\"25\" height=\"25\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"Analytics\"})}),className:\"framer-p4rdl3\",\"data-framer-name\":\"Workshops\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition35},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1us8umr\",\"data-border\":true,\"data-framer-name\":\"Small-Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1q2aia4\",\"data-framer-name\":\"AsteriskSimple\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_666_3227)\">\\n<path d=\"M12.5 2.34375C10.4913 2.34375 8.52768 2.9394 6.85749 4.05539C5.18731 5.17137 3.88556 6.75756 3.11685 8.61337C2.34815 10.4692 2.14702 12.5113 2.5389 14.4814C2.93079 16.4515 3.89807 18.2612 5.31845 19.6816C6.73883 21.1019 8.5485 22.0692 10.5186 22.4611C12.4887 22.853 14.5308 22.6519 16.3866 21.8832C18.2424 21.1144 19.8286 19.8127 20.9446 18.1425C22.0606 16.4723 22.6563 14.5087 22.6563 12.5C22.6534 9.80727 21.5825 7.22564 19.6784 5.32159C17.7744 3.41754 15.1927 2.34659 12.5 2.34375ZM18.2764 10.874L13.7695 12.8047L17.0049 16.6875C17.1375 16.8468 17.2014 17.0522 17.1825 17.2586C17.1637 17.465 17.0636 17.6555 16.9043 17.7881C16.745 17.9207 16.5396 17.9846 16.3332 17.9657C16.1268 17.9469 15.9363 17.8468 15.8037 17.6875L12.5 13.7207L9.19434 17.6875C9.06173 17.8468 8.87128 17.9469 8.66488 17.9657C8.45848 17.9846 8.25304 17.9207 8.09375 17.7881C7.93447 17.6555 7.83439 17.465 7.81552 17.2586C7.79666 17.0522 7.86056 16.8468 7.99317 16.6875L11.2305 12.8047L6.72364 10.874C6.6264 10.8357 6.53784 10.7782 6.46321 10.705C6.38859 10.6319 6.3294 10.5444 6.28916 10.448C6.24893 10.3515 6.22845 10.248 6.22896 10.1434C6.22947 10.0389 6.25095 9.93555 6.29212 9.83948C6.3333 9.74341 6.39333 9.65657 6.46867 9.58412C6.544 9.51167 6.63311 9.45507 6.73072 9.41768C6.82833 9.38029 6.93244 9.36286 7.0369 9.36643C7.14137 9.37001 7.24405 9.3945 7.33887 9.43848L11.7188 11.3154V6.83594C11.7188 6.62874 11.8011 6.43002 11.9476 6.28351C12.0941 6.137 12.2928 6.05469 12.5 6.05469C12.7072 6.05469 12.9059 6.137 13.0524 6.28351C13.1989 6.43002 13.2813 6.62874 13.2813 6.83594V11.3154L17.6611 9.43848C17.756 9.3945 17.8586 9.37001 17.9631 9.36643C18.0676 9.36286 18.1717 9.38029 18.2693 9.41768C18.3669 9.45507 18.456 9.51167 18.5313 9.58412C18.6067 9.65657 18.6667 9.74341 18.7079 9.83948C18.7491 9.93555 18.7705 10.0389 18.771 10.1434C18.7716 10.248 18.7511 10.3515 18.7108 10.448C18.6706 10.5444 18.6114 10.6319 18.5368 10.705C18.4622 10.7782 18.3736 10.8357 18.2764 10.874Z\" fill=\"#E2FF02\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_666_3227\">\\n<rect width=\"25\" height=\"25\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"Trend reports\"})}),className:\"framer-15zjiuk\",\"data-framer-name\":\"Trend reports\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition33},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vg8tpp hidden-1ed9oh6\",\"data-border\":true,\"data-framer-name\":\"Small-Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1vbdzf\",\"data-framer-name\":\"AsteriskSimple\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_666_3232)\">\\n<path d=\"M12.5 2.34375C10.4913 2.34375 8.52768 2.9394 6.85749 4.05539C5.18731 5.17137 3.88556 6.75756 3.11685 8.61337C2.34815 10.4692 2.14702 12.5113 2.5389 14.4814C2.93079 16.4515 3.89807 18.2612 5.31845 19.6816C6.73883 21.1019 8.5485 22.0692 10.5186 22.4611C12.4887 22.853 14.5308 22.6519 16.3866 21.8832C18.2424 21.1144 19.8286 19.8127 20.9446 18.1425C22.0606 16.4723 22.6563 14.5087 22.6563 12.5C22.6534 9.80727 21.5825 7.22564 19.6784 5.32159C17.7744 3.41754 15.1927 2.34659 12.5 2.34375ZM18.2764 10.874L13.7695 12.8047L17.0049 16.6875C17.1375 16.8468 17.2014 17.0522 17.1825 17.2586C17.1637 17.465 17.0636 17.6555 16.9043 17.7881C16.745 17.9207 16.5396 17.9846 16.3332 17.9657C16.1268 17.9469 15.9363 17.8468 15.8037 17.6875L12.5 13.7207L9.19434 17.6875C9.06173 17.8468 8.87128 17.9469 8.66488 17.9657C8.45848 17.9846 8.25304 17.9207 8.09375 17.7881C7.93447 17.6555 7.83439 17.465 7.81552 17.2586C7.79666 17.0522 7.86056 16.8468 7.99317 16.6875L11.2305 12.8047L6.72364 10.874C6.6264 10.8357 6.53784 10.7782 6.46321 10.705C6.38859 10.6319 6.3294 10.5444 6.28916 10.448C6.24893 10.3515 6.22845 10.248 6.22896 10.1434C6.22947 10.0389 6.25095 9.93555 6.29212 9.83948C6.3333 9.74341 6.39333 9.65657 6.46867 9.58412C6.544 9.51167 6.63311 9.45507 6.73072 9.41768C6.82833 9.38029 6.93244 9.36286 7.0369 9.36643C7.14137 9.37001 7.24405 9.3945 7.33887 9.43848L11.7188 11.3154V6.83594C11.7188 6.62874 11.8011 6.43002 11.9476 6.28351C12.0941 6.137 12.2928 6.05469 12.5 6.05469C12.7072 6.05469 12.9059 6.137 13.0524 6.28351C13.1989 6.43002 13.2813 6.62874 13.2813 6.83594V11.3154L17.6611 9.43848C17.756 9.3945 17.8586 9.37001 17.9631 9.36643C18.0676 9.36286 18.1717 9.38029 18.2693 9.41768C18.3669 9.45507 18.456 9.51167 18.5313 9.58412C18.6067 9.65657 18.6667 9.74341 18.7079 9.83948C18.7491 9.93555 18.7705 10.0389 18.771 10.1434C18.7716 10.248 18.7511 10.3515 18.7108 10.448C18.6706 10.5444 18.6114 10.6319 18.5368 10.705C18.4622 10.7782 18.3736 10.8357 18.2764 10.874Z\" fill=\"#E2FF02\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_666_3232\">\\n<rect width=\"25\" height=\"25\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"Slack Email Replies\"})}),className:\"framer-o4is25\",\"data-framer-name\":\"Asset library\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2wmd5y\",\"data-framer-name\":\"Row\",children:[isDisplayed3()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition36},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15hv810 hidden-1ed9oh6\",\"data-border\":true,\"data-framer-name\":\"Small-Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1x3zbjx\",\"data-framer-name\":\"AsteriskSimple\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_666_3217)\">\\n<path d=\"M12.5 2.34375C10.4913 2.34375 8.52768 2.9394 6.85749 4.05539C5.18731 5.17137 3.88556 6.75756 3.11685 8.61337C2.34815 10.4692 2.14702 12.5113 2.5389 14.4814C2.93079 16.4515 3.89807 18.2612 5.31845 19.6816C6.73883 21.1019 8.5485 22.0692 10.5186 22.4611C12.4887 22.853 14.5308 22.6519 16.3866 21.8832C18.2424 21.1144 19.8286 19.8127 20.9446 18.1425C22.0606 16.4723 22.6563 14.5087 22.6563 12.5C22.6534 9.80727 21.5825 7.22564 19.6784 5.32159C17.7744 3.41754 15.1927 2.34659 12.5 2.34375ZM18.2764 10.874L13.7695 12.8047L17.0049 16.6875C17.1375 16.8468 17.2014 17.0522 17.1825 17.2586C17.1637 17.465 17.0636 17.6555 16.9043 17.7881C16.745 17.9207 16.5396 17.9846 16.3332 17.9657C16.1268 17.9469 15.9363 17.8468 15.8037 17.6875L12.5 13.7207L9.19434 17.6875C9.06173 17.8468 8.87128 17.9469 8.66488 17.9657C8.45848 17.9846 8.25304 17.9207 8.09375 17.7881C7.93447 17.6555 7.83439 17.465 7.81552 17.2586C7.79666 17.0522 7.86056 16.8468 7.99317 16.6875L11.2305 12.8047L6.72364 10.874C6.6264 10.8357 6.53784 10.7782 6.46321 10.705C6.38859 10.6319 6.3294 10.5444 6.28916 10.448C6.24893 10.3515 6.22845 10.248 6.22896 10.1434C6.22947 10.0389 6.25095 9.93555 6.29212 9.83948C6.3333 9.74341 6.39333 9.65657 6.46867 9.58412C6.544 9.51167 6.63311 9.45507 6.73072 9.41768C6.82833 9.38029 6.93244 9.36286 7.0369 9.36643C7.14137 9.37001 7.24405 9.3945 7.33887 9.43848L11.7188 11.3154V6.83594C11.7188 6.62874 11.8011 6.43002 11.9476 6.28351C12.0941 6.137 12.2928 6.05469 12.5 6.05469C12.7072 6.05469 12.9059 6.137 13.0524 6.28351C13.1989 6.43002 13.2813 6.62874 13.2813 6.83594V11.3154L17.6611 9.43848C17.756 9.3945 17.8586 9.37001 17.9631 9.36643C18.0676 9.36286 18.1717 9.38029 18.2693 9.41768C18.3669 9.45507 18.456 9.51167 18.5313 9.58412C18.6067 9.65657 18.6667 9.74341 18.7079 9.83948C18.7491 9.93555 18.7705 10.0389 18.771 10.1434C18.7716 10.248 18.7511 10.3515 18.7108 10.448C18.6706 10.5444 18.6114 10.6319 18.5368 10.705C18.4622 10.7782 18.3736 10.8357 18.2764 10.874Z\" fill=\"#E2FF02\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_666_3217\">\\n<rect width=\"25\" height=\"25\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"Personalization\"})}),className:\"framer-9anbh7\",\"data-framer-name\":\"Rollover hours\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lr1pmo\",\"data-border\":true,\"data-framer-name\":\"Small-Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10fwotr\",\"data-framer-name\":\"AsteriskSimple\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_666_3212)\">\\n<path d=\"M12.5 2.34375C10.4913 2.34375 8.52768 2.9394 6.85749 4.05539C5.18731 5.17137 3.88556 6.75756 3.11685 8.61337C2.34815 10.4692 2.14702 12.5113 2.5389 14.4814C2.93079 16.4515 3.89807 18.2612 5.31845 19.6816C6.73883 21.1019 8.5485 22.0692 10.5186 22.4611C12.4887 22.853 14.5308 22.6519 16.3866 21.8832C18.2424 21.1144 19.8286 19.8127 20.9446 18.1425C22.0606 16.4723 22.6563 14.5087 22.6563 12.5C22.6534 9.80727 21.5825 7.22564 19.6784 5.32159C17.7744 3.41754 15.1927 2.34659 12.5 2.34375ZM18.2764 10.874L13.7695 12.8047L17.0049 16.6875C17.1375 16.8468 17.2014 17.0522 17.1825 17.2586C17.1637 17.465 17.0636 17.6555 16.9043 17.7881C16.745 17.9207 16.5396 17.9846 16.3332 17.9657C16.1268 17.9469 15.9363 17.8468 15.8037 17.6875L12.5 13.7207L9.19434 17.6875C9.06173 17.8468 8.87128 17.9469 8.66488 17.9657C8.45848 17.9846 8.25304 17.9207 8.09375 17.7881C7.93447 17.6555 7.83439 17.465 7.81552 17.2586C7.79666 17.0522 7.86056 16.8468 7.99317 16.6875L11.2305 12.8047L6.72364 10.874C6.6264 10.8357 6.53784 10.7782 6.46321 10.705C6.38859 10.6319 6.3294 10.5444 6.28916 10.448C6.24893 10.3515 6.22845 10.248 6.22896 10.1434C6.22947 10.0389 6.25095 9.93555 6.29212 9.83948C6.3333 9.74341 6.39333 9.65657 6.46867 9.58412C6.544 9.51167 6.63311 9.45507 6.73072 9.41768C6.82833 9.38029 6.93244 9.36286 7.0369 9.36643C7.14137 9.37001 7.24405 9.3945 7.33887 9.43848L11.7188 11.3154V6.83594C11.7188 6.62874 11.8011 6.43002 11.9476 6.28351C12.0941 6.137 12.2928 6.05469 12.5 6.05469C12.7072 6.05469 12.9059 6.137 13.0524 6.28351C13.1989 6.43002 13.2813 6.62874 13.2813 6.83594V11.3154L17.6611 9.43848C17.756 9.3945 17.8586 9.37001 17.9631 9.36643C18.0676 9.36286 18.1717 9.38029 18.2693 9.41768C18.3669 9.45507 18.456 9.51167 18.5313 9.58412C18.6067 9.65657 18.6667 9.74341 18.7079 9.83948C18.7491 9.93555 18.7705 10.0389 18.771 10.1434C18.7716 10.248 18.7511 10.3515 18.7108 10.448C18.6706 10.5444 18.6114 10.6319 18.5368 10.705C18.4622 10.7782 18.3736 10.8357 18.2764 10.874Z\" fill=\"#E2FF02\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_666_3212\">\\n<rect width=\"25\" height=\"25\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"Premium copyrighting\"})}),className:\"framer-vc80qt\",\"data-framer-name\":\"Premium designers\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition35},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-56uwgp\",\"data-border\":true,\"data-framer-name\":\"Small-Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11qvwgm\",\"data-framer-name\":\"AsteriskSimple\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_666_3222)\">\\n<path d=\"M12.5 2.34375C10.4913 2.34375 8.52768 2.9394 6.85749 4.05539C5.18731 5.17137 3.88556 6.75756 3.11685 8.61337C2.34815 10.4692 2.14702 12.5113 2.5389 14.4814C2.93079 16.4515 3.89807 18.2612 5.31845 19.6816C6.73883 21.1019 8.5485 22.0692 10.5186 22.4611C12.4887 22.853 14.5308 22.6519 16.3866 21.8832C18.2424 21.1144 19.8286 19.8127 20.9446 18.1425C22.0606 16.4723 22.6563 14.5087 22.6563 12.5C22.6534 9.80727 21.5825 7.22564 19.6784 5.32159C17.7744 3.41754 15.1927 2.34659 12.5 2.34375ZM18.2764 10.874L13.7695 12.8047L17.0049 16.6875C17.1375 16.8468 17.2014 17.0522 17.1825 17.2586C17.1637 17.465 17.0636 17.6555 16.9043 17.7881C16.745 17.9207 16.5396 17.9846 16.3332 17.9657C16.1268 17.9469 15.9363 17.8468 15.8037 17.6875L12.5 13.7207L9.19434 17.6875C9.06173 17.8468 8.87128 17.9469 8.66488 17.9657C8.45848 17.9846 8.25304 17.9207 8.09375 17.7881C7.93447 17.6555 7.83439 17.465 7.81552 17.2586C7.79666 17.0522 7.86056 16.8468 7.99317 16.6875L11.2305 12.8047L6.72364 10.874C6.6264 10.8357 6.53784 10.7782 6.46321 10.705C6.38859 10.6319 6.3294 10.5444 6.28916 10.448C6.24893 10.3515 6.22845 10.248 6.22896 10.1434C6.22947 10.0389 6.25095 9.93555 6.29212 9.83948C6.3333 9.74341 6.39333 9.65657 6.46867 9.58412C6.544 9.51167 6.63311 9.45507 6.73072 9.41768C6.82833 9.38029 6.93244 9.36286 7.0369 9.36643C7.14137 9.37001 7.24405 9.3945 7.33887 9.43848L11.7188 11.3154V6.83594C11.7188 6.62874 11.8011 6.43002 11.9476 6.28351C12.0941 6.137 12.2928 6.05469 12.5 6.05469C12.7072 6.05469 12.9059 6.137 13.0524 6.28351C13.1989 6.43002 13.2813 6.62874 13.2813 6.83594V11.3154L17.6611 9.43848C17.756 9.3945 17.8586 9.37001 17.9631 9.36643C18.0676 9.36286 18.1717 9.38029 18.2693 9.41768C18.3669 9.45507 18.456 9.51167 18.5313 9.58412C18.6067 9.65657 18.6667 9.74341 18.7079 9.83948C18.7491 9.93555 18.7705 10.0389 18.771 10.1434C18.7716 10.248 18.7511 10.3515 18.7108 10.448C18.6706 10.5444 18.6114 10.6319 18.5368 10.705C18.4622 10.7782 18.3736 10.8357 18.2764 10.874Z\" fill=\"#E2FF02\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_666_3222\">\\n<rect width=\"25\" height=\"25\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"24/7 slack support\"})}),className:\"framer-owbnsm\",\"data-framer-name\":\"Multilingual support\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1oeu8vq\",\"data-framer-name\":\"How It Works\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9ek2f5\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gagupe\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{y:(componentViewport?.y||0)+32+3461.4+60+0+0+0+0},u6R6NsvSc:{y:(componentViewport?.y||0)+32+2639+80+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:(componentViewport?.y||0)+48+2447.6+96+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1djcmls-container\",nodeId:\"sA8uLRS82\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionBadge,{h5mTi1koL:\"How it works\",height:\"100%\",id:\"sA8uLRS82\",layoutId:\"sA8uLRS82\",MFTk1J6dD:true,variant:\"TZUt4cyyI\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1khn87f\",\"data-styles-preset\":\"UgheUOojp\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, rgb(255, 255, 247) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:\"Connect with Your Ideal Customers effortlessly\"})})}),className:\"framer-u1hikx\",\"data-framer-name\":\"Top\u2013notch designs, delivered at your doorstep.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-buu68m\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5xq0w5\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12kw9vu\",\"data-border\":true,\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dfq98d\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eey1ef\",\"data-framer-name\":\"Icon-container\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dsfpgi\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:100,intrinsicWidth:100,svg:'<svg width=\"100\" height=\"100\" viewBox=\"0 0 100 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"50\" cy=\"50\" r=\"49\" fill=\"#131313\" fill-opacity=\"0.89\" stroke=\"url(#paint0_linear_666_3283)\" stroke-width=\"2\"/>\\n<g clip-path=\"url(#clip0_666_3283)\">\\n<path d=\"M72.2884 37.8045C71.9688 37.2463 71.5009 36.7875 70.9366 36.4788L51.68 25.9373C51.1653 25.6543 50.5874 25.5059 50 25.5059C49.4126 25.5059 48.8347 25.6543 48.32 25.9373L29.07 36.4766C28.5057 36.7853 28.0378 37.2441 27.7181 37.8023C27.4134 38.3306 27.2521 38.9293 27.25 39.5391V60.4604C27.2514 61.087 27.4211 61.7018 27.7412 62.2405C28.0614 62.7792 28.5203 63.2221 29.07 63.5229L48.32 74.0601C48.8343 74.3443 49.4124 74.4933 50 74.4933C50.5876 74.4933 51.1657 74.3443 51.68 74.0601L70.93 63.5229C71.4797 63.2221 71.9386 62.7792 72.2588 62.2405C72.5789 61.7018 72.7486 61.087 72.75 60.4604V39.5391C72.7496 38.9306 72.5905 38.3327 72.2884 37.8045ZM48.25 70.0395L41.25 66.207V55.2498C41.2493 54.9364 41.1645 54.629 41.0044 54.3597C40.8443 54.0903 40.6149 53.8689 40.34 53.7185L30.75 48.4685V41.4685L48.25 51.0498V70.0395ZM50 48.0048L32.6444 38.5023L40.1869 34.3745L49.1556 39.2854C49.4132 39.4263 49.702 39.5002 49.9956 39.5002C50.2892 39.5002 50.5781 39.4263 50.8356 39.2854L59.8044 34.3745L67.3469 38.5023L50 48.0048ZM69.25 48.4641L59.66 53.7141C59.3851 53.8645 59.1557 54.086 58.9956 54.3553C58.8355 54.6247 58.7507 54.9321 58.75 55.2454V66.2026L51.75 70.0351V51.0366L69.25 41.4554V48.4641Z\" fill=\"#BDFF02\"/>\\n<path d=\"M70.6965 36.9174L70.6966 36.9175C71.1799 37.1818 71.5806 37.5747 71.8544 38.0526C72.1133 38.5054 72.2496 39.0179 72.25 39.5395V60.4593C72.2488 60.9964 72.1034 61.5233 71.829 61.9851C71.5546 62.4468 71.1612 62.8264 70.69 63.0843L70.6899 63.0843L51.4399 73.6215L51.4382 73.6224C50.9979 73.8657 50.5031 73.9933 50 73.9933C49.4969 73.9933 49.0021 73.8657 48.5618 73.6224L48.5601 73.6215L29.3101 63.0843L29.31 63.0843C28.8388 62.8264 28.4454 62.4468 28.171 61.9851C27.8967 61.5235 27.7513 60.9967 27.75 60.4598V39.54C27.7519 39.0176 27.8902 38.5047 28.1512 38.0521L28.152 38.0507C28.4258 37.5727 28.8266 37.1797 29.3099 36.9153L29.3101 36.9152L48.5601 26.3758L48.5609 26.3754C49.0018 26.133 49.4968 26.0059 50 26.0059C50.5032 26.0059 50.9982 26.133 51.4391 26.3754L51.4399 26.3758L70.6965 36.9174Z\" stroke=\"url(#paint1_linear_666_3283)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_666_3283\" x1=\"2.95082\" y1=\"4.59911e-07\" x2=\"71.6624\" y2=\"77.4311\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#292929\"/>\\n<stop offset=\"1\" stop-color=\"#292929\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_666_3283\" x1=\"40\" y1=\"28.5\" x2=\"58\" y2=\"61\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EEFFB5\"/>\\n<stop offset=\"1\" stop-color=\"#6DF502\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_666_3283\">\\n<rect width=\"56\" height=\"56\" fill=\"white\" transform=\"translate(22 22)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1alvxfw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:\"Tell us your vision\"})}),className:\"framer-z62eqx\",\"data-framer-name\":\"Tell us your vision\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"Tell us your revenue goals and how many appointments you want to book every month\"})}),className:\"framer-se85op\",\"data-framer-name\":\"Choose a plan and share your design project details with us: we\u2019re here to listen.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition33},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uhtd6a\",\"data-border\":true,\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w3ywv8\",\"data-framer-name\":\"Icon-container\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b2outx\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:100,intrinsicWidth:100,svg:'<svg width=\"100\" height=\"100\" viewBox=\"0 0 100 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"50\" cy=\"50\" r=\"49\" fill=\"#131313\" fill-opacity=\"0.89\" stroke=\"url(#paint0_linear_666_3293)\" stroke-width=\"2\"/>\\n<g clip-path=\"url(#clip0_666_3293)\">\\n<path d=\"M74.5005 57.0005C74.4978 61.3615 72.867 65.5645 69.9274 68.7859C66.9877 72.0073 62.9512 74.0151 58.6086 74.4158C54.266 74.8166 49.9302 73.5815 46.4507 70.9524C42.9712 68.3234 40.5987 64.4899 39.798 60.203C42.5911 60.7225 45.4687 60.5542 48.1822 59.7125C50.8957 58.8709 53.3635 57.3813 55.3724 55.3724C57.3813 53.3635 58.8709 50.8957 59.7125 48.1822C60.5542 45.4687 60.7225 42.5911 60.203 39.798C64.2194 40.5456 67.8476 42.6749 70.4589 45.8167C73.0702 48.9586 74.5 52.9151 74.5005 57.0005ZM57.0005 39.5005C58.0748 39.5015 59.1468 39.6011 60.203 39.798C59.6201 36.6642 58.1924 33.7491 56.0739 31.3674C53.9554 28.9857 51.2267 27.2278 48.1822 26.2835C45.1377 25.3393 41.8932 25.2445 38.7988 26.0093C35.7044 26.7742 32.8776 28.3697 30.6237 30.6237C28.3697 32.8776 26.7742 35.7044 26.0093 38.7988C25.2445 41.8932 25.3393 45.1377 26.2835 48.1822C27.2278 51.2267 28.9857 53.9554 31.3674 56.0739C33.7491 58.1924 36.6642 59.6201 39.798 60.203C39.3278 57.6771 39.4196 55.0787 40.0668 52.5922C40.714 50.1058 41.9007 47.7924 43.5427 45.8163C45.1848 43.8402 47.2418 42.2499 49.5676 41.1583C51.8935 40.0668 54.4312 39.5008 57.0005 39.5005Z\" fill=\"#BDFF02\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_666_3293\" x1=\"2.95082\" y1=\"4.59911e-07\" x2=\"71.6624\" y2=\"77.4311\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#292929\"/>\\n<stop offset=\"1\" stop-color=\"#292929\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_666_3293\">\\n<rect width=\"56\" height=\"56\" fill=\"white\" transform=\"translate(22 22)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fjuqdi\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:\"Receive the magic\"})}),className:\"framer-1nuzmo9\",\"data-framer-name\":\"Receive the magic\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:[\"Sit back and relax: we will turn your vision into reality.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-1muvvkc\",\"data-framer-name\":\"Sit back and relax: our expert designers will turn your vision into reality.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition34},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17vrhia\",\"data-border\":true,\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2j14sk\",\"data-framer-name\":\"Icon-container\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pv2upr\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:100,intrinsicWidth:100,svg:'<svg width=\"100\" height=\"100\" viewBox=\"0 0 100 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"50\" cy=\"50\" r=\"49\" fill=\"#131313\" fill-opacity=\"0.89\" stroke=\"url(#paint0_linear_666_3302)\" stroke-width=\"2\"/>\\n<g clip-path=\"url(#clip0_666_3302)\">\\n<path d=\"M49.6543 27.2497C37.4721 27.4356 27.5146 37.3318 27.2499 49.5206C27.1572 53.6203 28.1794 57.6683 30.2074 61.2325C30.2871 61.3718 30.4035 61.4865 30.544 61.5641C30.6845 61.6417 30.8436 61.6791 31.004 61.6724C31.1643 61.6656 31.3197 61.6148 31.4531 61.5257C31.5866 61.4365 31.6929 61.3124 31.7606 61.1668C33.4035 57.6775 34.2529 53.8674 34.2477 50.0106C34.2439 47.6483 34.7732 45.3155 35.7962 43.1861C36.8192 41.0568 38.3095 39.1858 40.1562 37.7125C40.3373 37.5708 40.5445 37.4663 40.7661 37.4048C40.9876 37.3432 41.2191 37.3259 41.4473 37.3539C41.6755 37.3818 41.896 37.4544 42.0961 37.5675C42.2963 37.6807 42.4722 37.8321 42.6138 38.0132C42.7555 38.1944 42.86 38.4016 42.9215 38.6231C42.9831 38.8447 43.0004 39.0762 42.9724 39.3044C42.9445 39.5326 42.8719 39.7531 42.7588 39.9532C42.6456 40.1534 42.4942 40.3293 42.3131 40.4709C40.8855 41.6178 39.7341 43.071 38.9443 44.7231C38.1544 46.3752 37.7462 48.1838 37.7499 50.015C37.7557 55.2687 36.3627 60.4293 33.714 64.9665C33.6158 65.1332 33.5757 65.3278 33.5998 65.5198C33.6239 65.7117 33.711 65.8903 33.8474 66.0275C34.2849 66.465 34.7421 66.9025 35.2146 67.3006C35.3115 67.3819 35.4248 67.4413 35.5468 67.4747C35.6688 67.508 35.7965 67.5145 35.9213 67.4937C36.046 67.4729 36.1648 67.4253 36.2694 67.3542C36.374 67.2831 36.4619 67.1902 36.5271 67.0818C38.4637 63.8669 39.8388 60.3458 40.5937 56.6693C40.6862 56.2145 40.9556 55.815 41.3427 55.5588C41.7298 55.3027 42.2027 55.2107 42.6576 55.3032C43.1124 55.3958 43.5119 55.6652 43.7681 56.0523C44.0243 56.4393 44.1162 56.9123 44.0237 57.3672C43.1775 61.5155 41.618 65.4856 39.4146 69.1009C39.3525 69.2037 39.3122 69.3182 39.2962 69.4372C39.2802 69.5562 39.2889 69.6773 39.3217 69.7928C39.3546 69.9083 39.4108 70.0159 39.487 70.1087C39.5632 70.2016 39.6577 70.2777 39.7646 70.3325C40.3049 70.6059 40.8584 70.8597 41.4206 71.0915C41.6147 71.1747 41.8323 71.1849 42.0333 71.1201C42.2344 71.0554 42.4052 70.9202 42.5143 70.7393C46.2725 64.497 48.2556 57.3473 48.2499 50.0609C48.2454 49.6117 48.4105 49.1773 48.7122 48.8444C49.0138 48.5115 49.4299 48.3046 49.8774 48.265C50.1173 48.2481 50.3581 48.2809 50.5848 48.3613C50.8115 48.4417 51.0191 48.5679 51.1948 48.7321C51.3705 48.8963 51.5105 49.095 51.606 49.3157C51.7015 49.5364 51.7505 49.7745 51.7499 50.015C51.7586 57.4545 49.8599 64.772 46.2352 71.2687C46.1655 71.3931 46.1272 71.5327 46.1237 71.6754C46.1202 71.818 46.1517 71.9593 46.2153 72.0869C46.2789 72.2146 46.3728 72.3248 46.4887 72.4079C46.6047 72.491 46.7392 72.5445 46.8806 72.5637C47.5441 72.6556 48.2157 72.7183 48.8952 72.7518C49.0586 72.7579 49.2204 72.7181 49.3623 72.6369C49.5042 72.5557 49.6205 72.4364 49.6981 72.2925C53.3361 65.4873 55.2428 57.8912 55.2499 50.1747C55.2609 47.2762 52.9968 44.8175 50.1006 44.7628C49.4038 44.7494 48.7114 44.8749 48.0636 45.1319C47.4158 45.389 46.8257 45.7724 46.3277 46.2598C45.8297 46.7473 45.4337 47.329 45.1628 47.9711C44.8919 48.6132 44.7515 49.3028 44.7499 49.9997C44.7467 50.4367 44.5821 50.8571 44.2878 51.1801C43.9934 51.5031 43.5901 51.706 43.1552 51.7497C42.9127 51.7713 42.6683 51.742 42.4378 51.6638C42.2072 51.5856 41.9955 51.4601 41.8161 51.2954C41.6368 51.1307 41.4938 50.9304 41.3963 50.7073C41.2988 50.4841 41.249 50.2431 41.2499 49.9997C41.2499 48.8428 41.4792 47.6974 41.9247 46.6298C42.3701 45.5622 43.0229 44.5935 43.8451 43.7798C44.6674 42.966 45.6429 42.3234 46.7151 41.8892C47.7873 41.4549 48.935 41.2375 50.0918 41.2497C54.9043 41.3 58.7718 45.4431 58.7477 50.2534C58.7264 57.3884 57.1967 64.4384 54.259 70.9406C54.1922 71.0904 54.1689 71.2559 54.1917 71.4183C54.2144 71.5806 54.2823 71.7334 54.3877 71.859C54.4931 71.9847 54.6316 72.0782 54.7875 72.1289C54.9435 72.1796 55.1105 72.1855 55.2696 72.1459C56.0285 71.966 56.7777 71.7469 57.514 71.4897C57.6288 71.4489 57.7337 71.3847 57.8223 71.3011C57.9108 71.2175 57.9809 71.1163 58.0281 71.004C59.0467 68.5899 59.8861 66.104 60.5393 63.5665C60.5968 63.3439 60.6975 63.1348 60.8358 62.9511C60.9741 62.7674 61.1472 62.6127 61.3452 62.4959C61.5433 62.3791 61.7624 62.3025 61.99 62.2703C62.2177 62.2382 62.4495 62.2513 62.6721 62.3087C62.8947 62.3662 63.1039 62.4669 63.2876 62.6052C63.4713 62.7435 63.6259 62.9166 63.7427 63.1146C63.8595 63.3127 63.9362 63.5318 63.9683 63.7595C64.0004 63.9871 63.9874 64.2189 63.9299 64.4415C63.7666 65.0788 63.5916 65.7132 63.4049 66.3447C63.35 66.5265 63.3557 66.7212 63.4212 66.8995C63.4867 67.0778 63.6084 67.2299 63.768 67.3329C63.9276 67.4359 64.1163 67.4842 64.3057 67.4705C64.4952 67.4568 64.675 67.3818 64.8181 67.2568C68.3655 64.2106 70.8882 60.1453 72.0427 55.6142C73.1972 51.0831 72.9275 46.3063 71.2702 41.934C69.613 37.5616 66.6488 33.8061 62.7809 31.1786C58.9131 28.5511 54.3296 27.1792 49.6543 27.2497ZM65.3124 57.2359C65.2592 57.6582 65.054 58.0466 64.7351 58.3284C64.4162 58.6103 64.0055 58.7662 63.5799 58.7672C63.5068 58.7671 63.4338 58.7628 63.3612 58.754C63.1331 58.7256 62.9128 58.6526 62.7129 58.539C62.5131 58.4255 62.3375 58.2737 62.1963 58.0923C62.0552 57.9109 61.9511 57.7034 61.8901 57.4818C61.8291 57.2602 61.8124 57.0287 61.8409 56.8006C62.1199 54.5509 62.2601 52.2862 62.2609 50.0193C62.2562 46.7719 60.9641 43.6587 58.6678 41.3624C56.3715 39.0661 53.2583 37.774 50.0109 37.7693C49.499 37.7691 48.9876 37.8005 48.4796 37.8634C48.0187 37.9214 47.5536 37.794 47.1866 37.509C46.8197 37.2241 46.5809 36.8051 46.5229 36.3442C46.4649 35.8832 46.5923 35.4181 46.8773 35.0512C47.1622 34.6842 47.5812 34.4455 48.0421 34.3875C50.2595 34.1116 52.5102 34.3101 54.6451 34.9698C56.78 35.6294 58.7503 36.7352 60.4256 38.2138C62.1009 39.6924 63.4429 41.5101 64.3627 43.5465C65.2825 45.5828 65.7591 47.7914 65.7609 50.0259C65.7603 52.4362 65.6106 54.8441 65.3124 57.2359Z\" fill=\"#BDFF02\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_666_3302\" x1=\"2.95082\" y1=\"4.59911e-07\" x2=\"71.6624\" y2=\"77.4311\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#292929\"/>\\n<stop offset=\"1\" stop-color=\"#292929\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_666_3302\">\\n<rect width=\"56\" height=\"56\" fill=\"white\" transform=\"translate(22 22)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cro1gw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:\"Get ongoing support\"})}),className:\"framer-1kb3eq2\",\"data-framer-name\":\"Get ongoing support\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"Keep getting updates daily when we book appointment right in your calender\"})}),className:\"framer-1ars2s0\",\"data-framer-name\":\"Your subscription ensures you have continuous access to our design team.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation24,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qeinak\",\"data-framer-name\":\"Section Separator\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wdfcm6\",\"data-framer-name\":\"Separator Line\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:1402,svg:'<svg width=\"1402\" height=\"3\" viewBox=\"-1 -1 1402 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"1400\" y2=\"0.5\" stroke=\"url(#paint0_linear_681_1774)\" stroke-opacity=\"0.3\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_681_1774\" x1=\"0\" y1=\"1\" x2=\"1400\" y2=\"1\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"0.536458\" stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1m2fi8e\",\"data-framer-name\":\"Socials & Metrics\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2qqb0z\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xuav5a\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition37},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pvl3tv\",\"data-framer-name\":\"Quote Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{background:{alt:\"TechXR.co\",fit:\"fill\",intrinsicHeight:72,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+5003.8+60+0+0+0+0+0+0+0),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/P6ITdTBt1a5kQoFQxzwnAWwIHjo.png\"}},u6R6NsvSc:{background:{alt:\"TechXR.co\",fit:\"fill\",intrinsicHeight:72,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+3379+80+0+0+0+0+0+0),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/P6ITdTBt1a5kQoFQxzwnAWwIHjo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"TechXR.co\",fit:\"fill\",intrinsicHeight:72,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+3235.6+96+0+0+0+0+0+0),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/P6ITdTBt1a5kQoFQxzwnAWwIHjo.png\"},className:\"framer-q4edr3\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:'\"Ani from GroomLead led our Outbound infrastructure development, enabling reaching 500 people daily for more meetings.\"'})}),className:\"framer-1iq3e0t\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mnaj6f\",\"data-framer-name\":\"Avatar and text\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10bj6bj\",\"data-framer-name\":\"Stars\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:117,svg:'<svg width=\"117\" height=\"20\" viewBox=\"0 0 117 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_679_5932)\">\\n<path d=\"M9.87232 1.60996C10.0431 1.19932 10.6248 1.19932 10.7956 1.60996L12.8617 6.57744C12.9337 6.75056 13.0965 6.86885 13.2834 6.88383L18.6462 7.31376C19.0896 7.3493 19.2693 7.90256 18.9316 8.19189L14.8457 11.6919C14.7033 11.8139 14.6411 12.0053 14.6846 12.1876L15.9329 17.4208C16.0361 17.8534 15.5655 18.1954 15.1859 17.9635L10.5946 15.1592C10.4346 15.0615 10.2334 15.0615 10.0734 15.1592L5.48204 17.9635C5.10249 18.1954 4.63187 17.8534 4.73506 17.4208L5.98337 12.1876C6.02687 12.0053 5.96469 11.8139 5.82229 11.6919L1.7364 8.19189C1.39863 7.90256 1.57839 7.3493 2.02172 7.31376L7.38453 6.88383C7.57142 6.86885 7.73423 6.75056 7.80623 6.57744L9.87232 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip1_679_5932)\">\\n<path d=\"M9.87232 1.60996C10.0431 1.19932 10.6248 1.19932 10.7956 1.60996L12.8617 6.57744C12.9337 6.75056 13.0965 6.86885 13.2834 6.88383L18.6462 7.31376C19.0896 7.3493 19.2693 7.90256 18.9316 8.19189L14.8457 11.6919C14.7033 11.8139 14.6411 12.0053 14.6846 12.1876L15.9329 17.4208C16.0361 17.8534 15.5655 18.1954 15.1859 17.9635L10.5946 15.1592C10.4346 15.0615 10.2334 15.0615 10.0734 15.1592L5.48204 17.9635C5.10249 18.1954 4.63187 17.8534 4.73506 17.4208L5.98337 12.1876C6.02687 12.0053 5.96469 11.8139 5.82229 11.6919L1.7364 8.19189C1.39863 7.90256 1.57839 7.3493 2.02172 7.31376L7.38453 6.88383C7.57142 6.86885 7.73423 6.75056 7.80623 6.57744L9.87232 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip2_679_5932)\">\\n<path d=\"M33.8723 1.60996C34.0431 1.19932 34.6248 1.19932 34.7956 1.60996L36.8617 6.57744C36.9337 6.75056 37.0965 6.86885 37.2834 6.88383L42.6462 7.31376C43.0896 7.3493 43.2693 7.90256 42.9316 8.19189L38.8457 11.6919C38.7033 11.8139 38.6411 12.0053 38.6846 12.1876L39.9329 17.4208C40.0361 17.8534 39.5655 18.1954 39.1859 17.9635L34.5946 15.1592C34.4346 15.0615 34.2334 15.0615 34.0734 15.1592L29.482 17.9635C29.1025 18.1954 28.6319 17.8534 28.7351 17.4208L29.9834 12.1876C30.0269 12.0053 29.9647 11.8139 29.8223 11.6919L25.7364 8.19189C25.3986 7.90256 25.5784 7.3493 26.0217 7.31376L31.3845 6.88383C31.5714 6.86885 31.7342 6.75056 31.8062 6.57744L33.8723 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip3_679_5932)\">\\n<path d=\"M33.8723 1.60996C34.0431 1.19932 34.6248 1.19932 34.7956 1.60996L36.8617 6.57744C36.9337 6.75056 37.0965 6.86885 37.2834 6.88383L42.6462 7.31376C43.0896 7.3493 43.2693 7.90256 42.9316 8.19189L38.8457 11.6919C38.7033 11.8139 38.6411 12.0053 38.6846 12.1876L39.9329 17.4208C40.0361 17.8534 39.5655 18.1954 39.1859 17.9635L34.5946 15.1592C34.4346 15.0615 34.2334 15.0615 34.0734 15.1592L29.482 17.9635C29.1025 18.1954 28.6319 17.8534 28.7351 17.4208L29.9834 12.1876C30.0269 12.0053 29.9647 11.8139 29.8223 11.6919L25.7364 8.19189C25.3986 7.90256 25.5784 7.3493 26.0217 7.31376L31.3845 6.88383C31.5714 6.86885 31.7342 6.75056 31.8062 6.57744L33.8723 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip4_679_5932)\">\\n<path d=\"M57.8723 1.60996C58.0431 1.19932 58.6248 1.19932 58.7956 1.60996L60.8617 6.57744C60.9337 6.75056 61.0965 6.86885 61.2834 6.88383L66.6462 7.31376C67.0896 7.3493 67.2693 7.90256 66.9316 8.19189L62.8457 11.6919C62.7033 11.8139 62.6411 12.0053 62.6846 12.1876L63.9329 17.4208C64.0361 17.8534 63.5655 18.1954 63.1859 17.9635L58.5946 15.1592C58.4346 15.0615 58.2334 15.0615 58.0734 15.1592L53.482 17.9635C53.1025 18.1954 52.6319 17.8534 52.7351 17.4208L53.9834 12.1876C54.0269 12.0053 53.9647 11.8139 53.8223 11.6919L49.7364 8.19189C49.3986 7.90256 49.5784 7.3493 50.0217 7.31376L55.3845 6.88383C55.5714 6.86885 55.7342 6.75056 55.8062 6.57744L57.8723 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip5_679_5932)\">\\n<path d=\"M57.8723 1.60996C58.0431 1.19932 58.6248 1.19932 58.7956 1.60996L60.8617 6.57744C60.9337 6.75056 61.0965 6.86885 61.2834 6.88383L66.6462 7.31376C67.0896 7.3493 67.2693 7.90256 66.9316 8.19189L62.8457 11.6919C62.7033 11.8139 62.6411 12.0053 62.6846 12.1876L63.9329 17.4208C64.0361 17.8534 63.5655 18.1954 63.1859 17.9635L58.5946 15.1592C58.4346 15.0615 58.2334 15.0615 58.0734 15.1592L53.482 17.9635C53.1025 18.1954 52.6319 17.8534 52.7351 17.4208L53.9834 12.1876C54.0269 12.0053 53.9647 11.8139 53.8223 11.6919L49.7364 8.19189C49.3986 7.90256 49.5784 7.3493 50.0217 7.31376L55.3845 6.88383C55.5714 6.86885 55.7342 6.75056 55.8062 6.57744L57.8723 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip6_679_5932)\">\\n<path d=\"M81.8723 1.60996C82.0431 1.19932 82.6248 1.19932 82.7956 1.60996L84.8617 6.57744C84.9337 6.75056 85.0965 6.86885 85.2834 6.88383L90.6462 7.31376C91.0896 7.3493 91.2693 7.90256 90.9316 8.19189L86.8457 11.6919C86.7033 11.8139 86.6411 12.0053 86.6846 12.1876L87.9329 17.4208C88.0361 17.8534 87.5655 18.1954 87.1859 17.9635L82.5946 15.1592C82.4346 15.0615 82.2334 15.0615 82.0734 15.1592L77.482 17.9635C77.1025 18.1954 76.6319 17.8534 76.7351 17.4208L77.9834 12.1876C78.0269 12.0053 77.9647 11.8139 77.8223 11.6919L73.7364 8.19189C73.3986 7.90256 73.5784 7.3493 74.0217 7.31376L79.3845 6.88383C79.5714 6.86885 79.7342 6.75056 79.8062 6.57744L81.8723 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip7_679_5932)\">\\n<path d=\"M81.8723 1.60996C82.0431 1.19932 82.6248 1.19932 82.7956 1.60996L84.8617 6.57744C84.9337 6.75056 85.0965 6.86885 85.2834 6.88383L90.6462 7.31376C91.0896 7.3493 91.2693 7.90256 90.9316 8.19189L86.8457 11.6919C86.7033 11.8139 86.6411 12.0053 86.6846 12.1876L87.9329 17.4208C88.0361 17.8534 87.5655 18.1954 87.1859 17.9635L82.5946 15.1592C82.4346 15.0615 82.2334 15.0615 82.0734 15.1592L77.482 17.9635C77.1025 18.1954 76.6319 17.8534 76.7351 17.4208L77.9834 12.1876C78.0269 12.0053 77.9647 11.8139 77.8223 11.6919L73.7364 8.19189C73.3986 7.90256 73.5784 7.3493 74.0217 7.31376L79.3845 6.88383C79.5714 6.86885 79.7342 6.75056 79.8062 6.57744L81.8723 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip8_679_5932)\">\\n<path d=\"M105.872 1.60996C106.043 1.19932 106.625 1.19932 106.796 1.60996L108.862 6.57744C108.934 6.75056 109.097 6.86885 109.283 6.88383L114.646 7.31376C115.09 7.3493 115.269 7.90256 114.932 8.19189L110.846 11.6919C110.703 11.8139 110.641 12.0053 110.685 12.1876L111.933 17.4208C112.036 17.8534 111.565 18.1954 111.186 17.9635L106.595 15.1592C106.435 15.0615 106.233 15.0615 106.073 15.1592L101.482 17.9635C101.102 18.1954 100.632 17.8534 100.735 17.4208L101.983 12.1876C102.027 12.0053 101.965 11.8139 101.822 11.6919L97.7364 8.19189C97.3986 7.90256 97.5784 7.3493 98.0217 7.31376L103.385 6.88383C103.571 6.86885 103.734 6.75056 103.806 6.57744L105.872 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip9_679_5932)\">\\n<path d=\"M105.872 1.60996C106.043 1.19932 106.625 1.19932 106.796 1.60996L108.862 6.57744C108.934 6.75056 109.097 6.86885 109.283 6.88383L114.646 7.31376C115.09 7.3493 115.269 7.90256 114.932 8.19189L110.846 11.6919C110.703 11.8139 110.641 12.0053 110.685 12.1876L111.933 17.4208C112.036 17.8534 111.565 18.1954 111.186 17.9635L106.595 15.1592C106.435 15.0615 106.233 15.0615 106.073 15.1592L101.482 17.9635C101.102 18.1954 100.632 17.8534 100.735 17.4208L101.983 12.1876C102.027 12.0053 101.965 11.8139 101.822 11.6919L97.7364 8.19189C97.3986 7.90256 97.5784 7.3493 98.0217 7.31376L103.385 6.88383C103.571 6.86885 103.734 6.75056 103.806 6.57744L105.872 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(0.333984)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(0.333984)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(24.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(24.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(48.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(48.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip6_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(72.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip7_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(72.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip8_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(96.334)\"/>\\n</clipPath>\\n<clipPath id=\"clip9_679_5932\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(96.334)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17821zk\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"Lakshya Daga\"})}),className:\"framer-1a2horl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(255, 255, 255))\"},children:\"Chief Executive Officer, Truleague\"})}),className:\"framer-lf8n5n\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition38},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1iqxkf\",\"data-framer-name\":\"Quote Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{background:{alt:\"Digtal Healthcare Solutions\",fit:\"fill\",intrinsicHeight:118,intrinsicWidth:284,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+5003.8+60+0+0+0+0+646+0+0),pixelHeight:169,pixelWidth:924,sizes:\"280px\",src:\"https://framerusercontent.com/images/UCLBtFoFDjge9G2WlxoFzx6Sl0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UCLBtFoFDjge9G2WlxoFzx6Sl0.png?scale-down-to=512 512w,https://framerusercontent.com/images/UCLBtFoFDjge9G2WlxoFzx6Sl0.png 924w\"}},u6R6NsvSc:{background:{alt:\"Digtal Healthcare Solutions\",fit:\"fill\",intrinsicHeight:118,intrinsicWidth:284,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+3379+80+0+0+0+0+0+0),pixelHeight:169,pixelWidth:924,sizes:\"188px\",src:\"https://framerusercontent.com/images/UCLBtFoFDjge9G2WlxoFzx6Sl0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UCLBtFoFDjge9G2WlxoFzx6Sl0.png?scale-down-to=512 512w,https://framerusercontent.com/images/UCLBtFoFDjge9G2WlxoFzx6Sl0.png 924w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Digtal Healthcare Solutions\",fit:\"fill\",intrinsicHeight:118,intrinsicWidth:284,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+3235.6+96+0+0+0+0+0+0),pixelHeight:169,pixelWidth:924,sizes:\"335px\",src:\"https://framerusercontent.com/images/UCLBtFoFDjge9G2WlxoFzx6Sl0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UCLBtFoFDjge9G2WlxoFzx6Sl0.png?scale-down-to=512 512w,https://framerusercontent.com/images/UCLBtFoFDjge9G2WlxoFzx6Sl0.png 924w\"},className:\"framer-izq7lo\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:'\"In just 45 days, Ani and GroomLead booked 10 meetings for me through their cold email outreach. The quality of the leads was impressive, connecting me with the right decision-makers. I\\'m genuinely pleased with the results!\"'})}),className:\"framer-p7g3zn\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cvgjb2\",\"data-framer-name\":\"Avatar and text\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wwaf66\",\"data-framer-name\":\"Stars\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:116,svg:'<svg width=\"116\" height=\"20\" viewBox=\"0 0 116 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_679_6006)\">\\n<path d=\"M9.53834 1.60996C9.70914 1.19932 10.2909 1.19932 10.4617 1.60996L12.5278 6.57744C12.5998 6.75056 12.7626 6.86885 12.9495 6.88383L18.3123 7.31376C18.7556 7.3493 18.9354 7.90256 18.5976 8.19189L14.5117 11.6919C14.3693 11.8139 14.3071 12.0053 14.3506 12.1876L15.5989 17.4208C15.7021 17.8534 15.2315 18.1954 14.8519 17.9635L10.2606 15.1592C10.1006 15.0615 9.89938 15.0615 9.73937 15.1592L5.14806 17.9635C4.76851 18.1954 4.29788 17.8534 4.40108 17.4208L5.64939 12.1876C5.69289 12.0053 5.6307 11.8139 5.48831 11.6919L1.40241 8.19189C1.06464 7.90256 1.24441 7.3493 1.68773 7.31376L7.05054 6.88383C7.23744 6.86885 7.40024 6.75056 7.47225 6.57744L9.53834 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip1_679_6006)\">\\n<path d=\"M9.53834 1.60996C9.70914 1.19932 10.2909 1.19932 10.4617 1.60996L12.5278 6.57744C12.5998 6.75056 12.7626 6.86885 12.9495 6.88383L18.3123 7.31376C18.7556 7.3493 18.9354 7.90256 18.5976 8.19189L14.5117 11.6919C14.3693 11.8139 14.3071 12.0053 14.3506 12.1876L15.5989 17.4208C15.7021 17.8534 15.2315 18.1954 14.8519 17.9635L10.2606 15.1592C10.1006 15.0615 9.89938 15.0615 9.73937 15.1592L5.14806 17.9635C4.76851 18.1954 4.29788 17.8534 4.40108 17.4208L5.64939 12.1876C5.69289 12.0053 5.6307 11.8139 5.48831 11.6919L1.40241 8.19189C1.06464 7.90256 1.24441 7.3493 1.68773 7.31376L7.05054 6.88383C7.23744 6.86885 7.40024 6.75056 7.47225 6.57744L9.53834 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip2_679_6006)\">\\n<path d=\"M33.5383 1.60996C33.7091 1.19932 34.2909 1.19932 34.4617 1.60996L36.5278 6.57744C36.5998 6.75056 36.7626 6.86885 36.9495 6.88383L42.3123 7.31376C42.7556 7.3493 42.9354 7.90256 42.5976 8.19189L38.5117 11.6919C38.3693 11.8139 38.3071 12.0053 38.3506 12.1876L39.5989 17.4208C39.7021 17.8534 39.2315 18.1954 38.8519 17.9635L34.2606 15.1592C34.1006 15.0615 33.8994 15.0615 33.7394 15.1592L29.1481 17.9635C28.7685 18.1954 28.2979 17.8534 28.4011 17.4208L29.6494 12.1876C29.6929 12.0053 29.6307 11.8139 29.4883 11.6919L25.4024 8.19189C25.0646 7.90256 25.2444 7.3493 25.6877 7.31376L31.0505 6.88383C31.2374 6.86885 31.4002 6.75056 31.4722 6.57744L33.5383 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip3_679_6006)\">\\n<path d=\"M33.5383 1.60996C33.7091 1.19932 34.2909 1.19932 34.4617 1.60996L36.5278 6.57744C36.5998 6.75056 36.7626 6.86885 36.9495 6.88383L42.3123 7.31376C42.7556 7.3493 42.9354 7.90256 42.5976 8.19189L38.5117 11.6919C38.3693 11.8139 38.3071 12.0053 38.3506 12.1876L39.5989 17.4208C39.7021 17.8534 39.2315 18.1954 38.8519 17.9635L34.2606 15.1592C34.1006 15.0615 33.8994 15.0615 33.7394 15.1592L29.1481 17.9635C28.7685 18.1954 28.2979 17.8534 28.4011 17.4208L29.6494 12.1876C29.6929 12.0053 29.6307 11.8139 29.4883 11.6919L25.4024 8.19189C25.0646 7.90256 25.2444 7.3493 25.6877 7.31376L31.0505 6.88383C31.2374 6.86885 31.4002 6.75056 31.4722 6.57744L33.5383 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip4_679_6006)\">\\n<path d=\"M57.5383 1.60996C57.7091 1.19932 58.2909 1.19932 58.4617 1.60996L60.5278 6.57744C60.5998 6.75056 60.7626 6.86885 60.9495 6.88383L66.3123 7.31376C66.7556 7.3493 66.9354 7.90256 66.5976 8.19189L62.5117 11.6919C62.3693 11.8139 62.3071 12.0053 62.3506 12.1876L63.5989 17.4208C63.7021 17.8534 63.2315 18.1954 62.8519 17.9635L58.2606 15.1592C58.1006 15.0615 57.8994 15.0615 57.7394 15.1592L53.1481 17.9635C52.7685 18.1954 52.2979 17.8534 52.4011 17.4208L53.6494 12.1876C53.6929 12.0053 53.6307 11.8139 53.4883 11.6919L49.4024 8.19189C49.0646 7.90256 49.2444 7.3493 49.6877 7.31376L55.0505 6.88383C55.2374 6.86885 55.4002 6.75056 55.4722 6.57744L57.5383 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip5_679_6006)\">\\n<path d=\"M57.5383 1.60996C57.7091 1.19932 58.2909 1.19932 58.4617 1.60996L60.5278 6.57744C60.5998 6.75056 60.7626 6.86885 60.9495 6.88383L66.3123 7.31376C66.7556 7.3493 66.9354 7.90256 66.5976 8.19189L62.5117 11.6919C62.3693 11.8139 62.3071 12.0053 62.3506 12.1876L63.5989 17.4208C63.7021 17.8534 63.2315 18.1954 62.8519 17.9635L58.2606 15.1592C58.1006 15.0615 57.8994 15.0615 57.7394 15.1592L53.1481 17.9635C52.7685 18.1954 52.2979 17.8534 52.4011 17.4208L53.6494 12.1876C53.6929 12.0053 53.6307 11.8139 53.4883 11.6919L49.4024 8.19189C49.0646 7.90256 49.2444 7.3493 49.6877 7.31376L55.0505 6.88383C55.2374 6.86885 55.4002 6.75056 55.4722 6.57744L57.5383 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip6_679_6006)\">\\n<path d=\"M81.5383 1.60996C81.7091 1.19932 82.2909 1.19932 82.4617 1.60996L84.5278 6.57744C84.5998 6.75056 84.7626 6.86885 84.9495 6.88383L90.3123 7.31376C90.7556 7.3493 90.9354 7.90256 90.5976 8.19189L86.5117 11.6919C86.3693 11.8139 86.3071 12.0053 86.3506 12.1876L87.5989 17.4208C87.7021 17.8534 87.2315 18.1954 86.8519 17.9635L82.2606 15.1592C82.1006 15.0615 81.8994 15.0615 81.7394 15.1592L77.1481 17.9635C76.7685 18.1954 76.2979 17.8534 76.4011 17.4208L77.6494 12.1876C77.6929 12.0053 77.6307 11.8139 77.4883 11.6919L73.4024 8.19189C73.0646 7.90256 73.2444 7.3493 73.6877 7.31376L79.0505 6.88383C79.2374 6.86885 79.4002 6.75056 79.4722 6.57744L81.5383 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip7_679_6006)\">\\n<path d=\"M81.5383 1.60996C81.7091 1.19932 82.2909 1.19932 82.4617 1.60996L84.5278 6.57744C84.5998 6.75056 84.7626 6.86885 84.9495 6.88383L90.3123 7.31376C90.7556 7.3493 90.9354 7.90256 90.5976 8.19189L86.5117 11.6919C86.3693 11.8139 86.3071 12.0053 86.3506 12.1876L87.5989 17.4208C87.7021 17.8534 87.2315 18.1954 86.8519 17.9635L82.2606 15.1592C82.1006 15.0615 81.8994 15.0615 81.7394 15.1592L77.1481 17.9635C76.7685 18.1954 76.2979 17.8534 76.4011 17.4208L77.6494 12.1876C77.6929 12.0053 77.6307 11.8139 77.4883 11.6919L73.4024 8.19189C73.0646 7.90256 73.2444 7.3493 73.6877 7.31376L79.0505 6.88383C79.2374 6.86885 79.4002 6.75056 79.4722 6.57744L81.5383 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip8_679_6006)\">\\n<path d=\"M105.538 1.60996C105.709 1.19932 106.291 1.19932 106.462 1.60996L108.528 6.57744C108.6 6.75056 108.763 6.86885 108.949 6.88383L114.312 7.31376C114.756 7.3493 114.935 7.90256 114.598 8.19189L110.512 11.6919C110.369 11.8139 110.307 12.0053 110.351 12.1876L111.599 17.4208C111.702 17.8534 111.231 18.1954 110.852 17.9635L106.261 15.1592C106.101 15.0615 105.899 15.0615 105.739 15.1592L101.148 17.9635C100.769 18.1954 100.298 17.8534 100.401 17.4208L101.649 12.1876C101.693 12.0053 101.631 11.8139 101.488 11.6919L97.4024 8.19189C97.0646 7.90256 97.2444 7.3493 97.6877 7.31376L103.051 6.88383C103.237 6.86885 103.4 6.75056 103.472 6.57744L105.538 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip9_679_6006)\">\\n<path d=\"M105.538 1.60996C105.709 1.19932 106.291 1.19932 106.462 1.60996L108.528 6.57744C108.6 6.75056 108.763 6.86885 108.949 6.88383L114.312 7.31376C114.756 7.3493 114.935 7.90256 114.598 8.19189L110.512 11.6919C110.369 11.8139 110.307 12.0053 110.351 12.1876L111.599 17.4208C111.702 17.8534 111.231 18.1954 110.852 17.9635L106.261 15.1592C106.101 15.0615 105.899 15.0615 105.739 15.1592L101.148 17.9635C100.769 18.1954 100.298 17.8534 100.401 17.4208L101.649 12.1876C101.693 12.0053 101.631 11.8139 101.488 11.6919L97.4024 8.19189C97.0646 7.90256 97.2444 7.3493 97.6877 7.31376L103.051 6.88383C103.237 6.86885 103.4 6.75056 103.472 6.57744L105.538 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_679_6006\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_679_6006\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip2_679_6006\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(24)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_679_6006\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(24)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_679_6006\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(48)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_679_6006\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(48)\"/>\\n</clipPath>\\n<clipPath id=\"clip6_679_6006\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(72)\"/>\\n</clipPath>\\n<clipPath id=\"clip7_679_6006\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(72)\"/>\\n</clipPath>\\n<clipPath id=\"clip8_679_6006\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(96)\"/>\\n</clipPath>\\n<clipPath id=\"clip9_679_6006\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(96)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h9pv7s\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"Jacob Owens\"})}),className:\"framer-mx8k6p\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(255, 255, 255))\"},children:\"CEO, Digital Healthcare Solutions\"})}),className:\"framer-yu9fpx\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wt16gd\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation24,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x3n24t\",\"data-framer-name\":\"Separator Line\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wok2gn\",\"data-framer-name\":\"Separator Line\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:1402,svg:'<svg width=\"1402\" height=\"3\" viewBox=\"-1 -1 1402 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"1400\" y2=\"0.5\" stroke=\"url(#paint0_linear_681_1774)\" stroke-opacity=\"0.3\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_681_1774\" x1=\"0\" y1=\"1\" x2=\"1400\" y2=\"1\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"0.536458\" stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-la2gza\",\"data-framer-name\":\"Metrics Row\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition37},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xl5y97\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vxi7jt\",\"data-framer-name\":\"Number and text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",style:{\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:\"20+\"})}),className:\"framer-5a6f4w\",\"data-framer-name\":\"Number\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c9y6na\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"Happy customers\"})}),className:\"framer-1nby6lk\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ed5jz7 hidden-1xaffxx\",\"data-framer-name\":\"Vertical Separator\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:137,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"137\" viewBox=\"-1 -1 3 137\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499994\" y2=\"135\" stroke=\"url(#paint0_linear_681_1775)\" stroke-opacity=\"0.3\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_681_1775\" x1=\"0\" y1=\"0\" x2=\"-5.90104e-06\" y2=\"135\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"0.494792\" stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition38},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17y93ey\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gcytfj\",\"data-framer-name\":\"Number and text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",children:\"5k+\"})}),className:\"framer-1cdlnd5\",\"data-framer-name\":\"Number\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8yih6r\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"Appointments booked\"})}),className:\"framer-s1sly0\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1dg18zn hidden-1xaffxx\",\"data-framer-name\":\"Vertical Separator\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:137,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"137\" viewBox=\"-1 -1 3 137\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499994\" y2=\"135\" stroke=\"url(#paint0_linear_681_1776)\" stroke-opacity=\"0.3\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_681_1776\" x1=\"0\" y1=\"0\" x2=\"-5.90104e-06\" y2=\"135\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"0.494792\" stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition39},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oq9971\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w2vfev\",\"data-framer-name\":\"Number and text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-p4o8dh\",\"data-styles-preset\":\"sWkIeX9Y3\",children:\"4.8\"})}),className:\"framer-1rv0zjy\",\"data-framer-name\":\"Number\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tgt6en\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"Review rate \"})}),className:\"framer-19e4w4r\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-16lkknw\",\"data-framer-name\":\"FAQs\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ovbirw\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j65xtd\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{y:(componentViewport?.y||0)+32+6717+60+0+0+0+0+0},u6R6NsvSc:{y:(componentViewport?.y||0)+32+4139+80+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:(componentViewport?.y||0)+48+3995.6+80+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:80,ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sn8hwm-container\",nodeId:\"HCCRBKewc\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionBadge,{h5mTi1koL:\"FAQs\",height:\"100%\",id:\"HCCRBKewc\",layoutId:\"HCCRBKewc\",MFTk1J6dD:true,variant:\"TZUt4cyyI\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:80,ref:ref6,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1khn87f\",\"data-styles-preset\":\"UgheUOojp\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, rgb(255, 255, 247) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:\"We\u2019ve got the answers\"})})}),className:\"framer-1fod6la\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:80,ref:ref6,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-iy44n5\",\"data-framer-name\":\"Container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 840px), 1px)`,y:(componentViewport?.y||0)+32+6717+60+0+0+153.8+0},u6R6NsvSc:{width:`max(min(min(${componentViewport?.width||\"100vw\"} - 80px, 1280px), 840px), 1px)`,y:(componentViewport?.y||0)+32+4139+80+0+0+153.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1043,width:`max(min(min(${componentViewport?.width||\"100vw\"} - 120px, 1280px), 840px), 1px)`,y:(componentViewport?.y||0)+48+3995.6+80+0+0+153.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10nra96-container\",nodeId:\"U2HKqOi34\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"U2HKqOi34\",layoutId:\"U2HKqOi34\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:80,ref:ref6,target:\"animate\"}],__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-color\":\"var(--token-54c8d112-e98c-4c28-a1c4-62f708e15205, rgb(122, 122, 122))\"},children:\"Still have more questions? Contact us at support@groomlead.com\"})}),className:\"framer-1gzyb03\",\"data-framer-name\":\"Still have more questions? Contact our help center.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-o2994i\",\"data-framer-name\":\"CTA\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r8zjjj\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition40},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nwoi9j\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-10b61ev\",\"data-styles-preset\":\"QfKwTOU7W\",children:\"Elevate the way you book meetings\"})}),className:\"framer-wzvjf\",\"data-framer-name\":\"Change the way you source design today\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sxvqyk\",\"data-styles-preset\":\"Oeaeo0pwX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Free B2B Lead Generation Strategies Delivered Weekly\"})}),className:\"framer-1lhzsrd\",\"data-framer-name\":\"Start producing stunning, efficient design work without the hassles of hiring.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":SmoawOunl\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":SmoawOunl\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":SmoawOunl\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition41},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1soqy20-container\",\"data-framer-name\":\"Lead Input Form\",isAuthoredByUser:true,isModuleExternal:true,name:\"Lead Input Form\",nodeId:\"kyWPUJAQL\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{button:{buttonFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:24,buttonPaddingBottom:24,buttonPaddingLeft:24,buttonPaddingPerSide:false,buttonPaddingRight:24,buttonPaddingTop:24,buttonShadow:{shadowBlur:35,shadowColor:\"rgba(221, 255, 0, 0.2)\",shadowX:0,shadowY:20},color:\"var(--token-af250fab-523a-41d3-9565-21f31be56f17, rgb(13, 13, 13))\",fill:\"var(--token-0d1c15e4-19d4-4f59-abec-7c72f6c1a824, rgb(221, 255, 0))\",insetWhenDocked:10,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:145},font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},gap:15,input:{borderObject:{borderColor:\"var(--token-69a06b4a-447e-422e-9e50-d39672ecdf48, rgb(38, 38, 38))\",borderWidth:1},borderRadius:50,color:\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\",fill:\"var(--token-af250fab-523a-41d3-9565-21f31be56f17, rgb(13, 13, 13))\",fixedHeight:50,height:true,padding:24,paddingBottom:24,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:24,placeholder:\"Your email\",placeholderColor:\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},layout:\"vertical\",link:resolvedLinks[2]},u6R6NsvSc:{link:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Input,{button:{buttonFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:26,buttonPaddingBottom:26,buttonPaddingLeft:26,buttonPaddingPerSide:false,buttonPaddingRight:26,buttonPaddingTop:26,buttonShadow:{shadowBlur:35,shadowColor:\"rgba(221, 255, 0, 0.2)\",shadowX:0,shadowY:20},color:\"var(--token-af250fab-523a-41d3-9565-21f31be56f17, rgb(13, 13, 13))\",fill:\"var(--token-0d1c15e4-19d4-4f59-abec-7c72f6c1a824, rgb(221, 255, 0))\",insetWhenDocked:10,isDocked:true,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:145},font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},formsparkID:\"t8UY4lQG3\",gap:10,getwaitlistAPI:\"\",height:\"100%\",id:\"kyWPUJAQL\",input:{borderObject:{borderColor:\"var(--token-69a06b4a-447e-422e-9e50-d39672ecdf48, rgb(38, 38, 38))\",borderWidth:1},borderRadius:50,color:\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\",fill:\"var(--token-af250fab-523a-41d3-9565-21f31be56f17, rgb(13, 13, 13))\",fixedHeight:50,height:true,padding:24,paddingBottom:25,paddingLeft:32,paddingPerSide:true,paddingRight:24,paddingTop:25,placeholder:\"name@email.com\",placeholderColor:\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},layout:\"horizontal\",layoutId:\"kyWPUJAQL\",link:resolvedLinks[0],loopsID:\"\",loopsUserGroup:\"\",mailchimpURL:\"\",name:\"Lead Input Form\",redirectAs:\"link\",service:\"formspark\",style:{width:\"100%\"},width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{y:(componentViewport?.y||0)+32+8754.6},u6R6NsvSc:{y:(componentViewport?.y||0)+32+6135.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+48+6012.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u2v3si-container\",nodeId:\"KVbZEHKRk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ntIxot2Qi:{variant:\"on9Ch5PoD\"},u6R6NsvSc:{variant:\"bx5OdrLEl\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"KVbZEHKRk\",layoutId:\"KVbZEHKRk\",style:{width:\"100%\"},variant:\"nVeNRf7M_\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IslMY.framer-lux5qc, .framer-IslMY .framer-lux5qc { display: block; }\",\".framer-IslMY.framer-72rtr7 { align-content: center; align-items: center; background-color: #0d0d0d; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 0px 0px 0px; position: relative; width: 1400px; }\",\".framer-IslMY .framer-a4ey5c-container { flex: none; height: auto; position: sticky; top: 48px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-IslMY .framer-1l1mvsd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-IslMY .framer-1gemaw4, .framer-IslMY .framer-wt16gd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-plfr9o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 840px; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 5; }\",\".framer-IslMY .framer-ighdqo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-IslMY .framer-12mfih4, .framer-IslMY .framer-1xb4wej, .framer-IslMY .framer-1clfnso { flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-IslMY .framer-oyzs5 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-IslMY .framer-x5wpx9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-IslMY .framer-6dch74 { align-content: center; align-items: center; background-color: var(--token-0d1c15e4-19d4-4f59-abec-7c72f6c1a824, #ddff00); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 1px 12px 100px -12px var(--token-0d1c15e4-19d4-4f59-abec-7c72f6c1a824, #ddff00); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 54px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 161px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-IslMY .framer-1n5x1p9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 797px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; pointer-events: none; position: absolute; right: 0px; top: calc(52.69461077844314% - 797px / 2); z-index: 1; }\",\".framer-IslMY .framer-1ozql3s { background: linear-gradient(180deg, rgba(13, 13, 13, 0) 75%, rgba(13, 13, 13, 1) 95%); flex: none; height: 796px; position: relative; width: 100%; }\",\".framer-IslMY .framer-1t8kidz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 420px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-IslMY .framer-vnqiti-container { flex: 1 0 0px; height: 200px; position: relative; width: 1px; }\",\".framer-IslMY .framer-dbg6wi { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 145px; overflow: visible; position: relative; text-decoration: none; width: 133px; z-index: 1; }\",\".framer-IslMY .framer-1nenp3c { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 192px; overflow: visible; position: relative; width: 176px; z-index: 1; }\",\".framer-IslMY .framer-r6sv25 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 125px; overflow: visible; position: relative; text-decoration: none; width: 180px; z-index: 1; }\",\".framer-IslMY .framer-1tix1uc { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 142px; overflow: visible; position: relative; text-decoration: none; width: 140px; z-index: 1; }\",\".framer-IslMY .framer-4ggj12 { flex: none; height: 212px; left: 0px; overflow: visible; position: absolute; text-decoration: none; top: -240px; width: 207px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-IslMY .framer-5p4ake, .framer-IslMY .framer-cvnjn8, .framer-IslMY .framer-13q9igv { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-IslMY .framer-5lfu4t { flex: none; height: 338px; left: 71px; overflow: hidden; position: absolute; top: calc(49.52380952380955% - 338px / 2); width: 355px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-IslMY .framer-sjc1l5 { flex: none; height: 222px; overflow: hidden; position: absolute; right: 0px; text-decoration: none; top: -230px; width: 219px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-IslMY .framer-12y3raf-container, .framer-IslMY .framer-1bbkybi-container { flex: none; height: 122px; position: relative; width: 304px; z-index: 1; }\",\".framer-IslMY .framer-1hde453 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 0px; flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 435px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-IslMY .framer-ny4cd { aspect-ratio: 0.9232914923291492 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 338px); left: 64px; overflow: hidden; position: absolute; right: 59px; top: 39px; z-index: 1; }\",\".framer-IslMY .framer-rs3uhp { flex: none; height: 68px; left: 281px; overflow: hidden; position: absolute; top: -150px; width: 95px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-IslMY .framer-1gj9lqe { flex: none; height: 68px; left: calc(49.473684210526336% - 94px / 2); position: absolute; top: 0px; width: 94px; }\",\".framer-IslMY .framer-usan5o { flex: none; height: 54px; overflow: hidden; position: absolute; right: 259px; top: -225px; width: 81px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-IslMY .framer-1sdbtva { flex: none; height: 54px; left: 5px; position: absolute; top: 0px; width: 76px; }\",\".framer-IslMY .framer-tu23w1 { align-content: flex-start; align-items: flex-start; background-color: var(--token-af250fab-523a-41d3-9565-21f31be56f17, #0d0d0d); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; overflow: visible; padding: 96px 60px 96px 60px; position: relative; width: 100%; }\",\".framer-IslMY .framer-13ktf0t { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-IslMY .framer-dgcz8a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 840px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-1rgvtwe-container, .framer-IslMY .framer-1t1qb7w-container, .framer-IslMY .framer-1djcmls-container, .framer-IslMY .framer-1sn8hwm-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-IslMY .framer-159rema, .framer-IslMY .framer-1v785in, .framer-IslMY .framer-1i3f12u, .framer-IslMY .framer-1bd9ek, .framer-IslMY .framer-1st96w9, .framer-IslMY .framer-1hbqbz0, .framer-IslMY .framer-4oaa8e, .framer-IslMY .framer-15r3t4b, .framer-IslMY .framer-1ifarik, .framer-IslMY .framer-17bnstn, .framer-IslMY .framer-u1hikx, .framer-IslMY .framer-se85op, .framer-IslMY .framer-1muvvkc, .framer-IslMY .framer-1ars2s0, .framer-IslMY .framer-1iq3e0t, .framer-IslMY .framer-lf8n5n, .framer-IslMY .framer-p7g3zn, .framer-IslMY .framer-yu9fpx, .framer-IslMY .framer-1fod6la { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IslMY .framer-lx9bmf, .framer-IslMY .framer-1oeu8vq { align-content: center; align-items: center; background-color: var(--token-af250fab-523a-41d3-9565-21f31be56f17, #0d0d0d); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 96px 60px 96px 60px; position: relative; width: 100%; }\",\".framer-IslMY .framer-s26pkc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-qxruv9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 840px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-n97mo2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-1807pzt, .framer-IslMY .framer-1u814k9 { --border-bottom-width: 1px; --border-color: var(--token-69a06b4a-447e-422e-9e50-d39672ecdf48, #1f1f1f); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background: linear-gradient(180deg, #1e1e1e 0%, rgb(20, 20, 20) 100%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 429px; justify-content: flex-end; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-1ac2535 { flex: none; height: 225px; overflow: hidden; position: relative; width: 281px; }\",\".framer-IslMY .framer-5uz80n { flex: none; height: 195px; left: calc(51.9572953736655% - 251px / 2); opacity: 0.6; overflow: hidden; position: absolute; top: 1px; width: 251px; z-index: 1; }\",\".framer-IslMY .framer-1qx3wsy { background-color: rgba(19, 19, 19, 0.89); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 183px; left: 0px; position: absolute; top: 4px; width: 242px; }\",\".framer-IslMY .framer-1ifzm0l { --border-bottom-width: 0.9184952974319458px; --border-color: rgba(255, 255, 255, 0.06); --border-left-width: 0.9184952974319458px; --border-right-width: 0.9184952974319458px; --border-style: solid; --border-top-width: 0.9184952974319458px; background-color: #131313; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: 0px; flex: none; height: 211px; left: calc(49.822064056939524% - 280px / 2); overflow: hidden; position: absolute; width: 280px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-IslMY .framer-14az0bh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 20px; overflow: hidden; padding: 0px; position: absolute; top: 20px; width: min-content; }\",\".framer-IslMY .framer-jyt7o8 { bottom: 22px; flex: none; height: auto; left: 233px; position: absolute; white-space: pre; width: auto; }\",\".framer-IslMY .framer-15lk5aa { bottom: 22px; flex: none; height: auto; left: 49%; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-IslMY .framer-1kefmoh { flex: none; height: auto; left: 29px; position: absolute; top: 176px; white-space: pre; width: auto; }\",\".framer-IslMY .framer-1ttjtzz { background-color: rgba(189, 255, 28, 0.1); bottom: 23px; flex: none; height: 119px; left: 23px; overflow: hidden; position: absolute; width: 2px; }\",\".framer-IslMY .framer-wl91gb { background-color: rgba(189, 255, 28, 0.1); bottom: 23px; flex: none; height: 119px; left: 115px; overflow: hidden; position: absolute; width: 2px; }\",\".framer-IslMY .framer-13mm2id { background-color: rgba(189, 255, 28, 0.1); bottom: 23px; flex: none; height: 119px; left: 224px; overflow: hidden; position: absolute; width: 2px; }\",\".framer-IslMY .framer-19arwrd { -webkit-filter: blur(31.111085891723633px); aspect-ratio: 0.9540229885057471 / 1; background-color: rgba(226, 250, 6, 0.08); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(31.111085891723633px); flex: none; height: var(--framer-aspect-ratio-supported, 153px); left: 130px; position: absolute; top: 51%; transform: translateY(-50%); width: 146px; }\",\".framer-IslMY .framer-ee8lpo { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, #67E483 0%, #8FF053 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 70px; flex: none; height: 22px; left: 20px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-1yj6rhd { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, #67E483 0%, #8FF053 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 64px; flex: none; height: 22px; left: 39px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-1buj85x { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, #67E483 0%, #8FF053 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 63px; flex: none; height: 43px; left: 57px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-tv624k { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, #67E483 0%, #8FF053 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 63px; flex: none; height: 49px; left: 75px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-1d2n0ax { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, #67E483 0%, #8FF053 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 80px; flex: none; height: 29px; left: 94px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-nu27j8 { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, #67E483 0%, #8FF053 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 70px; flex: none; height: 53px; left: 112px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-tn0kxg { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, #67E483 0%, #8FF053 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 63px; flex: none; height: 40px; left: calc(48.21428571428574% - 9px / 2); overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-rgccrf { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, #67E483 0%, #8FF053 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 45px; flex: none; height: 48px; left: calc(54.64285714285716% - 9px / 2); overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-1dnlblv { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, #67E483 0%, #8FF053 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 53px; flex: none; height: 56px; left: 168px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-two0pz { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, #67E483 0%, #8FF053 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 70px; flex: none; height: 78px; left: 185px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-ordyv1 { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, #67E483 0%, #8FF053 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 96px; flex: none; height: 40px; left: 203px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-191r8vf { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, #67E483 0%, #8FF053 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 93px; flex: none; height: 36px; left: 221px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-1nmyx1d { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, #67E483 0%, #8FF053 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 77px; flex: none; height: 32px; left: 239px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-323p0g { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 180px); overflow: hidden; position: relative; width: 240px; }\",\".framer-IslMY .framer-wklun7 { aspect-ratio: 1.3254716981132075 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 181px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-IslMY .framer-1varcdm { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-iqv3d1-container { flex: none; height: 132px; position: relative; width: 244px; z-index: 1; }\",\".framer-IslMY .framer-o3cu2m { flex: none; height: 194px; overflow: hidden; position: relative; width: 324px; }\",\".framer-IslMY .framer-fjixg3 { bottom: -17px; flex: none; height: 121px; left: -8px; overflow: hidden; position: absolute; right: -25px; z-index: 1; }\",\".framer-IslMY .framer-1pu22yg { flex: none; height: 120px; left: 0px; position: absolute; right: 0px; top: calc(49.586776859504155% - 120px / 2); }\",\".framer-IslMY .framer-wd9es-container { flex: none; height: 122px; left: 0px; position: absolute; top: 0px; width: 304px; z-index: 1; }\",\".framer-IslMY .framer-12xjypu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-vdevfa { --border-bottom-width: 1px; --border-color: var(--token-69a06b4a-447e-422e-9e50-d39672ecdf48, #262626); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-end; align-items: flex-end; background: linear-gradient(180deg, #1e1e1e 0%, rgb(20, 20, 20) 100%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 428px; justify-content: flex-end; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-ap0e7m { flex: none; height: 229px; left: calc(50.06321112515805% - 336px / 2); overflow: visible; position: absolute; top: 39px; width: 336px; z-index: 1; }\",\".framer-IslMY .framer-660lc { flex: none; height: 174px; left: 2px; position: absolute; top: 53px; width: 5px; }\",\".framer-IslMY .framer-1g7vggl { flex: none; height: 174px; left: 56px; position: absolute; top: 53px; width: 4px; }\",\".framer-IslMY .framer-su7im7 { flex: none; height: 174px; left: 108px; position: absolute; top: 53px; width: 4px; }\",\".framer-IslMY .framer-1rbp2wt { flex: none; height: 174px; left: 161px; position: absolute; top: 53px; width: 4px; }\",\".framer-IslMY .framer-1lgjvw8 { flex: none; height: 268px; left: 214px; position: absolute; top: -47px; width: 4px; }\",\".framer-IslMY .framer-12fh2gx { flex: none; height: 268px; left: 266px; position: absolute; top: -47px; width: 4px; }\",\".framer-IslMY .framer-y8fhku { flex: none; height: 268px; left: 318px; position: absolute; top: -47px; width: 4px; }\",\".framer-IslMY .framer-14zh6km { flex: none; height: 317px; left: -3px; position: absolute; top: -85px; width: 314px; }\",\".framer-IslMY .framer-1nmd6lp { flex: none; height: 146px; left: -4px; position: absolute; top: 87px; width: 202px; }\",\".framer-IslMY .framer-16rxpvz { aspect-ratio: 1 / 1; background-color: #93f24d; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 187px; position: absolute; top: 83px; width: 16px; }\",\".framer-IslMY .framer-9ouxo6 { aspect-ratio: 1 / 1; background-color: rgba(108, 229, 125, 0.15); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 49px); left: 171px; position: absolute; top: 66px; width: 49px; }\",\".framer-IslMY .framer-kemis8 { -webkit-filter: blur(31.111085891723633px); aspect-ratio: 0.9540229885057471 / 1; background-color: rgba(226, 250, 6, 0.06); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(31.111085891723633px); flex: none; height: var(--framer-aspect-ratio-supported, 174px); left: 112px; position: absolute; top: 0px; width: 166px; }\",\".framer-IslMY .framer-17gtxbf { flex: none; height: auto; left: 16px; position: absolute; top: 155px; white-space: pre; width: auto; }\",\".framer-IslMY .framer-14b8it0 { bottom: 53px; flex: none; height: auto; left: 66px; position: absolute; white-space: pre; width: auto; }\",\".framer-IslMY .framer-1pemfr5 { bottom: 53px; flex: none; height: auto; left: 116px; position: absolute; white-space: pre; width: auto; }\",\".framer-IslMY .framer-9z53l4 { bottom: 53px; flex: none; height: auto; left: 53%; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-IslMY .framer-3ijr8e { bottom: 53px; flex: none; height: auto; left: 224px; position: absolute; white-space: pre; width: auto; }\",\".framer-IslMY .framer-kw53dd { bottom: 53px; flex: none; height: auto; left: 276px; position: absolute; white-space: pre; width: auto; }\",\".framer-IslMY .framer-vbca5x { bottom: 53px; flex: none; height: auto; position: absolute; right: -7px; white-space: pre; width: auto; }\",\".framer-IslMY .framer-fr9hi4 { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 180px); overflow: hidden; position: relative; width: 288px; }\",\".framer-IslMY .framer-15l608 { aspect-ratio: 1.2151898734177216 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 198px); left: 0px; position: absolute; right: 0px; top: -18px; }\",\".framer-IslMY .framer-nwvj3v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-1ylb3cw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-10t01c2 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-1n37c1y { --border-bottom-width: 1px; --border-color: var(--token-69a06b4a-447e-422e-9e50-d39672ecdf48, #262626); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, #1f1f1f 0%, rgb(20, 20, 20) 100%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 210px; justify-content: flex-end; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-1umhd9i { flex: none; height: 173px; overflow: hidden; position: absolute; right: 0px; top: calc(50.00000000000002% - 173px / 2); width: 282px; z-index: 1; }\",\".framer-IslMY .framer-9utft2 { flex: none; height: 172px; left: 0px; position: absolute; top: 0px; width: 282px; }\",\".framer-IslMY .framer-1tewtig { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-IslMY .framer-v6r9il { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 244px; word-break: break-word; word-wrap: break-word; }\",\".framer-IslMY .framer-ghf5nh { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-IslMY .framer-172sw1v { --border-bottom-width: 1px; --border-color: var(--token-69a06b4a-447e-422e-9e50-d39672ecdf48, #262626); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, #1e1e1e 0%, rgb(20, 20, 20) 100%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 210px; justify-content: flex-end; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-14ialtl { flex: none; height: 86px; left: 305px; overflow: visible; position: absolute; top: calc(48.57142857142859% - 86px / 2); width: 194px; z-index: 1; }\",\".framer-IslMY .framer-1of6wnc { flex: none; height: 86px; left: 157px; overflow: visible; position: absolute; top: 0px; width: 86px; }\",\".framer-IslMY .framer-a6tcy9 { aspect-ratio: 1 / 1; background-color: #343434; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 86px); left: 0px; position: absolute; top: 0px; width: 86px; }\",\".framer-IslMY .framer-ug32xg { --border-bottom-width: 5px; --border-color: #1c1c1c; --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; aspect-ratio: 1 / 1; background-color: #343434; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 68px); left: 50%; position: absolute; top: 9px; transform: translateX(-50%); width: 68px; }\",\".framer-IslMY .framer-13r58nv { flex: none; height: 86px; left: 108px; overflow: visible; position: absolute; top: 0px; width: 86px; }\",\".framer-IslMY .framer-mk1cv9 { aspect-ratio: 1 / 1; background-color: #ddff00; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 80px; }\",\".framer-IslMY .framer-pxt8qs, .framer-IslMY .framer-1wq589r, .framer-IslMY .framer-1uk4ocm { --border-bottom-width: 5px; --border-color: #1c1c1c; --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 68px); left: 50%; position: absolute; top: 9px; transform: translateX(-50%); width: 68px; }\",\".framer-IslMY .framer-1ba3vns { -webkit-filter: blur(31.111085891723633px); aspect-ratio: 1.064516129032258 / 1; background-color: rgba(226, 250, 6, 0.1); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(31.111085891723633px); flex: none; height: var(--framer-aspect-ratio-supported, 124px); left: 45px; position: absolute; top: 41px; width: 132px; }\",\".framer-IslMY .framer-1qgqmrk { flex: none; height: 86px; left: 54px; overflow: visible; position: absolute; top: 0px; width: 86px; }\",\".framer-IslMY .framer-z3nzy6 { aspect-ratio: 1 / 1; background-color: #00d1ff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 80px; }\",\".framer-IslMY .framer-mtfx3 { flex: none; height: 86px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 86px; }\",\".framer-IslMY .framer-xwizi9 { aspect-ratio: 1 / 1; background-color: #7f00ff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 80px; }\",\".framer-IslMY .framer-1a80zsd { flex: none; height: 54px; left: 172px; overflow: visible; position: absolute; top: 63px; width: 81px; }\",\".framer-IslMY .framer-1xyt3t { flex: none; height: 20px; left: 0px; position: absolute; top: 0px; width: 20px; }\",\".framer-IslMY .framer-9s0kp1 { align-content: flex-start; align-items: flex-start; background-color: #ddff00; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 2px; border-top-right-radius: 24px; box-shadow: 4px 4px 10px 0px rgba(124, 212, 253, 0.16); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; left: 18px; overflow: visible; padding: 5px 14px 5px 14px; position: absolute; top: 20px; width: min-content; }\",\".framer-IslMY .framer-qkpkjs { --framer-paragraph-spacing: 16px; flex: none; height: 24px; opacity: 0.8; position: relative; white-space: pre-wrap; width: 35px; word-break: break-word; word-wrap: break-word; }\",\".framer-IslMY .framer-c0evew { 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: 225px; }\",\".framer-IslMY .framer-1qp3nb7 { 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: 960px; }\",\".framer-IslMY .framer-c9xvqu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-1vwoodp, .framer-IslMY .framer-2wmd5y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 57px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-in799o, .framer-IslMY .framer-o4waem, .framer-IslMY .framer-1us8umr, .framer-IslMY .framer-1vg8tpp, .framer-IslMY .framer-15hv810, .framer-IslMY .framer-1lr1pmo, .framer-IslMY .framer-56uwgp { --border-bottom-width: 1px; --border-color: var(--token-69a06b4a-447e-422e-9e50-d39672ecdf48, #262626); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, #161616); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 20px 16px 20px; position: relative; width: min-content; }\",\".framer-IslMY .framer-4yjppp, .framer-IslMY .framer-1gs723k, .framer-IslMY .framer-1q2aia4, .framer-IslMY .framer-1vbdzf, .framer-IslMY .framer-1x3zbjx, .framer-IslMY .framer-10fwotr, .framer-IslMY .framer-11qvwgm { flex: none; height: 25px; position: relative; width: 25px; }\",\".framer-IslMY .framer-5e7fnd, .framer-IslMY .framer-p4rdl3, .framer-IslMY .framer-15zjiuk, .framer-IslMY .framer-o4is25, .framer-IslMY .framer-9anbh7, .framer-IslMY .framer-vc80qt, .framer-IslMY .framer-owbnsm, .framer-IslMY .framer-z62eqx, .framer-IslMY .framer-1nuzmo9, .framer-IslMY .framer-1kb3eq2, .framer-IslMY .framer-5a6f4w, .framer-IslMY .framer-1nby6lk, .framer-IslMY .framer-1cdlnd5, .framer-IslMY .framer-s1sly0, .framer-IslMY .framer-1rv0zjy, .framer-IslMY .framer-19e4w4r, .framer-IslMY .framer-1gzyb03 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IslMY .framer-9ek2f5 { 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: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-1gagupe { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 840px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-IslMY .framer-buu68m { 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; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-5xq0w5 { 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-IslMY .framer-12kw9vu { --border-bottom-width: 1px; --border-color: #262626; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, #161616); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 58px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 32px 40px 32px; position: relative; width: 1px; }\",\".framer-IslMY .framer-1dfq98d, .framer-IslMY .framer-1eey1ef, .framer-IslMY .framer-1w3ywv8, .framer-IslMY .framer-2j14sk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100px; }\",\".framer-IslMY .framer-dsfpgi, .framer-IslMY .framer-b2outx, .framer-IslMY .framer-1pv2upr { flex: none; height: 100px; position: relative; width: 100px; }\",\".framer-IslMY .framer-1alvxfw, .framer-IslMY .framer-1fjuqdi, .framer-IslMY .framer-1cro1gw { 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-IslMY .framer-uhtd6a, .framer-IslMY .framer-17vrhia { --border-bottom-width: 1px; --border-color: var(--token-69a06b4a-447e-422e-9e50-d39672ecdf48, #1f1f1f); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-77085c4a-7c60-481b-bb4c-b0e5839e54b1, #161616); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 58px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 32px 40px 32px; position: relative; width: 1px; }\",\".framer-IslMY .framer-1qeinak { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 17px; justify-content: center; overflow: hidden; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-IslMY .framer-wdfcm6 { flex: none; height: 3px; position: relative; width: 100%; }\",\".framer-IslMY .framer-1m2fi8e { align-content: center; align-items: center; background-color: var(--token-af250fab-523a-41d3-9565-21f31be56f17, #0d0d0d); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: 760px; justify-content: flex-start; overflow: hidden; padding: 96px 60px 96px 60px; position: relative; width: 100%; }\",\".framer-IslMY .framer-2qqb0z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-xuav5a { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-pvl3tv, .framer-IslMY .framer-1iqxkf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-IslMY .framer-q4edr3 { flex: none; height: 100px; position: relative; width: 150px; }\",\".framer-IslMY .framer-1mnaj6f, .framer-IslMY .framer-cvgjb2, .framer-IslMY .framer-8yih6r, .framer-IslMY .framer-1tgt6en { 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-IslMY .framer-10bj6bj { flex: none; height: 20px; position: relative; width: 117px; }\",\".framer-IslMY .framer-17821zk, .framer-IslMY .framer-1h9pv7s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-1a2horl, .framer-IslMY .framer-mx8k6p { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IslMY .framer-izq7lo { flex: none; height: 60px; position: relative; width: 335px; }\",\".framer-IslMY .framer-wwaf66 { flex: none; height: 20px; position: relative; width: 116px; }\",\".framer-IslMY .framer-x3n24t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 3px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-wok2gn { flex: 1 0 0px; height: 3px; position: relative; width: 1px; }\",\".framer-IslMY .framer-la2gza { 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: visible; padding: 40px 160px 0px 160px; position: relative; width: 100%; }\",\".framer-IslMY .framer-xl5y97, .framer-IslMY .framer-17y93ey, .framer-IslMY .framer-oq9971 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 135px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-IslMY .framer-1vxi7jt, .framer-IslMY .framer-gcytfj, .framer-IslMY .framer-1w2vfev { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-c9y6na { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-1ed5jz7, .framer-IslMY .framer-1dg18zn { align-self: stretch; flex: none; height: auto; position: relative; width: 3px; }\",\".framer-IslMY .framer-16lkknw { align-content: center; align-items: center; background-color: var(--token-af250fab-523a-41d3-9565-21f31be56f17, #0d0d0d); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 80px 60px 80px 60px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-IslMY .framer-ovbirw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-1j65xtd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 840px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-iy44n5 { 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: 840px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IslMY .framer-10nra96-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-IslMY .framer-o2994i { align-content: center; align-items: center; background-color: var(--token-af250fab-523a-41d3-9565-21f31be56f17, #0d0d0d); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 60px 80px 60px; position: relative; width: 100%; }\",\".framer-IslMY .framer-1r8zjjj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px 110px 0px 110px; position: relative; width: 100%; }\",\".framer-IslMY .framer-nwoi9j { align-content: center; align-items: center; background: linear-gradient(140.06451559643327deg, #1a1a1a 0%, rgb(13, 13, 13) 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 160px 60px 110px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-IslMY .framer-wzvjf { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 560px; word-break: break-word; word-wrap: break-word; }\",\".framer-IslMY .framer-1lhzsrd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 517px; word-break: break-word; word-wrap: break-word; }\",\".framer-IslMY .framer-1soqy20-container { flex: none; height: auto; position: relative; width: 465px; }\",\".framer-IslMY .framer-u2v3si-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-IslMY.framer-72rtr7, .framer-IslMY .framer-1l1mvsd, .framer-IslMY .framer-1gemaw4, .framer-IslMY .framer-plfr9o, .framer-IslMY .framer-ighdqo, .framer-IslMY .framer-oyzs5, .framer-IslMY .framer-6dch74, .framer-IslMY .framer-1n5x1p9, .framer-IslMY .framer-1t8kidz, .framer-IslMY .framer-tu23w1, .framer-IslMY .framer-13ktf0t, .framer-IslMY .framer-dgcz8a, .framer-IslMY .framer-lx9bmf, .framer-IslMY .framer-s26pkc, .framer-IslMY .framer-qxruv9, .framer-IslMY .framer-n97mo2, .framer-IslMY .framer-1807pzt, .framer-IslMY .framer-14az0bh, .framer-IslMY .framer-1varcdm, .framer-IslMY .framer-1u814k9, .framer-IslMY .framer-12xjypu, .framer-IslMY .framer-vdevfa, .framer-IslMY .framer-nwvj3v, .framer-IslMY .framer-1ylb3cw, .framer-IslMY .framer-10t01c2, .framer-IslMY .framer-1n37c1y, .framer-IslMY .framer-1tewtig, .framer-IslMY .framer-172sw1v, .framer-IslMY .framer-9s0kp1, .framer-IslMY .framer-c0evew, .framer-IslMY .framer-1qp3nb7, .framer-IslMY .framer-c9xvqu, .framer-IslMY .framer-1vwoodp, .framer-IslMY .framer-in799o, .framer-IslMY .framer-o4waem, .framer-IslMY .framer-1us8umr, .framer-IslMY .framer-1vg8tpp, .framer-IslMY .framer-2wmd5y, .framer-IslMY .framer-15hv810, .framer-IslMY .framer-1lr1pmo, .framer-IslMY .framer-56uwgp, .framer-IslMY .framer-1oeu8vq, .framer-IslMY .framer-9ek2f5, .framer-IslMY .framer-1gagupe, .framer-IslMY .framer-buu68m, .framer-IslMY .framer-5xq0w5, .framer-IslMY .framer-12kw9vu, .framer-IslMY .framer-1dfq98d, .framer-IslMY .framer-1eey1ef, .framer-IslMY .framer-1alvxfw, .framer-IslMY .framer-uhtd6a, .framer-IslMY .framer-1w3ywv8, .framer-IslMY .framer-1fjuqdi, .framer-IslMY .framer-17vrhia, .framer-IslMY .framer-2j14sk, .framer-IslMY .framer-1cro1gw, .framer-IslMY .framer-1qeinak, .framer-IslMY .framer-1m2fi8e, .framer-IslMY .framer-2qqb0z, .framer-IslMY .framer-xuav5a, .framer-IslMY .framer-pvl3tv, .framer-IslMY .framer-1mnaj6f, .framer-IslMY .framer-17821zk, .framer-IslMY .framer-1iqxkf, .framer-IslMY .framer-cvgjb2, .framer-IslMY .framer-1h9pv7s, .framer-IslMY .framer-wt16gd, .framer-IslMY .framer-x3n24t, .framer-IslMY .framer-la2gza, .framer-IslMY .framer-xl5y97, .framer-IslMY .framer-1vxi7jt, .framer-IslMY .framer-c9y6na, .framer-IslMY .framer-17y93ey, .framer-IslMY .framer-gcytfj, .framer-IslMY .framer-8yih6r, .framer-IslMY .framer-oq9971, .framer-IslMY .framer-1w2vfev, .framer-IslMY .framer-1tgt6en, .framer-IslMY .framer-16lkknw, .framer-IslMY .framer-ovbirw, .framer-IslMY .framer-1j65xtd, .framer-IslMY .framer-iy44n5, .framer-IslMY .framer-o2994i, .framer-IslMY .framer-1r8zjjj, .framer-IslMY .framer-nwoi9j { gap: 0px; } .framer-IslMY.framer-72rtr7 > *, .framer-IslMY .framer-1l1mvsd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-IslMY.framer-72rtr7 > :first-child, .framer-IslMY .framer-1l1mvsd > :first-child, .framer-IslMY .framer-1gemaw4 > :first-child, .framer-IslMY .framer-plfr9o > :first-child, .framer-IslMY .framer-6dch74 > :first-child, .framer-IslMY .framer-1n5x1p9 > :first-child, .framer-IslMY .framer-13ktf0t > :first-child, .framer-IslMY .framer-dgcz8a > :first-child, .framer-IslMY .framer-lx9bmf > :first-child, .framer-IslMY .framer-s26pkc > :first-child, .framer-IslMY .framer-qxruv9 > :first-child, .framer-IslMY .framer-1807pzt > :first-child, .framer-IslMY .framer-14az0bh > :first-child, .framer-IslMY .framer-1varcdm > :first-child, .framer-IslMY .framer-1u814k9 > :first-child, .framer-IslMY .framer-12xjypu > :first-child, .framer-IslMY .framer-vdevfa > :first-child, .framer-IslMY .framer-nwvj3v > :first-child, .framer-IslMY .framer-1ylb3cw > :first-child, .framer-IslMY .framer-1n37c1y > :first-child, .framer-IslMY .framer-1tewtig > :first-child, .framer-IslMY .framer-172sw1v > :first-child, .framer-IslMY .framer-c0evew > :first-child, .framer-IslMY .framer-1qp3nb7 > :first-child, .framer-IslMY .framer-c9xvqu > :first-child, .framer-IslMY .framer-1oeu8vq > :first-child, .framer-IslMY .framer-1gagupe > :first-child, .framer-IslMY .framer-12kw9vu > :first-child, .framer-IslMY .framer-1alvxfw > :first-child, .framer-IslMY .framer-uhtd6a > :first-child, .framer-IslMY .framer-1fjuqdi > :first-child, .framer-IslMY .framer-17vrhia > :first-child, .framer-IslMY .framer-1cro1gw > :first-child, .framer-IslMY .framer-1qeinak > :first-child, .framer-IslMY .framer-1m2fi8e > :first-child, .framer-IslMY .framer-2qqb0z > :first-child, .framer-IslMY .framer-pvl3tv > :first-child, .framer-IslMY .framer-1mnaj6f > :first-child, .framer-IslMY .framer-17821zk > :first-child, .framer-IslMY .framer-1iqxkf > :first-child, .framer-IslMY .framer-cvgjb2 > :first-child, .framer-IslMY .framer-1h9pv7s > :first-child, .framer-IslMY .framer-wt16gd > :first-child, .framer-IslMY .framer-xl5y97 > :first-child, .framer-IslMY .framer-1vxi7jt > :first-child, .framer-IslMY .framer-c9y6na > :first-child, .framer-IslMY .framer-17y93ey > :first-child, .framer-IslMY .framer-gcytfj > :first-child, .framer-IslMY .framer-8yih6r > :first-child, .framer-IslMY .framer-oq9971 > :first-child, .framer-IslMY .framer-1w2vfev > :first-child, .framer-IslMY .framer-1tgt6en > :first-child, .framer-IslMY .framer-16lkknw > :first-child, .framer-IslMY .framer-ovbirw > :first-child, .framer-IslMY .framer-1j65xtd > :first-child, .framer-IslMY .framer-o2994i > :first-child, .framer-IslMY .framer-1r8zjjj > :first-child, .framer-IslMY .framer-nwoi9j > :first-child { margin-top: 0px; } .framer-IslMY.framer-72rtr7 > :last-child, .framer-IslMY .framer-1l1mvsd > :last-child, .framer-IslMY .framer-1gemaw4 > :last-child, .framer-IslMY .framer-plfr9o > :last-child, .framer-IslMY .framer-6dch74 > :last-child, .framer-IslMY .framer-1n5x1p9 > :last-child, .framer-IslMY .framer-13ktf0t > :last-child, .framer-IslMY .framer-dgcz8a > :last-child, .framer-IslMY .framer-lx9bmf > :last-child, .framer-IslMY .framer-s26pkc > :last-child, .framer-IslMY .framer-qxruv9 > :last-child, .framer-IslMY .framer-1807pzt > :last-child, .framer-IslMY .framer-14az0bh > :last-child, .framer-IslMY .framer-1varcdm > :last-child, .framer-IslMY .framer-1u814k9 > :last-child, .framer-IslMY .framer-12xjypu > :last-child, .framer-IslMY .framer-vdevfa > :last-child, .framer-IslMY .framer-nwvj3v > :last-child, .framer-IslMY .framer-1ylb3cw > :last-child, .framer-IslMY .framer-1n37c1y > :last-child, .framer-IslMY .framer-1tewtig > :last-child, .framer-IslMY .framer-172sw1v > :last-child, .framer-IslMY .framer-c0evew > :last-child, .framer-IslMY .framer-1qp3nb7 > :last-child, .framer-IslMY .framer-c9xvqu > :last-child, .framer-IslMY .framer-1oeu8vq > :last-child, .framer-IslMY .framer-1gagupe > :last-child, .framer-IslMY .framer-12kw9vu > :last-child, .framer-IslMY .framer-1alvxfw > :last-child, .framer-IslMY .framer-uhtd6a > :last-child, .framer-IslMY .framer-1fjuqdi > :last-child, .framer-IslMY .framer-17vrhia > :last-child, .framer-IslMY .framer-1cro1gw > :last-child, .framer-IslMY .framer-1qeinak > :last-child, .framer-IslMY .framer-1m2fi8e > :last-child, .framer-IslMY .framer-2qqb0z > :last-child, .framer-IslMY .framer-pvl3tv > :last-child, .framer-IslMY .framer-1mnaj6f > :last-child, .framer-IslMY .framer-17821zk > :last-child, .framer-IslMY .framer-1iqxkf > :last-child, .framer-IslMY .framer-cvgjb2 > :last-child, .framer-IslMY .framer-1h9pv7s > :last-child, .framer-IslMY .framer-wt16gd > :last-child, .framer-IslMY .framer-xl5y97 > :last-child, .framer-IslMY .framer-1vxi7jt > :last-child, .framer-IslMY .framer-c9y6na > :last-child, .framer-IslMY .framer-17y93ey > :last-child, .framer-IslMY .framer-gcytfj > :last-child, .framer-IslMY .framer-8yih6r > :last-child, .framer-IslMY .framer-oq9971 > :last-child, .framer-IslMY .framer-1w2vfev > :last-child, .framer-IslMY .framer-1tgt6en > :last-child, .framer-IslMY .framer-16lkknw > :last-child, .framer-IslMY .framer-ovbirw > :last-child, .framer-IslMY .framer-1j65xtd > :last-child, .framer-IslMY .framer-o2994i > :last-child, .framer-IslMY .framer-1r8zjjj > :last-child, .framer-IslMY .framer-nwoi9j > :last-child { margin-bottom: 0px; } .framer-IslMY .framer-1gemaw4 > *, .framer-IslMY .framer-6dch74 > *, .framer-IslMY .framer-1n5x1p9 > *, .framer-IslMY .framer-s26pkc > *, .framer-IslMY .framer-14az0bh > *, .framer-IslMY .framer-1varcdm > *, .framer-IslMY .framer-12xjypu > *, .framer-IslMY .framer-vdevfa > *, .framer-IslMY .framer-1n37c1y > *, .framer-IslMY .framer-172sw1v > *, .framer-IslMY .framer-1qeinak > *, .framer-IslMY .framer-wt16gd > *, .framer-IslMY .framer-1j65xtd > *, .framer-IslMY .framer-1r8zjjj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-IslMY .framer-plfr9o > *, .framer-IslMY .framer-pvl3tv > *, .framer-IslMY .framer-1iqxkf > *, .framer-IslMY .framer-nwoi9j > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-IslMY .framer-ighdqo > *, .framer-IslMY .framer-oyzs5 > *, .framer-IslMY .framer-9ek2f5 > *, .framer-IslMY .framer-1dfq98d > *, .framer-IslMY .framer-1eey1ef > *, .framer-IslMY .framer-1w3ywv8 > *, .framer-IslMY .framer-2j14sk > *, .framer-IslMY .framer-x3n24t > *, .framer-IslMY .framer-iy44n5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-IslMY .framer-ighdqo > :first-child, .framer-IslMY .framer-oyzs5 > :first-child, .framer-IslMY .framer-1t8kidz > :first-child, .framer-IslMY .framer-tu23w1 > :first-child, .framer-IslMY .framer-n97mo2 > :first-child, .framer-IslMY .framer-10t01c2 > :first-child, .framer-IslMY .framer-9s0kp1 > :first-child, .framer-IslMY .framer-1vwoodp > :first-child, .framer-IslMY .framer-in799o > :first-child, .framer-IslMY .framer-o4waem > :first-child, .framer-IslMY .framer-1us8umr > :first-child, .framer-IslMY .framer-1vg8tpp > :first-child, .framer-IslMY .framer-2wmd5y > :first-child, .framer-IslMY .framer-15hv810 > :first-child, .framer-IslMY .framer-1lr1pmo > :first-child, .framer-IslMY .framer-56uwgp > :first-child, .framer-IslMY .framer-9ek2f5 > :first-child, .framer-IslMY .framer-buu68m > :first-child, .framer-IslMY .framer-5xq0w5 > :first-child, .framer-IslMY .framer-1dfq98d > :first-child, .framer-IslMY .framer-1eey1ef > :first-child, .framer-IslMY .framer-1w3ywv8 > :first-child, .framer-IslMY .framer-2j14sk > :first-child, .framer-IslMY .framer-xuav5a > :first-child, .framer-IslMY .framer-x3n24t > :first-child, .framer-IslMY .framer-la2gza > :first-child, .framer-IslMY .framer-iy44n5 > :first-child { margin-left: 0px; } .framer-IslMY .framer-ighdqo > :last-child, .framer-IslMY .framer-oyzs5 > :last-child, .framer-IslMY .framer-1t8kidz > :last-child, .framer-IslMY .framer-tu23w1 > :last-child, .framer-IslMY .framer-n97mo2 > :last-child, .framer-IslMY .framer-10t01c2 > :last-child, .framer-IslMY .framer-9s0kp1 > :last-child, .framer-IslMY .framer-1vwoodp > :last-child, .framer-IslMY .framer-in799o > :last-child, .framer-IslMY .framer-o4waem > :last-child, .framer-IslMY .framer-1us8umr > :last-child, .framer-IslMY .framer-1vg8tpp > :last-child, .framer-IslMY .framer-2wmd5y > :last-child, .framer-IslMY .framer-15hv810 > :last-child, .framer-IslMY .framer-1lr1pmo > :last-child, .framer-IslMY .framer-56uwgp > :last-child, .framer-IslMY .framer-9ek2f5 > :last-child, .framer-IslMY .framer-buu68m > :last-child, .framer-IslMY .framer-5xq0w5 > :last-child, .framer-IslMY .framer-1dfq98d > :last-child, .framer-IslMY .framer-1eey1ef > :last-child, .framer-IslMY .framer-1w3ywv8 > :last-child, .framer-IslMY .framer-2j14sk > :last-child, .framer-IslMY .framer-xuav5a > :last-child, .framer-IslMY .framer-x3n24t > :last-child, .framer-IslMY .framer-la2gza > :last-child, .framer-IslMY .framer-iy44n5 > :last-child { margin-right: 0px; } .framer-IslMY .framer-1t8kidz > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-IslMY .framer-tu23w1 > * { margin: 0px; margin-left: calc(37px / 2); margin-right: calc(37px / 2); } .framer-IslMY .framer-13ktf0t > *, .framer-IslMY .framer-c9xvqu > *, .framer-IslMY .framer-1gagupe > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-IslMY .framer-dgcz8a > *, .framer-IslMY .framer-qxruv9 > *, .framer-IslMY .framer-c0evew > *, .framer-IslMY .framer-1alvxfw > *, .framer-IslMY .framer-1fjuqdi > *, .framer-IslMY .framer-1cro1gw > *, .framer-IslMY .framer-1mnaj6f > *, .framer-IslMY .framer-cvgjb2 > *, .framer-IslMY .framer-8yih6r > *, .framer-IslMY .framer-1tgt6en > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-IslMY .framer-lx9bmf > *, .framer-IslMY .framer-1oeu8vq > *, .framer-IslMY .framer-16lkknw > *, .framer-IslMY .framer-ovbirw > *, .framer-IslMY .framer-o2994i > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-IslMY .framer-n97mo2 > * { margin: 0px; margin-left: calc(31px / 2); margin-right: calc(31px / 2); } .framer-IslMY .framer-1807pzt > *, .framer-IslMY .framer-1u814k9 > *, .framer-IslMY .framer-1qp3nb7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-IslMY .framer-nwvj3v > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-IslMY .framer-1ylb3cw > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-IslMY .framer-10t01c2 > *, .framer-IslMY .framer-buu68m > *, .framer-IslMY .framer-5xq0w5 > *, .framer-IslMY .framer-xuav5a > *, .framer-IslMY .framer-la2gza > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-IslMY .framer-1tewtig > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-IslMY .framer-9s0kp1 > *, .framer-IslMY .framer-in799o > *, .framer-IslMY .framer-o4waem > *, .framer-IslMY .framer-1us8umr > *, .framer-IslMY .framer-1vg8tpp > *, .framer-IslMY .framer-15hv810 > *, .framer-IslMY .framer-1lr1pmo > *, .framer-IslMY .framer-56uwgp > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-IslMY .framer-1vwoodp > *, .framer-IslMY .framer-2wmd5y > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-IslMY .framer-12kw9vu > *, .framer-IslMY .framer-uhtd6a > *, .framer-IslMY .framer-17vrhia > * { margin: 0px; margin-bottom: calc(58px / 2); margin-top: calc(58px / 2); } .framer-IslMY .framer-1m2fi8e > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-IslMY .framer-2qqb0z > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-IslMY .framer-17821zk > *, .framer-IslMY .framer-1h9pv7s > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-IslMY .framer-xl5y97 > *, .framer-IslMY .framer-17y93ey > *, .framer-IslMY .framer-oq9971 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-IslMY .framer-1vxi7jt > *, .framer-IslMY .framer-gcytfj > *, .framer-IslMY .framer-1w2vfev > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-IslMY .framer-c9y6na > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-IslMY[data-border=\"true\"]::after, .framer-IslMY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1399px) { .framer-IslMY.framer-72rtr7 { padding: 32px 0px 0px 0px; width: 810px; } .framer-IslMY .framer-a4ey5c-container { top: 32px; } .framer-IslMY .framer-1l1mvsd { overflow: hidden; padding: 120px 40px 0px 40px; } .framer-IslMY .framer-1gemaw4 { order: 1; } .framer-IslMY .framer-x5wpx9 { width: 80%; } .framer-IslMY .framer-1t8kidz { order: 2; } .framer-IslMY .framer-4ggj12 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; left: -80px; order: 1; top: -140px; } .framer-IslMY .framer-5p4ake, .framer-IslMY .framer-cvnjn8 { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; } .framer-IslMY .framer-5lfu4t { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 216px; left: -10px; order: 4; top: 165px; width: 190px; } .framer-IslMY .framer-sjc1l5 { order: 2; right: -110px; top: -180px; } .framer-IslMY .framer-13q9igv { left: unset; width: 219px; } .framer-IslMY .framer-12y3raf-container { order: 5; } .framer-IslMY .framer-1hde453 { aspect-ratio: 0.9220338983050848 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 224px); order: 3; right: -22px; text-decoration: none; top: 148px; width: 207px; } .framer-IslMY .framer-ny4cd { aspect-ratio: 0.9267461669505963 / 1; bottom: -28px; height: unset; left: -15px; right: unset; top: 29px; width: var(--framer-aspect-ratio-supported, 207px); } .framer-IslMY .framer-rs3uhp { left: 1px; order: 6; top: -250px; } .framer-IslMY .framer-usan5o { order: 7; right: 0px; top: -275px; } .framer-IslMY .framer-tu23w1, .framer-IslMY .framer-lx9bmf, .framer-IslMY .framer-1oeu8vq, .framer-IslMY .framer-16lkknw { padding: 80px 40px 80px 40px; } .framer-IslMY .framer-1807pzt, .framer-IslMY .framer-1u814k9 { align-content: flex-start; align-items: flex-start; height: min-content; padding: 32px 24px 32px 24px; } .framer-IslMY .framer-1varcdm, .framer-IslMY .framer-nwvj3v { gap: 16px; } .framer-IslMY .framer-iqv3d1-container { order: 0; } .framer-IslMY .framer-12xjypu { gap: 16px; order: 3; } .framer-IslMY .framer-vdevfa { align-content: flex-start; align-items: flex-start; gap: 40px; height: min-content; padding: 32px 24px 32px 24px; } .framer-IslMY .framer-fr9hi4 { width: 240px; } .framer-IslMY .framer-1ylb3cw { gap: 32px; } .framer-IslMY .framer-1n37c1y { align-content: flex-end; align-items: flex-end; gap: 24px; height: min-content; padding: 32px 0px 32px 24px; } .framer-IslMY .framer-1umhd9i { position: relative; right: unset; top: unset; } .framer-IslMY .framer-1tewtig, .framer-IslMY .framer-c0evew, .framer-IslMY .framer-1qp3nb7, .framer-IslMY .framer-wzvjf { width: 100%; } .framer-IslMY .framer-v6r9il { width: 90%; } .framer-IslMY .framer-ghf5nh { align-self: unset; width: 90%; } .framer-IslMY .framer-172sw1v { gap: 24px; height: min-content; padding: 32px 32px 32px 24px; } .framer-IslMY .framer-14ialtl { height: 173px; left: unset; position: relative; top: unset; width: 100%; } .framer-IslMY .framer-1of6wnc { left: 177px; top: calc(50.289017341040484% - 86px / 2); } .framer-IslMY .framer-13r58nv { left: 128px; top: calc(50.289017341040484% - 86px / 2); } .framer-IslMY .framer-1qgqmrk { left: 74px; top: calc(50.289017341040484% - 86px / 2); } .framer-IslMY .framer-mtfx3 { left: 20px; top: calc(50.289017341040484% - 86px / 2); } .framer-IslMY .framer-1a80zsd { bottom: 1px; left: 192px; top: unset; } .framer-IslMY .framer-12kw9vu, .framer-IslMY .framer-uhtd6a, .framer-IslMY .framer-17vrhia { padding: 32px 24px 32px 24px; } .framer-IslMY .framer-z62eqx, .framer-IslMY .framer-1nuzmo9, .framer-IslMY .framer-1kb3eq2 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-IslMY .framer-1m2fi8e { gap: 80px; padding: 80px 40px 80px 40px; } .framer-IslMY .framer-izq7lo { height: 27px; width: 188px; } .framer-IslMY .framer-la2gza { padding: 40px 0px 0px 0px; } .framer-IslMY .framer-o2994i { padding: 60px 40px 80px 40px; } .framer-IslMY .framer-1r8zjjj { padding: 0px; } .framer-IslMY .framer-nwoi9j { padding: 60px 40px 60px 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-IslMY .framer-1varcdm, .framer-IslMY .framer-12xjypu, .framer-IslMY .framer-vdevfa, .framer-IslMY .framer-nwvj3v, .framer-IslMY .framer-1ylb3cw, .framer-IslMY .framer-1n37c1y, .framer-IslMY .framer-172sw1v, .framer-IslMY .framer-1m2fi8e { gap: 0px; } .framer-IslMY .framer-1varcdm > *, .framer-IslMY .framer-12xjypu > *, .framer-IslMY .framer-nwvj3v > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-IslMY .framer-1varcdm > :first-child, .framer-IslMY .framer-12xjypu > :first-child, .framer-IslMY .framer-vdevfa > :first-child, .framer-IslMY .framer-nwvj3v > :first-child, .framer-IslMY .framer-1ylb3cw > :first-child, .framer-IslMY .framer-1n37c1y > :first-child, .framer-IslMY .framer-172sw1v > :first-child, .framer-IslMY .framer-1m2fi8e > :first-child { margin-top: 0px; } .framer-IslMY .framer-1varcdm > :last-child, .framer-IslMY .framer-12xjypu > :last-child, .framer-IslMY .framer-vdevfa > :last-child, .framer-IslMY .framer-nwvj3v > :last-child, .framer-IslMY .framer-1ylb3cw > :last-child, .framer-IslMY .framer-1n37c1y > :last-child, .framer-IslMY .framer-172sw1v > :last-child, .framer-IslMY .framer-1m2fi8e > :last-child { margin-bottom: 0px; } .framer-IslMY .framer-vdevfa > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-IslMY .framer-1ylb3cw > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-IslMY .framer-1n37c1y > *, .framer-IslMY .framer-172sw1v > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-IslMY .framer-1m2fi8e > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}\",\"@media (max-width: 809px) { .framer-IslMY.framer-72rtr7 { padding: 32px 0px 0px 0px; width: 390px; } .framer-IslMY .framer-a4ey5c-container { left: 50%; position: fixed; top: 32px; transform: translateX(-50%); } .framer-IslMY .framer-1l1mvsd { overflow: hidden; padding: 120px 20px 0px 20px; } .framer-IslMY .framer-1gemaw4, .framer-IslMY .framer-vnqiti-container, .framer-IslMY .framer-1bbkybi-container { order: 0; } .framer-IslMY .framer-plfr9o { max-width: unset; width: 100%; } .framer-IslMY .framer-ighdqo, .framer-IslMY .framer-wzvjf, .framer-IslMY .framer-1lhzsrd, .framer-IslMY .framer-1soqy20-container { width: 100%; } .framer-IslMY .framer-12mfih4 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-IslMY .framer-oyzs5, .framer-IslMY .framer-ghf5nh { align-self: unset; width: 100%; } .framer-IslMY .framer-6dch74 { height: 43px; width: 144px; } .framer-IslMY .framer-1t8kidz { gap: 24px; height: min-content; justify-content: flex-start; order: 2; padding: 40px 0px 40px 0px; } .framer-IslMY .framer-4ggj12 { order: 2; } .framer-IslMY .framer-5lfu4t { left: 161px; order: 5; top: calc(45.35714285714288% - 338px / 2); } .framer-IslMY .framer-sjc1l5, .framer-IslMY .framer-12xjypu { order: 3; } .framer-IslMY .framer-1hde453 { order: 4; text-decoration: none; } .framer-IslMY .framer-tu23w1 { flex-direction: column; padding: 60px 20px 60px 20px; } .framer-IslMY .framer-13ktf0t { flex: none; max-width: unset; width: 100%; } .framer-IslMY .framer-lx9bmf { gap: 32px; padding: 60px 20px 60px 20px; } .framer-IslMY .framer-s26pkc, .framer-IslMY .framer-2qqb0z, .framer-IslMY .framer-wt16gd, .framer-IslMY .framer-ovbirw, .framer-IslMY .framer-1j65xtd { max-width: unset; } .framer-IslMY .framer-n97mo2 { flex-direction: column; gap: 32px; max-width: unset; } .framer-IslMY .framer-1807pzt { flex: none; padding: 32px 24px 32px 24px; width: 100%; } .framer-IslMY .framer-1u814k9 { flex: none; gap: 16px; height: min-content; padding: 32px 24px 32px 24px; width: 100%; } .framer-IslMY .framer-vdevfa { align-content: center; align-items: center; flex: none; gap: 16px; height: min-content; padding: 32px 24px 32px 24px; width: 100%; } .framer-IslMY .framer-fr9hi4 { aspect-ratio: 1.33 / 1; height: var(--framer-aspect-ratio-supported, 200px); width: 266px; } .framer-IslMY .framer-15l608 { height: var(--framer-aspect-ratio-supported, 200px); top: 0px; } .framer-IslMY .framer-10t01c2, .framer-IslMY .framer-5xq0w5 { flex-direction: column; } .framer-IslMY .framer-1n37c1y { align-content: flex-end; align-items: flex-end; flex: none; gap: 40px; height: min-content; padding: 30px 0px 30px 30px; width: 100%; } .framer-IslMY .framer-1umhd9i { order: 0; position: relative; right: unset; top: unset; } .framer-IslMY .framer-1tewtig { order: 1; padding: 0px 32px 0px 0px; width: 100%; } .framer-IslMY .framer-172sw1v { flex: none; gap: 40px; height: min-content; padding: 30px; width: 100%; } .framer-IslMY .framer-14ialtl { height: 172px; left: unset; order: 0; position: relative; top: unset; width: 100%; } .framer-IslMY .framer-1of6wnc { left: 177px; top: calc(45.348837209302346% - 86px / 2); } .framer-IslMY .framer-13r58nv { left: 128px; top: calc(45.348837209302346% - 86px / 2); } .framer-IslMY .framer-1qgqmrk { left: 74px; top: calc(45.348837209302346% - 86px / 2); } .framer-IslMY .framer-mtfx3 { left: 20px; top: calc(45.348837209302346% - 86px / 2); } .framer-IslMY .framer-1a80zsd { bottom: 20px; left: 192px; top: unset; } .framer-IslMY .framer-c0evew { order: 1; width: 100%; } .framer-IslMY .framer-1oeu8vq, .framer-IslMY .framer-16lkknw, .framer-IslMY .framer-o2994i { padding: 60px 20px 60px 20px; } .framer-IslMY .framer-12kw9vu, .framer-IslMY .framer-uhtd6a, .framer-IslMY .framer-17vrhia { flex: none; padding: 30px; width: 100%; } .framer-IslMY .framer-1m2fi8e { height: min-content; padding: 60px 20px 60px 20px; } .framer-IslMY .framer-xuav5a { flex-direction: column; gap: 80px; } .framer-IslMY .framer-pvl3tv, .framer-IslMY .framer-1iqxkf { flex: none; gap: 24px; width: 100%; } .framer-IslMY .framer-izq7lo { height: 47px; width: 280px; } .framer-IslMY .framer-la2gza { flex-direction: column; gap: 40px; padding: 40px 0px 0px 0px; } .framer-IslMY .framer-xl5y97, .framer-IslMY .framer-17y93ey, .framer-IslMY .framer-oq9971 { flex: none; height: min-content; width: 100%; } .framer-IslMY .framer-1vxi7jt { width: 30px; } .framer-IslMY .framer-1gzyb03 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-IslMY .framer-1r8zjjj { max-width: unset; padding: 0px; } .framer-IslMY .framer-nwoi9j { padding: 60px 24px 60px 24px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-IslMY .framer-1t8kidz, .framer-IslMY .framer-tu23w1, .framer-IslMY .framer-lx9bmf, .framer-IslMY .framer-n97mo2, .framer-IslMY .framer-1u814k9, .framer-IslMY .framer-vdevfa, .framer-IslMY .framer-10t01c2, .framer-IslMY .framer-1n37c1y, .framer-IslMY .framer-172sw1v, .framer-IslMY .framer-5xq0w5, .framer-IslMY .framer-xuav5a, .framer-IslMY .framer-pvl3tv, .framer-IslMY .framer-1iqxkf, .framer-IslMY .framer-la2gza { gap: 0px; } .framer-IslMY .framer-1t8kidz > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-IslMY .framer-1t8kidz > :first-child { margin-left: 0px; } .framer-IslMY .framer-1t8kidz > :last-child { margin-right: 0px; } .framer-IslMY .framer-tu23w1 > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-IslMY .framer-tu23w1 > :first-child, .framer-IslMY .framer-lx9bmf > :first-child, .framer-IslMY .framer-n97mo2 > :first-child, .framer-IslMY .framer-1u814k9 > :first-child, .framer-IslMY .framer-vdevfa > :first-child, .framer-IslMY .framer-10t01c2 > :first-child, .framer-IslMY .framer-1n37c1y > :first-child, .framer-IslMY .framer-172sw1v > :first-child, .framer-IslMY .framer-5xq0w5 > :first-child, .framer-IslMY .framer-xuav5a > :first-child, .framer-IslMY .framer-pvl3tv > :first-child, .framer-IslMY .framer-1iqxkf > :first-child, .framer-IslMY .framer-la2gza > :first-child { margin-top: 0px; } .framer-IslMY .framer-tu23w1 > :last-child, .framer-IslMY .framer-lx9bmf > :last-child, .framer-IslMY .framer-n97mo2 > :last-child, .framer-IslMY .framer-1u814k9 > :last-child, .framer-IslMY .framer-vdevfa > :last-child, .framer-IslMY .framer-10t01c2 > :last-child, .framer-IslMY .framer-1n37c1y > :last-child, .framer-IslMY .framer-172sw1v > :last-child, .framer-IslMY .framer-5xq0w5 > :last-child, .framer-IslMY .framer-xuav5a > :last-child, .framer-IslMY .framer-pvl3tv > :last-child, .framer-IslMY .framer-1iqxkf > :last-child, .framer-IslMY .framer-la2gza > :last-child { margin-bottom: 0px; } .framer-IslMY .framer-lx9bmf > *, .framer-IslMY .framer-n97mo2 > *, .framer-IslMY .framer-10t01c2 > *, .framer-IslMY .framer-5xq0w5 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-IslMY .framer-1u814k9 > *, .framer-IslMY .framer-vdevfa > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-IslMY .framer-1n37c1y > *, .framer-IslMY .framer-172sw1v > *, .framer-IslMY .framer-la2gza > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-IslMY .framer-xuav5a > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-IslMY .framer-pvl3tv > *, .framer-IslMY .framer-1iqxkf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6509\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"u6R6NsvSc\":{\"layout\":[\"fixed\",\"auto\"]},\"ntIxot2Qi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"rwJHzxlJ1\":{\"pattern\":\":rwJHzxlJ1\",\"name\":\"hero\"},\"z1iKI5fcO\":{\"pattern\":\":z1iKI5fcO\",\"name\":\"introduction\"},\"wz4WUDXJ0\":{\"pattern\":\":wz4WUDXJ0\",\"name\":\"benefits\"},\"SmoawOunl\":{\"pattern\":\":SmoawOunl\",\"name\":\"how-it-works\"},\"YS7mhwaJ6\":{\"pattern\":\":YS7mhwaJ6\",\"name\":\"socialmetrics\"},\"BAnpyFO8F\":{\"pattern\":\":BAnpyFO8F\",\"name\":\"faq\"},\"LmO7ES3eY\":{\"pattern\":\":LmO7ES3eY\",\"name\":\"cta\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-IslMY\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6509,width:1400};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Euclid Circular A Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/6X5BRGf3gvCLcieonbACgp67SlI.ttf\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"}]},...NavigationBarFonts,...TickerFonts,...Widget3EmailRepliesFonts,...SectionBadgeFonts,...AccordionFonts,...InputFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"rwJHzxlJ1\\\":{\\\"pattern\\\":\\\":rwJHzxlJ1\\\",\\\"name\\\":\\\"hero\\\"},\\\"z1iKI5fcO\\\":{\\\"pattern\\\":\\\":z1iKI5fcO\\\",\\\"name\\\":\\\"introduction\\\"},\\\"wz4WUDXJ0\\\":{\\\"pattern\\\":\\\":wz4WUDXJ0\\\",\\\"name\\\":\\\"benefits\\\"},\\\"SmoawOunl\\\":{\\\"pattern\\\":\\\":SmoawOunl\\\",\\\"name\\\":\\\"how-it-works\\\"},\\\"YS7mhwaJ6\\\":{\\\"pattern\\\":\\\":YS7mhwaJ6\\\",\\\"name\\\":\\\"socialmetrics\\\"},\\\"BAnpyFO8F\\\":{\\\"pattern\\\":\\\":BAnpyFO8F\\\",\\\"name\\\":\\\"faq\\\"},\\\"LmO7ES3eY\\\":{\\\"pattern\\\":\\\":LmO7ES3eY\\\",\\\"name\\\":\\\"cta\\\"}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1400\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u6R6NsvSc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ntIxot2Qi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"6509\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "isFunction", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "a", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "L", "T", "M", "e", "k", "noopReturn", "B", "asTransformCssVar", "j", "T", "L", "P", "j", "testAnimation", "e", "C", "R", "H", "resolveElements", "e", "n", "createGeneratorEasing", "e", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "U", "spring", "q", "glide", "K", "inView$1", "resolveElements", "onIntersectionChange", "isFunction", "G", "_", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "Z", "X", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "n", "dispatchViewEvent", "ae", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "ce", "le", "onPointerUp", "window", "onPointerDown", "fe", "ue", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "NavigationBarFonts", "getFonts", "oSOtMFvR3_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "MotionDivWithOptimizedAppearEffect", "motion", "TickerFonts", "Ticker", "MotionAWithFXWithOptimizedAppearEffect", "withFX", "ImageWithFX", "Image2", "MotionDivWithFXWithOptimizedAppearEffect", "Widget3EmailRepliesFonts", "BeP4wcPml_default", "SectionBadgeFonts", "g1Ms3aCva_default", "ContainerWithFX", "RichTextWithFX", "MotionDivWithFX", "AccordionFonts", "lleYxrUID_default", "InputFonts", "Input_default", "FooterFonts", "CibtiOm6U_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transformTemplate1", "_", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "animation8", "animation9", "transition5", "animation10", "animation11", "transition6", "animation12", "transition7", "animation13", "transition8", "animation14", "transition9", "animation15", "animation16", "animation17", "animation18", "animation19", "transition10", "animation20", "transition11", "animation21", "transition12", "transition13", "animation22", "animation23", "animation24", "transition14", "animation25", "transition15", "animation26", "transition16", "animation27", "transition17", "animation28", "transition18", "animation29", "transition19", "animation30", "animation31", "transition20", "animation32", "transformTemplate2", "transition21", "animation33", "transition22", "animation34", "transition23", "animation35", "transition24", "animation36", "transition25", "animation37", "transition26", "animation38", "transition27", "animation39", "transition28", "animation40", "transition29", "animation41", "transition30", "animation42", "transition31", "animation43", "transition32", "animation44", "transition33", "transition34", "transition35", "transition36", "transition37", "transition38", "transition39", "transition40", "transition41", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "isDisplayed2", "elementId1", "ref2", "elementId2", "ref3", "isDisplayed3", "isDisplayed4", "isDisplayed5", "elementId3", "ref4", "ref5", "elementId4", "elementId5", "ref6", "elementId6", "ref7", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "Link", "getLoadingLazyAtYPosition", "SVG", "ResolveLinks", "resolvedLinks", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
