{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/NA9wUXidNX08hJbVIuJz/1nX34hgDY2KcL8yUIYec/a5S7GmFgP.js", "ssg:https://framerusercontent.com/modules/Lkngjjvv6hy0jm7nTfx7/QDkBojWWnJ3rPRF2xN5z/nIQTbSWys.js", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.53", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js", "ssg:https://framerusercontent.com/modules/fjxkQYmfLXjzjktbncRu/Z3HP6GFJaXJ1QqiPxxr2/RD_sKBOK1.js", "ssg:https://framerusercontent.com/modules/MFpsDPt07LO9CueiTcrt/FoImM70esi5Tm5VXEphj/tK8htS8LW.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (2923eb5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-xzqJg\";const variantClassNames={X_ItdGQ4h:\"framer-v-w3gw87\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,label,width,...props})=>{var _ref;return{...props,HR6VvY__G:(_ref=label!==null&&label!==void 0?label:props.HR6VvY__G)!==null&&_ref!==void 0?_ref:\"SECTION NAME\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,HR6VvY__G,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"X_ItdGQ4h\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-w3gw87\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"X_ItdGQ4h\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(21, 128, 61)))\"},children:\"SECTION NAME\"})}),className:\"framer-1uxz6ie\",\"data-framer-name\":\"Subheading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pY7nENU3O\",style:{\"--extracted-r6o4lv\":\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(21, 128, 61))\",\"--framer-paragraph-spacing\":\"16px\"},text:HR6VvY__G,verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xzqJg.framer-15gy13t, .framer-xzqJg .framer-15gy13t { display: block; }\",\".framer-xzqJg.framer-w3gw87 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 2px 0px 1px 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-xzqJg .framer-1uxz6ie { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xzqJg.framer-w3gw87 { gap: 0px; } .framer-xzqJg.framer-w3gw87 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xzqJg.framer-w3gw87 > :first-child { margin-top: 0px; } .framer-xzqJg.framer-w3gw87 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 132\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"HR6VvY__G\":\"label\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framera5S7GmFgP=withCSS(Component,css,\"framer-xzqJg\");export default Framera5S7GmFgP;Framera5S7GmFgP.displayName=\"Section-Badge\";Framera5S7GmFgP.defaultProps={height:27,width:132};addPropertyControls(Framera5S7GmFgP,{HR6VvY__G:{defaultValue:\"SECTION NAME\",displayTextArea:false,title:\"Label\",type:ControlType.String}});addFonts(Framera5S7GmFgP,[{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framera5S7GmFgP\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"HR6VvY__G\\\":\\\"label\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"132\",\"framerIntrinsicHeight\":\"27\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./a5S7GmFgP.map", "// Generated by Framer (64bc75b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"fdJ98Jg0V\",\"iWcsa92CW\",\"VEDdzEmQr\"];const serializationHash=\"framer-r1BKg\";const variantClassNames={fdJ98Jg0V:\"framer-v-15rsyg8\",iWcsa92CW:\"framer-v-1kqmqay\",VEDdzEmQr:\"framer-v-1agq9zn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Large - Dark\":\"fdJ98Jg0V\",\"Large - Light\":\"iWcsa92CW\",\"Small - Dark\":\"VEDdzEmQr\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"fdJ98Jg0V\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fdJ98Jg0V\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15rsyg8\",className,classNames),\"data-framer-name\":\"Large - Dark\",layoutDependency:layoutDependency,layoutId:\"fdJ98Jg0V\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({iWcsa92CW:{\"data-framer-name\":\"Large - Light\"},VEDdzEmQr:{\"data-framer-name\":\"Small - Dark\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17pscm\",\"data-framer-name\":\"Logo 1\",layoutDependency:layoutDependency,layoutId:\"PVOQXw4vd\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||55)-0-44)/2)+0+0),positionX:\"center\",positionY:\"center\",sizes:\"220px\",src:\"https://framerusercontent.com/images/zmlumDCeS3CRE70n30DeWaL1yYE.png\",srcSet:\"https://framerusercontent.com/images/zmlumDCeS3CRE70n30DeWaL1yYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmlumDCeS3CRE70n30DeWaL1yYE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmlumDCeS3CRE70n30DeWaL1yYE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zmlumDCeS3CRE70n30DeWaL1yYE.png 2352w\"},className:\"framer-153f5g7\",\"data-framer-name\":\"image 69\",layoutDependency:layoutDependency,layoutId:\"GdlGfyXb6\",...addPropertyOverrides({iWcsa92CW:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||55)-0-44)/2)+0+0),pixelHeight:119,pixelWidth:588,positionX:\"center\",positionY:\"center\",sizes:\"220px\",src:\"https://framerusercontent.com/images/owDAz99bW24FdqZJiIH5YJe7k.png\",srcSet:\"https://framerusercontent.com/images/owDAz99bW24FdqZJiIH5YJe7k.png?scale-down-to=512 512w,https://framerusercontent.com/images/owDAz99bW24FdqZJiIH5YJe7k.png 588w\"}},VEDdzEmQr:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||43)-0-34)/2)+0+0),positionX:\"center\",positionY:\"center\",sizes:\"170px\",src:\"https://framerusercontent.com/images/zmlumDCeS3CRE70n30DeWaL1yYE.png\",srcSet:\"https://framerusercontent.com/images/zmlumDCeS3CRE70n30DeWaL1yYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmlumDCeS3CRE70n30DeWaL1yYE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmlumDCeS3CRE70n30DeWaL1yYE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zmlumDCeS3CRE70n30DeWaL1yYE.png 2352w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ezzfxi\",\"data-framer-name\":\"Logo 2\",layoutDependency:layoutDependency,layoutId:\"Uw1VHdm5H\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||55)-0-47)/2)+0+0),positionX:\"center\",positionY:\"center\",sizes:\"208px\",src:\"https://framerusercontent.com/images/7bt923jeziNUz4GbUtDG40Px5t4.png\",srcSet:\"https://framerusercontent.com/images/7bt923jeziNUz4GbUtDG40Px5t4.png?scale-down-to=512 512w,https://framerusercontent.com/images/7bt923jeziNUz4GbUtDG40Px5t4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7bt923jeziNUz4GbUtDG40Px5t4.png 1140w\"},className:\"framer-1qctm95\",\"data-framer-name\":\"image 70\",layoutDependency:layoutDependency,layoutId:\"iSvHiGUqA\",...addPropertyOverrides({iWcsa92CW:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||55)-0-47)/2)+0+0),pixelHeight:114,pixelWidth:502,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zno0qKX5Ahpqp59oxOBIEKMszo.png\"}},VEDdzEmQr:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||43)-0-32)/2)+0+0),positionX:\"center\",positionY:\"center\",sizes:\"139px\",src:\"https://framerusercontent.com/images/7bt923jeziNUz4GbUtDG40Px5t4.png\",srcSet:\"https://framerusercontent.com/images/7bt923jeziNUz4GbUtDG40Px5t4.png?scale-down-to=512 512w,https://framerusercontent.com/images/7bt923jeziNUz4GbUtDG40Px5t4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7bt923jeziNUz4GbUtDG40Px5t4.png 1140w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e3rwiz\",\"data-framer-name\":\"Logo 3\",layoutDependency:layoutDependency,layoutId:\"x_Q5mUYW8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:64,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||55)-0-37)/2)+0+0),pixelHeight:24,pixelWidth:64,src:\"https://framerusercontent.com/images/NPEqosoZKB5qoaxK3bxBvqvlZN8.svg\"},className:\"framer-814bv5\",\"data-framer-name\":\"Volt\",layoutDependency:layoutDependency,layoutId:\"V4caUbHoc\",...addPropertyOverrides({iWcsa92CW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:64,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||55)-0-37)/2)+0+0),pixelHeight:150,pixelWidth:316,src:\"https://framerusercontent.com/images/XOxMcGCEprBKNSLSDuHHJ6KrLzA.png\"}},VEDdzEmQr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:64,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||43)-0-27)/2)+0+0),pixelHeight:24,pixelWidth:64,src:\"https://framerusercontent.com/images/NPEqosoZKB5qoaxK3bxBvqvlZN8.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j06ymf\",\"data-framer-name\":\"Logo 4\",layoutDependency:layoutDependency,layoutId:\"WBjOkGcFd\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:101,intrinsicWidth:400,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||55)-0-37)/2)+0+0),pixelHeight:101,pixelWidth:400,src:\"https://framerusercontent.com/images/j0lLTlEzHumEGw0PhgYIGD23E.svg\"},className:\"framer-vy1l7\",\"data-framer-name\":\"Limese\",layoutDependency:layoutDependency,layoutId:\"IlMW5z8g9\",...addPropertyOverrides({iWcsa92CW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:101,intrinsicWidth:400,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||55)-0-37)/2)+0+0),pixelHeight:133,pixelWidth:417,src:\"https://framerusercontent.com/images/FYlr5uyVYe17a6pzBNUSH2vms4.png\"}},VEDdzEmQr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:101,intrinsicWidth:400,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||43)-0-30)/2)+0+0),pixelHeight:101,pixelWidth:400,src:\"https://framerusercontent.com/images/j0lLTlEzHumEGw0PhgYIGD23E.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mq3zz9\",\"data-framer-name\":\"Logo 5\",layoutDependency:layoutDependency,layoutId:\"RJgj5q19A\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||55)-0-55)/2)+0+0),src:\"https://framerusercontent.com/images/hQ15adIic1gID8dpbukbiIKC48.png\"},className:\"framer-kikgc1\",\"data-framer-name\":\"Elivaas-removebg-preview 1\",layoutDependency:layoutDependency,layoutId:\"OGHIKNOPE\",...addPropertyOverrides({iWcsa92CW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||55)-0-55)/2)+0+0),pixelHeight:129,pixelWidth:468,src:\"https://framerusercontent.com/images/d8jO6EGbM7ttKm7TsVUVIbvFKPU.png\"}},VEDdzEmQr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||43)-0-43)/2)+0+0),src:\"https://framerusercontent.com/images/hQ15adIic1gID8dpbukbiIKC48.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hpfy2i\",\"data-framer-name\":\"Logo 6\",layoutDependency:layoutDependency,layoutId:\"nQrZjheWV\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||55)-0-54)/2)+0+0),positionX:\"center\",positionY:\"center\",sizes:\"176px\",src:\"https://framerusercontent.com/images/Ch75R7tmK6zvccqXXl3S2kHWUiA.png\",srcSet:\"https://framerusercontent.com/images/Ch75R7tmK6zvccqXXl3S2kHWUiA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ch75R7tmK6zvccqXXl3S2kHWUiA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ch75R7tmK6zvccqXXl3S2kHWUiA.png 1436w\"},className:\"framer-sapgvp\",\"data-framer-name\":\"Omnivio\",layoutDependency:layoutDependency,layoutId:\"wk1xC9_0o\",...addPropertyOverrides({iWcsa92CW:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||55)-0-54)/2)+0+0),pixelHeight:110,pixelWidth:359,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0Fa3MeHOYmyUkUN6WebKs3xuSg.png\"}},VEDdzEmQr:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||43)-0-43)/2)+0+0),positionX:\"center\",positionY:\"center\",sizes:\"141px\",src:\"https://framerusercontent.com/images/Ch75R7tmK6zvccqXXl3S2kHWUiA.png\",srcSet:\"https://framerusercontent.com/images/Ch75R7tmK6zvccqXXl3S2kHWUiA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ch75R7tmK6zvccqXXl3S2kHWUiA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ch75R7tmK6zvccqXXl3S2kHWUiA.png 1436w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c84i1n\",\"data-framer-name\":\"Logo 7\",layoutDependency:layoutDependency,layoutId:\"pUxCu0vg9\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:26,intrinsicWidth:103,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||55)-0-36)/2)+0+0),pixelHeight:26,pixelWidth:103,src:\"https://framerusercontent.com/images/1yn6WGHCEVwHYtth6tjZkDsmMNA.svg\"},className:\"framer-upi88y\",\"data-framer-name\":\"Locus\",layoutDependency:layoutDependency,layoutId:\"TFV5Cz45s\",...addPropertyOverrides({iWcsa92CW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:26,intrinsicWidth:103,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||55)-0-36)/2)+0+0),pixelHeight:90,pixelWidth:365,src:\"https://framerusercontent.com/images/T94zDAUzxoFEQZVq3O7fk6th1g.png\"}},VEDdzEmQr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:26,intrinsicWidth:103,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||43)-0-24)/2)+0+0),pixelHeight:26,pixelWidth:103,src:\"https://framerusercontent.com/images/1yn6WGHCEVwHYtth6tjZkDsmMNA.svg\"}}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-r1BKg.framer-1lgphwy, .framer-r1BKg .framer-1lgphwy { display: block; }\",\".framer-r1BKg.framer-15rsyg8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 0px 0px; position: relative; width: min-content; }\",\".framer-r1BKg .framer-17pscm, .framer-r1BKg .framer-ezzfxi, .framer-r1BKg .framer-1e3rwiz, .framer-r1BKg .framer-1j06ymf, .framer-r1BKg .framer-mq3zz9, .framer-r1BKg .framer-hpfy2i, .framer-r1BKg .framer-c84i1n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-r1BKg .framer-153f5g7 { aspect-ratio: 4.9411764705882355 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); position: relative; width: 220px; }\",\".framer-r1BKg .framer-1qctm95 { aspect-ratio: 4.384615384615385 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); position: relative; width: 208px; }\",\".framer-r1BKg .framer-814bv5 { flex: none; height: 37px; position: relative; width: 97px; }\",\".framer-r1BKg .framer-vy1l7 { flex: none; height: 37px; position: relative; width: 141px; }\",\".framer-r1BKg .framer-kikgc1 { aspect-ratio: 3.625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 55px); position: relative; width: 198px; }\",\".framer-r1BKg .framer-sapgvp { aspect-ratio: 3.2636363636363637 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); position: relative; width: 176px; }\",\".framer-r1BKg .framer-upi88y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 36px; justify-content: center; padding: 0px; position: relative; width: 151px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-r1BKg.framer-15rsyg8, .framer-r1BKg .framer-17pscm, .framer-r1BKg .framer-ezzfxi, .framer-r1BKg .framer-1e3rwiz, .framer-r1BKg .framer-1j06ymf, .framer-r1BKg .framer-mq3zz9, .framer-r1BKg .framer-hpfy2i, .framer-r1BKg .framer-c84i1n, .framer-r1BKg .framer-upi88y { gap: 0px; } .framer-r1BKg.framer-15rsyg8 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-r1BKg.framer-15rsyg8 > :first-child, .framer-r1BKg .framer-upi88y > :first-child { margin-left: 0px; } .framer-r1BKg.framer-15rsyg8 > :last-child, .framer-r1BKg .framer-upi88y > :last-child { margin-right: 0px; } .framer-r1BKg .framer-17pscm > *, .framer-r1BKg .framer-ezzfxi > *, .framer-r1BKg .framer-1e3rwiz > *, .framer-r1BKg .framer-1j06ymf > *, .framer-r1BKg .framer-mq3zz9 > *, .framer-r1BKg .framer-hpfy2i > *, .framer-r1BKg .framer-c84i1n > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-r1BKg .framer-17pscm > :first-child, .framer-r1BKg .framer-ezzfxi > :first-child, .framer-r1BKg .framer-1e3rwiz > :first-child, .framer-r1BKg .framer-1j06ymf > :first-child, .framer-r1BKg .framer-mq3zz9 > :first-child, .framer-r1BKg .framer-hpfy2i > :first-child, .framer-r1BKg .framer-c84i1n > :first-child { margin-top: 0px; } .framer-r1BKg .framer-17pscm > :last-child, .framer-r1BKg .framer-ezzfxi > :last-child, .framer-r1BKg .framer-1e3rwiz > :last-child, .framer-r1BKg .framer-1j06ymf > :last-child, .framer-r1BKg .framer-mq3zz9 > :last-child, .framer-r1BKg .framer-hpfy2i > :last-child, .framer-r1BKg .framer-c84i1n > :last-child { margin-bottom: 0px; } .framer-r1BKg .framer-upi88y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-r1BKg.framer-v-1agq9zn .framer-153f5g7 { height: var(--framer-aspect-ratio-supported, 35px); width: 170px; }\",\".framer-r1BKg.framer-v-1agq9zn .framer-1qctm95 { height: var(--framer-aspect-ratio-supported, 31px); width: 139px; }\",\".framer-r1BKg.framer-v-1agq9zn .framer-814bv5 { height: 27px; width: 70px; }\",\".framer-r1BKg.framer-v-1agq9zn .framer-vy1l7 { height: 30px; width: 114px; }\",\".framer-r1BKg.framer-v-1agq9zn .framer-kikgc1 { height: var(--framer-aspect-ratio-supported, 43px); width: 157px; }\",\".framer-r1BKg.framer-v-1agq9zn .framer-sapgvp { height: var(--framer-aspect-ratio-supported, 43px); order: 0; width: 141px; }\",\".framer-r1BKg.framer-v-1agq9zn .framer-upi88y { height: 24px; width: 101px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 55\n * @framerIntrinsicWidth 1591\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"iWcsa92CW\":{\"layout\":[\"auto\",\"auto\"]},\"VEDdzEmQr\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernIQTbSWys=withCSS(Component,css,\"framer-r1BKg\");export default FramernIQTbSWys;FramernIQTbSWys.displayName=\"Logo Gray\";FramernIQTbSWys.defaultProps={height:55,width:1591};addPropertyControls(FramernIQTbSWys,{variant:{options:[\"fdJ98Jg0V\",\"iWcsa92CW\",\"VEDdzEmQr\"],optionTitles:[\"Large - Dark\",\"Large - Light\",\"Small - Dark\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramernIQTbSWys,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernIQTbSWys\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"55\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1591\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"iWcsa92CW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VEDdzEmQr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nIQTbSWys.map", "let Component;\nvar House_default = (React) => {\n  if (!Component) {\n    const weights = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M221.56,100.85,141.61,25.38l-.16-.15a19.93,19.93,0,0,0-26.91,0l-.17.15L34.44,100.85A20.07,20.07,0,0,0,28,115.55V208a20,20,0,0,0,20,20H96a20,20,0,0,0,20-20V164h24v44a20,20,0,0,0,20,20h48a20,20,0,0,0,20-20V115.55A20.07,20.07,0,0,0,221.56,100.85ZM204,204H164V160a20,20,0,0,0-20-20H112a20,20,0,0,0-20,20v44H52V117.28l76-71.75,76,71.75Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,115.54V208a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.54a8,8,0,0,1,2.62-5.92l80-75.54a8,8,0,0,1,10.77,0l80,75.54A8,8,0,0,1,216,115.54Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,115.55V208a16,16,0,0,1-16,16H168a16,16,0,0,1-16-16V168a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v40a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V115.55a16,16,0,0,1,5.17-11.78l80-75.48.11-.11a16,16,0,0,1,21.53,0,1.14,1.14,0,0,0,.11.11l80,75.48A16,16,0,0,1,224,115.55Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.47,105.24l-80-75.5-.09-.08a13.94,13.94,0,0,0-18.83,0l-.09.08-80,75.5A14,14,0,0,0,34,115.55V208a14,14,0,0,0,14,14H96a14,14,0,0,0,14-14V160a2,2,0,0,1,2-2h32a2,2,0,0,1,2,2v48a14,14,0,0,0,14,14h48a14,14,0,0,0,14-14V115.55A14,14,0,0,0,217.47,105.24ZM210,208a2,2,0,0,1-2,2H160a2,2,0,0,1-2-2V160a14,14,0,0,0-14-14H112a14,14,0,0,0-14,14v48a2,2,0,0,1-2,2H48a2,2,0,0,1-2-2V115.55a2,2,0,0,1,.65-1.48l.09-.08,79.94-75.48a2,2,0,0,1,2.63,0L209.26,114l.08.08a2,2,0,0,1,.66,1.48Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.13,106.72,136.07,31.13a12,12,0,0,0-16.2.05L39.93,106.67A12,12,0,0,0,36,115.54V208a12,12,0,0,0,12,12H96a12,12,0,0,0,12-12V160a4,4,0,0,1,4-4h32a4,4,0,0,1,4,4v48a12,12,0,0,0,12,12h48a12,12,0,0,0,12-12V115.54A12,12,0,0,0,216.13,106.72ZM212,208a4,4,0,0,1-4,4H160a4,4,0,0,1-4-4V160a12,12,0,0,0-12-12H112a12,12,0,0,0-12,12v48a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V115.54a4.09,4.09,0,0,1,1.36-3L125.3,37.05a4,4,0,0,1,5.33,0l80.06,75.58a4,4,0,0,1,1.31,3Z\" }))\n      ]\n    ]);\n    const House = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, weights.get(props.weight)));\n    House.displayName = \"House\";\n    Component = House;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.53\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"AddressBook\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Baby\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"BezierCurve\",\"Bicycle\",\"Binoculars\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"BoundingBox\",\"BowlFood\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Butterfly\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Church\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCounterClockwise\",\"ClockCountdown\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"Command\",\"Compass\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"Cpu\",\"CreditCard\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"Fan\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileCloud\",\"FileCode\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"Footprints\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeStand\",\"Goggles\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GridFour\",\"GridNine\",\"Guitar\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandCoins\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighHeel\",\"HighlighterCircle\",\"Hoodie\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Jeep\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MathOperations\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"MetaLogo\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Newspaper\",\"NewspaperClipping\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Option\",\"OrangeSlice\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleRun\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhonePlus\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PinterestLogo\",\"Pinwheel\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Scales\",\"Scan\",\"Scissors\",\"Scooter\",\"Screencast\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealQuestion\",\"SealWarning\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackOverflowLogo\",\"StackSimple\",\"Stairs\",\"Stamp\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"Subtitles\",\"Subtract\",\"SubtractSquare\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextT\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Timer\",\"Tipi\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tote\",\"ToteSimple\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XSquare\",\"YinYang\",\"YoutubeLogo\",];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\",];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.53\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/ _jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (56d1180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={uOP0p5DYo:{hover:true},wVpwgBZLT:{hover:true}};const cycleOrder=[\"wVpwgBZLT\",\"uOP0p5DYo\"];const serializationHash=\"framer-oji0l\";const variantClassNames={uOP0p5DYo:\"framer-v-1qu9ot1\",wVpwgBZLT:\"framer-v-1pa2xji\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.23,.98],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Dark:\"wVpwgBZLT\",Light:\"uOP0p5DYo\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,e1Nl3sxPr:link!==null&&link!==void 0?link:props.e1Nl3sxPr,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"wVpwgBZLT\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,e1Nl3sxPr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wVpwgBZLT\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:e1Nl3sxPr,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1pa2xji\",className,classNames)} framer-1i5zmlb`,\"data-framer-name\":\"Dark\",layoutDependency:layoutDependency,layoutId:\"wVpwgBZLT\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"uOP0p5DYo-hover\":{\"data-framer-name\":undefined},\"wVpwgBZLT-hover\":{\"data-framer-name\":undefined},uOP0p5DYo:{\"data-framer-name\":\"Light\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-szea3z\",\"data-framer-name\":\"row\",layoutDependency:layoutDependency,layoutId:\"zWqWCqpx8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Learn more\"})}),className:\"framer-t7a3k0\",\"data-framer-name\":\"Text\",fonts:[\"GF;Be Vietnam Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"Yx9JujIiH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"18px\"},variants:{\"uOP0p5DYo-hover\":{\"--extracted-r6o4lv\":\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\"},uOP0p5DYo:{\"--extracted-r6o4lv\":\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(21, 128, 61))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"uOP0p5DYo-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94)))\"},children:\"Learn more\"})})},uOP0p5DYo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(21, 128, 61)))\"},children:\"Learn more\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1svupqt\",\"data-framer-name\":\"underline\",layoutDependency:layoutDependency,layoutId:\"jfnU4YMdN\",style:{backgroundColor:\"rgb(107, 114, 128)\",opacity:1},variants:{\"wVpwgBZLT-hover\":{opacity:.42},uOP0p5DYo:{backgroundColor:\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(21, 128, 61))\"}}})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10s23kl-container\",layoutDependency:layoutDependency,layoutId:\"KQNz7iZjE-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-207e16aa-7659-42a5-93ab-55528f99b49c, rgb(243, 240, 245))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"KQNz7iZjE\",layoutId:\"KQNz7iZjE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({\"uOP0p5DYo-hover\":{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\"},uOP0p5DYo:{color:\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(21, 128, 61))\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oji0l.framer-1i5zmlb, .framer-oji0l .framer-1i5zmlb { display: block; }\",\".framer-oji0l.framer-1pa2xji { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 109px; }\",\".framer-oji0l .framer-szea3z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-oji0l .framer-t7a3k0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oji0l .framer-1svupqt { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-oji0l .framer-10s23kl-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oji0l.framer-1pa2xji, .framer-oji0l .framer-szea3z { gap: 0px; } .framer-oji0l.framer-1pa2xji > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-oji0l.framer-1pa2xji > :first-child { margin-left: 0px; } .framer-oji0l.framer-1pa2xji > :last-child { margin-right: 0px; } .framer-oji0l .framer-szea3z > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-oji0l .framer-szea3z > :first-child { margin-top: 0px; } .framer-oji0l .framer-szea3z > :last-child { margin-bottom: 0px; } }\",\".framer-oji0l.framer-v-1pa2xji.hover.framer-1pa2xji { gap: 8px; width: 113px; }\",\".framer-oji0l.framer-v-1pa2xji.hover .framer-szea3z { width: 81px; }\",\".framer-oji0l.framer-v-1pa2xji.hover .framer-1svupqt { width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oji0l.framer-v-1pa2xji.hover.framer-1pa2xji { gap: 0px; } .framer-oji0l.framer-v-1pa2xji.hover.framer-1pa2xji > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-oji0l.framer-v-1pa2xji.hover.framer-1pa2xji > :first-child { margin-left: 0px; } .framer-oji0l.framer-v-1pa2xji.hover.framer-1pa2xji > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 109\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uOP0p5DYo\":{\"layout\":[\"fixed\",\"auto\"]},\"PrNvq8LVx\":{\"layout\":[\"fixed\",\"auto\"]},\"qnFvspTSQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"e1Nl3sxPr\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRD_sKBOK1=withCSS(Component,css,\"framer-oji0l\");export default FramerRD_sKBOK1;FramerRD_sKBOK1.displayName=\"Link\";FramerRD_sKBOK1.defaultProps={height:27,width:109};addPropertyControls(FramerRD_sKBOK1,{variant:{options:[\"wVpwgBZLT\",\"uOP0p5DYo\"],optionTitles:[\"Dark\",\"Light\"],title:\"Variant\",type:ControlType.Enum},e1Nl3sxPr:{title:\"Link\",type:ControlType.Link}});addFonts(FramerRD_sKBOK1,[{explicitInter:true,fonts:[{family:\"Be Vietnam Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVPSTAyLFyeg_IDWvOJmVES_Ew1D3s6ZKAi.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRD_sKBOK1\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"109\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"27\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uOP0p5DYo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PrNvq8LVx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qnFvspTSQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"e1Nl3sxPr\\\":\\\"link\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RD_sKBOK1.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import SectionBadge from\"#framer/local/canvasComponent/a5S7GmFgP/a5S7GmFgP.js\";import Footer01 from\"#framer/local/canvasComponent/hIsQQJkMD/hIsQQJkMD.js\";import SquaresBackground from\"#framer/local/canvasComponent/lLiRbdso0/lLiRbdso0.js\";import Button from\"#framer/local/canvasComponent/msHF_hmMB/msHF_hmMB.js\";import LogoGray from\"#framer/local/canvasComponent/nIQTbSWys/nIQTbSWys.js\";import Link1 from\"#framer/local/canvasComponent/RD_sKBOK1/RD_sKBOK1.js\";import NavigationBar from\"#framer/local/canvasComponent/YyjvDALzo/YyjvDALzo.js\";import metadataProvider from\"#framer/local/webPageMetadata/tK8htS8LW/tK8htS8LW.js\";const NavigationBarFonts=getFonts(NavigationBar);const NavigationBarWithVariantAppearEffect=withVariantAppearEffect(NavigationBar);const SquaresBackgroundFonts=getFonts(SquaresBackground);const ButtonFonts=getFonts(Button);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const LogoGrayFonts=getFonts(LogoGray);const TickerFonts=getFonts(Ticker);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const SectionBadgeFonts=getFonts(SectionBadge);const PhosphorFonts=getFonts(Phosphor);const Link1Fonts=getFonts(Link1);const Footer01Fonts=getFonts(Footer01);const breakpoints={ikUl4vpTH:\"(max-width: 809px)\",LsypzQvuh:\"(min-width: 1440px)\",nDsF6JDOS:\"(min-width: 810px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-g1cvL\";const variantClassNames={ikUl4vpTH:\"framer-v-ob5fwf\",LsypzQvuh:\"framer-v-1m63b6o\",nDsF6JDOS:\"framer-v-362y8p\"};const transition1={damping:90,delay:.3,mass:1,stiffness:450,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:30};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition2={damping:90,delay:.4,mass:1,stiffness:450,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition3={damping:30,delay:.5,mass:1,stiffness:136,type:\"spring\"};const transition4={damping:50,delay:1,mass:1,stiffness:460,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition5={damping:40,delay:.6,mass:.2,stiffness:450,type:\"spring\"};const transition6={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,y:-10};const transition7={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,y:-10};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition7};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:-2,y:-10};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition8={damping:30,delay:0,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:\"LsypzQvuh\",Phone:\"ikUl4vpTH\",Tablet:\"nDsF6JDOS\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"LsypzQvuh\"};};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=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"SN_BC4Luo\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ikUl4vpTH\")return false;return true;};const elementId1=useRouteElementId(\"xrkb6sQJS\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"Cyf3QRVni\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"cvk6L0PwC\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"VUybwosji\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"UYZTSerWr\");const ref6=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"nDsF6JDOS\",\"ikUl4vpTH\"].includes(baseVariant))return false;return true;};const elementId6=useRouteElementId(\"b4efSHEMU\");const ref7=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"ikUl4vpTH\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"LsypzQvuh\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-e3adc95c-c95f-4a68-8074-3aa00953f704, rgb(4, 18, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1m63b6o\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nDsF6JDOS:{width:\"810px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q7w5mo-container\",nodeId:\"Cgdgq2MOh\",rendersWithMotion:true,scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{__framer__targets:[{offset:0,ref:ref1,target:\"isHp2s9Uc\"}],variant:\"bXlP3sAh0\"},nDsF6JDOS:{__framer__targets:[{offset:0,ref:ref1,target:\"vHGSNIrZu\"}],variant:\"zsv1ib1rO\"}},children:/*#__PURE__*/_jsx(NavigationBarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:0,ref:ref1,target:\"fY6Hznw7j\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"Cgdgq2MOh\",layoutId:\"Cgdgq2MOh\",style:{width:\"100%\"},variant:\"SrU9aQeYa\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wdckan\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e1cz8\",\"data-framer-name\":\"Title & Subtitle\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{height:188,width:\"188px\"},nDsF6JDOS:{height:370,width:\"370px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:490,width:\"490px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18nyjt9-container\",nodeId:\"yICcYLpfQ\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(SquaresBackground,{height:\"100%\",id:\"yICcYLpfQ\",layoutId:\"yICcYLpfQ\",style:{height:\"100%\",width:\"100%\"},variant:\"MvoXOkopa\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v4ieid\",\"data-framer-name\":\"div.sc-a349924d-0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kk6ply\",\"data-framer-name\":\"div.sc-ebf72843-0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nDsF6JDOS:{href:\"https://periskope.app/blog/how-to-automate-whatsapp-messages\"}},children:/*#__PURE__*/_jsx(Link,{href:\"https://periskope.app/blog/periskope-private-notes\",motionChild:true,nodeId:\"TQxXYOcis\",openInNewTab:true,scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1dz2jg9 framer-1hriwp6\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14eequ9\",\"data-framer-name\":\"div\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(247, 248, 248)\"},children:\"Periskope Launch Week 8 Is Here!\"})}),className:\"framer-8d6dut\",\"data-framer-name\":\"Announcing our $35M Series B\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ntmhs9\",\"data-framer-name\":\"SVG:margin\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"28\" viewBox=\"0 0 22 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_777_4213)\">\\n<path d=\"M9.68501 17.036C9.42873 17.2923 9.42873 17.7077 9.68501 17.964C9.94129 18.2203 10.3568 18.2203 10.6131 17.964L14.1131 14.464C14.3672 14.21 14.3697 13.7989 14.1187 13.5417L10.704 10.0417C10.4509 9.78229 10.0354 9.77717 9.77595 10.0303C9.51653 10.2834 9.51142 10.6989 9.76452 10.9583L12.7266 13.9943L9.68501 17.036Z\" fill=\"#F7F8F8\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_777_4213\">\\n<rect width=\"17\" height=\"14\" fill=\"white\" transform=\"translate(4.89905 7)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tkgujy\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ymbblw\",\"data-framer-name\":\"Heading 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(243, 244, 246))\"},children:\"Manage \"}),\"WhatsApp Groups and Chats\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(243, 244, 246))\"},children:\" at scale\"})]})})},nDsF6JDOS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"68px\",\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(243, 244, 246))\"},children:\"Manage \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"68px\"},children:\"WhatsApp Groups and Chats\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"68px\",\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(243, 244, 246))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"68px\",\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(243, 244, 246))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"68px\",\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(243, 244, 246))\"},children:\"at scale\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"82px\",\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(243, 244, 246))\"},children:\"Manage \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"82px\"},children:\"WhatsApp Groups \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"82px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"82px\"},children:\"and Chats\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"82px\",\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(243, 244, 246))\"},children:\" at scale\"})]})}),className:\"framer-q0g86l\",\"data-framer-name\":\"Supercharge Customer Engagement on WhatsApp Groups\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"center\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h0yi19\",\"data-framer-name\":\"Subtitle\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-39l0vn\",\"data-framer-name\":\"p.sc-3a965755-0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-23ac8a8a-b8fb-4215-aa5f-899901ca3b47, rgb(229, 231, 235))\"},children:\"Connect multiple numbers, create tasks & tickets, integrate with your systems, and automate your workflows on WhatsApp\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-23ac8a8a-b8fb-4215-aa5f-899901ca3b47, rgb(229, 231, 235))\"},children:\"Connect multiple numbers, create tasks & tickets, integrate with your systems, and automate your workflows on WhatsApp\"})}),className:\"framer-sq6r6e\",\"data-framer-name\":\"An all powerful platform to drive sales, customer success and business operations on WhatsApp Groups\",fonts:[\"FS;Manrope-medium\"],verticalAlignment:\"center\",withExternalLayout:true})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13pobxg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13sz446\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{initial:animation2}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-d73zbp-container\",\"data-framer-appear-id\":\"d73zbp\",initial:animation1,nodeId:\"Arkl_e5v9\",optimized:true,rendersWithMotion:true,scopeId:\"tK8htS8LW\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{aVAUdqOwT:\"Sign Up for Free\",F5YHoNhlf:\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(255, 255, 255))\",GfeR_nz27:\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(21, 128, 61))\",height:\"100%\",id:\"Arkl_e5v9\",JCzdTqLPe:\"var(--token-23ac8a8a-b8fb-4215-aa5f-899901ca3b47, rgb(229, 231, 235))\",layoutId:\"Arkl_e5v9\",Sbspe12vp:{borderColor:'var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(21, 128, 61)) /* {\"name\":\"Green_700\"} */',borderStyle:\"solid\",borderWidth:1},T3uW8eIjv:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",variant:\"u1EluPLyB\",veRuDb6NA:\"https://console.periskope.app\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{initial:animation2}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-19fxyup-container\",\"data-framer-appear-id\":\"19fxyup\",initial:animation1,nodeId:\"HyDGdgGgy\",optimized:true,rendersWithMotion:true,scopeId:\"tK8htS8LW\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{aVAUdqOwT:\"Book a Demo\",F5YHoNhlf:\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\",GfeR_nz27:\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(255, 255, 255))\",height:\"100%\",id:\"HyDGdgGgy\",JCzdTqLPe:\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(21, 128, 61))\",layoutId:\"HyDGdgGgy\",Sbspe12vp:{borderColor:'var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(255, 255, 255)) /* {\"name\":\"Ghost White\"} */',borderStyle:\"solid\",borderWidth:1},T3uW8eIjv:\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(46, 144, 250))\",variant:\"u1EluPLyB\",veRuDb6NA:\"https://cal.com/team/periskope/demo\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vc83ms\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cf21f051-895e-40b8-8dc5-e5cf5fec44a8, rgb(156, 163, 175))\"},children:\"Connect any WhatsApp Number. No WhatsApp Business API Required.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cf21f051-895e-40b8-8dc5-e5cf5fec44a8, rgb(156, 163, 175))\"},children:\"Connect any WhatsApp Number. No WhatsApp Business API Required.\"})}),className:\"framer-9zfnvj\",\"data-framer-name\":\"An all powerful platform to drive sales, customer success and business operations on WhatsApp Groups\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eu96af\",\"data-framer-name\":\"Clients\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q4w875\",\"data-framer-name\":\"Customer-list\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(243, 244, 246))\"},children:\"Powering 2000+ companies across 50+ countries\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(243, 244, 246))\"},children:\"Powering 2000+ companies across 50+ countries\"})}),className:\"framer-1nmwznz\",\"data-framer-name\":\"An all powerful platform to drive sales, customer success and business operations on WhatsApp Groups\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eze51f\",\"data-framer-name\":\"Title & Subtitle\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-bc18i9\",\"data-framer-name\":\"div.sc-a349924d-0\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-po2k8i\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yyn6ch-container\",isModuleExternal:true,nodeId:\"gz916MDQW\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"gz916MDQW\",layoutId:\"gz916MDQW\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"1591px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mm6ug4-container\",inComponentSlot:true,nodeId:\"WataF6Hs_\",rendersWithMotion:true,scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(LogoGray,{height:\"100%\",id:\"WataF6Hs_\",layoutId:\"WataF6Hs_\",variant:\"iWcsa92CW\",width:\"100%\"})})})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-mcoswx\",\"data-framer-name\":\"How-it-works\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dx58y0\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a5b2pc\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\"},children:[\"The only platform you need to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\"},children:\"automate your day to day business\"}),\" on WhatsApp\"]})})},nDsF6JDOS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\"},children:[\"The only platform you need to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\"},children:\"automate your day to day business\"}),\" on WhatsApp\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\"},children:[\"The only platform you need to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\"},children:\"automate your day to day business\"}),\" on WhatsApp\"]})}),className:\"framer-cpc96d\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Manrope-600\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref1,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qde575 hidden-ob5fwf\",\"data-framer-name\":\"doodle-underline\",style:{transformPerspective:1200}})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vsrnnx\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d7lpa\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-neu6n6\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6wan32\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17muo13-container\",nodeId:\"MblBSAaAL\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",HR6VvY__G:\"MULTI-NUMBER INBOX\",id:\"MblBSAaAL\",layoutId:\"MblBSAaAL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Gain complete visibility and control over your team's WhatsApp conversations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Gain complete visibility and control over your team's WhatsApp conversations\"})}),className:\"framer-1lm2y08\",\"data-framer-name\":\"Text\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dqyz9u\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x7is4g\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7g57ll-container\",isModuleExternal:true,nodeId:\"lkW2xcoss\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"House\",id:\"lkW2xcoss\",layoutId:\"lkW2xcoss\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-141n2mq\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Multi-number inbox: \"}),\"connect multiple numbers to one shared inbox. Works with any WhatsApp number.\"]})}),className:\"framer-1hkpvk7\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jexj63\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wrehbk-container\",isModuleExternal:true,nodeId:\"eg1TB8pJ5\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"House\",id:\"eg1TB8pJ5\",layoutId:\"eg1TB8pJ5\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p9ij5f\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Team access:\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\"},children:\" \"}),\"enable your entire team to view and respond to messages without direct WhatsApp access\"]})}),className:\"framer-1dzjfx1\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\",\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xzsa0k\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kt8566-container\",isModuleExternal:true,nodeId:\"OyMnr0xIP\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"House\",id:\"OyMnr0xIP\",layoutId:\"OyMnr0xIP\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10bv2hg\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Track metrics: \"}),\"monitor key metrics like # response rates and times, unanswered questions, and more.\"]})}),className:\"framer-hdm15x\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hsizuf\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p7h6d3-container\",isModuleExternal:true,nodeId:\"FQm1hrF2e\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"House\",id:\"FQm1hrF2e\",layoutId:\"FQm1hrF2e\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7jazlf\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Works with any number: \"}),\"does not require WhatsApp business API. Works with any WhatsApp number.\"]})}),className:\"framer-l4ygwn\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-fb3zjm-container\",\"data-framer-appear-id\":\"fb3zjm\",initial:animation6,nodeId:\"oFllesg_E\",optimized:true,rendersWithMotion:true,scopeId:\"tK8htS8LW\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Button,{aVAUdqOwT:\"Book a Demo\",F5YHoNhlf:\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(255, 255, 255))\",GfeR_nz27:\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\",height:\"100%\",id:\"oFllesg_E\",JCzdTqLPe:\"var(--token-23ac8a8a-b8fb-4215-aa5f-899901ca3b47, rgb(229, 231, 235))\",layoutId:\"oFllesg_E\",Sbspe12vp:{borderColor:'var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18)) /* {\"name\":\"Gray_950\"} */',borderStyle:\"solid\",borderWidth:1},T3uW8eIjv:\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\",variant:\"Mz6Pk7UUN\",veRuDb6NA:\"https://cal.com/team/periskope/demo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref1,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ejj842\",\"data-framer-name\":\"Visual Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nDsF6JDOS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1176,intrinsicWidth:1176,pixelHeight:1650,pixelWidth:1650,sizes:\"714px\",src:\"https://framerusercontent.com/images/hY48dv0ZK3sEBmSQCfkFrKjHDYA.png\",srcSet:\"https://framerusercontent.com/images/hY48dv0ZK3sEBmSQCfkFrKjHDYA.png?scale-down-to=512 512w,https://framerusercontent.com/images/hY48dv0ZK3sEBmSQCfkFrKjHDYA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hY48dv0ZK3sEBmSQCfkFrKjHDYA.png 1650w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1176,intrinsicWidth:1176,pixelHeight:1650,pixelWidth:1650,sizes:\"550px\",src:\"https://framerusercontent.com/images/hY48dv0ZK3sEBmSQCfkFrKjHDYA.png\",srcSet:\"https://framerusercontent.com/images/hY48dv0ZK3sEBmSQCfkFrKjHDYA.png?scale-down-to=512 512w,https://framerusercontent.com/images/hY48dv0ZK3sEBmSQCfkFrKjHDYA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hY48dv0ZK3sEBmSQCfkFrKjHDYA.png 1650w\"},className:\"framer-19mzna6\",\"data-framer-name\":\"image\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c97lig\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref1,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gcvymf\",\"data-framer-name\":\"Visual Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1176,intrinsicWidth:1176,pixelHeight:1650,pixelWidth:1650,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1300px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/jh23jkEKpa9tZE1T3SjOamM9Nrk.png\",srcSet:\"https://framerusercontent.com/images/jh23jkEKpa9tZE1T3SjOamM9Nrk.png?scale-down-to=512 512w,https://framerusercontent.com/images/jh23jkEKpa9tZE1T3SjOamM9Nrk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jh23jkEKpa9tZE1T3SjOamM9Nrk.png 1650w\"}},nDsF6JDOS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1176,intrinsicWidth:1176,pixelHeight:1650,pixelWidth:1650,sizes:\"714px\",src:\"https://framerusercontent.com/images/jh23jkEKpa9tZE1T3SjOamM9Nrk.png\",srcSet:\"https://framerusercontent.com/images/jh23jkEKpa9tZE1T3SjOamM9Nrk.png?scale-down-to=512 512w,https://framerusercontent.com/images/jh23jkEKpa9tZE1T3SjOamM9Nrk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jh23jkEKpa9tZE1T3SjOamM9Nrk.png 1650w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1176,intrinsicWidth:1176,pixelHeight:1650,pixelWidth:1650,sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 140px) / 2, 1px), 550px), 1px)`,src:\"https://framerusercontent.com/images/jh23jkEKpa9tZE1T3SjOamM9Nrk.png\",srcSet:\"https://framerusercontent.com/images/jh23jkEKpa9tZE1T3SjOamM9Nrk.png?scale-down-to=512 512w,https://framerusercontent.com/images/jh23jkEKpa9tZE1T3SjOamM9Nrk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jh23jkEKpa9tZE1T3SjOamM9Nrk.png 1650w\"},className:\"framer-1crfn6q\",\"data-framer-name\":\"image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-69lva9\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ohevq6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gwq7s7-container\",nodeId:\"ai9L0HvqP\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",HR6VvY__G:\"CREATE TICKETS & TASKS\",id:\"ai9L0HvqP\",layoutId:\"ai9L0HvqP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Effortlessly flag important messages and manage customer queries \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Effortlessly flag important messages and manage customer queries \"})}),className:\"framer-ffgr3w\",\"data-framer-name\":\"Text\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yjuq92\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17f05kp\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11131dp-container\",isModuleExternal:true,nodeId:\"Y6RshVlvg\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"House\",id:\"Y6RshVlvg\",layoutId:\"Y6RshVlvg\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m8xpko\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Create tickets: \"}),\" Instantly turn any customer query across group or 1:1 chats into tickets. \"]})}),className:\"framer-10ozuqt\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1udlp7v\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tjhezc-container\",isModuleExternal:true,nodeId:\"dx0rTbk4a\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"House\",id:\"dx0rTbk4a\",layoutId:\"dx0rTbk4a\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uo70yv\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Flag important queries:\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\"},children:\" \"}),\"automatically identify and flag important queries with AI or use emojis to create tasks\"]})}),className:\"framer-1fi5o9h\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\",\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14az84o\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-a2qxah-container\",isModuleExternal:true,nodeId:\"Gwh0Ar2HT\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"House\",id:\"Gwh0Ar2HT\",layoutId:\"Gwh0Ar2HT\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1syrzlw\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Integrate with your systems: \"}),\"easily sync and push tickets to HubSpot, Freshdesk, Zoho, Slack, and more.\"]})}),className:\"framer-lzy7w0\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13awphz\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zc0ou8-container\",isModuleExternal:true,nodeId:\"Zuf7bkaU7\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"House\",id:\"Zuf7bkaU7\",layoutId:\"Zuf7bkaU7\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-192vd9i\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Track metrics: \"}),\"monitor unanswered questions, open tickets, resolution times, & agent performance \"]})}),className:\"framer-lgkhqe\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-m3vvch-container\",\"data-framer-appear-id\":\"m3vvch\",initial:animation6,nodeId:\"nttudGWbU\",optimized:true,rendersWithMotion:true,scopeId:\"tK8htS8LW\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Button,{aVAUdqOwT:\"Book a Demo\",F5YHoNhlf:\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(255, 255, 255))\",GfeR_nz27:\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\",height:\"100%\",id:\"nttudGWbU\",JCzdTqLPe:\"var(--token-23ac8a8a-b8fb-4215-aa5f-899901ca3b47, rgb(229, 231, 235))\",layoutId:\"nttudGWbU\",Sbspe12vp:{borderColor:'var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18)) /* {\"name\":\"Gray_950\"} */',borderStyle:\"solid\",borderWidth:1},T3uW8eIjv:\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\",variant:\"Mz6Pk7UUN\",veRuDb6NA:\"https://cal.com/team/periskope/demo\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e0m9qq\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ljljlf\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iopxbx\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t8i0if-container\",nodeId:\"Uw26BjZ8p\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",HR6VvY__G:\"MANAGE GROUPS\",id:\"Uw26BjZ8p\",layoutId:\"Uw26BjZ8p\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Purpose built for WhatsApp group and community management\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Purpose built for WhatsApp group and community management\"})}),className:\"framer-1hjbcec\",\"data-framer-name\":\"Text\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-128i4cl\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-36q4fb\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ldtofh-container\",isModuleExternal:true,nodeId:\"llv1tFNDx\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"House\",id:\"llv1tFNDx\",layoutId:\"llv1tFNDx\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ezhzan\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Scheduled messaging: \"}),\"schedule and send messages to WhatsApp groups & contacts in one click\"]})}),className:\"framer-rqieuz\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1baq40b\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6125q8-container\",isModuleExternal:true,nodeId:\"j2bFsbs9Q\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"House\",id:\"j2bFsbs9Q\",layoutId:\"j2bFsbs9Q\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v3oj9q\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Role based permissions:\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\"},children:\" \"}),\"set role-based permissions for team members to send messages, respond to queries etc\"]})}),className:\"framer-r5h53h\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\",\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sxd72c\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13g00l-container\",isModuleExternal:true,nodeId:\"Honv5v_ym\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"House\",id:\"Honv5v_ym\",layoutId:\"Honv5v_ym\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tbaf4o\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Detailed group analytics: \"}),\"get insights on message volume, open rates, response times and unanswered queries\"]})}),className:\"framer-ubtbxh\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-empa1d\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17sty3n-container\",isModuleExternal:true,nodeId:\"ILn8vIkym\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"House\",id:\"ILn8vIkym\",layoutId:\"ILn8vIkym\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1grb0bj\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Automate groups actions: \"}),\"automatically create groups, send messages, raise tickets and more with custom rules\"]})}),className:\"framer-d5bw6b\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-qmpjnp-container\",\"data-framer-appear-id\":\"qmpjnp\",initial:animation6,nodeId:\"aCittmJaH\",optimized:true,rendersWithMotion:true,scopeId:\"tK8htS8LW\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Button,{aVAUdqOwT:\"Book a Demo\",F5YHoNhlf:\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(255, 255, 255))\",GfeR_nz27:\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\",height:\"100%\",id:\"aCittmJaH\",JCzdTqLPe:\"var(--token-23ac8a8a-b8fb-4215-aa5f-899901ca3b47, rgb(229, 231, 235))\",layoutId:\"aCittmJaH\",Sbspe12vp:{borderColor:'var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18)) /* {\"name\":\"Gray_950\"} */',borderStyle:\"solid\",borderWidth:1},T3uW8eIjv:\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\",variant:\"Mz6Pk7UUN\",veRuDb6NA:\"https://cal.com/team/periskope/demo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref1,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nrn41b\",\"data-framer-name\":\"Visual Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1176,intrinsicWidth:1176,pixelHeight:1650,pixelWidth:1650,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 32px) * 0.9688, 1px)`,src:\"https://framerusercontent.com/images/ksbS0BVx02Cg34QnRe9zfgqTk.png\",srcSet:\"https://framerusercontent.com/images/ksbS0BVx02Cg34QnRe9zfgqTk.png?scale-down-to=512 512w,https://framerusercontent.com/images/ksbS0BVx02Cg34QnRe9zfgqTk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ksbS0BVx02Cg34QnRe9zfgqTk.png 1650w\"}},nDsF6JDOS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1176,intrinsicWidth:1176,pixelHeight:1650,pixelWidth:1650,sizes:\"714px\",src:\"https://framerusercontent.com/images/ksbS0BVx02Cg34QnRe9zfgqTk.png\",srcSet:\"https://framerusercontent.com/images/ksbS0BVx02Cg34QnRe9zfgqTk.png?scale-down-to=512 512w,https://framerusercontent.com/images/ksbS0BVx02Cg34QnRe9zfgqTk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ksbS0BVx02Cg34QnRe9zfgqTk.png 1650w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1176,intrinsicWidth:1176,pixelHeight:1650,pixelWidth:1650,sizes:`max(min(max(((min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px) * 0.9688 - 100px) / 2, 1px), 550px), 1px)`,src:\"https://framerusercontent.com/images/ksbS0BVx02Cg34QnRe9zfgqTk.png\",srcSet:\"https://framerusercontent.com/images/ksbS0BVx02Cg34QnRe9zfgqTk.png?scale-down-to=512 512w,https://framerusercontent.com/images/ksbS0BVx02Cg34QnRe9zfgqTk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ksbS0BVx02Cg34QnRe9zfgqTk.png 1650w\"},className:\"framer-ob0ojl\",\"data-framer-name\":\"image\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sfqe5z\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref1,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rxeuz4\",\"data-framer-name\":\"Visual Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{background:{alt:\"\",fit:\"fill\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 32px) * 0.9692, 1px)`,src:\"https://framerusercontent.com/images/rMmzSTyqnu02wux5sEeU2Tc9Qo.png\",srcSet:\"https://framerusercontent.com/images/rMmzSTyqnu02wux5sEeU2Tc9Qo.png?scale-down-to=512 512w,https://framerusercontent.com/images/rMmzSTyqnu02wux5sEeU2Tc9Qo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rMmzSTyqnu02wux5sEeU2Tc9Qo.png 1650w\"}},nDsF6JDOS:{background:{alt:\"\",fit:\"fill\",sizes:`max(min(min(${componentViewport?.width||\"100vw\"} - 60px, 1300px) * 0.9692 - 20px, 810px), 1px)`,src:\"https://framerusercontent.com/images/rMmzSTyqnu02wux5sEeU2Tc9Qo.png\",srcSet:\"https://framerusercontent.com/images/rMmzSTyqnu02wux5sEeU2Tc9Qo.png?scale-down-to=512 512w,https://framerusercontent.com/images/rMmzSTyqnu02wux5sEeU2Tc9Qo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rMmzSTyqnu02wux5sEeU2Tc9Qo.png 1650w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max(min(max(((min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px) * 0.9692 - 100px) / 2, 1px), 550px), 1px)`,src:\"https://framerusercontent.com/images/rMmzSTyqnu02wux5sEeU2Tc9Qo.png\",srcSet:\"https://framerusercontent.com/images/rMmzSTyqnu02wux5sEeU2Tc9Qo.png?scale-down-to=512 512w,https://framerusercontent.com/images/rMmzSTyqnu02wux5sEeU2Tc9Qo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rMmzSTyqnu02wux5sEeU2Tc9Qo.png 1650w\"},className:\"framer-1gbywxg\",\"data-framer-name\":\"image 76\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rpiwmj\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rb5xsv\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x0396u-container\",nodeId:\"r2lORuona\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",HR6VvY__G:\"AUTOMATE ACTIONS\",id:\"r2lORuona\",layoutId:\"r2lORuona\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Automate replies, tasks & actions on WhatsApp groups & chats\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Automate replies, tasks & actions on WhatsApp groups & chats\"})}),className:\"framer-19o3wxt\",\"data-framer-name\":\"Text\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x966nb\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-orgy7y\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mwnp0s-container\",isModuleExternal:true,nodeId:\"sqKyCY_qP\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"House\",id:\"sqKyCY_qP\",layoutId:\"sqKyCY_qP\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eq8w0k\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Automated Replies: \"}),\" Instantly respond to messages with certain keywords or outside business hours\"]})}),className:\"framer-140un3i\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g8gf4i\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p6dqwi-container\",isModuleExternal:true,nodeId:\"oP73rxwSB\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"House\",id:\"oP73rxwSB\",layoutId:\"oP73rxwSB\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3760ku\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Automated Ticketing:\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\"},children:\" \"}),\"automatically create tickets from customer queries or flagged messages\"]})}),className:\"framer-100t8o5\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\",\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17sj3hf\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8t0ptr-container\",isModuleExternal:true,nodeId:\"baei8qq65\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"House\",id:\"baei8qq65\",layoutId:\"baei8qq65\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nddw4w\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Auto-assign chats: \"}),\"distribute new chats and tasks to individual agents based on pre-set rules\"]})}),className:\"framer-n03zq0\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l044nv\",\"data-framer-name\":\"_Feature text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-119w87u-container\",isModuleExternal:true,nodeId:\"k2JIYP6m3\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"House\",id:\"k2JIYP6m3\",layoutId:\"k2JIYP6m3\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a819lw\",\"data-framer-name\":\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Automated Notifications: \"}),\"get notified instantly for SLA breaches or messages from key contacts\"]})}),className:\"framer-oeoxzo\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-g7kanf-container\",\"data-framer-appear-id\":\"g7kanf\",initial:animation6,nodeId:\"XoCgA3y98\",optimized:true,rendersWithMotion:true,scopeId:\"tK8htS8LW\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Button,{aVAUdqOwT:\"Book a Demo\",F5YHoNhlf:\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(255, 255, 255))\",GfeR_nz27:\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\",height:\"100%\",id:\"XoCgA3y98\",JCzdTqLPe:\"var(--token-23ac8a8a-b8fb-4215-aa5f-899901ca3b47, rgb(229, 231, 235))\",layoutId:\"XoCgA3y98\",Sbspe12vp:{borderColor:'var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18)) /* {\"name\":\"Gray_950\"} */',borderStyle:\"solid\",borderWidth:1},T3uW8eIjv:\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\",variant:\"Mz6Pk7UUN\",veRuDb6NA:\"https://cal.com/team/periskope/demo\",width:\"100%\"})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-10e4ul8\",\"data-framer-name\":\"Case Studies & Features\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16cce57\",\"data-framer-name\":\"Case Studies\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"How Periskope drives \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Real Results \"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e3adc95c-c95f-4a68-8074-3aa00953f704, rgb(4, 18, 0))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"for Global Companies\"})})]})})},nDsF6JDOS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"How Periskope drives \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Real Results \"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e3adc95c-c95f-4a68-8074-3aa00953f704, rgb(4, 18, 0))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"for Global Companies\"})})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"How Periskope drives \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Real Results \"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e3adc95c-c95f-4a68-8074-3aa00953f704, rgb(4, 18, 0))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"for Global Companies\"})})]})}),className:\"framer-1fqr5nf\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Manrope-600\",\"GF;Manrope-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wr83nv\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pltk33\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://periskope.app/case-studies/real-estate-whatsapp-case-study\",motionChild:true,nodeId:\"cWY3d8ml1\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 48px)`,src:\"https://framerusercontent.com/images/CAwNlIMuXitl9Yd30DF9IgKMBU.png\",srcSet:\"https://framerusercontent.com/images/CAwNlIMuXitl9Yd30DF9IgKMBU.png?scale-down-to=512 512w,https://framerusercontent.com/images/CAwNlIMuXitl9Yd30DF9IgKMBU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CAwNlIMuXitl9Yd30DF9IgKMBU.png 1920w\"}},nDsF6JDOS:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 92px, 1px)`,src:\"https://framerusercontent.com/images/CAwNlIMuXitl9Yd30DF9IgKMBU.png\",srcSet:\"https://framerusercontent.com/images/CAwNlIMuXitl9Yd30DF9IgKMBU.png?scale-down-to=512 512w,https://framerusercontent.com/images/CAwNlIMuXitl9Yd30DF9IgKMBU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CAwNlIMuXitl9Yd30DF9IgKMBU.png 1920w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:`max((max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 96px, 1px) - 48px) / 3, 1px)`,src:\"https://framerusercontent.com/images/CAwNlIMuXitl9Yd30DF9IgKMBU.png\",srcSet:\"https://framerusercontent.com/images/CAwNlIMuXitl9Yd30DF9IgKMBU.png?scale-down-to=512 512w,https://framerusercontent.com/images/CAwNlIMuXitl9Yd30DF9IgKMBU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CAwNlIMuXitl9Yd30DF9IgKMBU.png 1920w\"},className:\"framer-1rj4lw framer-1hriwp6\",\"data-framer-name\":\"Item\",whileHover:animation7,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-150lbng\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f0ypz3\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hydooe\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-dc4e1860-b2d5-4bac-af66-42f382a73c31, rgb(255, 255, 255))\"},children:\"Real Estate\"})}),className:\"framer-zd7v44\",\"data-framer-name\":\"Text\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-dc4e1860-b2d5-4bac-af66-42f382a73c31, rgb(255, 255, 255))\"},children:\"How India's largest PropTech manages 5000+ WhatsApp Groups with Periskope\"})}),className:\"framer-h0fo6o\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://periskope.app/case-studies/financial-services-whatsapp-case-study\",motionChild:true,nodeId:\"ZINl4pgsP\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 48px)`,src:\"https://framerusercontent.com/images/SCEqmTAtZTgB5S11Iqu40rgVe0.png\",srcSet:\"https://framerusercontent.com/images/SCEqmTAtZTgB5S11Iqu40rgVe0.png?scale-down-to=512 512w,https://framerusercontent.com/images/SCEqmTAtZTgB5S11Iqu40rgVe0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SCEqmTAtZTgB5S11Iqu40rgVe0.png 1920w\"}},nDsF6JDOS:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 92px, 1px)`,src:\"https://framerusercontent.com/images/SCEqmTAtZTgB5S11Iqu40rgVe0.png\",srcSet:\"https://framerusercontent.com/images/SCEqmTAtZTgB5S11Iqu40rgVe0.png?scale-down-to=512 512w,https://framerusercontent.com/images/SCEqmTAtZTgB5S11Iqu40rgVe0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SCEqmTAtZTgB5S11Iqu40rgVe0.png 1920w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:`max((max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 96px, 1px) - 48px) / 3, 1px)`,src:\"https://framerusercontent.com/images/SCEqmTAtZTgB5S11Iqu40rgVe0.png\",srcSet:\"https://framerusercontent.com/images/SCEqmTAtZTgB5S11Iqu40rgVe0.png?scale-down-to=512 512w,https://framerusercontent.com/images/SCEqmTAtZTgB5S11Iqu40rgVe0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SCEqmTAtZTgB5S11Iqu40rgVe0.png 1920w\"},className:\"framer-1v6lwa9 framer-1hriwp6\",\"data-framer-name\":\"Item\",whileHover:animation7,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1exwllt\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aac1pj\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8paw94\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(255, 255, 255))\"},children:\"Financial Services\"})}),className:\"framer-tj1l3n\",\"data-framer-name\":\"Text\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(255, 255, 255))\"},children:\"How an Indonesian Fintech manages 800+ daily queries on client WhatsApp groups\"})}),className:\"framer-1fvh77c\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://periskope.app/case-studies/education-whatsapp-case-study\",motionChild:true,nodeId:\"MSTACZVfd\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 48px)`,src:\"https://framerusercontent.com/images/0myFM7JpUQDCpwaN2Jcm4vTRI.png\",srcSet:\"https://framerusercontent.com/images/0myFM7JpUQDCpwaN2Jcm4vTRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/0myFM7JpUQDCpwaN2Jcm4vTRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0myFM7JpUQDCpwaN2Jcm4vTRI.png 1920w\"}},nDsF6JDOS:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 92px, 1px)`,src:\"https://framerusercontent.com/images/0myFM7JpUQDCpwaN2Jcm4vTRI.png\",srcSet:\"https://framerusercontent.com/images/0myFM7JpUQDCpwaN2Jcm4vTRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/0myFM7JpUQDCpwaN2Jcm4vTRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0myFM7JpUQDCpwaN2Jcm4vTRI.png 1920w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:`max((max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 96px, 1px) - 48px) / 3, 1px)`,src:\"https://framerusercontent.com/images/0myFM7JpUQDCpwaN2Jcm4vTRI.png\",srcSet:\"https://framerusercontent.com/images/0myFM7JpUQDCpwaN2Jcm4vTRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/0myFM7JpUQDCpwaN2Jcm4vTRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0myFM7JpUQDCpwaN2Jcm4vTRI.png 1920w\"},className:\"framer-1gks5j5 framer-1hriwp6\",\"data-framer-name\":\"Item\",whileHover:animation7,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m53mfm\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mhhiav\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dixum3\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(255, 255, 255))\"},children:\"Edtech\"})}),className:\"framer-1a2oftu\",\"data-framer-name\":\"Text\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(255, 255, 255))\"},children:\"How an Edtech Manages 12000+ Inquiries Across 20+ Sales WhatsApp Numbers\"})}),className:\"framer-mzil9d\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})]})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ny7z8b\",\"data-framer-name\":\"More Features\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-35432325-8564-484b-8350-d8632ce9b0f0, rgb(27, 182, 112))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Improve Productivity,\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" Automate Actions & \"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"Connect with your Systems\"})]})})},nDsF6JDOS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"56px\",\"--framer-text-color\":\"var(--token-35432325-8564-484b-8350-d8632ce9b0f0, rgb(27, 182, 112))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Improve Productivity,\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"56px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" Automate Actions & \"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"56px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"56px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Connect with your Systems\"})})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-35432325-8564-484b-8350-d8632ce9b0f0, rgb(27, 182, 112))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Improve Productivity,\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" Automate Actions & \"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"Connect with your Systems\"})]})}),className:\"framer-h59zkv\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Manrope-600\",\"GF;Manrope-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17bozzx\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e8yzl7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oi556j\",\"data-framer-name\":\"Col\",whileHover:animation8,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hf4voe-container\",isModuleExternal:true,nodeId:\"d0zFS2t9x\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-35432325-8564-484b-8350-d8632ce9b0f0, rgb(27, 182, 112))\",height:\"100%\",iconSearch:\"Link\",iconSelection:\"House\",id:\"d0zFS2t9x\",layoutId:\"d0zFS2t9x\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lgdh59\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Custom APIs & Webhooks\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Custom APIs & Webhooks\"})}),className:\"framer-1pd5rcc\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:\"Connect with internal systems to manage multiple WhatsApp numbers, groups & chats with custom APIs & Webhooks\"})}),className:\"framer-1hvqwhf\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lwilzm-container\",nodeId:\"tKaoR6GWL\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Link1,{e1Nl3sxPr:\"https://docs.periskope.app/api-reference/introduction\",height:\"100%\",id:\"tKaoR6GWL\",layoutId:\"tKaoR6GWL\",variant:\"uOP0p5DYo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11mffm4\",\"data-framer-name\":\"Col\",whileHover:animation8,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l5fu7u-container\",isModuleExternal:true,nodeId:\"rN248E4rB\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-35432325-8564-484b-8350-d8632ce9b0f0, rgb(27, 182, 112))\",height:\"100%\",iconSearch:\"robot\",iconSelection:\"House\",id:\"rN248E4rB\",layoutId:\"rN248E4rB\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c0spo9\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"AI-enabled Productivity\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"AI-enabled Productivity\"})}),className:\"framer-y7iirw\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:\"Use AI to auto flag important queries, summarize chats and draft responses with complete context\"})}),className:\"framer-1n8hnxl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mb68d0-container\",nodeId:\"GmI2Ljpev\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Link1,{e1Nl3sxPr:\"https://docs.periskope.app/tickets/AI-flagged-messages\",height:\"100%\",id:\"GmI2Ljpev\",layoutId:\"GmI2Ljpev\",variant:\"uOP0p5DYo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9ob5ru\",\"data-framer-name\":\"Col\",whileHover:animation8,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rhyre6-container\",isModuleExternal:true,nodeId:\"dDexOpimY\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-35432325-8564-484b-8350-d8632ce9b0f0, rgb(27, 182, 112))\",height:\"100%\",iconSearch:\"git-fork\",iconSelection:\"House\",id:\"dDexOpimY\",layoutId:\"dDexOpimY\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b16jcv\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Automated Actions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Automated Actions\"})}),className:\"framer-1uu7cm8\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:\"Automate replies, send messages, create tickets, forward chats, and more with a powerful custom rules engine.\"})}),className:\"framer-19ctl3l\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1373g5y\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h1lxzy\",\"data-framer-name\":\"Col\",whileHover:animation8,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oekiun-container\",isModuleExternal:true,nodeId:\"X0TJxJACX\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-35432325-8564-484b-8350-d8632ce9b0f0, rgb(27, 182, 112))\",height:\"100%\",iconSearch:\"image\",iconSelection:\"House\",id:\"X0TJxJACX\",layoutId:\"X0TJxJACX\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-safrhx\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Media & Exports\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Media & Exports\"})}),className:\"framer-2s32uc\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:\"Easily manage and export media, group members and properties, conversations, messages and more.\"})}),className:\"framer-12omd42\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pca3nr-container\",nodeId:\"kxkgeHLBN\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Link1,{e1Nl3sxPr:\"https://docs.periskope.app/features/export-data\",height:\"100%\",id:\"kxkgeHLBN\",layoutId:\"kxkgeHLBN\",variant:\"uOP0p5DYo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5bwq3m\",\"data-framer-name\":\"Col\",whileHover:animation8,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18gepjo-container\",isModuleExternal:true,nodeId:\"ONOZEV9K7\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-35432325-8564-484b-8350-d8632ce9b0f0, rgb(27, 182, 112))\",height:\"100%\",iconSearch:\"chart-line\",iconSelection:\"House\",id:\"ONOZEV9K7\",layoutId:\"ONOZEV9K7\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1darw97\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Team & Chat Analytics\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Team & Chat Analytics\"})}),className:\"framer-15neq44\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:\"Monitor message volumes, open rates, response times, and unresolved queries for each team member in real-time.\"})}),className:\"framer-r1axl4\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5du7jt\",\"data-framer-name\":\"Col\",whileHover:animation8,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14qh1mv-container\",isModuleExternal:true,nodeId:\"x3gLKsaMk\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-35432325-8564-484b-8350-d8632ce9b0f0, rgb(27, 182, 112))\",height:\"100%\",iconSearch:\"clock-clockwise\",iconSelection:\"House\",id:\"x3gLKsaMk\",layoutId:\"x3gLKsaMk\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7o5s4r\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"5 Min Onboarding\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"5 Min Onboarding\"})}),className:\"framer-35lu7j\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-4f6cb50c-7bef-4780-853e-6a505633cd4e, rgb(75, 85, 99))\"},children:\"Connect any WhatsApp numbers and sync chats in <5 minutes. No Business API required.\"})}),className:\"framer-10s4vic\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jmn0fm-container\",nodeId:\"NuQQ8XW6f\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Link1,{e1Nl3sxPr:\"https://docs.periskope.app/get-started/connect-whatsapp\",height:\"100%\",id:\"NuQQ8XW6f\",layoutId:\"NuQQ8XW6f\",variant:\"uOP0p5DYo\",width:\"100%\"})})})]})]})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-15gwyg1\",\"data-framer-name\":\"Quote\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m9w3zs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fyrgmn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yi5xb-container\",isModuleExternal:true,nodeId:\"kDDGhbcuz\",rendersWithMotion:true,scopeId:\"tK8htS8LW\",style:{rotate:-180},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9e58b467-d431-4da3-9173-ad5c0badc8c4, rgb(34, 197, 94))\",height:\"100%\",iconSearch:\"quotes\",iconSelection:\"House\",id:\"kDDGhbcuz\",layoutId:\"kDDGhbcuz\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x2mch0\",\"data-framer-name\":\"Container\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"For companies that rely on WhatsApp, Periskope is the perfect tool. We use it to automate both internal & external communications. APIs are integrable with any CRM  and service is super fast with a reply TAT of 15 min. Highly recommended!\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"For companies that rely on WhatsApp, Periskope is the perfect tool. We use it to automate both internal & external communications. APIs are integrable with any CRM  and service is super fast with a reply TAT of 15 min. Highly recommended!\"})}),className:\"framer-dg6r8w\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Manrope-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\"},children:\"Aman Jain\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"Head of Strategy, Elivaas\"})]})}),className:\"framer-1l9vs31\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dys2pa hidden-362y8p hidden-ob5fwf\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1650,pixelWidth:1650,sizes:\"240px\",src:\"https://framerusercontent.com/images/tA3tibFo6UtP9OvbTs5WwKkyNYw.png\",srcSet:\"https://framerusercontent.com/images/tA3tibFo6UtP9OvbTs5WwKkyNYw.png?scale-down-to=512 512w,https://framerusercontent.com/images/tA3tibFo6UtP9OvbTs5WwKkyNYw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tA3tibFo6UtP9OvbTs5WwKkyNYw.png 1650w\"},className:\"framer-kxq7tq\",whileHover:animation9})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-t189a\",\"data-framer-name\":\"Integrations\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e3adc95c-c95f-4a68-8074-3aa00953f704, rgb(4, 18, 0))\"},children:[\"Native integrations to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-35432325-8564-484b-8350-d8632ce9b0f0, rgb(27, 182, 112))\"},children:\"connect WhatsApp \"}),/*#__PURE__*/_jsx(\"br\",{}),\"with your favorite apps \"]})})},nDsF6JDOS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e3adc95c-c95f-4a68-8074-3aa00953f704, rgb(4, 18, 0))\"},children:[\"Native integrations to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-35432325-8564-484b-8350-d8632ce9b0f0, rgb(27, 182, 112))\"},children:\"connect WhatsApp \"}),\"with \",/*#__PURE__*/_jsx(\"br\",{}),\"your favorite apps \"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e3adc95c-c95f-4a68-8074-3aa00953f704, rgb(4, 18, 0))\"},children:[\"Native integrations to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-35432325-8564-484b-8350-d8632ce9b0f0, rgb(27, 182, 112))\"},children:\"connect WhatsApp \"}),/*#__PURE__*/_jsx(\"br\",{}),\"with your favorite apps \"]})}),className:\"framer-xo8ic8\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Manrope-600\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-69ixkb\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eeyr8y\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://docs.periskope.app/integrations/hubspot\",motionChild:true,nodeId:\"bX25IqBpC\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{background:{alt:\"\",fit:\"fit\",pixelHeight:2160,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/HBpnXWerWmBYgDvJQYRQeIqwes.png\",srcSet:\"https://framerusercontent.com/images/HBpnXWerWmBYgDvJQYRQeIqwes.png?scale-down-to=512 512w,https://framerusercontent.com/images/HBpnXWerWmBYgDvJQYRQeIqwes.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HBpnXWerWmBYgDvJQYRQeIqwes.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HBpnXWerWmBYgDvJQYRQeIqwes.png 3840w\"}},nDsF6JDOS:{background:{alt:\"\",fit:\"fit\",pixelHeight:2160,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/HBpnXWerWmBYgDvJQYRQeIqwes.png\",srcSet:\"https://framerusercontent.com/images/HBpnXWerWmBYgDvJQYRQeIqwes.png?scale-down-to=512 512w,https://framerusercontent.com/images/HBpnXWerWmBYgDvJQYRQeIqwes.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HBpnXWerWmBYgDvJQYRQeIqwes.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HBpnXWerWmBYgDvJQYRQeIqwes.png 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:2160,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:\"233px\",src:\"https://framerusercontent.com/images/HBpnXWerWmBYgDvJQYRQeIqwes.png\",srcSet:\"https://framerusercontent.com/images/HBpnXWerWmBYgDvJQYRQeIqwes.png?scale-down-to=512 512w,https://framerusercontent.com/images/HBpnXWerWmBYgDvJQYRQeIqwes.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HBpnXWerWmBYgDvJQYRQeIqwes.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HBpnXWerWmBYgDvJQYRQeIqwes.png 3840w\"},className:\"framer-vyt060 framer-1hriwp6\",whileHover:animation10})})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.periskope.app/integrations/google-sheets\",motionChild:true,nodeId:\"mNMXJFtb7\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:1486,pixelWidth:2500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hn3BVEQOfvZLbp2qC0zb8e4rnQ.svg\"},className:\"framer-1ih7chp framer-1hriwp6\",whileHover:animation10})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://docs.periskope.app/integrations/zohodesk\",motionChild:true,nodeId:\"XsUIB4exB\",openInNewTab:true,scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:239,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WcMhhOPfdZ45FWCnXCsLYM6o83c.png\"},className:\"framer-yq8ic5 hidden-ob5fwf framer-1hriwp6\",whileHover:animation10})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ujko3m hidden-1m63b6o hidden-362y8p\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://docs.periskope.app/api-reference/introduction\",motionChild:true,nodeId:\"re_aoiecE\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:451,pixelWidth:1964,positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/ooTIcaB7PD88qT9vil8WGOrnI.png\",srcSet:\"https://framerusercontent.com/images/ooTIcaB7PD88qT9vil8WGOrnI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ooTIcaB7PD88qT9vil8WGOrnI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ooTIcaB7PD88qT9vil8WGOrnI.png 1964w\"},className:\"framer-zenqs8 framer-1hriwp6\",whileHover:animation10})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.periskope.app/integrations/zohodesk\",motionChild:true,nodeId:\"EZ7V76wm6\",openInNewTab:true,scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:239,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WcMhhOPfdZ45FWCnXCsLYM6o83c.png\"},className:\"framer-1xg51l8 framer-1hriwp6\",whileHover:animation10})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ku9k7p\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://docs.periskope.app/integrations/freshdesk\",motionChild:true,nodeId:\"y7seV_voi\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:1250,pixelWidth:2500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pMajWJm6c02CuB5rJSklGCpdoXk.svg\"},className:\"framer-pzijy5 framer-1hriwp6\",whileHover:animation10})}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.periskope.app/integrations/zapier\",motionChild:true,nodeId:\"gWbRZLhA4\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{background:{alt:\"\",fit:\"fit\",pixelHeight:1125,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/eaF17xregu2PSGmrpgWOKW9fbs4.png\",srcSet:\"https://framerusercontent.com/images/eaF17xregu2PSGmrpgWOKW9fbs4.png?scale-down-to=512 512w,https://framerusercontent.com/images/eaF17xregu2PSGmrpgWOKW9fbs4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eaF17xregu2PSGmrpgWOKW9fbs4.png 2000w\"}},nDsF6JDOS:{background:{alt:\"\",fit:\"fit\",pixelHeight:1125,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/eaF17xregu2PSGmrpgWOKW9fbs4.png\",srcSet:\"https://framerusercontent.com/images/eaF17xregu2PSGmrpgWOKW9fbs4.png?scale-down-to=512 512w,https://framerusercontent.com/images/eaF17xregu2PSGmrpgWOKW9fbs4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eaF17xregu2PSGmrpgWOKW9fbs4.png 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:1125,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:\"233.3333px\",src:\"https://framerusercontent.com/images/eaF17xregu2PSGmrpgWOKW9fbs4.png\",srcSet:\"https://framerusercontent.com/images/eaF17xregu2PSGmrpgWOKW9fbs4.png?scale-down-to=512 512w,https://framerusercontent.com/images/eaF17xregu2PSGmrpgWOKW9fbs4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eaF17xregu2PSGmrpgWOKW9fbs4.png 2000w\"},className:\"framer-prxbk2 framer-1hriwp6\",whileHover:animation10})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://docs.periskope.app/api-reference/introduction\",motionChild:true,nodeId:\"GgoqWaW5b\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nDsF6JDOS:{background:{alt:\"\",fit:\"fit\",pixelHeight:451,pixelWidth:1964,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/ooTIcaB7PD88qT9vil8WGOrnI.png\",srcSet:\"https://framerusercontent.com/images/ooTIcaB7PD88qT9vil8WGOrnI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ooTIcaB7PD88qT9vil8WGOrnI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ooTIcaB7PD88qT9vil8WGOrnI.png 1964w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:451,pixelWidth:1964,positionX:\"center\",positionY:\"center\",sizes:\"233px\",src:\"https://framerusercontent.com/images/ooTIcaB7PD88qT9vil8WGOrnI.png\",srcSet:\"https://framerusercontent.com/images/ooTIcaB7PD88qT9vil8WGOrnI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ooTIcaB7PD88qT9vil8WGOrnI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ooTIcaB7PD88qT9vil8WGOrnI.png 1964w\"},className:\"framer-enue2h hidden-ob5fwf framer-1hriwp6\",whileHover:animation10})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-db8yed\",\"data-framer-name\":\"Compliance\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yoxvsy\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Your privacy is our top priority\"})})},nDsF6JDOS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Your privacy is our top priority\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"Your privacy is our top priority\"})}),className:\"framer-fvkzf9\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"At Periskope, we\u2019re GDPR compliant, which means we go above and beyond to keep your data safe. Everything we build is designed with your privacy in mind, so you can focus on growing your business while we handle the protection.\"})})},nDsF6JDOS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"At Periskope, we\u2019re GDPR compliant, which means we go above and beyond to keep your data safe. Everything we build is designed with your privacy in mind, so you can focus on growing your business while we handle the protection.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf6287e1-3245-4863-9d8d-447b4cc968cb, rgb(3, 7, 18))\"},children:\"At Periskope, we\u2019re GDPR compliant, which means we go above and beyond to keep your data safe. Everything we build is designed with your privacy in mind, so you can focus on growing your business while we handle the protection.\"})}),className:\"framer-jvwxu9\",fonts:[\"GF;Manrope-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/A3VDu5osYK6PC9tNKyvftjv8pE.png\"},className:\"framer-hcqwkf\",\"data-framer-name\":\"GDPR-removebg-preview\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qm543\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(255, 255, 255))\"},children:\"Start your free trial today!\"})})},nDsF6JDOS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(255, 255, 255))\"},children:\"Start your free trial today!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(255, 255, 255))\"},children:\"Start your free trial today!\"})}),className:\"framer-8n8umz\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2czae3\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qjwy2v-container\",nodeId:\"jLvVZFW9G\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{variant:\"xBli3m5d6\"}},children:/*#__PURE__*/_jsx(Button,{aVAUdqOwT:\"Sign up for free\",F5YHoNhlf:\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(255, 255, 255))\",GfeR_nz27:\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(46, 144, 250))\",height:\"100%\",id:\"jLvVZFW9G\",JCzdTqLPe:\"var(--token-23ac8a8a-b8fb-4215-aa5f-899901ca3b47, rgb(229, 231, 235))\",layoutId:\"jLvVZFW9G\",Sbspe12vp:{borderColor:'var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(21, 128, 61)) /* {\"name\":\"Green_700\"} */',borderStyle:\"solid\",borderWidth:1},T3uW8eIjv:\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(46, 144, 250))\",variant:\"Mz6Pk7UUN\",veRuDb6NA:\"https://console.periskope.app\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3qht0q-container\",nodeId:\"mdIZIQ2Q8\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{variant:\"je5Nvx0I_\"}},children:/*#__PURE__*/_jsx(Button,{aVAUdqOwT:\"Book a Demo\",F5YHoNhlf:\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(255, 255, 255))\",GfeR_nz27:\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(46, 144, 250))\",height:\"100%\",id:\"mdIZIQ2Q8\",JCzdTqLPe:\"var(--token-23ac8a8a-b8fb-4215-aa5f-899901ca3b47, rgb(229, 231, 235))\",layoutId:\"mdIZIQ2Q8\",Sbspe12vp:{borderColor:'var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(21, 128, 61)) /* {\"name\":\"Green_700\"} */',borderStyle:\"solid\",borderWidth:1},T3uW8eIjv:\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(46, 144, 250))\",variant:\"tC__QrhX9\",veRuDb6NA:\"https://cal.com/team/periskope/demo\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:581,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14rzszp-container\",nodeId:\"LG3P0agfc\",scopeId:\"tK8htS8LW\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ikUl4vpTH:{variant:\"ezaqz0JtD\"},nDsF6JDOS:{variant:\"dZ2tP4379\"}},children:/*#__PURE__*/_jsx(Footer01,{height:\"100%\",id:\"LG3P0agfc\",layoutId:\"LG3P0agfc\",variant:\"EO2j7UtkT\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-g1cvL.framer-1hriwp6, .framer-g1cvL .framer-1hriwp6 { display: block; }\",\".framer-g1cvL.framer-1m63b6o { align-content: center; align-items: center; background-color: var(--token-e3adc95c-c95f-4a68-8074-3aa00953f704, #041200); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-g1cvL .framer-1q7w5mo-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-g1cvL .framer-wdckan { align-content: center; align-items: center; background-color: var(--token-e3adc95c-c95f-4a68-8074-3aa00953f704, #041200); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-e1cz8 { 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; overflow: visible; padding: 0px 200px 0px 200px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-18nyjt9-container { aspect-ratio: 1 / 1; bottom: -97px; flex: none; height: var(--framer-aspect-ratio-supported, 490px); left: 164px; position: absolute; width: 490px; z-index: 0; }\",\".framer-g1cvL .framer-v4ieid { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 1264px; }\",\".framer-g1cvL .framer-kk6ply { 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: 0px 200px 0px 200px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-1dz2jg9 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 28px; justify-content: flex-start; overflow: visible; padding: 0px 13px 0px 13px; position: relative; text-decoration: none; width: min-content; }\",\".framer-g1cvL .framer-14eequ9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-g1cvL .framer-8d6dut { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-g1cvL .framer-1ntmhs9 { flex: none; height: 28px; position: relative; width: 22px; }\",\".framer-g1cvL .framer-1tkgujy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 0px 24px 0px; position: relative; width: 1354px; }\",\".framer-g1cvL .framer-ymbblw { 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: 0px; position: relative; width: 1352px; }\",\".framer-g1cvL .framer-q0g86l, .framer-g1cvL .framer-sq6r6e, .framer-g1cvL .framer-1nmwznz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-g1cvL .framer-h0yi19 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 718px; }\",\".framer-g1cvL .framer-39l0vn { 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: 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-13pobxg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-13sz446 { 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: 100%; }\",\".framer-g1cvL .framer-d73zbp-container, .framer-g1cvL .framer-19fxyup-container, .framer-g1cvL .framer-fb3zjm-container, .framer-g1cvL .framer-m3vvch-container, .framer-g1cvL .framer-qmpjnp-container, .framer-g1cvL .framer-g7kanf-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-g1cvL .framer-1vc83ms { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 48px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-9zfnvj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 477px; word-break: break-word; word-wrap: break-word; }\",'.framer-g1cvL .framer-1eu96af { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-e3adc95c-c95f-4a68-8074-3aa00953f704, #041200) /* {\"name\":\"Black_green\"} */ 0%, rgb(9, 48, 40) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 0px 50px 0px; position: relative; width: 100%; }',\".framer-g1cvL .framer-1q4w875 { 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 32px 0px 32px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-1eze51f { 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: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-bc18i9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-po2k8i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-g1cvL .framer-1yyn6ch-container { flex: none; height: 100px; position: relative; width: 1201px; }\",\".framer-g1cvL .framer-mm6ug4-container { height: auto; position: relative; width: auto; }\",\".framer-g1cvL .framer-mcoswx { align-content: center; align-items: center; background-color: var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-dx58y0 { 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: 1280px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-a5b2pc { 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: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-cpc96d, .framer-g1cvL .framer-1fqr5nf, .framer-g1cvL .framer-dg6r8w, .framer-g1cvL .framer-1l9vs31, .framer-g1cvL .framer-jvwxu9 { --framer-paragraph-spacing: 60px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-g1cvL .framer-1qde575 { bottom: 43px; flex: none; height: 18px; left: -2px; overflow: hidden; position: absolute; width: 302px; z-index: 1; }\",\".framer-g1cvL .framer-1vsrnnx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-d7lpa, .framer-g1cvL .framer-c97lig { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 10px 0px 10px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-neu6n6, .framer-g1cvL .framer-69lva9, .framer-g1cvL .framer-1ljljlf, .framer-g1cvL .framer-1rpiwmj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-g1cvL .framer-6wan32, .framer-g1cvL .framer-ohevq6, .framer-g1cvL .framer-1iopxbx, .framer-g1cvL .framer-1rb5xsv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-17muo13-container, .framer-g1cvL .framer-1gwq7s7-container, .framer-g1cvL .framer-t8i0if-container, .framer-g1cvL .framer-1x0396u-container, .framer-g1cvL .framer-lwilzm-container, .framer-g1cvL .framer-mb68d0-container, .framer-g1cvL .framer-pca3nr-container, .framer-g1cvL .framer-1jmn0fm-container, .framer-g1cvL .framer-qjwy2v-container, .framer-g1cvL .framer-3qht0q-container, .framer-g1cvL .framer-14rzszp-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-g1cvL .framer-1lm2y08, .framer-g1cvL .framer-1hkpvk7, .framer-g1cvL .framer-1dzjfx1, .framer-g1cvL .framer-hdm15x, .framer-g1cvL .framer-l4ygwn, .framer-g1cvL .framer-ffgr3w, .framer-g1cvL .framer-10ozuqt, .framer-g1cvL .framer-1fi5o9h, .framer-g1cvL .framer-lzy7w0, .framer-g1cvL .framer-lgkhqe, .framer-g1cvL .framer-1hjbcec, .framer-g1cvL .framer-rqieuz, .framer-g1cvL .framer-r5h53h, .framer-g1cvL .framer-ubtbxh, .framer-g1cvL .framer-d5bw6b, .framer-g1cvL .framer-19o3wxt, .framer-g1cvL .framer-140un3i, .framer-g1cvL .framer-100t8o5, .framer-g1cvL .framer-n03zq0, .framer-g1cvL .framer-oeoxzo { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-g1cvL .framer-1dqyz9u, .framer-g1cvL .framer-yjuq92, .framer-g1cvL .framer-128i4cl, .framer-g1cvL .framer-x966nb { align-content: flex-start; align-items: flex-start; background-color: #ffffff; 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: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-x7is4g, .framer-g1cvL .framer-jexj63, .framer-g1cvL .framer-xzsa0k, .framer-g1cvL .framer-hsizuf, .framer-g1cvL .framer-17f05kp, .framer-g1cvL .framer-1udlp7v, .framer-g1cvL .framer-14az84o, .framer-g1cvL .framer-13awphz, .framer-g1cvL .framer-36q4fb, .framer-g1cvL .framer-1baq40b, .framer-g1cvL .framer-1sxd72c, .framer-g1cvL .framer-empa1d, .framer-g1cvL .framer-orgy7y, .framer-g1cvL .framer-g8gf4i, .framer-g1cvL .framer-17sj3hf, .framer-g1cvL .framer-l044nv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-7g57ll-container, .framer-g1cvL .framer-wrehbk-container, .framer-g1cvL .framer-1kt8566-container, .framer-g1cvL .framer-p7h6d3-container, .framer-g1cvL .framer-11131dp-container, .framer-g1cvL .framer-tjhezc-container, .framer-g1cvL .framer-a2qxah-container, .framer-g1cvL .framer-zc0ou8-container, .framer-g1cvL .framer-ldtofh-container, .framer-g1cvL .framer-6125q8-container, .framer-g1cvL .framer-13g00l-container, .framer-g1cvL .framer-17sty3n-container, .framer-g1cvL .framer-1mwnp0s-container, .framer-g1cvL .framer-1p6dqwi-container, .framer-g1cvL .framer-8t0ptr-container, .framer-g1cvL .framer-119w87u-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-g1cvL .framer-141n2mq, .framer-g1cvL .framer-1p9ij5f, .framer-g1cvL .framer-10bv2hg, .framer-g1cvL .framer-7jazlf, .framer-g1cvL .framer-1m8xpko, .framer-g1cvL .framer-1uo70yv, .framer-g1cvL .framer-1syrzlw, .framer-g1cvL .framer-192vd9i, .framer-g1cvL .framer-ezhzan, .framer-g1cvL .framer-v3oj9q, .framer-g1cvL .framer-1tbaf4o, .framer-g1cvL .framer-1grb0bj, .framer-g1cvL .framer-eq8w0k, .framer-g1cvL .framer-3760ku, .framer-g1cvL .framer-1nddw4w, .framer-g1cvL .framer-1a819lw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 500px; }\",\".framer-g1cvL .framer-ejj842, .framer-g1cvL .framer-1gcvymf, .framer-g1cvL .framer-nrn41b, .framer-g1cvL .framer-1rxeuz4 { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 550px); justify-content: center; max-width: 550px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-g1cvL .framer-19mzna6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 550px); position: relative; width: 550px; }\",\".framer-g1cvL .framer-1crfn6q, .framer-g1cvL .framer-ob0ojl, .framer-g1cvL .framer-1gbywxg { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 550px); position: relative; width: 1px; }\",\".framer-g1cvL .framer-e0m9qq, .framer-g1cvL .framer-1sfqe5z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 10px 0px 10px; position: relative; width: 97%; }\",\".framer-g1cvL .framer-10e4ul8 { align-content: center; align-items: center; background-color: #edfcf3; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 70px 0px 0px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-g1cvL .framer-16cce57 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-wr83nv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-1pltk33 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-g1cvL .framer-1rj4lw { align-content: flex-start; align-items: flex-start; 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: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 96px 24px 20px 24px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-g1cvL .framer-150lbng { flex: none; height: 96px; overflow: hidden; position: relative; width: 71px; }\",\".framer-g1cvL .framer-1f0ypz3, .framer-g1cvL .framer-aac1pj, .framer-g1cvL .framer-mhhiav { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-hydooe, .framer-g1cvL .framer-8paw94, .framer-g1cvL .framer-dixum3, .framer-g1cvL .framer-lgdh59, .framer-g1cvL .framer-c0spo9, .framer-g1cvL .framer-1b16jcv, .framer-g1cvL .framer-safrhx, .framer-g1cvL .framer-1darw97, .framer-g1cvL .framer-7o5s4r { 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-g1cvL .framer-zd7v44, .framer-g1cvL .framer-tj1l3n, .framer-g1cvL .framer-1a2oftu { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-g1cvL .framer-h0fo6o, .framer-g1cvL .framer-1fvh77c, .framer-g1cvL .framer-mzil9d { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-g1cvL .framer-1v6lwa9, .framer-g1cvL .framer-1gks5j5 { align-content: flex-start; align-items: flex-start; 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: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 97px 24px 20px 24px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-g1cvL .framer-1exwllt { flex: none; height: 96px; overflow: hidden; position: relative; width: 88px; }\",\".framer-g1cvL .framer-1m53mfm { flex: none; height: 97px; overflow: hidden; position: relative; width: 118px; }\",\".framer-g1cvL .framer-ny7z8b { align-content: center; align-items: center; background-color: var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-h59zkv, .framer-g1cvL .framer-xo8ic8 { --framer-paragraph-spacing: 60px; flex: none; height: auto; max-width: 1280px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-g1cvL .framer-17bozzx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-1e8yzl7, .framer-g1cvL .framer-1373g5y { 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-g1cvL .framer-oi556j, .framer-g1cvL .framer-11mffm4, .framer-g1cvL .framer-9ob5ru, .framer-g1cvL .framer-1h1lxzy, .framer-g1cvL .framer-5bwq3m, .framer-g1cvL .framer-5du7jt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 0px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-g1cvL .framer-1hf4voe-container, .framer-g1cvL .framer-1l5fu7u-container, .framer-g1cvL .framer-1rhyre6-container, .framer-g1cvL .framer-1oekiun-container, .framer-g1cvL .framer-18gepjo-container, .framer-g1cvL .framer-14qh1mv-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); position: relative; width: 40px; }\",\".framer-g1cvL .framer-1pd5rcc, .framer-g1cvL .framer-y7iirw, .framer-g1cvL .framer-1uu7cm8, .framer-g1cvL .framer-2s32uc, .framer-g1cvL .framer-15neq44, .framer-g1cvL .framer-35lu7j { --framer-paragraph-spacing: 60px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-g1cvL .framer-1hvqwhf, .framer-g1cvL .framer-1n8hnxl, .framer-g1cvL .framer-19ctl3l, .framer-g1cvL .framer-12omd42, .framer-g1cvL .framer-r1axl4, .framer-g1cvL .framer-10s4vic { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-g1cvL .framer-15gwyg1 { align-content: center; align-items: center; background-color: #cef9df; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 50px 100px 50px 100px; position: relative; width: 100%; z-index: 0; }\",\".framer-g1cvL .framer-m9w3zs { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-fyrgmn { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; grid-column: auto / span 3; height: 100%; justify-content: center; justify-self: start; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-1yi5xb-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 103px); position: relative; width: 100px; }\",\".framer-g1cvL .framer-1x2mch0 { 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; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-1dys2pa { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; justify-self: start; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-kxq7tq { border-bottom-left-radius: 120px; border-bottom-right-radius: 120px; border-top-left-radius: 120px; border-top-right-radius: 120px; flex: none; height: 278px; position: relative; width: 240px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-g1cvL .framer-t189a { align-content: center; align-items: center; background-color: var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 96px 50px 96px 50px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-69ixkb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 350px; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-1eeyr8y, .framer-g1cvL .framer-1ku9k7p { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-vyt060, .framer-g1cvL .framer-pzijy5, .framer-g1cvL .framer-enue2h { flex: none; height: 100%; position: relative; text-decoration: none; width: 233px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-g1cvL .framer-1ih7chp, .framer-g1cvL .framer-prxbk2 { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: 100%; position: relative; text-decoration: none; width: var(--framer-aspect-ratio-supported, 234px); will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-g1cvL .framer-yq8ic5 { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: 100%; position: relative; text-decoration: none; width: var(--framer-aspect-ratio-supported, 233px); will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-g1cvL .framer-ujko3m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-zenqs8 { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 75px); position: relative; text-decoration: none; width: 150px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-g1cvL .framer-1xg51l8 { flex: none; height: 75px; position: relative; text-decoration: none; width: 150px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-g1cvL .framer-db8yed { align-content: center; align-items: center; background-color: #e0ffed; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; max-width: 1440px; padding: 35px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-1yoxvsy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-g1cvL .framer-fvkzf9, .framer-g1cvL .framer-8n8umz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-g1cvL .framer-hcqwkf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 250px); overflow: visible; position: relative; width: 250px; }\",\".framer-g1cvL .framer-1qm543 { align-content: center; align-items: center; background: linear-gradient(90deg, #093028 0%, rgba(35, 122, 87, 1) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; padding: 100px; position: relative; width: 100%; }\",\".framer-g1cvL .framer-2czae3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-g1cvL.framer-1m63b6o, .framer-g1cvL .framer-wdckan, .framer-g1cvL .framer-e1cz8, .framer-g1cvL .framer-v4ieid, .framer-g1cvL .framer-kk6ply, .framer-g1cvL .framer-1dz2jg9, .framer-g1cvL .framer-14eequ9, .framer-g1cvL .framer-1tkgujy, .framer-g1cvL .framer-ymbblw, .framer-g1cvL .framer-h0yi19, .framer-g1cvL .framer-39l0vn, .framer-g1cvL .framer-13pobxg, .framer-g1cvL .framer-13sz446, .framer-g1cvL .framer-1vc83ms, .framer-g1cvL .framer-1eu96af, .framer-g1cvL .framer-1q4w875, .framer-g1cvL .framer-1eze51f, .framer-g1cvL .framer-bc18i9, .framer-g1cvL .framer-po2k8i, .framer-g1cvL .framer-mcoswx, .framer-g1cvL .framer-dx58y0, .framer-g1cvL .framer-a5b2pc, .framer-g1cvL .framer-1vsrnnx, .framer-g1cvL .framer-d7lpa, .framer-g1cvL .framer-neu6n6, .framer-g1cvL .framer-6wan32, .framer-g1cvL .framer-1dqyz9u, .framer-g1cvL .framer-x7is4g, .framer-g1cvL .framer-141n2mq, .framer-g1cvL .framer-jexj63, .framer-g1cvL .framer-1p9ij5f, .framer-g1cvL .framer-xzsa0k, .framer-g1cvL .framer-10bv2hg, .framer-g1cvL .framer-hsizuf, .framer-g1cvL .framer-7jazlf, .framer-g1cvL .framer-ejj842, .framer-g1cvL .framer-c97lig, .framer-g1cvL .framer-1gcvymf, .framer-g1cvL .framer-69lva9, .framer-g1cvL .framer-ohevq6, .framer-g1cvL .framer-yjuq92, .framer-g1cvL .framer-17f05kp, .framer-g1cvL .framer-1m8xpko, .framer-g1cvL .framer-1udlp7v, .framer-g1cvL .framer-1uo70yv, .framer-g1cvL .framer-14az84o, .framer-g1cvL .framer-1syrzlw, .framer-g1cvL .framer-13awphz, .framer-g1cvL .framer-192vd9i, .framer-g1cvL .framer-e0m9qq, .framer-g1cvL .framer-1ljljlf, .framer-g1cvL .framer-1iopxbx, .framer-g1cvL .framer-128i4cl, .framer-g1cvL .framer-36q4fb, .framer-g1cvL .framer-ezhzan, .framer-g1cvL .framer-1baq40b, .framer-g1cvL .framer-v3oj9q, .framer-g1cvL .framer-1sxd72c, .framer-g1cvL .framer-1tbaf4o, .framer-g1cvL .framer-empa1d, .framer-g1cvL .framer-1grb0bj, .framer-g1cvL .framer-nrn41b, .framer-g1cvL .framer-1sfqe5z, .framer-g1cvL .framer-1rxeuz4, .framer-g1cvL .framer-1rpiwmj, .framer-g1cvL .framer-1rb5xsv, .framer-g1cvL .framer-x966nb, .framer-g1cvL .framer-orgy7y, .framer-g1cvL .framer-eq8w0k, .framer-g1cvL .framer-g8gf4i, .framer-g1cvL .framer-3760ku, .framer-g1cvL .framer-17sj3hf, .framer-g1cvL .framer-1nddw4w, .framer-g1cvL .framer-l044nv, .framer-g1cvL .framer-1a819lw, .framer-g1cvL .framer-10e4ul8, .framer-g1cvL .framer-16cce57, .framer-g1cvL .framer-wr83nv, .framer-g1cvL .framer-1pltk33, .framer-g1cvL .framer-1rj4lw, .framer-g1cvL .framer-1f0ypz3, .framer-g1cvL .framer-hydooe, .framer-g1cvL .framer-1v6lwa9, .framer-g1cvL .framer-aac1pj, .framer-g1cvL .framer-8paw94, .framer-g1cvL .framer-1gks5j5, .framer-g1cvL .framer-mhhiav, .framer-g1cvL .framer-dixum3, .framer-g1cvL .framer-ny7z8b, .framer-g1cvL .framer-17bozzx, .framer-g1cvL .framer-1e8yzl7, .framer-g1cvL .framer-oi556j, .framer-g1cvL .framer-lgdh59, .framer-g1cvL .framer-11mffm4, .framer-g1cvL .framer-c0spo9, .framer-g1cvL .framer-9ob5ru, .framer-g1cvL .framer-1b16jcv, .framer-g1cvL .framer-1373g5y, .framer-g1cvL .framer-1h1lxzy, .framer-g1cvL .framer-safrhx, .framer-g1cvL .framer-5bwq3m, .framer-g1cvL .framer-1darw97, .framer-g1cvL .framer-5du7jt, .framer-g1cvL .framer-7o5s4r, .framer-g1cvL .framer-15gwyg1, .framer-g1cvL .framer-fyrgmn, .framer-g1cvL .framer-1x2mch0, .framer-g1cvL .framer-1dys2pa, .framer-g1cvL .framer-t189a, .framer-g1cvL .framer-69ixkb, .framer-g1cvL .framer-1eeyr8y, .framer-g1cvL .framer-ujko3m, .framer-g1cvL .framer-1ku9k7p, .framer-g1cvL .framer-db8yed, .framer-g1cvL .framer-1yoxvsy, .framer-g1cvL .framer-1qm543, .framer-g1cvL .framer-2czae3 { gap: 0px; } .framer-g1cvL.framer-1m63b6o > *, .framer-g1cvL .framer-v4ieid > *, .framer-g1cvL .framer-kk6ply > *, .framer-g1cvL .framer-14eequ9 > *, .framer-g1cvL .framer-1tkgujy > *, .framer-g1cvL .framer-ymbblw > *, .framer-g1cvL .framer-h0yi19 > *, .framer-g1cvL .framer-39l0vn > *, .framer-g1cvL .framer-1eu96af > *, .framer-g1cvL .framer-1eze51f > *, .framer-g1cvL .framer-bc18i9 > *, .framer-g1cvL .framer-69ixkb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-g1cvL.framer-1m63b6o > :first-child, .framer-g1cvL .framer-wdckan > :first-child, .framer-g1cvL .framer-e1cz8 > :first-child, .framer-g1cvL .framer-v4ieid > :first-child, .framer-g1cvL .framer-kk6ply > :first-child, .framer-g1cvL .framer-14eequ9 > :first-child, .framer-g1cvL .framer-1tkgujy > :first-child, .framer-g1cvL .framer-ymbblw > :first-child, .framer-g1cvL .framer-h0yi19 > :first-child, .framer-g1cvL .framer-39l0vn > :first-child, .framer-g1cvL .framer-13pobxg > :first-child, .framer-g1cvL .framer-1eu96af > :first-child, .framer-g1cvL .framer-1q4w875 > :first-child, .framer-g1cvL .framer-1eze51f > :first-child, .framer-g1cvL .framer-bc18i9 > :first-child, .framer-g1cvL .framer-mcoswx > :first-child, .framer-g1cvL .framer-dx58y0 > :first-child, .framer-g1cvL .framer-a5b2pc > :first-child, .framer-g1cvL .framer-1vsrnnx > :first-child, .framer-g1cvL .framer-neu6n6 > :first-child, .framer-g1cvL .framer-6wan32 > :first-child, .framer-g1cvL .framer-1dqyz9u > :first-child, .framer-g1cvL .framer-141n2mq > :first-child, .framer-g1cvL .framer-1p9ij5f > :first-child, .framer-g1cvL .framer-10bv2hg > :first-child, .framer-g1cvL .framer-7jazlf > :first-child, .framer-g1cvL .framer-69lva9 > :first-child, .framer-g1cvL .framer-ohevq6 > :first-child, .framer-g1cvL .framer-yjuq92 > :first-child, .framer-g1cvL .framer-1m8xpko > :first-child, .framer-g1cvL .framer-1uo70yv > :first-child, .framer-g1cvL .framer-1syrzlw > :first-child, .framer-g1cvL .framer-192vd9i > :first-child, .framer-g1cvL .framer-1ljljlf > :first-child, .framer-g1cvL .framer-1iopxbx > :first-child, .framer-g1cvL .framer-128i4cl > :first-child, .framer-g1cvL .framer-ezhzan > :first-child, .framer-g1cvL .framer-v3oj9q > :first-child, .framer-g1cvL .framer-1tbaf4o > :first-child, .framer-g1cvL .framer-1grb0bj > :first-child, .framer-g1cvL .framer-1rpiwmj > :first-child, .framer-g1cvL .framer-1rb5xsv > :first-child, .framer-g1cvL .framer-x966nb > :first-child, .framer-g1cvL .framer-eq8w0k > :first-child, .framer-g1cvL .framer-3760ku > :first-child, .framer-g1cvL .framer-1nddw4w > :first-child, .framer-g1cvL .framer-1a819lw > :first-child, .framer-g1cvL .framer-10e4ul8 > :first-child, .framer-g1cvL .framer-16cce57 > :first-child, .framer-g1cvL .framer-1rj4lw > :first-child, .framer-g1cvL .framer-1f0ypz3 > :first-child, .framer-g1cvL .framer-hydooe > :first-child, .framer-g1cvL .framer-1v6lwa9 > :first-child, .framer-g1cvL .framer-aac1pj > :first-child, .framer-g1cvL .framer-8paw94 > :first-child, .framer-g1cvL .framer-1gks5j5 > :first-child, .framer-g1cvL .framer-mhhiav > :first-child, .framer-g1cvL .framer-dixum3 > :first-child, .framer-g1cvL .framer-ny7z8b > :first-child, .framer-g1cvL .framer-17bozzx > :first-child, .framer-g1cvL .framer-oi556j > :first-child, .framer-g1cvL .framer-lgdh59 > :first-child, .framer-g1cvL .framer-11mffm4 > :first-child, .framer-g1cvL .framer-c0spo9 > :first-child, .framer-g1cvL .framer-9ob5ru > :first-child, .framer-g1cvL .framer-1b16jcv > :first-child, .framer-g1cvL .framer-1h1lxzy > :first-child, .framer-g1cvL .framer-safrhx > :first-child, .framer-g1cvL .framer-5bwq3m > :first-child, .framer-g1cvL .framer-1darw97 > :first-child, .framer-g1cvL .framer-5du7jt > :first-child, .framer-g1cvL .framer-7o5s4r > :first-child, .framer-g1cvL .framer-15gwyg1 > :first-child, .framer-g1cvL .framer-fyrgmn > :first-child, .framer-g1cvL .framer-1x2mch0 > :first-child, .framer-g1cvL .framer-1dys2pa > :first-child, .framer-g1cvL .framer-t189a > :first-child, .framer-g1cvL .framer-69ixkb > :first-child, .framer-g1cvL .framer-1yoxvsy > :first-child, .framer-g1cvL .framer-1qm543 > :first-child { margin-top: 0px; } .framer-g1cvL.framer-1m63b6o > :last-child, .framer-g1cvL .framer-wdckan > :last-child, .framer-g1cvL .framer-e1cz8 > :last-child, .framer-g1cvL .framer-v4ieid > :last-child, .framer-g1cvL .framer-kk6ply > :last-child, .framer-g1cvL .framer-14eequ9 > :last-child, .framer-g1cvL .framer-1tkgujy > :last-child, .framer-g1cvL .framer-ymbblw > :last-child, .framer-g1cvL .framer-h0yi19 > :last-child, .framer-g1cvL .framer-39l0vn > :last-child, .framer-g1cvL .framer-13pobxg > :last-child, .framer-g1cvL .framer-1eu96af > :last-child, .framer-g1cvL .framer-1q4w875 > :last-child, .framer-g1cvL .framer-1eze51f > :last-child, .framer-g1cvL .framer-bc18i9 > :last-child, .framer-g1cvL .framer-mcoswx > :last-child, .framer-g1cvL .framer-dx58y0 > :last-child, .framer-g1cvL .framer-a5b2pc > :last-child, .framer-g1cvL .framer-1vsrnnx > :last-child, .framer-g1cvL .framer-neu6n6 > :last-child, .framer-g1cvL .framer-6wan32 > :last-child, .framer-g1cvL .framer-1dqyz9u > :last-child, .framer-g1cvL .framer-141n2mq > :last-child, .framer-g1cvL .framer-1p9ij5f > :last-child, .framer-g1cvL .framer-10bv2hg > :last-child, .framer-g1cvL .framer-7jazlf > :last-child, .framer-g1cvL .framer-69lva9 > :last-child, .framer-g1cvL .framer-ohevq6 > :last-child, .framer-g1cvL .framer-yjuq92 > :last-child, .framer-g1cvL .framer-1m8xpko > :last-child, .framer-g1cvL .framer-1uo70yv > :last-child, .framer-g1cvL .framer-1syrzlw > :last-child, .framer-g1cvL .framer-192vd9i > :last-child, .framer-g1cvL .framer-1ljljlf > :last-child, .framer-g1cvL .framer-1iopxbx > :last-child, .framer-g1cvL .framer-128i4cl > :last-child, .framer-g1cvL .framer-ezhzan > :last-child, .framer-g1cvL .framer-v3oj9q > :last-child, .framer-g1cvL .framer-1tbaf4o > :last-child, .framer-g1cvL .framer-1grb0bj > :last-child, .framer-g1cvL .framer-1rpiwmj > :last-child, .framer-g1cvL .framer-1rb5xsv > :last-child, .framer-g1cvL .framer-x966nb > :last-child, .framer-g1cvL .framer-eq8w0k > :last-child, .framer-g1cvL .framer-3760ku > :last-child, .framer-g1cvL .framer-1nddw4w > :last-child, .framer-g1cvL .framer-1a819lw > :last-child, .framer-g1cvL .framer-10e4ul8 > :last-child, .framer-g1cvL .framer-16cce57 > :last-child, .framer-g1cvL .framer-1rj4lw > :last-child, .framer-g1cvL .framer-1f0ypz3 > :last-child, .framer-g1cvL .framer-hydooe > :last-child, .framer-g1cvL .framer-1v6lwa9 > :last-child, .framer-g1cvL .framer-aac1pj > :last-child, .framer-g1cvL .framer-8paw94 > :last-child, .framer-g1cvL .framer-1gks5j5 > :last-child, .framer-g1cvL .framer-mhhiav > :last-child, .framer-g1cvL .framer-dixum3 > :last-child, .framer-g1cvL .framer-ny7z8b > :last-child, .framer-g1cvL .framer-17bozzx > :last-child, .framer-g1cvL .framer-oi556j > :last-child, .framer-g1cvL .framer-lgdh59 > :last-child, .framer-g1cvL .framer-11mffm4 > :last-child, .framer-g1cvL .framer-c0spo9 > :last-child, .framer-g1cvL .framer-9ob5ru > :last-child, .framer-g1cvL .framer-1b16jcv > :last-child, .framer-g1cvL .framer-1h1lxzy > :last-child, .framer-g1cvL .framer-safrhx > :last-child, .framer-g1cvL .framer-5bwq3m > :last-child, .framer-g1cvL .framer-1darw97 > :last-child, .framer-g1cvL .framer-5du7jt > :last-child, .framer-g1cvL .framer-7o5s4r > :last-child, .framer-g1cvL .framer-15gwyg1 > :last-child, .framer-g1cvL .framer-fyrgmn > :last-child, .framer-g1cvL .framer-1x2mch0 > :last-child, .framer-g1cvL .framer-1dys2pa > :last-child, .framer-g1cvL .framer-t189a > :last-child, .framer-g1cvL .framer-69ixkb > :last-child, .framer-g1cvL .framer-1yoxvsy > :last-child, .framer-g1cvL .framer-1qm543 > :last-child { margin-bottom: 0px; } .framer-g1cvL .framer-wdckan > *, .framer-g1cvL .framer-1q4w875 > *, .framer-g1cvL .framer-6wan32 > *, .framer-g1cvL .framer-ohevq6 > *, .framer-g1cvL .framer-1iopxbx > *, .framer-g1cvL .framer-1rb5xsv > *, .framer-g1cvL .framer-fyrgmn > *, .framer-g1cvL .framer-1dys2pa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-g1cvL .framer-e1cz8 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-g1cvL .framer-1dz2jg9 > * { margin: 0px; margin-left: calc(0.1699981689453125px / 2); margin-right: calc(0.1699981689453125px / 2); } .framer-g1cvL .framer-1dz2jg9 > :first-child, .framer-g1cvL .framer-13sz446 > :first-child, .framer-g1cvL .framer-1vc83ms > :first-child, .framer-g1cvL .framer-po2k8i > :first-child, .framer-g1cvL .framer-d7lpa > :first-child, .framer-g1cvL .framer-x7is4g > :first-child, .framer-g1cvL .framer-jexj63 > :first-child, .framer-g1cvL .framer-xzsa0k > :first-child, .framer-g1cvL .framer-hsizuf > :first-child, .framer-g1cvL .framer-ejj842 > :first-child, .framer-g1cvL .framer-c97lig > :first-child, .framer-g1cvL .framer-1gcvymf > :first-child, .framer-g1cvL .framer-17f05kp > :first-child, .framer-g1cvL .framer-1udlp7v > :first-child, .framer-g1cvL .framer-14az84o > :first-child, .framer-g1cvL .framer-13awphz > :first-child, .framer-g1cvL .framer-e0m9qq > :first-child, .framer-g1cvL .framer-36q4fb > :first-child, .framer-g1cvL .framer-1baq40b > :first-child, .framer-g1cvL .framer-1sxd72c > :first-child, .framer-g1cvL .framer-empa1d > :first-child, .framer-g1cvL .framer-nrn41b > :first-child, .framer-g1cvL .framer-1sfqe5z > :first-child, .framer-g1cvL .framer-1rxeuz4 > :first-child, .framer-g1cvL .framer-orgy7y > :first-child, .framer-g1cvL .framer-g8gf4i > :first-child, .framer-g1cvL .framer-17sj3hf > :first-child, .framer-g1cvL .framer-l044nv > :first-child, .framer-g1cvL .framer-wr83nv > :first-child, .framer-g1cvL .framer-1pltk33 > :first-child, .framer-g1cvL .framer-1e8yzl7 > :first-child, .framer-g1cvL .framer-1373g5y > :first-child, .framer-g1cvL .framer-1eeyr8y > :first-child, .framer-g1cvL .framer-ujko3m > :first-child, .framer-g1cvL .framer-1ku9k7p > :first-child, .framer-g1cvL .framer-db8yed > :first-child, .framer-g1cvL .framer-2czae3 > :first-child { margin-left: 0px; } .framer-g1cvL .framer-1dz2jg9 > :last-child, .framer-g1cvL .framer-13sz446 > :last-child, .framer-g1cvL .framer-1vc83ms > :last-child, .framer-g1cvL .framer-po2k8i > :last-child, .framer-g1cvL .framer-d7lpa > :last-child, .framer-g1cvL .framer-x7is4g > :last-child, .framer-g1cvL .framer-jexj63 > :last-child, .framer-g1cvL .framer-xzsa0k > :last-child, .framer-g1cvL .framer-hsizuf > :last-child, .framer-g1cvL .framer-ejj842 > :last-child, .framer-g1cvL .framer-c97lig > :last-child, .framer-g1cvL .framer-1gcvymf > :last-child, .framer-g1cvL .framer-17f05kp > :last-child, .framer-g1cvL .framer-1udlp7v > :last-child, .framer-g1cvL .framer-14az84o > :last-child, .framer-g1cvL .framer-13awphz > :last-child, .framer-g1cvL .framer-e0m9qq > :last-child, .framer-g1cvL .framer-36q4fb > :last-child, .framer-g1cvL .framer-1baq40b > :last-child, .framer-g1cvL .framer-1sxd72c > :last-child, .framer-g1cvL .framer-empa1d > :last-child, .framer-g1cvL .framer-nrn41b > :last-child, .framer-g1cvL .framer-1sfqe5z > :last-child, .framer-g1cvL .framer-1rxeuz4 > :last-child, .framer-g1cvL .framer-orgy7y > :last-child, .framer-g1cvL .framer-g8gf4i > :last-child, .framer-g1cvL .framer-17sj3hf > :last-child, .framer-g1cvL .framer-l044nv > :last-child, .framer-g1cvL .framer-wr83nv > :last-child, .framer-g1cvL .framer-1pltk33 > :last-child, .framer-g1cvL .framer-1e8yzl7 > :last-child, .framer-g1cvL .framer-1373g5y > :last-child, .framer-g1cvL .framer-1eeyr8y > :last-child, .framer-g1cvL .framer-ujko3m > :last-child, .framer-g1cvL .framer-1ku9k7p > :last-child, .framer-g1cvL .framer-db8yed > :last-child, .framer-g1cvL .framer-2czae3 > :last-child { margin-right: 0px; } .framer-g1cvL .framer-13pobxg > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-g1cvL .framer-13sz446 > *, .framer-g1cvL .framer-ejj842 > *, .framer-g1cvL .framer-1gcvymf > *, .framer-g1cvL .framer-nrn41b > *, .framer-g1cvL .framer-1rxeuz4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-g1cvL .framer-1vc83ms > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-g1cvL .framer-po2k8i > *, .framer-g1cvL .framer-d7lpa > *, .framer-g1cvL .framer-c97lig > *, .framer-g1cvL .framer-e0m9qq > *, .framer-g1cvL .framer-1sfqe5z > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-g1cvL .framer-mcoswx > *, .framer-g1cvL .framer-1vsrnnx > *, .framer-g1cvL .framer-ny7z8b > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-g1cvL .framer-dx58y0 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-g1cvL .framer-a5b2pc > *, .framer-g1cvL .framer-hydooe > *, .framer-g1cvL .framer-8paw94 > *, .framer-g1cvL .framer-dixum3 > *, .framer-g1cvL .framer-lgdh59 > *, .framer-g1cvL .framer-c0spo9 > *, .framer-g1cvL .framer-1b16jcv > *, .framer-g1cvL .framer-safrhx > *, .framer-g1cvL .framer-1darw97 > *, .framer-g1cvL .framer-7o5s4r > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-g1cvL .framer-neu6n6 > *, .framer-g1cvL .framer-69lva9 > *, .framer-g1cvL .framer-1ljljlf > *, .framer-g1cvL .framer-1rpiwmj > *, .framer-g1cvL .framer-17bozzx > *, .framer-g1cvL .framer-1x2mch0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-g1cvL .framer-1dqyz9u > *, .framer-g1cvL .framer-yjuq92 > *, .framer-g1cvL .framer-128i4cl > *, .framer-g1cvL .framer-x966nb > *, .framer-g1cvL .framer-1f0ypz3 > *, .framer-g1cvL .framer-aac1pj > *, .framer-g1cvL .framer-mhhiav > *, .framer-g1cvL .framer-15gwyg1 > *, .framer-g1cvL .framer-1yoxvsy > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-g1cvL .framer-x7is4g > *, .framer-g1cvL .framer-jexj63 > *, .framer-g1cvL .framer-xzsa0k > *, .framer-g1cvL .framer-hsizuf > *, .framer-g1cvL .framer-17f05kp > *, .framer-g1cvL .framer-1udlp7v > *, .framer-g1cvL .framer-14az84o > *, .framer-g1cvL .framer-13awphz > *, .framer-g1cvL .framer-36q4fb > *, .framer-g1cvL .framer-1baq40b > *, .framer-g1cvL .framer-1sxd72c > *, .framer-g1cvL .framer-empa1d > *, .framer-g1cvL .framer-orgy7y > *, .framer-g1cvL .framer-g8gf4i > *, .framer-g1cvL .framer-17sj3hf > *, .framer-g1cvL .framer-l044nv > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-g1cvL .framer-141n2mq > *, .framer-g1cvL .framer-1p9ij5f > *, .framer-g1cvL .framer-10bv2hg > *, .framer-g1cvL .framer-7jazlf > *, .framer-g1cvL .framer-1m8xpko > *, .framer-g1cvL .framer-1uo70yv > *, .framer-g1cvL .framer-1syrzlw > *, .framer-g1cvL .framer-192vd9i > *, .framer-g1cvL .framer-ezhzan > *, .framer-g1cvL .framer-v3oj9q > *, .framer-g1cvL .framer-1tbaf4o > *, .framer-g1cvL .framer-1grb0bj > *, .framer-g1cvL .framer-eq8w0k > *, .framer-g1cvL .framer-3760ku > *, .framer-g1cvL .framer-1nddw4w > *, .framer-g1cvL .framer-1a819lw > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-g1cvL .framer-10e4ul8 > *, .framer-g1cvL .framer-1rj4lw > *, .framer-g1cvL .framer-1v6lwa9 > *, .framer-g1cvL .framer-1gks5j5 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-g1cvL .framer-16cce57 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-g1cvL .framer-wr83nv > *, .framer-g1cvL .framer-1pltk33 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-g1cvL .framer-1e8yzl7 > *, .framer-g1cvL .framer-1373g5y > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-g1cvL .framer-oi556j > *, .framer-g1cvL .framer-11mffm4 > *, .framer-g1cvL .framer-9ob5ru > *, .framer-g1cvL .framer-1h1lxzy > *, .framer-g1cvL .framer-5bwq3m > *, .framer-g1cvL .framer-5du7jt > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-g1cvL .framer-t189a > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-g1cvL .framer-1eeyr8y > *, .framer-g1cvL .framer-1ku9k7p > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-g1cvL .framer-ujko3m > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-g1cvL .framer-db8yed > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-g1cvL .framer-1qm543 > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-g1cvL .framer-2czae3 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\",'.framer-g1cvL[data-border=\"true\"]::after, .framer-g1cvL [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: 1439px) { .framer-g1cvL.framer-1m63b6o { width: 810px; } .framer-g1cvL .framer-1q7w5mo-container { order: 0; width: 810px; } .framer-g1cvL .framer-wdckan { order: 1; padding: 60px 20px 60px 20px; } .framer-g1cvL .framer-e1cz8 { padding: 16px 200px 16px 200px; } .framer-g1cvL .framer-18nyjt9-container { bottom: unset; height: var(--framer-aspect-ratio-supported, 370px); left: 0px; top: 52%; transform: translateY(-50%); width: 370px; } .framer-g1cvL .framer-v4ieid { padding: 0px; width: min-content; } .framer-g1cvL .framer-kk6ply, .framer-g1cvL .framer-ymbblw { width: min-content; } .framer-g1cvL .framer-1tkgujy { align-content: center; align-items: center; max-width: 100%; width: 718px; } .framer-g1cvL .framer-q0g86l { width: 720px; } .framer-g1cvL .framer-9zfnvj { width: 372px; } .framer-g1cvL .framer-1eu96af { order: 2; padding: 30px 100px 50px 100px; } .framer-g1cvL .framer-1q4w875 { align-content: center; align-items: center; justify-content: center; padding: 0px; width: min-content; } .framer-g1cvL .framer-1nmwznz { width: 1200px; } .framer-g1cvL .framer-1eze51f { align-self: stretch; width: auto; } .framer-g1cvL .framer-bc18i9 { padding: 40px 0px 40px 0px; width: 712px; } .framer-g1cvL .framer-po2k8i { flex-wrap: wrap; gap: 20px; width: 100%; } .framer-g1cvL .framer-mcoswx { gap: 60px; order: 3; padding: 80px 30px 80px 30px; } .framer-g1cvL .framer-dx58y0, .framer-g1cvL .framer-1vsrnnx { padding: 0px; } .framer-g1cvL .framer-1qde575 { bottom: unset; left: calc(46.00000000000002% - 302px / 2); top: calc(49.1315136476427% - 18px / 2); } .framer-g1cvL .framer-d7lpa { flex-direction: column; gap: 40px; order: 0; } .framer-g1cvL .framer-neu6n6, .framer-g1cvL .framer-1ljljlf { flex: none; order: 1; width: 100%; } .framer-g1cvL .framer-141n2mq, .framer-g1cvL .framer-1p9ij5f, .framer-g1cvL .framer-10bv2hg, .framer-g1cvL .framer-7jazlf, .framer-g1cvL .framer-1m8xpko, .framer-g1cvL .framer-1uo70yv, .framer-g1cvL .framer-1syrzlw, .framer-g1cvL .framer-192vd9i, .framer-g1cvL .framer-ezhzan, .framer-g1cvL .framer-v3oj9q, .framer-g1cvL .framer-1tbaf4o, .framer-g1cvL .framer-1grb0bj, .framer-g1cvL .framer-eq8w0k, .framer-g1cvL .framer-3760ku, .framer-g1cvL .framer-1nddw4w, .framer-g1cvL .framer-1a819lw { flex: 1 0 0px; width: 1px; } .framer-g1cvL .framer-ejj842 { flex: none; height: var(--framer-aspect-ratio-supported, 730px); max-width: 810px; order: 0; width: 100%; } .framer-g1cvL .framer-19mzna6 { height: var(--framer-aspect-ratio-supported, 714px); order: 0; width: 714px; } .framer-g1cvL .framer-c97lig { flex-direction: column; gap: 40px; order: 1; } .framer-g1cvL .framer-1gcvymf { flex: none; height: var(--framer-aspect-ratio-supported, 730px); max-width: 810px; width: 100%; } .framer-g1cvL .framer-1crfn6q, .framer-g1cvL .framer-ob0ojl { flex: none; height: var(--framer-aspect-ratio-supported, 714px); width: 714px; } .framer-g1cvL .framer-69lva9, .framer-g1cvL .framer-1rpiwmj, .framer-g1cvL .framer-1rj4lw, .framer-g1cvL .framer-1v6lwa9, .framer-g1cvL .framer-1gks5j5, .framer-g1cvL .framer-oi556j, .framer-g1cvL .framer-11mffm4, .framer-g1cvL .framer-9ob5ru, .framer-g1cvL .framer-1h1lxzy, .framer-g1cvL .framer-5bwq3m, .framer-g1cvL .framer-5du7jt { flex: none; width: 100%; } .framer-g1cvL .framer-e0m9qq { flex-direction: column; order: 2; } .framer-g1cvL .framer-1iopxbx { order: 0; } .framer-g1cvL .framer-128i4cl { order: 1; } .framer-g1cvL .framer-qmpjnp-container { order: 2; } .framer-g1cvL .framer-nrn41b { flex: none; height: var(--framer-aspect-ratio-supported, 706px); max-width: 810px; order: 0; width: 100%; } .framer-g1cvL .framer-1sfqe5z { flex-direction: column; gap: 40px; order: 3; } .framer-g1cvL .framer-1rxeuz4 { flex: none; height: var(--framer-aspect-ratio-supported, 707px); max-width: 810px; width: 100%; } .framer-g1cvL .framer-1gbywxg { height: var(--framer-aspect-ratio-supported, 707px); } .framer-g1cvL .framer-10e4ul8 { gap: 40px; order: 4; padding: 56px 0px 0px 0px; } .framer-g1cvL .framer-16cce57 { padding: 0px 30px 0px 30px; } .framer-g1cvL .framer-1pltk33 { flex-direction: column; } .framer-g1cvL .framer-ny7z8b { gap: 40px; padding: 50px 30px 50px 30px; } .framer-g1cvL .framer-1e8yzl7, .framer-g1cvL .framer-1373g5y { flex-direction: column; gap: 40px; } .framer-g1cvL .framer-15gwyg1 { gap: 40px; order: 5; padding: 56px 30px 56px 30px; } .framer-g1cvL .framer-fyrgmn { grid-column: auto / span 4; } .framer-g1cvL .framer-1l9vs31 { width: 80%; } .framer-g1cvL .framer-t189a { gap: 40px; order: 6; padding: 50px 30px 50px 30px; } .framer-g1cvL .framer-69ixkb { gap: 40px; height: min-content; } .framer-g1cvL .framer-1eeyr8y, .framer-g1cvL .framer-1ku9k7p { flex: none; height: min-content; } .framer-g1cvL .framer-vyt060, .framer-g1cvL .framer-pzijy5, .framer-g1cvL .framer-enue2h { height: 81px; width: 200px; } .framer-g1cvL .framer-1ih7chp, .framer-g1cvL .framer-yq8ic5, .framer-g1cvL .framer-prxbk2 { aspect-ratio: unset; height: 81px; width: 200px; } .framer-g1cvL .framer-hcqwkf { height: var(--framer-aspect-ratio-supported, 150px); width: 150px; } .framer-g1cvL .framer-1qm543 { order: 7; } .framer-g1cvL .framer-2czae3 { width: 794px; } .framer-g1cvL .framer-14rzszp-container { order: 8; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-g1cvL .framer-po2k8i, .framer-g1cvL .framer-mcoswx, .framer-g1cvL .framer-d7lpa, .framer-g1cvL .framer-c97lig, .framer-g1cvL .framer-e0m9qq, .framer-g1cvL .framer-1sfqe5z, .framer-g1cvL .framer-10e4ul8, .framer-g1cvL .framer-1pltk33, .framer-g1cvL .framer-ny7z8b, .framer-g1cvL .framer-1e8yzl7, .framer-g1cvL .framer-1373g5y, .framer-g1cvL .framer-15gwyg1, .framer-g1cvL .framer-t189a, .framer-g1cvL .framer-69ixkb { gap: 0px; } .framer-g1cvL .framer-po2k8i > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-g1cvL .framer-po2k8i > :first-child { margin-left: 0px; } .framer-g1cvL .framer-po2k8i > :last-child { margin-right: 0px; } .framer-g1cvL .framer-mcoswx > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-g1cvL .framer-mcoswx > :first-child, .framer-g1cvL .framer-d7lpa > :first-child, .framer-g1cvL .framer-c97lig > :first-child, .framer-g1cvL .framer-e0m9qq > :first-child, .framer-g1cvL .framer-1sfqe5z > :first-child, .framer-g1cvL .framer-10e4ul8 > :first-child, .framer-g1cvL .framer-1pltk33 > :first-child, .framer-g1cvL .framer-ny7z8b > :first-child, .framer-g1cvL .framer-1e8yzl7 > :first-child, .framer-g1cvL .framer-1373g5y > :first-child, .framer-g1cvL .framer-15gwyg1 > :first-child, .framer-g1cvL .framer-t189a > :first-child, .framer-g1cvL .framer-69ixkb > :first-child { margin-top: 0px; } .framer-g1cvL .framer-mcoswx > :last-child, .framer-g1cvL .framer-d7lpa > :last-child, .framer-g1cvL .framer-c97lig > :last-child, .framer-g1cvL .framer-e0m9qq > :last-child, .framer-g1cvL .framer-1sfqe5z > :last-child, .framer-g1cvL .framer-10e4ul8 > :last-child, .framer-g1cvL .framer-1pltk33 > :last-child, .framer-g1cvL .framer-ny7z8b > :last-child, .framer-g1cvL .framer-1e8yzl7 > :last-child, .framer-g1cvL .framer-1373g5y > :last-child, .framer-g1cvL .framer-15gwyg1 > :last-child, .framer-g1cvL .framer-t189a > :last-child, .framer-g1cvL .framer-69ixkb > :last-child { margin-bottom: 0px; } .framer-g1cvL .framer-d7lpa > *, .framer-g1cvL .framer-c97lig > *, .framer-g1cvL .framer-1sfqe5z > *, .framer-g1cvL .framer-10e4ul8 > *, .framer-g1cvL .framer-ny7z8b > *, .framer-g1cvL .framer-1e8yzl7 > *, .framer-g1cvL .framer-1373g5y > *, .framer-g1cvL .framer-15gwyg1 > *, .framer-g1cvL .framer-t189a > *, .framer-g1cvL .framer-69ixkb > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-g1cvL .framer-e0m9qq > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-g1cvL .framer-1pltk33 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (max-width: 809px) { .framer-g1cvL.framer-1m63b6o { width: 390px; } .framer-g1cvL .framer-wdckan { padding: 30px 0px 30px 0px; } .framer-g1cvL .framer-e1cz8, .framer-g1cvL .framer-kk6ply, .framer-g1cvL .framer-1eze51f, .framer-g1cvL .framer-17bozzx { padding: 0px; } .framer-g1cvL .framer-18nyjt9-container { bottom: 34px; height: var(--framer-aspect-ratio-supported, 188px); left: 14px; width: 188px; } .framer-g1cvL .framer-v4ieid { padding: 0px 20px 0px 20px; width: 100%; } .framer-g1cvL .framer-1tkgujy { align-content: center; align-items: center; padding: 16px 0px 16px 0px; width: 100%; } .framer-g1cvL .framer-ymbblw, .framer-g1cvL .framer-h0yi19, .framer-g1cvL .framer-d73zbp-container, .framer-g1cvL .framer-19fxyup-container { width: 100%; } .framer-g1cvL .framer-13sz446 { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 0px 20px 10px 20px; } .framer-g1cvL .framer-1vc83ms { height: 37px; padding: 0px 20px 0px 20px; } .framer-g1cvL .framer-9zfnvj, .framer-g1cvL .framer-141n2mq, .framer-g1cvL .framer-1p9ij5f, .framer-g1cvL .framer-10bv2hg, .framer-g1cvL .framer-7jazlf, .framer-g1cvL .framer-1m8xpko, .framer-g1cvL .framer-1uo70yv, .framer-g1cvL .framer-1syrzlw, .framer-g1cvL .framer-192vd9i, .framer-g1cvL .framer-ezhzan, .framer-g1cvL .framer-v3oj9q, .framer-g1cvL .framer-1tbaf4o, .framer-g1cvL .framer-1grb0bj, .framer-g1cvL .framer-eq8w0k, .framer-g1cvL .framer-3760ku, .framer-g1cvL .framer-1nddw4w, .framer-g1cvL .framer-1a819lw { flex: 1 0 0px; width: 1px; } .framer-g1cvL .framer-bc18i9 { flex-direction: row; width: 390px; } .framer-g1cvL .framer-po2k8i { flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 20px; width: 1px; } .framer-g1cvL .framer-mcoswx { gap: 40px; padding: 30px 0px 40px 0px; } .framer-g1cvL .framer-dx58y0 { padding: 0px 24px 0px 24px; } .framer-g1cvL .framer-1vsrnnx { gap: 40px; padding: 0px 16px 0px 16px; } .framer-g1cvL .framer-d7lpa, .framer-g1cvL .framer-c97lig, .framer-g1cvL .framer-e0m9qq, .framer-g1cvL .framer-1sfqe5z { flex-direction: column; gap: 40px; padding: 0px; } .framer-g1cvL .framer-neu6n6, .framer-g1cvL .framer-1ljljlf { flex: none; order: 1; width: 100%; } .framer-g1cvL .framer-ejj842 { flex: none; height: var(--framer-aspect-ratio-supported, 358px); max-width: unset; order: 0; width: 100%; } .framer-g1cvL .framer-19mzna6 { height: 100%; width: var(--framer-aspect-ratio-supported, 358px); } .framer-g1cvL .framer-1gcvymf { flex: none; height: var(--framer-aspect-ratio-supported, 358px); max-width: unset; width: 100%; } .framer-g1cvL .framer-1crfn6q { height: var(--framer-aspect-ratio-supported, 358px); } .framer-g1cvL .framer-69lva9, .framer-g1cvL .framer-1rpiwmj, .framer-g1cvL .framer-1yoxvsy { flex: none; width: 100%; } .framer-g1cvL .framer-nrn41b { flex: none; height: var(--framer-aspect-ratio-supported, 346px); max-width: unset; order: 0; width: 100%; } .framer-g1cvL .framer-ob0ojl, .framer-g1cvL .framer-1gbywxg { height: var(--framer-aspect-ratio-supported, 347px); } .framer-g1cvL .framer-1rxeuz4 { flex: none; height: var(--framer-aspect-ratio-supported, 347px); max-width: unset; width: 100%; } .framer-g1cvL .framer-10e4ul8 { gap: 56px; padding: 0px; } .framer-g1cvL .framer-16cce57 { gap: 40px; padding: 40px 24px 0px 24px; } .framer-g1cvL .framer-wr83nv { flex-direction: column; padding: 0px; } .framer-g1cvL .framer-1pltk33 { flex: none; flex-direction: column; width: 100%; } .framer-g1cvL .framer-1rj4lw, .framer-g1cvL .framer-1v6lwa9, .framer-g1cvL .framer-1gks5j5 { flex: none; gap: 40px; width: 100%; } .framer-g1cvL .framer-ny7z8b { gap: 40px; padding: 40px 24px 40px 24px; } .framer-g1cvL .framer-1e8yzl7, .framer-g1cvL .framer-1373g5y { flex-direction: column; } .framer-g1cvL .framer-oi556j, .framer-g1cvL .framer-11mffm4, .framer-g1cvL .framer-9ob5ru, .framer-g1cvL .framer-1h1lxzy, .framer-g1cvL .framer-5bwq3m, .framer-g1cvL .framer-5du7jt { flex: none; padding: 0px; width: 100%; } .framer-g1cvL .framer-15gwyg1 { gap: 56px; padding: 40px 20px 40px 20px; } .framer-g1cvL .framer-fyrgmn { grid-column: auto / span 4; } .framer-g1cvL .framer-1yi5xb-container { height: var(--framer-aspect-ratio-supported, 63px); width: 60px; } .framer-g1cvL .framer-1x2mch0 { padding: 0px 16px 0px 16px; } .framer-g1cvL .framer-t189a { gap: 20px; padding: 40px 24px 60px 24px; } .framer-g1cvL .framer-69ixkb { gap: 70px; height: min-content; padding: 0px 16px 0px 16px; } .framer-g1cvL .framer-1eeyr8y { gap: 20px; order: 0; } .framer-g1cvL .framer-vyt060, .framer-g1cvL .framer-1ih7chp, .framer-g1cvL .framer-pzijy5, .framer-g1cvL .framer-prxbk2 { aspect-ratio: 2 / 1; height: var(--framer-aspect-ratio-supported, 75px); width: 150px; } .framer-g1cvL .framer-ujko3m { order: 2; } .framer-g1cvL .framer-zenqs8 { order: 1; } .framer-g1cvL .framer-1xg51l8 { order: 0; } .framer-g1cvL .framer-1ku9k7p { gap: 20px; order: 1; width: 318px; } .framer-g1cvL .framer-db8yed { flex-direction: column; padding: 35px 15px 35px 15px; } .framer-g1cvL .framer-fvkzf9 { width: 101%; } .framer-g1cvL .framer-hcqwkf { height: var(--framer-aspect-ratio-supported, 150px); width: 150px; } .framer-g1cvL .framer-1qm543 { padding: 80px; } .framer-g1cvL .framer-8n8umz { width: 145%; } .framer-g1cvL .framer-2czae3 { width: 302px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-g1cvL .framer-13sz446, .framer-g1cvL .framer-bc18i9, .framer-g1cvL .framer-po2k8i, .framer-g1cvL .framer-mcoswx, .framer-g1cvL .framer-1vsrnnx, .framer-g1cvL .framer-d7lpa, .framer-g1cvL .framer-c97lig, .framer-g1cvL .framer-e0m9qq, .framer-g1cvL .framer-1sfqe5z, .framer-g1cvL .framer-10e4ul8, .framer-g1cvL .framer-16cce57, .framer-g1cvL .framer-wr83nv, .framer-g1cvL .framer-1pltk33, .framer-g1cvL .framer-1rj4lw, .framer-g1cvL .framer-1v6lwa9, .framer-g1cvL .framer-1gks5j5, .framer-g1cvL .framer-ny7z8b, .framer-g1cvL .framer-1e8yzl7, .framer-g1cvL .framer-1373g5y, .framer-g1cvL .framer-15gwyg1, .framer-g1cvL .framer-t189a, .framer-g1cvL .framer-69ixkb, .framer-g1cvL .framer-1eeyr8y, .framer-g1cvL .framer-1ku9k7p, .framer-g1cvL .framer-db8yed { gap: 0px; } .framer-g1cvL .framer-13sz446 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-g1cvL .framer-13sz446 > :first-child, .framer-g1cvL .framer-po2k8i > :first-child, .framer-g1cvL .framer-mcoswx > :first-child, .framer-g1cvL .framer-1vsrnnx > :first-child, .framer-g1cvL .framer-d7lpa > :first-child, .framer-g1cvL .framer-c97lig > :first-child, .framer-g1cvL .framer-e0m9qq > :first-child, .framer-g1cvL .framer-1sfqe5z > :first-child, .framer-g1cvL .framer-10e4ul8 > :first-child, .framer-g1cvL .framer-16cce57 > :first-child, .framer-g1cvL .framer-wr83nv > :first-child, .framer-g1cvL .framer-1pltk33 > :first-child, .framer-g1cvL .framer-1rj4lw > :first-child, .framer-g1cvL .framer-1v6lwa9 > :first-child, .framer-g1cvL .framer-1gks5j5 > :first-child, .framer-g1cvL .framer-ny7z8b > :first-child, .framer-g1cvL .framer-1e8yzl7 > :first-child, .framer-g1cvL .framer-1373g5y > :first-child, .framer-g1cvL .framer-15gwyg1 > :first-child, .framer-g1cvL .framer-t189a > :first-child, .framer-g1cvL .framer-69ixkb > :first-child, .framer-g1cvL .framer-db8yed > :first-child { margin-top: 0px; } .framer-g1cvL .framer-13sz446 > :last-child, .framer-g1cvL .framer-po2k8i > :last-child, .framer-g1cvL .framer-mcoswx > :last-child, .framer-g1cvL .framer-1vsrnnx > :last-child, .framer-g1cvL .framer-d7lpa > :last-child, .framer-g1cvL .framer-c97lig > :last-child, .framer-g1cvL .framer-e0m9qq > :last-child, .framer-g1cvL .framer-1sfqe5z > :last-child, .framer-g1cvL .framer-10e4ul8 > :last-child, .framer-g1cvL .framer-16cce57 > :last-child, .framer-g1cvL .framer-wr83nv > :last-child, .framer-g1cvL .framer-1pltk33 > :last-child, .framer-g1cvL .framer-1rj4lw > :last-child, .framer-g1cvL .framer-1v6lwa9 > :last-child, .framer-g1cvL .framer-1gks5j5 > :last-child, .framer-g1cvL .framer-ny7z8b > :last-child, .framer-g1cvL .framer-1e8yzl7 > :last-child, .framer-g1cvL .framer-1373g5y > :last-child, .framer-g1cvL .framer-15gwyg1 > :last-child, .framer-g1cvL .framer-t189a > :last-child, .framer-g1cvL .framer-69ixkb > :last-child, .framer-g1cvL .framer-db8yed > :last-child { margin-bottom: 0px; } .framer-g1cvL .framer-bc18i9 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-g1cvL .framer-bc18i9 > :first-child, .framer-g1cvL .framer-1eeyr8y > :first-child, .framer-g1cvL .framer-1ku9k7p > :first-child { margin-left: 0px; } .framer-g1cvL .framer-bc18i9 > :last-child, .framer-g1cvL .framer-1eeyr8y > :last-child, .framer-g1cvL .framer-1ku9k7p > :last-child { margin-right: 0px; } .framer-g1cvL .framer-po2k8i > *, .framer-g1cvL .framer-t189a > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-g1cvL .framer-mcoswx > *, .framer-g1cvL .framer-1vsrnnx > *, .framer-g1cvL .framer-d7lpa > *, .framer-g1cvL .framer-c97lig > *, .framer-g1cvL .framer-e0m9qq > *, .framer-g1cvL .framer-1sfqe5z > *, .framer-g1cvL .framer-16cce57 > *, .framer-g1cvL .framer-1rj4lw > *, .framer-g1cvL .framer-1v6lwa9 > *, .framer-g1cvL .framer-1gks5j5 > *, .framer-g1cvL .framer-ny7z8b > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-g1cvL .framer-10e4ul8 > *, .framer-g1cvL .framer-15gwyg1 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-g1cvL .framer-wr83nv > *, .framer-g1cvL .framer-1pltk33 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-g1cvL .framer-1e8yzl7 > *, .framer-g1cvL .framer-1373g5y > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-g1cvL .framer-69ixkb > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-g1cvL .framer-1eeyr8y > *, .framer-g1cvL .framer-1ku9k7p > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-g1cvL .framer-db8yed > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8344\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nDsF6JDOS\":{\"layout\":[\"fixed\",\"auto\"]},\"ikUl4vpTH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"SN_BC4Luo\":{\"pattern\":\":SN_BC4Luo\",\"name\":\"how-it-works\"},\"xrkb6sQJS\":{\"pattern\":\":xrkb6sQJS\",\"name\":\"benefits\"},\"Cyf3QRVni\":{\"pattern\":\":Cyf3QRVni\",\"name\":\"benefits-items\"},\"cvk6L0PwC\":{\"pattern\":\":cvk6L0PwC\",\"name\":\"how-it-works\"},\"VUybwosji\":{\"pattern\":\":VUybwosji\",\"name\":\"benefits\"},\"UYZTSerWr\":{\"pattern\":\":UYZTSerWr\",\"name\":\"benefits-items\"},\"b4efSHEMU\":{\"pattern\":\":b4efSHEMU\",\"name\":\"how-it-works\"}}\n * @framerResponsiveScreen\n */const FramertK8htS8LW=withCSS(Component,css,\"framer-g1cvL\");export default FramertK8htS8LW;FramertK8htS8LW.displayName=\"Homev2\";FramertK8htS8LW.defaultProps={height:8344,width:1440};addFonts(FramertK8htS8LW,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BNWG6MUI4RTC6WEND2VPDH4MHMIVU3XZ/R5YXY5FMVG6PXU36GNEEA24MIPMEPGSM/CIM4KQCLZSMMLWPVH25IDDSTY4ENPHEY.woff2\",weight:\"500\"},{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:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_A87jxeN7B.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"}]},...NavigationBarFonts,...SquaresBackgroundFonts,...ButtonFonts,...LogoGrayFonts,...TickerFonts,...SectionBadgeFonts,...PhosphorFonts,...Link1Fonts,...Footer01Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertK8htS8LW\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"8344\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerScrollSections\":\"{\\\"SN_BC4Luo\\\":{\\\"pattern\\\":\\\":SN_BC4Luo\\\",\\\"name\\\":\\\"how-it-works\\\"},\\\"xrkb6sQJS\\\":{\\\"pattern\\\":\\\":xrkb6sQJS\\\",\\\"name\\\":\\\"benefits\\\"},\\\"Cyf3QRVni\\\":{\\\"pattern\\\":\\\":Cyf3QRVni\\\",\\\"name\\\":\\\"benefits-items\\\"},\\\"cvk6L0PwC\\\":{\\\"pattern\\\":\\\":cvk6L0PwC\\\",\\\"name\\\":\\\"how-it-works\\\"},\\\"VUybwosji\\\":{\\\"pattern\\\":\\\":VUybwosji\\\",\\\"name\\\":\\\"benefits\\\"},\\\"UYZTSerWr\\\":{\\\"pattern\\\":\\\":UYZTSerWr\\\",\\\"name\\\":\\\"benefits-items\\\"},\\\"b4efSHEMU\\\":{\\\"pattern\\\":\\\":b4efSHEMU\\\",\\\"name\\\":\\\"how-it-works\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nDsF6JDOS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ikUl4vpTH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "r", "c", "u", "a", "s", "cubicBezier", "o", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "label", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "HR6VvY__G", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "RichText2", "css", "Framera5S7GmFgP", "withCSS", "a5S7GmFgP_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "css", "FramernIQTbSWys", "withCSS", "nIQTbSWys_default", "addPropertyControls", "ControlType", "addFonts", "Component", "House_default", "React", "weights", "House", "props", "ref", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "e1Nl3sxPr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerRD_sKBOK1", "withCSS", "RD_sKBOK1_default", "addPropertyControls", "ControlType", "addFonts", "NavigationBarFonts", "getFonts", "YyjvDALzo_default", "NavigationBarWithVariantAppearEffect", "withVariantAppearEffect", "SquaresBackgroundFonts", "lLiRbdso0_default", "ButtonFonts", "msHF_hmMB_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "LogoGrayFonts", "nIQTbSWys_default", "TickerFonts", "Ticker", "RichTextWithFX", "withFX", "RichText2", "MotionDivWithFX", "motion", "SectionBadgeFonts", "a5S7GmFgP_default", "PhosphorFonts", "Icon", "Link1Fonts", "RD_sKBOK1_default", "Footer01Fonts", "hIsQQJkMD_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "animation3", "transition2", "animation4", "transition3", "transition4", "animation5", "animation6", "transition5", "transition6", "animation7", "transition7", "animation8", "animation9", "animation10", "animation11", "transition8", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "isDisplayed", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "isDisplayed1", "elementId6", "ref7", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Link", "x", "SVG", "Image2", "css", "FramertK8htS8LW", "withCSS", "tK8htS8LW_default", "addFonts", "__FramerMetadata__"]
}
