{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/soS3NblgMmIeXIabIhEm/NzJPwzEyA4pNhXjtYEdB/Counter1.js", "ssg:https://ga.jspm.io/npm:phenomenon@1.6.0/dist/phenomenon.mjs", "ssg:https://ga.jspm.io/npm:cobe@0.6.0/dist/index.esm.js", "ssg:https://framerusercontent.com/modules/xFhv3ETdRBLjJusGaZ1P/d9ZONLqTB9uCj5kbWKll/Globe.js", "ssg:https://framerusercontent.com/modules/znRFW1BUUQ1myrtI4jiw/vzPX6IIkmXqaoDZFHeWf/p1rpat8Pu.js", "ssg:https://framerusercontent.com/modules/48adJsyBltZ33y4Rg3Go/86ir6ewepylMmAnDdiaf/RaLKdC813.js", "ssg:https://ga.jspm.io/npm:simplex-noise@4.0.3/dist/esm/simplex-noise.js", "ssg:https://framerusercontent.com/modules/czB1zOLBXjT5gBFKyJxW/k8RKeVhFMDheXaAn64H9/Wave.js", "ssg:https://framerusercontent.com/modules/i5ZkQpUGzeaF1t50zePf/blRIDAzXiulWsP1jpila/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const CounterStyles={container:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"}};export function Counter(props){const{start,end,speed,gapSize,prefixText,suffixText,prefixFont,suffixFont,prefixColor,suffixColor,loop,decimalSeparatorType,textSize,selectedFont,textColor,startOnViewport,restartOnViewport,incrementType}=props;const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);useEffect(()=>{const updateCount=()=>{const increment=incrementType===\"integer\"?1:.1;setCount(prevCount=>{const nextCount=parseFloat((prevCount+increment).toFixed(2));return nextCount>=end?end:nextCount;});};if(isVisible||!startOnViewport&&start!==end){const intervalId=setInterval(updateCount,speed);return()=>{clearInterval(intervalId);};}else if(startOnViewport&&isVisible){setCount(start);}},[count,start,end,loop,isVisible,speed,startOnViewport,incrementType]);useEffect(()=>{if(restartOnViewport&&isVisible){setCount(start)// Restart the animation when re-entering the viewport\n;}},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparatorType===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(incrementType===\"integer\"?0:1);}};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...CounterStyles.container,gap:`${gapSize}px`,flexDirection:\"row\",alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor},children:[/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont.fontFamily,fontWeight:prefixFont.fontWeight,color:prefixColor},children:prefixText}),/*#__PURE__*/_jsx(\"span\",{children:formatNumber(count)}),/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont.fontFamily,fontWeight:suffixFont.fontWeight,color:suffixColor},children:suffixText})]});}Counter.defaultProps={start:0,end:100,speed:100,prefixText:\"\",suffixText:\"\",loop:false,decimalSeparatorType:\"comma\",textSize:36,selectedFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor:\"#D3D3D3\",startOnViewport:false,incrementType:\"integer\"};addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},selectedFont:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},textSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:240,step:1},textColor:{type:ControlType.Color,title:\"Font Color\"},start:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Decimal (1.000)\",\"None\"]},incrementType:{type:ControlType.Enum,title:\"Increment Type\",defaultValue:\"integer\",options:[\"integer\",\"decimal\"],optionTitles:[\"Integer\",\"Decimal\"]},prefixText:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},prefixFont:{title:\"Prefix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},prefixColor:{type:ControlType.Color,title:\"Prefix Color\"},suffixText:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},suffixFont:{title:\"Suffix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},suffixColor:{type:ControlType.Color,title:\"Suffix Color\"},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100,step:4},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3,step:10},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",description:\"[Built by Asif Kabir](https://www.youtube.com/channel/UCujbStV-Rp-QGfiHOKA9AvA)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"Counter\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter1.map", "var t=[\"x\",\"y\",\"z\"],e=function(t){Object.assign(this,{uniforms:{},geometry:{vertices:[{x:0,y:0,z:0}]},mode:0,modifiers:{},attributes:[],multiplier:1,buffers:[]}),Object.assign(this,t),this.prepareProgram(),this.prepareUniforms(),this.prepareAttributes()};e.prototype.compileShader=function(t,r){var s=this.gl.createShader(t);return this.gl.shaderSource(s,r),this.gl.compileShader(s),s},e.prototype.prepareProgram=function(){var t=this.gl,r=this.vertex,s=this.fragment,n=t.createProgram();t.attachShader(n,this.compileShader(35633,r)),t.attachShader(n,this.compileShader(35632,s)),t.linkProgram(n),t.useProgram(n),this.program=n},e.prototype.prepareUniforms=function(){for(var t=Object.keys(this.uniforms),r=0;r<t.length;r+=1){var s=this.gl.getUniformLocation(this.program,t[r]);this.uniforms[t[r]].location=s}},e.prototype.prepareAttributes=function(){void 0!==this.geometry.vertices&&this.attributes.push({name:\"aPosition\",size:3}),void 0!==this.geometry.normal&&this.attributes.push({name:\"aNormal\",size:3}),this.attributeKeys=[];for(var t=0;t<this.attributes.length;t+=1)this.attributeKeys.push(this.attributes[t].name),this.prepareAttribute(this.attributes[t])},e.prototype.prepareAttribute=function(r){for(var s=this.geometry,n=this.multiplier,a=s.vertices,o=s.normal,h=new Float32Array(n*a.length*r.size),u=0;u<n;u+=1)for(var f=r.data&&r.data(u,n),c=u*a.length*r.size,l=0;l<a.length;l+=1)for(var p=0;p<r.size;p+=1){var m=this.modifiers[r.name];h[c]=void 0!==m?m(f,l,p,this):\"aPosition\"===r.name?a[l][t[p]]:\"aNormal\"===r.name?o[l][t[p]]:f[p],c+=1}this.attributes[this.attributeKeys.indexOf(r.name)].data=h,this.prepareBuffer(this.attributes[this.attributeKeys.indexOf(r.name)])},e.prototype.prepareBuffer=function(t){var r=t.data,s=t.name,n=t.size,a=this.gl.createBuffer();this.gl.bindBuffer(34962,a),this.gl.bufferData(34962,r,35044);var o=this.gl.getAttribLocation(this.program,s);this.gl.enableVertexAttribArray(o),this.gl.vertexAttribPointer(o,n,5126,!1,0,0),this.buffers[this.attributeKeys.indexOf(t.name)]={buffer:a,location:o,size:n}},e.prototype.render=function(t){var r=this,s=this.uniforms,n=this.multiplier,a=this.gl;a.useProgram(this.program);for(var o=0;o<this.buffers.length;o+=1){var h=this.buffers[o],u=h.location,f=h.buffer,c=h.size;a.enableVertexAttribArray(u),a.bindBuffer(34962,f),a.vertexAttribPointer(u,c,5126,!1,0,0)}Object.keys(t).forEach((function(r){s[r].value=t[r].value})),Object.keys(s).forEach((function(t){var n=s[t];r.uniformMap[n.type](n.location,n.value)})),a.drawArrays(this.mode,0,n*this.geometry.vertices.length),this.onRender&&this.onRender(this)},e.prototype.destroy=function(){for(var t=0;t<this.buffers.length;t+=1)this.gl.deleteBuffer(this.buffers[t].buffer);this.gl.deleteProgram(this.program),this.gl=null};var i=function(t){var r=this,s=t||{},n=s.canvas;void 0===n&&(n=document.querySelector(\"canvas\"));var a=s.context;void 0===a&&(a={});var o=s.contextType;void 0===o&&(o=\"experimental-webgl\");var h=s.settings;void 0===h&&(h={});var u=n.getContext(o,Object.assign({alpha:!1,antialias:!1},a));Object.assign(this,{gl:u,canvas:n,uniforms:{},instances:new Map,shouldRender:!0}),Object.assign(this,{devicePixelRatio:1,clearColor:[1,1,1,1],position:{x:0,y:0,z:2},clip:[.001,100]}),Object.assign(this,h),this.uniformMap={float:function(t,r){return u.uniform1f(t,r)},vec2:function(t,r){return u.uniform2fv(t,r)},vec3:function(t,r){return u.uniform3fv(t,r)},vec4:function(t,r){return u.uniform4fv(t,r)},mat2:function(t,r){return u.uniformMatrix2fv(t,!1,r)},mat3:function(t,r){return u.uniformMatrix3fv(t,!1,r)},mat4:function(t,r){return u.uniformMatrix4fv(t,!1,r)}},u.enable(u.DEPTH_TEST),u.depthFunc(u.LEQUAL),!1===u.getContextAttributes().alpha&&(u.clearColor.apply(u,this.clearColor),u.clearDepth(1)),this.onSetup&&this.onSetup(u),window.addEventListener(\"resize\",(function(){return r.resize()})),this.resize(),this.render()};i.prototype.resize=function(){var t=this.gl,r=this.canvas,s=this.devicePixelRatio,n=this.position;r.width=r.clientWidth*s,r.height=r.clientHeight*s;var a=t.drawingBufferWidth,o=t.drawingBufferHeight,h=a/o;t.viewport(0,0,a,o);var u=Math.tan(Math.PI/180*22.5),f=[1,0,0,0,0,1,0,0,0,0,1,0,n.x,n.y,(h<1?1:h)*-n.z,1];this.uniforms.uProjectionMatrix={type:\"mat4\",value:[.5/u,0,0,0,0,h/u*.5,0,0,0,0,-(this.clip[1]+this.clip[0])/(this.clip[1]-this.clip[0]),-1,0,0,-2*this.clip[1]*(this.clip[0]/(this.clip[1]-this.clip[0])),0]},this.uniforms.uViewMatrix={type:\"mat4\",value:[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]},this.uniforms.uModelMatrix={type:\"mat4\",value:f}},i.prototype.toggle=function(t){t!==this.shouldRender&&(this.shouldRender=void 0!==t?t:!this.shouldRender,this.shouldRender&&this.render())},i.prototype.render=function(){var t=this;this.gl.clear(16640),this.instances.forEach((function(r){r.render(t.uniforms)})),this.onRender&&this.onRender(this),this.shouldRender&&requestAnimationFrame((function(){return t.render()}))},i.prototype.add=function(t,r){void 0===r&&(r={uniforms:{}}),void 0===r.uniforms&&(r.uniforms={}),Object.assign(r.uniforms,JSON.parse(JSON.stringify(this.uniforms))),Object.assign(r,{gl:this.gl,uniformMap:this.uniformMap});var s=new e(r);return this.instances.set(t,s),s},i.prototype.remove=function(t){var r=this.instances.get(t);void 0!==r&&(r.destroy(),this.instances.delete(t))},i.prototype.destroy=function(){var t=this;this.instances.forEach((function(r,s){r.destroy(),t.instances.delete(s)})),this.toggle(!1)};export default i;\n\n//# sourceMappingURL=phenomenon.mjs.map", "import e from\"phenomenon\";var a=\"phi\",o=\"theta\",t=\"mapSamples\",i=\"mapBrightness\",f=\"baseColor\",r=\"markerColor\",l=\"glowColor\",c=\"markers\",n=\"diffuse\",A=\"devicePixelRatio\",g=\"dark\",v=\"offset\",s=\"scale\",d={[a]:\"A\",[o]:\"B\",[t]:\"k\",[i]:\"E\",[f]:\"L\",[r]:\"M\",[l]:\"y\",[n]:\"F\",[g]:\"G\",[v]:\"x\",[s]:\"C\"},{PI:u,sin:m,cos:x}=Math,U=e=>[].concat(...e.map((e=>{let[a,o]=e.location;a=a*u/180,o=o*u/180-u;let t=x(a);return[-t*x(o),m(a),t*m(o),e.size]})),[0,0,0,0]),D=(u,m)=>{let _=(e,a,o)=>({type:e,value:\"undefined\"==typeof m[a]?o:m[a]}),x=u.getContext(\"webgl\")?\"webgl\":\"experimental-webgl\",y=new e({canvas:u,contextType:x,context:{alpha:!0,stencil:!1,antialias:!0,depth:!1,preserveDrawingBuffer:!1},settings:{[A]:m[A]||1,onSetup:e=>{let a=e.RGB,o=e.UNSIGNED_BYTE,t=e.TEXTURE_2D,i=e.createTexture();e.bindTexture(t,i),e.texImage2D(t,0,a,1,1,0,a,o,new Uint8Array([0,0,0,0]));let f=new Image;f.onload=()=>{e.bindTexture(t,i),e.texImage2D(t,0,a,a,o,f),e.generateMipmap(t);let r=e.getParameter(e.CURRENT_PROGRAM),l=e.getUniformLocation(r,\"H\");e.texParameteri(t,e.TEXTURE_MIN_FILTER,e.NEAREST),e.texParameteri(t,e.TEXTURE_MAG_FILTER,e.NEAREST),e.uniform1i(l,0)},f.src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAACAAQAAAADMzoqnAAAAAXNSR0IArs4c6QAABA5JREFUeNrV179uHEUAx/Hf3JpbF+E2VASBsmVKTBcpKJs3SMEDcDwBiVJAAewYEBUivIHT0uUBIt0YCovKD0CRjUC4QfHYh8hYXu+P25vZ2Zm9c66gMd/GJ/tz82d3bk8GN4SrByYF2366FNTACIAkivVAAazQdnf3MvAlbNUQfOPAdQDvSAimMWhwy4I2g4SU+Kp04ISLpPBAKLxPyic3O/CCi+Y7rUJbiodcpDOFY7CgxCEXmdYD2EYK2s5lApOx5pEDDYCUwM1XdJUwBV11QQMg59kePSCaPAASQMEL2hwo6TJFgxpg+TgC2ymXPbuvc40awr3D1QCFfbH9kcoqAOkZozpQo0aqAGQRKCog/+tjkgbNFEtg2FffBvBGlSxHoAaAa1u6X4PBAwDiR8FFsrQgeUhfJTSALaB9jy5NCybJPn1SVFiWk7ywN+KzhH1aKAuydhGkbEF4lWohLXDXavlyFgHY7LBnLRdlAP6BS5Cc8RfVDXbkwN/oIvmY+6obbNeBP0JwTuMGu9gTzy1Q4RS/cWpfzszeYwd+CAFrtBW/Hur0gLbJGlD+/OjVwe/drfBxkbbg63dndEDfiEBlAd7ac0BPe1D6Jd8dfbLH+RI0OzseFB5s01/M+gMdAeluLOCAuaUA9Lezo/vSgXoCX9rtEiXnp7Q1W/CNyWcd8DXoS6jH/YZ5vAJEWY2dXFQe2TUgaFaNejCzJ98g6HnlVrsE58sDcYqg+9XY75fPqdoh/kRQWiXKg8MWlJQxUFMPjqnyujhFBE7UxIMjyszk0QwQlFsezImsyvUYYYVED2pk6m0Tg8T04Fwjk2kdAwSACqlM6gRRt3vQYAFGX0Ah7Ebx1H+MDRI5ui0QldH4j7FGcm90XdxD2Jg1AOEAVAKhEFXSn4cKUELurIAKwJ3MArypPscQaLhJFICJ0ohjDySAdH8AhDtCiTuMycH8CXzhH9jUACAO5uMhoAwA5i+T6WAKmmAqnLy80wxHqIPFYpqCwxGaYLt4Dyievg5kEoVEUAhs6pqKgFtDQYOuaXypaWKQfIuwwoGSZgfLsu/XAtI8cGN+h7Cc1A5oLOMhwlIPXuhu48AIvsSBkvtV9wsJRKCyYLfq5lTrQMFd1a262oqBck9K1V0YjQg0iEYYgpS1A9GlXQV5cykwm4A7BzVsxQqo7E+zCegO7Ma7yKgsuOcfKbMBwLC8wvVNYDsANYalEpOAa6zpWjTeMKGwEwC1CiQewJc5EKfgy7GmRAZA4vUVGwE2dPM/g0xuAInE/yG5aZ8ISxWGfYigUVbdyBElTHh2uCwGdfCkOLGgQVBh3Ewp+/QK4CDlR5Ws/Zf7yhCf8pH7vinWAvoVCQ6zz0NX5V/6GkAVV+2/5qsJ/gU8bsxpM8IeAQAAAABJRU5ErkJggg==\"}}});return y.add(\"\",{vertex:\"attribute vec3 aPosition;uniform mat4 uProjectionMatrix;uniform mat4 uModelMatrix;uniform mat4 uViewMatrix;void main(){gl_Position=uProjectionMatrix*uModelMatrix*uViewMatrix*vec4(aPosition,1.);}\",fragment:\"precision highp float;uniform vec2 r,x;uniform vec3 L,M,y;uniform vec4 z[64];uniform float A,B,k,C,D,E,F,G;uniform sampler2D H;float I=1./k;mat3 J(float a,float b){float c=cos(a),d=cos(b),e=sin(a),f=sin(b);return mat3(d,f*e,-f*c,0.,c,e,f,d*-e,d*c);}vec3 v(vec3 c,out float w){c=c.xzy;float p=max(2.,floor(log2(2.236068*k*3.141593*(1.-c.z*c.z))*.72021));vec2 g=floor(pow(1.618034,p)/2.236068*vec2(1.,1.618034)+.5),d=fract((g+1.)*.618034)*6.283185-3.883222,e=-2.*g,f=vec2(atan(c.y,c.x),c.z-1.),q=floor(vec2(e.y*f.x-d.y*(f.y*k+1.),-e.x*f.x+d.x*(f.y*k+1.))/(d.x*e.y-e.x*d.y));float n=3.141593;vec3 s;for(float h=0.;h<4.;h+=1.){vec2 t=vec2(mod(h,2.),floor(h*.5));float j=dot(g,q+t);if(j>k)continue;float a=j,b=0.;if(a>=524288.)a-=524288.,b+=.803894;if(a>=262144.)a-=262144.,b+=.901947;if(a>=131072.)a-=131072.,b+=.950973;if(a>=65536.)a-=65536.,b+=.475487;if(a>=32768.)a-=32768.,b+=.737743;if(a>=16384.)a-=16384.,b+=.868872;if(a>=8192.)a-=8192.,b+=.934436;if(a>=4096.)a-=4096.,b+=.467218;if(a>=2048.)a-=2048.,b+=.733609;if(a>=1024.)a-=1024.,b+=.866804;if(a>=512.)a-=512.,b+=.433402;if(a>=256.)a-=256.,b+=.216701;if(a>=128.)a-=128.,b+=.108351;if(a>=64.)a-=64.,b+=.554175;if(a>=32.)a-=32.,b+=.777088;if(a>=16.)a-=16.,b+=.888544;if(a>=8.)a-=8.,b+=.944272;if(a>=4.)a-=4.,b+=.472136;if(a>=2.)a-=2.,b+=.236068;if(a>=1.)a-=1.,b+=.618034;float l=fract(b)*6.283185,i=1.-2.*j*I,m=sqrt(1.-i*i);vec3 o=vec3(cos(l)*m,sin(l)*m,i);float u=length(c-o);if(u<n)n=u,s=o;}w=n;return s.xzy;}void main(){vec2 a=(gl_FragCoord.xy/r*2.-1.)/C-x*vec2(1.,-1.)/r;a.x*=r.x/r.y;float c=dot(a,a),b;vec3 d=vec3(0.,0.,1.),e=normalize(vec3(a,sqrt(.64-c)));if(c<=.64){vec3 f=e*J(B,A),g=v(f,b);float j=asin(g.y),h=acos(-g.x/cos(j));h=g.z<0.?-h:h;float t=texture2D(H,vec2(h*.5/3.141593,-(j/3.141593+.5))).x,u=smoothstep(8e-3,0.,b),l=dot(e,d),s=pow(l,F)*E,m=t*u*s,N=mix((1.-m)*pow(l,.4),m,G)+.1;gl_FragColor=vec4(L*N,1.);int O=int(D);float n=0.;for(int i=0;i<64;i++){if(i>=O)break;vec4 o=z[i];vec3 p=o.xyz,w=p-f;float q=o.w;if(dot(w,w)>q*q*4.)continue;vec3 P=v(p,b);b=length(P-f),b<q?n+=smoothstep(q*.5,0.,b):0.;}n=min(1.,n*s),gl_FragColor.xyz=mix(gl_FragColor.xyz,M,n),gl_FragColor.xyz+=pow(1.-dot(e,d),4.)*y;}float K=pow(dot(normalize(vec3(-a,sqrt(1.-c))),d),4.)*smoothstep(.1,1.,.2/(c-.64));gl_FragColor+=vec4(K*y,K);}\",uniforms:{r:{type:\"vec2\",value:[m.width,m.height]},A:_(\"float\",a),B:_(\"float\",o),k:_(\"float\",t),E:_(\"float\",i),L:_(\"vec3\",f),M:_(\"vec3\",r),F:_(\"float\",n),y:_(\"vec3\",l),G:_(\"float\",g),z:{type:\"vec4\",value:U(m[c])},D:{type:\"float\",value:m[c].length},x:_(\"vec2\",v,[0,0]),C:_(\"float\",s,1)},mode:4,geometry:{vertices:[{x:-100,y:100,z:0},{x:-100,y:-100,z:0},{x:100,y:100,z:0},{x:100,y:-100,z:0},{x:-100,y:-100,z:0},{x:100,y:100,z:0}]},onRender:({uniforms:e})=>{let a={};if(m.onRender){m.onRender(a);for(let o in d)void 0!==a[o]&&(e[d[o]].value=a[o]);void 0!==a[c]&&(e.z.value=U(a[c]),e.D.value=a[c].length),a.width&&a.height&&(e.r.value=[a.width,a.height])}}}),y};export{D as default};\n\n//# sourceMappingURL=index.esm.js.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,Color,RenderTarget}from\"framer\";import{useEffect,useRef}from\"react\";import createGlobe from\"cobe\";import{useSpring}from\"framer-motion\";/**\n * GLOBE FOR FRAMER\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 300\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Globe(props){const{background,baseColor,glowColor,isDraggable,dragOptions,speed,theta,phi,dark,diffuse,maxSamples,mapBrightness,markerSize,markerArray,markerColor,scale,alignment,maxWidth,offset}=props;const{offsetX,offsetY}=offset;const{stiffness,damping,mass}=dragOptions;const canvasRef=useRef();const pointerInteracting=useRef(null);const pointerInteractionMovement=useRef(0);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const r=useSpring(0,{stiffness:stiffness,damping:damping,mass:mass,restDelta:1e-4,restSpeed:1e-4});const fadeMask=\"radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 70%)\";useEffect(()=>{let phiValue=phi;let width=0;const onResize=()=>{if(canvasRef.current&&(width=canvasRef.current.offsetWidth)){window.addEventListener(\"resize\",onResize);}};onResize();const baseConvert=convertRGB(baseColor);const glowConvert=convertRGB(glowColor);const markerConvert=convertRGB(markerColor);const globe=createGlobe(canvasRef.current,{devicePixelRatio:2,width:width*2,height:width*2,phi:phi,theta:theta,dark:dark,diffuse:diffuse,mapSamples:maxSamples,mapBrightness:mapBrightness,baseColor:[baseConvert.r,baseConvert.g,baseConvert.b],glowColor:[glowConvert.r,glowConvert.g,glowConvert.b],markerColor:[markerConvert.r,markerConvert.g,markerConvert.b],markers:markerArray.map(marker=>{return{location:[marker.latitude,marker.longitude],size:markerSize};}),scale:scale,offset:[offsetX,offsetY],onRender:state=>{if(!isCanvas){state.phi=phiValue+r.get();}state.width=width*2;state.height=width*2;if(!isCanvas){state.phi=phiValue+r.get();phiValue+=speed/200;}}});return()=>{globe.destroy();};},[props]);return /*#__PURE__*/ _jsx(\"div\",{style:{...flexStyles,placeItems:alignment,background:background},children:/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",aspectRatio:\"1/1\",maxWidth:maxWidth,WebkitMaskImage:fadeMask,MozMaskImage:fadeMask,maskImage:fadeMask},children:/*#__PURE__*/ _jsx(\"canvas\",{ref:canvasRef,style:{width:\"100%\",height:\"100%\",contain:\"layout paint size\",cursor:\"auto\",userSelect:\"none\"},onPointerDown:e=>{if(isDraggable){pointerInteracting.current=e.clientX-pointerInteractionMovement.current;canvasRef.current.style.cursor=\"grabbing\";}},onPointerUp:()=>{if(isDraggable){pointerInteracting.current=null;canvasRef.current.style.cursor=\"grab\";}},onPointerOver:()=>{if(isDraggable){canvasRef.current.style.cursor=\"grab\";}},onPointerOut:()=>{if(isDraggable){pointerInteracting.current=null;canvasRef.current.style.cursor=\"auto\";}},onMouseMove:e=>{if(isDraggable){if(pointerInteracting.current!==null){const delta=e.clientX-pointerInteracting.current;pointerInteractionMovement.current=delta;r.set(delta/100);}}},onTouchMove:e=>{if(pointerInteracting.current!==null&&e.touches[0]){const delta=e.touches[0].clientX-pointerInteracting.current;pointerInteractionMovement.current=delta;r.set(delta/100);}}})})});};/* Default properties */ Globe.defaultProps={background:\"#000000\",baseColor:\"#333333\",glowColor:\"#ffffff\",markerColor:\"#ffffff\",isDraggable:true,dragOptions:{stiffness:200,damping:40,mass:1},speed:1,phi:0,theta:.3,dark:1,diffuse:2,mapBrightness:20,maxSamples:2e4,markerSize:.1,markerArray:{latitude:52.3676,longitude:4.9041},scale:1,alignment:\"center\",maxWidth:800,offset:{offsetX:0,offsetY:0}};Globe.displayName=\"Globe\";const dp=Globe.defaultProps;const dpOffset=Globe.defaultProps.offset;const dpDrag=Globe.defaultProps.dragOptions;addPropertyControls(Globe,{background:{type:ControlType.Color,title:\"Backdrop\",defaultValue:dp.background},baseColor:{type:ControlType.Color,title:\"Base\",defaultValue:dp.baseColor},glowColor:{type:ControlType.Color,title:\"Glow\",defaultValue:dp.glowColor},markerColor:{type:ControlType.Color,title:\"Marker\",defaultValue:dp.markerColor},isDraggable:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:dp.isDraggable},dragOptions:{type:ControlType.Object,title:\"Transition\",controls:{stiffness:{type:ControlType.Number,min:0,max:1e3,title:\"Stiffness\",defaultValue:dpDrag.stiffness},damping:{type:ControlType.Number,min:0,max:100,title:\"Damping\",defaultValue:dpDrag.damping},mass:{type:ControlType.Number,min:0,title:\"Mass\",displayStepper:true,defaultValue:dpDrag.mass}},hidden(props){return!props.isDraggable;}},speed:{type:ControlType.Number,min:0,step:.1,displayStepper:true,title:\"Speed\",defaultValue:dp.speed},phi:{type:ControlType.Number,min:0,max:6.28,step:.01,displayStepper:true,title:\"Phi\",defaultValue:dp.phi},theta:{type:ControlType.Number,min:-1.57,max:1.57,step:.01,title:\"Theta\",defaultValue:dp.theta},dark:{type:ControlType.Number,min:0,max:1,step:.1,displayStepper:true,title:\"Dark\",defaultValue:dp.dark},diffuse:{type:ControlType.Number,min:0,max:5,step:.01,title:\"Diffuse\",defaultValue:dp.diffuse},mapBrightness:{type:ControlType.Number,min:0,max:12,step:.01,title:\"Brightness\",defaultValue:dp.mapBrightness},maxSamples:{type:ControlType.Number,min:0,max:1e5,title:\"Samples\",defaultValue:dp.maxSamples},scale:{type:ControlType.Number,min:0,max:5,step:.025,displayStepper:true,title:\"Scale\",defaultValue:dp.scale},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],defaultValue:dp.alignment,displaySegmentedControl:true},maxWidth:{type:ControlType.Number,title:\"Max Width\",min:100,max:5e3,defaultValue:dp.maxWidth},offset:{type:ControlType.Object,title:\"Offset\",controls:{offsetX:{type:ControlType.Number,min:-5e3,max:5e3,title:\"X\",defaultValue:dpOffset.offsetX},offsetY:{type:ControlType.Number,min:-5e3,max:5e3,title:\"Y\",defaultValue:dpOffset.offsetY}}},markerSize:{type:ControlType.Number,min:0,max:1,step:.01,title:\"Markers\",defaultValue:dp.markerSize},markerArray:{type:ControlType.Array,title:\"Location\",// defaultValue: [{ latitude: 52.3676, longitude: 4.9041 }],\ncontrol:{type:ControlType.Object,title:\"Location\",controls:{latitude:{type:ControlType.Number,min:-90,max:90,title:\"Lat\",step:1e-4,defaultValue:dp.markerArray.latitude},longitude:{type:ControlType.Number,min:-180,max:180,title:\"Long\",step:1e-4,defaultValue:dp.markerArray.longitude}}}}});/* Styles */ const flexStyles={width:\"100%\",height:\"100%\",display:\"flex\",placeItems:\"center\",placeContent:\"center\",overflow:\"visible\"};/* Functions */ const convertRGB=color=>{return{r:Color(color).r/255,g:Color(color).g/255,b:Color(color).b/255};};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Globe\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"300\",\"framerIntrinsicHeight\":\"300\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Globe.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"F0Jjx4dEZ\",\"F4ARola_X\"];const serializationHash=\"framer-JVSgL\";const variantClassNames={F0Jjx4dEZ:\"framer-v-mgn64v\",F4ARola_X:\"framer-v-v6im7o\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Active:\"F4ARola_X\",Inactive:\"F0Jjx4dEZ\"};const getProps=({click,height,id,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,dfFMIHtv7:(_ref=text!==null&&text!==void 0?text:props.dfFMIHtv7)!==null&&_ref!==void 0?_ref:\"Text\",GvbP600LY:click!==null&&click!==void 0?click:props.GvbP600LY,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"F0Jjx4dEZ\"};};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,dfFMIHtv7,GvbP600LY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"F0Jjx4dEZ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapd34usq=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(GvbP600LY){const res=await GvbP600LY(...args);if(res===false)return false;}});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-mgn64v\",className,classNames),\"data-framer-name\":\"Inactive\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"F0Jjx4dEZ\",onTap:onTapd34usq,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(143, 153, 168, 0.15)\",borderBottomLeftRadius:11,borderBottomRightRadius:11,borderTopLeftRadius:11,borderTopRightRadius:11,...style},...addPropertyOverrides({F4ARola_X:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jrogdm\",\"data-border\":true,\"data-framer-name\":\"Frame\",layoutDependency:layoutDependency,layoutId:\"y8CkKoyH8\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(228, 231, 236)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{F4ARola_X:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(224, 225, 227)\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 50, 56))\"},children:\"Contact Centers\"})}),className:\"framer-18y0rgx\",\"data-framer-name\":\"Knowledge Base\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ieww4p2wp\",style:{\"--extracted-r6o4lv\":\"rgb(46, 50, 56)\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},text:dfFMIHtv7,variants:{F4ARola_X:{opacity:.5}},verticalAlignment:\"center\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JVSgL.framer-fqobuj, .framer-JVSgL .framer-fqobuj { display: block; }\",\".framer-JVSgL.framer-mgn64v { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 3px; position: relative; width: min-content; }\",\".framer-JVSgL .framer-jrogdm { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 5px 15px 5px 15px; position: relative; width: min-content; }\",\".framer-JVSgL .framer-18y0rgx { flex: none; height: 20px; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JVSgL.framer-mgn64v, .framer-JVSgL .framer-jrogdm { gap: 0px; } .framer-JVSgL.framer-mgn64v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-JVSgL.framer-mgn64v > :first-child { margin-top: 0px; } .framer-JVSgL.framer-mgn64v > :last-child { margin-bottom: 0px; } .framer-JVSgL .framer-jrogdm > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-JVSgL .framer-jrogdm > :first-child { margin-left: 0px; } .framer-JVSgL .framer-jrogdm > :last-child { margin-right: 0px; } }\",\".framer-JVSgL.framer-v-v6im7o.framer-mgn64v { cursor: default; }\",'.framer-JVSgL[data-border=\"true\"]::after, .framer-JVSgL [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 65\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"F4ARola_X\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"dfFMIHtv7\":\"text\",\"GvbP600LY\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerp1rpat8Pu=withCSS(Component,css,\"framer-JVSgL\");export default Framerp1rpat8Pu;Framerp1rpat8Pu.displayName=\"Tab Button\";Framerp1rpat8Pu.defaultProps={height:36,width:65};addPropertyControls(Framerp1rpat8Pu,{variant:{options:[\"F0Jjx4dEZ\",\"F4ARola_X\"],optionTitles:[\"Inactive\",\"Active\"],title:\"Variant\",type:ControlType.Enum},dfFMIHtv7:{defaultValue:\"Text\",displayTextArea:false,title:\"Text\",type:ControlType.String},GvbP600LY:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerp1rpat8Pu,[{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerp1rpat8Pu\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"65\",\"framerVariables\":\"{\\\"dfFMIHtv7\\\":\\\"text\\\",\\\"GvbP600LY\\\":\\\"click\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"F4ARola_X\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"36\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./p1rpat8Pu.map", "// Generated by Framer (c90df04)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import TabButton from\"https://framerusercontent.com/modules/znRFW1BUUQ1myrtI4jiw/vzPX6IIkmXqaoDZFHeWf/p1rpat8Pu.js\";const TabButtonFonts=getFonts(TabButton);const cycleOrder=[\"CchMBDKHO\",\"h4WeClKvc\",\"j4sWOl_qJ\",\"AdPav0tnG\",\"E1KQwUgt5\"];const serializationHash=\"framer-x0PPH\";const variantClassNames={AdPav0tnG:\"framer-v-12bf8ut\",CchMBDKHO:\"framer-v-16kuc8x\",E1KQwUgt5:\"framer-v-r0gz3o\",h4WeClKvc:\"framer-v-14tgddk\",j4sWOl_qJ:\"framer-v-1egib9i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"CchMBDKHO\",\"Variant 2\":\"h4WeClKvc\",\"Variant 3\":\"j4sWOl_qJ\",\"Variant 4\":\"AdPav0tnG\",\"Variant 5\":\"E1KQwUgt5\"};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:\"CchMBDKHO\"};};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:\"CchMBDKHO\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const GvbP600LYr9yn8j=activeVariantCallback(async(...args)=>{setVariant(\"CchMBDKHO\");});const GvbP600LY1rk2rsg=activeVariantCallback(async(...args)=>{setVariant(\"h4WeClKvc\");});const GvbP600LYdwldj3=activeVariantCallback(async(...args)=>{setVariant(\"j4sWOl_qJ\");});const GvbP600LYv1rtsy=activeVariantCallback(async(...args)=>{setVariant(\"AdPav0tnG\");});const GvbP600LYetd4td=activeVariantCallback(async(...args)=>{setVariant(\"E1KQwUgt5\");});const onTapetd4td=activeVariantCallback(async(...args)=>{setVariant(\"E1KQwUgt5\");});const onTap1rk2rsg=activeVariantCallback(async(...args)=>{setVariant(\"h4WeClKvc\");});const onTapv1rtsy=activeVariantCallback(async(...args)=>{setVariant(\"AdPav0tnG\");});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-16kuc8x\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"CchMBDKHO\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({AdPav0tnG:{\"data-framer-name\":\"Variant 4\"},E1KQwUgt5:{\"data-framer-name\":\"Variant 5\"},h4WeClKvc:{\"data-framer-name\":\"Variant 2\"},j4sWOl_qJ:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jp8lea\",\"data-framer-name\":\"Actions\",layoutDependency:layoutDependency,layoutId:\"kGdDhOjUi\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1smmfur-container\",layoutDependency:layoutDependency,layoutId:\"c_JWfD9hb-container\",children:/*#__PURE__*/_jsx(TabButton,{dfFMIHtv7:\"Call Center\",GvbP600LY:GvbP600LYr9yn8j,height:\"100%\",id:\"c_JWfD9hb\",layoutId:\"c_JWfD9hb\",variant:\"F4ARola_X\",width:\"100%\",...addPropertyOverrides({AdPav0tnG:{variant:\"F0Jjx4dEZ\"},E1KQwUgt5:{variant:\"F0Jjx4dEZ\"},h4WeClKvc:{variant:\"F0Jjx4dEZ\"},j4sWOl_qJ:{variant:\"F0Jjx4dEZ\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wy90ur-container\",layoutDependency:layoutDependency,layoutId:\"XrhZQbRd1-container\",children:/*#__PURE__*/_jsx(TabButton,{dfFMIHtv7:\"Healthcare\",GvbP600LY:GvbP600LY1rk2rsg,height:\"100%\",id:\"XrhZQbRd1\",layoutId:\"XrhZQbRd1\",variant:\"F0Jjx4dEZ\",width:\"100%\",...addPropertyOverrides({h4WeClKvc:{variant:\"F4ARola_X\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pefz28-container\",layoutDependency:layoutDependency,layoutId:\"m7mSu9vk_-container\",children:/*#__PURE__*/_jsx(TabButton,{dfFMIHtv7:\"SMBs\",GvbP600LY:GvbP600LYdwldj3,height:\"100%\",id:\"m7mSu9vk_\",layoutId:\"m7mSu9vk_\",variant:\"F0Jjx4dEZ\",width:\"100%\",...addPropertyOverrides({j4sWOl_qJ:{variant:\"F4ARola_X\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-he9nfb-container\",layoutDependency:layoutDependency,layoutId:\"Pjjzrz5w5-container\",children:/*#__PURE__*/_jsx(TabButton,{dfFMIHtv7:\"Insurance\",GvbP600LY:GvbP600LYv1rtsy,height:\"100%\",id:\"Pjjzrz5w5\",layoutId:\"Pjjzrz5w5\",variant:\"F0Jjx4dEZ\",width:\"100%\",...addPropertyOverrides({AdPav0tnG:{variant:\"F4ARola_X\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-72t1tn-container\",layoutDependency:layoutDependency,layoutId:\"YDWMXVfGJ-container\",children:/*#__PURE__*/_jsx(TabButton,{dfFMIHtv7:\"BPO\u2019s\",GvbP600LY:GvbP600LYetd4td,height:\"100%\",id:\"YDWMXVfGJ\",layoutId:\"YDWMXVfGJ\",variant:\"F0Jjx4dEZ\",width:\"100%\",...addPropertyOverrides({E1KQwUgt5:{variant:\"F4ARola_X\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-asu0zx\",layoutDependency:layoutDependency,layoutId:\"as7YnFI5H\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-95ua5i\",\"data-border\":true,\"data-framer-name\":\"Frame 48\",layoutDependency:layoutDependency,layoutId:\"b_wHw3TOj\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, rgb(234, 237, 241))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(250, 250, 251)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lsw2t7\",\"data-framer-name\":\"Frame 1707481302\",layoutDependency:layoutDependency,layoutId:\"h9O_KBkCF\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c7w0fn\",\"data-framer-name\":\"Frame 1707481301\",layoutDependency:layoutDependency,layoutId:\"XZNL5sHZe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 29, 31))\"},children:[\"Contact Center AI for Superfast \",/*#__PURE__*/_jsx(motion.br,{}),\"Support and Outreach\"]})}),className:\"framer-1gefawd\",\"data-framer-name\":\"We helping healtcare industriy duis aute irure dolor in repre henderit in voluptate velit esse rit in voluptate velit esse cillum dolore eu.\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Ap9zLFqMT\",style:{\"--extracted-r6o4lv\":\"rgb(28, 29, 31)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({AdPav0tnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 29, 31))\"},children:[\"Take the tedium out of your \",/*#__PURE__*/_jsx(motion.br,{}),\"everyday paperwork\"]})})},E1KQwUgt5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 29, 31))\"},children:[\"Automate Marketing, Sales \",/*#__PURE__*/_jsx(motion.br,{}),\"and Human Resources\"]})})},h4WeClKvc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 29, 31))\"},children:\"Book Appointments and Approve Prescriptions without picking up the Phone\"})})},j4sWOl_qJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 29, 31))\"},children:[\"Don\u2019t let the growing pains \",/*#__PURE__*/_jsx(motion.br,{}),\"slow down your roll.\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"An end-to-end AI Voice solution that\u2019s half the price! Powered entirely by Gen AI, Phonely is the most human-sounding AI agent that works in real-time. Always up and ready to talk, Phonely has made wait times a thing of the past.\"})}),className:\"framer-o41unu\",\"data-framer-name\":\"Reprehenderit in voluptate velit esse., Duis aute irure dolor in rlit esse cillum dolore eu fugiat nulla pariatur.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"q1WlIBLxY\",style:{\"--extracted-r6o4lv\":\"rgb(143, 153, 168)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({AdPav0tnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"Collect caller info and qualify applicants without the hassle. Be it claims, or renewals; Phonely collects caller info and fill out forms for you. An agent your team will like, and your customers will love!\"})})},E1KQwUgt5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:[\"Leave requests, salary slips, inbound leads, and sales calls; Phonely can automate them all, 9-to-5 \",/*#__PURE__*/_jsx(motion.br,{}),\"and 5-to-9. Keeping your staff focused on critical issues.\"]})})},h4WeClKvc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"An AI receptionist that books appointments, sends reminders, follows up. During and afterhours. Better yet, Phonely integrates with the top EHR systems, managing the clinic for you!\"})})},j4sWOl_qJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:[\"Grow your Business, and let Phonely \",/*#__PURE__*/_jsx(motion.br,{}),\"handle the Calls. Phonely handles order updates, \",/*#__PURE__*/_jsx(motion.br,{}),\"return requests, and answers FAQs and so much more. \"]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q6f5xl\",\"data-framer-name\":\"Frame 1707481300\",layoutDependency:layoutDependency,layoutId:\"JSFgwivC0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-llkykf\",\"data-framer-name\":\"Frame 1707481297\",layoutDependency:layoutDependency,layoutId:\"CBWR8VXMW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"Cost Reduction\"})}),className:\"framer-3sga9h\",\"data-framer-name\":\"Effectivity\",fonts:[\"GF;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"WCds4QlFp\",style:{\"--extracted-r6o4lv\":\"rgb(143, 153, 168)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({AdPav0tnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"Time Saved\"})})},E1KQwUgt5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"FCR Rate\"})})},h4WeClKvc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"Accuracy\"})})},j4sWOl_qJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"Missed Calls\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"50%\"})}),className:\"framer-1is8ypc\",\"data-framer-name\":\"35%\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"xZPduA0Ih\",style:{\"--extracted-r6o4lv\":\"rgb(34, 6, 64)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({AdPav0tnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"30%\"})})},h4WeClKvc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"98%\"})})},j4sWOl_qJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"0\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-q64f8i\",\"data-framer-name\":\"Vector 54\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:4,layoutDependency:layoutDependency,layoutId:\"u_Hvx3Znc\",svg:'<svg width=\"4\" height=\"45\" viewBox=\"-1 -1 4 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 0L0.999998 43\" stroke=\"#E2E0EB\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tfm2id\",\"data-framer-name\":\"Frame 1707481298\",layoutDependency:layoutDependency,layoutId:\"OhVUYeml7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"Time to Lead\"})}),className:\"framer-19jlmou\",\"data-framer-name\":\"Effectivity\",fonts:[\"GF;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"Sn9udXb46\",style:{\"--extracted-r6o4lv\":\"rgb(143, 153, 168)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({AdPav0tnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"Satisfaction\"})})},E1KQwUgt5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"Operational Costs\"})})},h4WeClKvc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"Avaialability\"})})},j4sWOl_qJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"Conversion Rate\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"0s\"})}),className:\"framer-cvhy0k\",\"data-framer-name\":\"35%\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"Z25LNlo7E\",style:{\"--extracted-r6o4lv\":\"rgb(34, 6, 64)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({AdPav0tnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"+90%\"})})},E1KQwUgt5:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"-50%\"})}),onTap:onTapetd4td},h4WeClKvc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"24 x 7\"})})},j4sWOl_qJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"+50%\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qet5ph\",\"data-framer-name\":\"Vector 53\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:4,layoutDependency:layoutDependency,layoutId:\"PIraibwma\",svg:'<svg width=\"4\" height=\"45\" viewBox=\"-1 -1 4 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 0L0.999998 43\" stroke=\"#E2E0EB\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x2pu3f\",\"data-framer-name\":\"Frame 1707481299\",layoutDependency:layoutDependency,layoutId:\"jHAVDAvaL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"Concurrent Calls\"})}),className:\"framer-o7ryhh\",\"data-framer-name\":\"Effectivity\",fonts:[\"GF;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"R1adoqrxo\",style:{\"--extracted-r6o4lv\":\"rgb(143, 153, 168)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({AdPav0tnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"Conversion Rate\"})})},h4WeClKvc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"Setup Time\"})})},j4sWOl_qJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(143, 153, 168))\"},children:\"Issue Resolution\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"1M+\"})}),className:\"framer-jr2rwk\",\"data-framer-name\":\"35%\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"x_l18_SyP\",style:{\"--extracted-r6o4lv\":\"rgb(34, 6, 64)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({AdPav0tnG:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"1.6x\"})}),onTap:onTapv1rtsy},h4WeClKvc:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"<Day\"})}),onTap:onTap1rk2rsg},j4sWOl_qJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"80%\"})})}},baseVariant,gestureVariant)})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2sonjf\",\"data-border\":true,\"data-framer-name\":\"Frame 46\",layoutDependency:layoutDependency,layoutId:\"y9fj54yyl\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tzdf3j\",\"data-framer-name\":\"Frame 1707481304\",layoutDependency:layoutDependency,layoutId:\"NSj_BILH0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"Phonely has been a game-changer for our contact center. We've experienced a 50% reduction in operational costs. The AI workflows are intuitive and effective, making our team more efficient than ever.\"})}),className:\"framer-ygpchm\",\"data-framer-name\":\"Medical can reduce their effectivity 50%+ in customer service sdsd in voluptate velit esse. Duis aute irure dolor in rlit esse cillum dolore eu fugiat nulla pariatur rure dolor in rlit esse cillu.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dm4l8ghCC\",style:{\"--extracted-r6o4lv\":\"rgb(34, 6, 64)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AdPav0tnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"Phonely has revolutionized how we manage claims and customer inquiries. By delivering unparalled voice clarity and uptime, Phonely has saved 30% of our agents' time, we can process claims faster and assist more clients daily.\"})})},E1KQwUgt5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"Phonely has revolutionized how we manage our candidate flow. It feels like having a cutting-edge assistant equipped with detailed insights on staffing\u2014our clients value the 24/7 support.\"})})},h4WeClKvc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"Phonely has been a fantastic addition to our practice. The natural sounding voices are a great addition. The accuracy in handling patient inquiries and scheduling appointments has freed up our staff to focus on in-office care.\"})})},j4sWOl_qJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"Phonely has dramatically improved our customer support efficiency, achieving an 80% resolution rate without the need for escalation. With its multi-lingual voices and accents, we can now cater to a global audience.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1efoev\",\"data-framer-name\":\"Frame 1707481303\",layoutDependency:layoutDependency,layoutId:\"mIrlP6XvS\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dupx2u\",\"data-framer-name\":\"Frame 1000009716\",layoutDependency:layoutDependency,layoutId:\"Q4s1tEnNC\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-3qpqdg\",\"data-framer-name\":\"Vector 53\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:11,layoutDependency:layoutDependency,layoutId:\"e0g48KpY6\",svg:'<svg width=\"11\" height=\"4\" viewBox=\"-1 -1 11 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9 1L-2.16067e-07 1\" stroke=\"#220640\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"Michael Harris\"})}),className:\"framer-414cow\",\"data-framer-name\":\"John Doe\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"nFvEy7Nn8\",style:{\"--extracted-r6o4lv\":\"rgb(34, 6, 64)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({AdPav0tnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"Lisa Harper\"})})},E1KQwUgt5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"Ms. Linda Cho\"})})},h4WeClKvc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"Dr. Sarah Miller\"})})},j4sWOl_qJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"Emily Johnson\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hbrpdv\",\"data-framer-name\":\"Frame 1707481305\",layoutDependency:layoutDependency,layoutId:\"G6h0wdpaM\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:[\"Director of Operations, \",/*#__PURE__*/_jsx(motion.br,{}),\"ClearPath Contact Solutions\"]})}),className:\"framer-1xf0erp\",\"data-framer-name\":\"Head Manager\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qql_D888e\",style:{\"--extracted-r6o4lv\":\"rgb(34, 6, 64)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({AdPav0tnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:[\"Claims Manager, \",/*#__PURE__*/_jsx(motion.br,{}),\"Horizon Insurance Services\"]})})},E1KQwUgt5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"HR Director, Dynamic Staffing Solutions\"})})},h4WeClKvc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"Practice Manager, Riverside Family Clinic\"})})},j4sWOl_qJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 6, 64))\"},children:\"Support Manager, BrightMarket Co.\"})})}},baseVariant,gestureVariant)})})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wmmix5\",\"data-framer-name\":\"\u201C\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nHTvjr2ka\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 23\"><path d=\"M 25 1.214 L 24.456 5.241 C 23.125 5.155 22.096 5.386 21.371 5.934 C 20.645 6.483 20.161 7.248 19.919 8.229 C 19.677 9.211 19.631 10.322 19.783 11.564 L 25 11.564 L 25 22 L 14.974 22 L 14.974 10.698 C 14.974 7.291 15.82 4.722 17.514 2.989 C 19.238 1.228 21.734 0.636 25 1.214 Z M 11.027 1.214 L 10.482 5.241 C 9.151 5.155 8.123 5.386 7.397 5.934 C 6.671 6.483 6.187 7.248 5.945 8.229 C 5.703 9.211 5.658 10.322 5.809 11.564 L 11.027 11.564 L 11.027 22 L 1 22 L 1 10.698 C 1 7.291 1.847 4.722 3.541 2.989 C 5.265 1.228 7.76 0.636 11.027 1.214 Z\" fill=\"rgb(34,6,64)\"></path></svg>',svgContentId:9155514915,withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-x0PPH.framer-1ryqemk, .framer-x0PPH .framer-1ryqemk { display: block; }\",\".framer-x0PPH.framer-16kuc8x { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-x0PPH .framer-jp8lea { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-x0PPH .framer-1smmfur-container, .framer-x0PPH .framer-1wy90ur-container, .framer-x0PPH .framer-pefz28-container, .framer-x0PPH .framer-he9nfb-container, .framer-x0PPH .framer-72t1tn-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-x0PPH .framer-asu0zx { flex: none; height: 50px; overflow: hidden; position: relative; width: 198px; }\",\".framer-x0PPH .framer-95ua5i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 100%; min-width: 385px; overflow: hidden; padding: 40px; position: relative; width: 840px; will-change: var(--framer-will-change-override, transform); }\",\".framer-x0PPH .framer-1lsw2t7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-x0PPH .framer-c7w0fn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-x0PPH .framer-1gefawd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 425px; word-break: break-word; word-wrap: break-word; }\",\".framer-x0PPH .framer-o41unu { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-x0PPH .framer-q6f5xl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-x0PPH .framer-llkykf, .framer-x0PPH .framer-1tfm2id, .framer-x0PPH .framer-x2pu3f { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-x0PPH .framer-3sga9h, .framer-x0PPH .framer-1is8ypc, .framer-x0PPH .framer-19jlmou, .framer-x0PPH .framer-cvhy0k, .framer-x0PPH .framer-o7ryhh, .framer-x0PPH .framer-jr2rwk, .framer-x0PPH .framer-414cow { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-x0PPH .framer-q64f8i, .framer-x0PPH .framer-1qet5ph { flex: none; height: 45px; position: relative; width: 4px; }\",\".framer-x0PPH .framer-2sonjf { flex: none; height: 300px; overflow: visible; position: relative; width: 280px; }\",\".framer-x0PPH .framer-tzdf3j { 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; left: 20px; overflow: visible; padding: 0px; position: absolute; top: 35px; width: 240px; }\",\".framer-x0PPH .framer-ygpchm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 240px; word-break: break-word; word-wrap: break-word; }\",\".framer-x0PPH .framer-1efoev { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 130px; }\",\".framer-x0PPH .framer-dupx2u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-x0PPH .framer-3qpqdg { flex: none; height: 4px; position: relative; width: 11px; }\",\".framer-x0PPH .framer-1hbrpdv { flex: none; height: 16px; overflow: visible; position: relative; width: 100%; }\",\".framer-x0PPH .framer-1xf0erp { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-x0PPH .framer-1wmmix5 { flex: none; height: 23px; left: 17px; position: absolute; top: -11px; width: 26px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-x0PPH.framer-16kuc8x, .framer-x0PPH .framer-jp8lea, .framer-x0PPH .framer-95ua5i, .framer-x0PPH .framer-1lsw2t7, .framer-x0PPH .framer-c7w0fn, .framer-x0PPH .framer-q6f5xl, .framer-x0PPH .framer-llkykf, .framer-x0PPH .framer-1tfm2id, .framer-x0PPH .framer-x2pu3f, .framer-x0PPH .framer-tzdf3j, .framer-x0PPH .framer-1efoev, .framer-x0PPH .framer-dupx2u { gap: 0px; } .framer-x0PPH.framer-16kuc8x > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-x0PPH.framer-16kuc8x > :first-child, .framer-x0PPH .framer-1lsw2t7 > :first-child, .framer-x0PPH .framer-c7w0fn > :first-child, .framer-x0PPH .framer-llkykf > :first-child, .framer-x0PPH .framer-1tfm2id > :first-child, .framer-x0PPH .framer-x2pu3f > :first-child, .framer-x0PPH .framer-tzdf3j > :first-child, .framer-x0PPH .framer-1efoev > :first-child { margin-top: 0px; } .framer-x0PPH.framer-16kuc8x > :last-child, .framer-x0PPH .framer-1lsw2t7 > :last-child, .framer-x0PPH .framer-c7w0fn > :last-child, .framer-x0PPH .framer-llkykf > :last-child, .framer-x0PPH .framer-1tfm2id > :last-child, .framer-x0PPH .framer-x2pu3f > :last-child, .framer-x0PPH .framer-tzdf3j > :last-child, .framer-x0PPH .framer-1efoev > :last-child { margin-bottom: 0px; } .framer-x0PPH .framer-jp8lea > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-x0PPH .framer-jp8lea > :first-child, .framer-x0PPH .framer-95ua5i > :first-child, .framer-x0PPH .framer-q6f5xl > :first-child, .framer-x0PPH .framer-dupx2u > :first-child { margin-left: 0px; } .framer-x0PPH .framer-jp8lea > :last-child, .framer-x0PPH .framer-95ua5i > :last-child, .framer-x0PPH .framer-q6f5xl > :last-child, .framer-x0PPH .framer-dupx2u > :last-child { margin-right: 0px; } .framer-x0PPH .framer-95ua5i > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-x0PPH .framer-1lsw2t7 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-x0PPH .framer-c7w0fn > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-x0PPH .framer-q6f5xl > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-x0PPH .framer-llkykf > *, .framer-x0PPH .framer-1tfm2id > *, .framer-x0PPH .framer-x2pu3f > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-x0PPH .framer-tzdf3j > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-x0PPH .framer-1efoev > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-x0PPH .framer-dupx2u > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-x0PPH.framer-v-14tgddk .framer-jr2rwk, .framer-x0PPH.framer-v-12bf8ut .framer-jr2rwk, .framer-x0PPH.framer-v-r0gz3o .framer-cvhy0k { cursor: pointer; }\",'.framer-x0PPH[data-border=\"true\"]::after, .framer-x0PPH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 486\n * @framerIntrinsicWidth 840\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"h4WeClKvc\":{\"layout\":[\"auto\",\"auto\"]},\"j4sWOl_qJ\":{\"layout\":[\"auto\",\"auto\"]},\"AdPav0tnG\":{\"layout\":[\"auto\",\"auto\"]},\"E1KQwUgt5\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRaLKdC813=withCSS(Component,css,\"framer-x0PPH\");export default FramerRaLKdC813;FramerRaLKdC813.displayName=\"Support Tabs\";FramerRaLKdC813.defaultProps={height:486,width:840};addPropertyControls(FramerRaLKdC813,{variant:{options:[\"CchMBDKHO\",\"h4WeClKvc\",\"j4sWOl_qJ\",\"AdPav0tnG\",\"E1KQwUgt5\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerRaLKdC813,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_A87jxeN7B.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_A87jxeN7B.woff2\",weight:\"600\"}]},...TabButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRaLKdC813\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"h4WeClKvc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"j4sWOl_qJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AdPav0tnG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"E1KQwUgt5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"486\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"840\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RaLKdC813.map", "const t=Math.sqrt(3);const n=Math.sqrt(5);const o=.5*(t-1);const s=(3-t)/6;const c=1/3;const e=1/6;const l=(n-1)/4;const r=(5-n)/20;const fastFloor=t=>Math.floor(t)|0;const a=new Float64Array([1,1,-1,1,1,-1,-1,-1,1,0,-1,0,1,0,-1,0,0,1,0,-1,0,1,0,-1]);const i=new Float64Array([1,1,0,-1,1,0,1,-1,0,-1,-1,0,1,0,1,-1,0,1,1,0,-1,-1,0,-1,0,1,1,0,-1,1,0,1,-1,0,-1,-1]);const f=new Float64Array([0,1,1,1,0,1,1,-1,0,1,-1,1,0,1,-1,-1,0,-1,1,1,0,-1,1,-1,0,-1,-1,1,0,-1,-1,-1,1,0,1,1,1,0,1,-1,1,0,-1,1,1,0,-1,-1,-1,0,1,1,-1,0,1,-1,-1,0,-1,1,-1,0,-1,-1,1,1,0,1,1,1,0,-1,1,-1,0,1,1,-1,0,-1,-1,1,0,1,-1,1,0,-1,-1,-1,0,1,-1,-1,0,-1,1,1,1,0,1,1,-1,0,1,-1,1,0,1,-1,-1,0,-1,1,1,0,-1,1,-1,0,-1,-1,1,0,-1,-1,-1,0]);\n/**\n * Creates a 2D noise function\n * @param random the random function that will be used to build the permutation table\n * @returns {NoiseFunction2D}\n */function createNoise2D(t=Math.random){const n=buildPermutationTable(t);const c=new Float64Array(n).map((t=>a[t%12*2]));const e=new Float64Array(n).map((t=>a[t%12*2+1]));return function noise2D(t,l){let r=0;let a=0;let i=0;const f=(t+l)*o;const u=fastFloor(t+f);const m=fastFloor(l+f);const w=(u+m)*s;const y=u-w;const A=m-w;const F=t-y;const b=l-A;let p,D;if(F>b){p=1;D=0}else{p=0;D=1}const d=F-p+s;const h=b-D+s;const M=F-1+2*s;const N=b-1+2*s;const P=u&255;const T=m&255;let q=.5-F*F-b*b;if(q>=0){const t=P+n[T];const o=c[t];const s=e[t];q*=q;r=q*q*(o*F+s*b)}let x=.5-d*d-h*h;if(x>=0){const t=P+p+n[T+D];const o=c[t];const s=e[t];x*=x;a=x*x*(o*d+s*h)}let U=.5-M*M-N*N;if(U>=0){const t=P+1+n[T+1];const o=c[t];const s=e[t];U*=U;i=U*U*(o*M+s*N)}return 70*(r+a+i)}}\n/**\n * Creates a 3D noise function\n * @param random the random function that will be used to build the permutation table\n * @returns {NoiseFunction3D}\n */function createNoise3D(t=Math.random){const n=buildPermutationTable(t);const o=new Float64Array(n).map((t=>i[t%12*3]));const s=new Float64Array(n).map((t=>i[t%12*3+1]));const l=new Float64Array(n).map((t=>i[t%12*3+2]));return function noise3D(t,r,a){let i,f,u,m;const w=(t+r+a)*c;const y=fastFloor(t+w);const A=fastFloor(r+w);const F=fastFloor(a+w);const b=(y+A+F)*e;const p=y-b;const D=A-b;const d=F-b;const h=t-p;const M=r-D;const N=a-d;let P,T,q;let x,U,g;if(h>=M)if(M>=N){P=1;T=0;q=0;x=1;U=1;g=0}else if(h>=N){P=1;T=0;q=0;x=1;U=0;g=1}else{P=0;T=0;q=1;x=1;U=0;g=1}else if(M<N){P=0;T=0;q=1;x=0;U=1;g=1}else if(h<N){P=0;T=1;q=0;x=0;U=1;g=1}else{P=0;T=1;q=0;x=1;U=1;g=0}const j=h-P+e;const k=M-T+e;const v=N-q+e;const z=h-x+2*e;const B=M-U+2*e;const C=N-g+2*e;const E=h-1+3*e;const G=M-1+3*e;const H=N-1+3*e;const I=y&255;const J=A&255;const K=F&255;let L=.6-h*h-M*M-N*N;if(L<0)i=0;else{const t=I+n[J+n[K]];L*=L;i=L*L*(o[t]*h+s[t]*M+l[t]*N)}let O=.6-j*j-k*k-v*v;if(O<0)f=0;else{const t=I+P+n[J+T+n[K+q]];O*=O;f=O*O*(o[t]*j+s[t]*k+l[t]*v)}let Q=.6-z*z-B*B-C*C;if(Q<0)u=0;else{const t=I+x+n[J+U+n[K+g]];Q*=Q;u=Q*Q*(o[t]*z+s[t]*B+l[t]*C)}let R=.6-E*E-G*G-H*H;if(R<0)m=0;else{const t=I+1+n[J+1+n[K+1]];R*=R;m=R*R*(o[t]*E+s[t]*G+l[t]*H)}return 32*(i+f+u+m)}}\n/**\n * Creates a 4D noise function\n * @param random the random function that will be used to build the permutation table\n * @returns {NoiseFunction4D}\n */function createNoise4D(t=Math.random){const n=buildPermutationTable(t);const o=new Float64Array(n).map((t=>f[t%32*4]));const s=new Float64Array(n).map((t=>f[t%32*4+1]));const c=new Float64Array(n).map((t=>f[t%32*4+2]));const e=new Float64Array(n).map((t=>f[t%32*4+3]));return function noise4D(t,a,i,f){let u,m,w,y,A;const F=(t+a+i+f)*l;const b=fastFloor(t+F);const p=fastFloor(a+F);const D=fastFloor(i+F);const d=fastFloor(f+F);const h=(b+p+D+d)*r;const M=b-h;const N=p-h;const P=D-h;const T=d-h;const q=t-M;const x=a-N;const U=i-P;const g=f-T;let j=0;let k=0;let v=0;let z=0;q>x?j++:k++;q>U?j++:v++;q>g?j++:z++;x>U?k++:v++;x>g?k++:z++;U>g?v++:z++;const B=j>=3?1:0;const C=k>=3?1:0;const E=v>=3?1:0;const G=z>=3?1:0;const H=j>=2?1:0;const I=k>=2?1:0;const J=v>=2?1:0;const K=z>=2?1:0;const L=j>=1?1:0;const O=k>=1?1:0;const Q=v>=1?1:0;const R=z>=1?1:0;const S=q-B+r;const V=x-C+r;const W=U-E+r;const X=g-G+r;const Y=q-H+2*r;const Z=x-I+2*r;const $=U-J+2*r;const _=g-K+2*r;const tt=q-L+3*r;const nt=x-O+3*r;const ot=U-Q+3*r;const st=g-R+3*r;const ct=q-1+4*r;const et=x-1+4*r;const lt=U-1+4*r;const rt=g-1+4*r;const at=b&255;const it=p&255;const ft=D&255;const ut=d&255;let mt=.6-q*q-x*x-U*U-g*g;if(mt<0)u=0;else{const t=at+n[it+n[ft+n[ut]]];mt*=mt;u=mt*mt*(o[t]*q+s[t]*x+c[t]*U+e[t]*g)}let wt=.6-S*S-V*V-W*W-X*X;if(wt<0)m=0;else{const t=at+B+n[it+C+n[ft+E+n[ut+G]]];wt*=wt;m=wt*wt*(o[t]*S+s[t]*V+c[t]*W+e[t]*X)}let yt=.6-Y*Y-Z*Z-$*$-_*_;if(yt<0)w=0;else{const t=at+H+n[it+I+n[ft+J+n[ut+K]]];yt*=yt;w=yt*yt*(o[t]*Y+s[t]*Z+c[t]*$+e[t]*_)}let At=.6-tt*tt-nt*nt-ot*ot-st*st;if(At<0)y=0;else{const t=at+L+n[it+O+n[ft+Q+n[ut+R]]];At*=At;y=At*At*(o[t]*tt+s[t]*nt+c[t]*ot+e[t]*st)}let Ft=.6-ct*ct-et*et-lt*lt-rt*rt;if(Ft<0)A=0;else{const t=at+1+n[it+1+n[ft+1+n[ut+1]]];Ft*=Ft;A=Ft*Ft*(o[t]*ct+s[t]*et+c[t]*lt+e[t]*rt)}return 27*(u+m+w+y+A)}}function buildPermutationTable(t){const n=512;const o=new Uint8Array(n);for(let t=0;t<n/2;t++)o[t]=t;for(let s=0;s<n/2-1;s++){const n=s+~~(t()*(256-s));const c=o[s];o[s]=o[n];o[n]=c}for(let t=256;t<n;t++)o[t]=o[t-256];return o}export{buildPermutationTable,createNoise2D,createNoise3D,createNoise4D};\n//# sourceMappingURL=simplex-noise.js.map\n", "// Welcome to Code in Framer\n// Get Started: https://www.framer.com/developers/\n// Import necessary dependencies\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{createNoise3D}from\"simplex-noise\";import{useEffect,useRef}from\"react\";/**\n * Component: Wave\n * This component creates an animated wave using the canvas API.\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function Wave(props){// Use useRef to reference the canvas element\nconst canvasRef=useRef(null);useEffect(()=>{// Dynamically add Font Awesome CSS for potential icon usage\nconst link=document.createElement(\"link\");link.rel=\"stylesheet\";link.href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css\";document.head.appendChild(link);// Initialize canvas and context\nconst canvas=canvasRef.current;const ctx=canvas.getContext(\"2d\");// Create 3D noise generator\nconst noise3D=createNoise3D(Math.random);let animationFrameId;// Function to resize the canvas to fit the screen\nconst resizeCanvas=()=>{canvas.width=window.innerWidth// Full width\n;canvas.height=600// Increased height for larger visuals\n;};// Initial canvas setup and event listener for resizing\nresizeCanvas();window.addEventListener(\"resize\",resizeCanvas);// Helper function to create HSLA color strings\nconst hsl=(h,s,l,a=1)=>`hsla(${h}, ${s}%, ${l}%, ${a})`;// Animation function for the wave\nconst animate=time=>{// Clear the canvas for the next frame\nctx.clearRect(0,0,canvas.width,canvas.height);// Define the number of points for the wave\nconst xCount=25// Fewer points for smoother, broader waves\n;const yCount=10;const iXCount=1/(xCount-1);const iYCount=1/(yCount-1);// Create a gradient for the wave color\nconst grad=ctx.createLinearGradient(0,0,canvas.width,canvas.height);const hueA=210;const hueB=280;grad.addColorStop(0,hsl(hueA,100,60,1));grad.addColorStop(.5,hsl(hueB,100,60,1));grad.addColorStop(1,hsl(hueA,100,60,1));// Start drawing the wave\nctx.beginPath();for(let j=0;j<yCount;j++){const tj=j*iYCount;const c=Math.cos(tj*Math.PI*2+time*2e-4)*.1;for(let i=0;i<xCount;i++){const t=i*iXCount;const n=noise3D(t,time*2e-4,c)*60// Adjusted noise amplitude\n;const x=t*canvas.width;const y=canvas.height/2+n;if(i===0)ctx.moveTo(x,y);else ctx.lineTo(x,y);}}// Apply gradient and styles for the wave\nctx.strokeStyle=grad;ctx.lineWidth=40// Thick main line for visibility\n;// ctx.filter = \"blur(12px)\" // Strong blur for a glowing effect\nctx.stroke();ctx.strokeStyle=grad;ctx.lineWidth=10// Secondary line for sharper details\n;// ctx.filter = \"blur(4px)\"\nctx.stroke();// Request the next animation frame\nanimationFrameId=requestAnimationFrame(animate);};// Start the animation\nanimate(0);// Cleanup on component unmount\nreturn()=>{window.removeEventListener(\"resize\",resizeCanvas);cancelAnimationFrame(animationFrameId);};},[]);// Return the canvas element with a dynamic style\nreturn /*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",position:\"relative\"},children:/*#__PURE__*/_jsx(\"canvas\",{ref:canvasRef,style:{width:\"100%\",height:\"500px\"}})});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Wave\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Wave.map", "// Generated by Framer (ae50a0d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import{Counter}from\"https://framerusercontent.com/modules/soS3NblgMmIeXIabIhEm/NzJPwzEyA4pNhXjtYEdB/Counter1.js\";import Globe from\"https://framerusercontent.com/modules/xFhv3ETdRBLjJusGaZ1P/d9ZONLqTB9uCj5kbWKll/Globe.js\";import Button from\"#framer/local/canvasComponent/adkc3k666/adkc3k666.js\";import Footer from\"#framer/local/canvasComponent/bzMsVK8wq/bzMsVK8wq.js\";import SupportTabs from\"#framer/local/canvasComponent/RaLKdC813/RaLKdC813.js\";import Logos from\"#framer/local/canvasComponent/uzQIahnZt/uzQIahnZt.js\";import Navigation from\"#framer/local/canvasComponent/WrTc8FKb5/WrTc8FKb5.js\";import AnimatedPaths from\"#framer/local/codeFile/cGUr6mY/AllLines.js\";import LeftSvgWires from\"#framer/local/codeFile/lEmcXS2/LeftSvgWires.js\";import RightSvgWires from\"#framer/local/codeFile/SqPNgWb/RightSvgWires.js\";import TalkingMic from\"#framer/local/codeFile/dpHSNam/TalkingMic.js\";import Wave from\"#framer/local/codeFile/dcI_eQ0/Wave.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const ButtonFonts=getFonts(Button);const WaveFonts=getFonts(Wave);const TalkingMicFonts=getFonts(TalkingMic);const LogosFonts=getFonts(Logos);const MotionDivWithFX=withFX(motion.div);const YouTubeFonts=getFonts(YouTube);const RightSvgWiresFonts=getFonts(RightSvgWires);const LeftSvgWiresFonts=getFonts(LeftSvgWires);const AnimatedPathsFonts=getFonts(AnimatedPaths);const CounterFonts=getFonts(Counter);const SupportTabsFonts=getFonts(SupportTabs);const GlobeFonts=getFonts(Globe);const FooterFonts=getFonts(Footer);const breakpoints={AXwHhOdIX:\"(min-width: 600px) and (max-width: 999px)\",C1LBoBDxd:\"(min-width: 1000px) and (max-width: 1439px)\",OFyMZHFxL:\"(max-width: 599px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-QER0v\";const variantClassNames={AXwHhOdIX:\"framer-v-1fyuir6\",C1LBoBDxd:\"framer-v-b8xbdo\",OFyMZHFxL:\"framer-v-1vmutcu\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"C1LBoBDxd\",\"Small Tab\":\"AXwHhOdIX\",Desktop:\"WQLkyLRf1\",Phone:\"OFyMZHFxL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"AXwHhOdIX\",\"OFyMZHFxL\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"kzaIpUCLM\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"MevVSiW87\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"kvW9Ku937\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"QaXaDAwZV\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"d9hKI_IeC\");const ref5=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"C1LBoBDxd\",\"AXwHhOdIX\",\"OFyMZHFxL\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"AXwHhOdIX\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"OFyMZHFxL\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"C1LBoBDxd\")return true;return false;};const elementId5=useRouteElementId(\"Yt4QX2LZ4\");const ref6=React.useRef(null);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{height:70,width:\"98vw\",y:0},OFyMZHFxL:{height:70}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"97.9861vw\",y:5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ebc0fu-container\",layoutScroll:true,nodeId:\"xzvL9lQ8U\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{style:{width:\"100%\"},variant:\"CjRZ0WKdQ\"},OFyMZHFxL:{style:{width:\"100%\"},variant:\"CjRZ0WKdQ\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"xzvL9lQ8U\",layoutId:\"xzvL9lQ8U\",style:{height:\"100%\",width:\"100%\"},variant:\"wdjD7GYZs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r33qgr\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",pixelHeight:1904,pixelWidth:1921,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg\",srcSet:\"https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg 1921w\"}},OFyMZHFxL:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",pixelHeight:1904,pixelWidth:1921,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg\",srcSet:\"https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg 1921w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:1904,pixelWidth:1921,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg\",srcSet:\"https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg 1921w\"},className:\"framer-1g1g3zn\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-zz6wrb\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rwaj00\",\"data-border\":true,\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3sw4uh\",\"data-framer-name\":\"Background\",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\":\"11.98px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(38, 109, 240)\"},children:\"New!\"})}),className:\"framer-lz7u5g\",\"data-framer-name\":\"New!\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ck3cw7\",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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"See the new platform UI \uD83C\uDF89\"})}),className:\"framer-tpepd8\",\"data-framer-name\":\"Introducing Phonely Vision \uD83C\uDF89\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wgg8r1\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" viewBox=\"0 0 15 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.43994 4.09L9.43994 7.09L6.43994 10.09\" stroke=\"#23252A\" stroke-width=\"1.1\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b18tqz hidden-1fyuir6 hidden-1vmutcu\",\"data-framer-name\":\"Gap\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"The next gen of voice AI.\"})})},OFyMZHFxL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"The next gen of voice AI.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"71.7px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"74px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"The next gen of voice AI.\"})}),className:\"framer-x2x848\",\"data-framer-name\":\"Heading 1 \u2192 The next gen of CRM.\",fonts:[\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-egamw8 hidden-1fyuir6 hidden-1vmutcu\",\"data-framer-name\":\"Gap\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Phonely is the engine that scales your customer support from one call to 1 million+\"})})},OFyMZHFxL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Phonely is the engine that scales your customer support from one call to 1 million+\"})})}},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\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Phonely is the engine that scales your customer support from one call to 1 million+\"})}),className:\"framer-zuszqj\",\"data-framer-name\":\"Phonely is the engine that scales your customer support from one call to 1 million+.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q3r9q\",\"data-framer-name\":\"Gap\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d6ce4i\",\"data-framer-name\":\"Hero Actions\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{y:undefined},OFyMZHFxL:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+0+0+0+200+230+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10xvr0i-container\",nodeId:\"u3PGNo6Bw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{g_G74OEHz:\"https://app.phonely.ai/\",height:\"100%\",id:\"u3PGNo6Bw\",layoutId:\"u3PGNo6Bw\",muxhgbKdh:false,Pw3Qxl4NQ:\"Start for free\",variant:\"eYiFB1fQf\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{y:undefined},OFyMZHFxL:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+0+0+0+200+230+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h5dlh3-container\",nodeId:\"vBx8kXMps\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1LBoBDxd:{g_G74OEHz:\"https://cal.com/forms/46b9973f-b7cb-4a03-869a-137e2a80555c\"}},children:/*#__PURE__*/_jsx(Button,{g_G74OEHz:\"https://form.fillout.com/t/hoGHsk9hDzus\",height:\"100%\",id:\"vBx8kXMps\",layoutId:\"vBx8kXMps\",muxhgbKdh:false,Pw3Qxl4NQ:\"Get a demo\",variant:\"OQMKxbynb\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o4s11k\",\"data-framer-name\":\"Gap\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nco99y\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-b4tukn\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qmu2z3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qwj9zj-container\",isAuthoredByUser:true,nodeId:\"pg1A9Mcs2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Wave,{height:\"100%\",id:\"pg1A9Mcs2\",layoutId:\"pg1A9Mcs2\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tfxbex\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-71zyhy-container\",isAuthoredByUser:true,nodeId:\"m142l8JG3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(TalkingMic,{buttonText:\"Talk to Phonely\",height:\"100%\",id:\"m142l8JG3\",layoutId:\"m142l8JG3\",style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ickrjy\",\"data-framer-name\":\"Gap\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{y:undefined},OFyMZHFxL:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1400px)`,y:(componentViewport?.y||0)+0+0+0+0+200+554,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cot0lh-container\",nodeId:\"Qztw9bHzU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{variant:\"QzZLt2LPz\"},OFyMZHFxL:{variant:\"QzZLt2LPz\"}},children:/*#__PURE__*/_jsx(Logos,{height:\"100%\",id:\"Qztw9bHzU\",layoutId:\"Qztw9bHzU\",style:{width:\"100%\"},variant:\"kRA33wI4a\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nnvlul\",\"data-framer-name\":\"Gap\"})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xuaz76\",\"data-framer-name\":\"Spacer\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k9rksi\",id:elementId,ref:ref1}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ta6uq9\",id:elementId1,ref:ref2}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ivx8j1\",id:elementId2,ref:ref3}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-658kdr\",id:elementId3,ref:ref4})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19xybet\",\"data-border\":true,\"data-framer-name\":\"Reviews\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-8nsbyf\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bdmmk0\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:790,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qz3mzu\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:790,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fs3ilv\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:790,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-am9bu0\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:790,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-c21f9s\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"\u201CUsing Phonely is like life on easy mode. They've built everything you need to answer 100% of your calls with AI.\\xa0\u201D\"})})},OFyMZHFxL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"\u201CUsing Phonely is like life on easy mode. They've built everything you need to answer 100% of your calls with AI.\\xa0\u201D\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48.14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"\u201CUsing Phonely is like life on easy mode. They've built everything you need to answer 100% of your calls with AI.\\xa0\u201D\"})}),className:\"framer-1wto5ic\",\"data-framer-name\":\"\u201CUsing Phonely is like life on easy mode. They've built everything you need to answer 100% of your calls with AI.\\xa0\u201D\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1187fza\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Jared D.\\xa0\\xa0\"})}),className:\"framer-1whk24f\",\"data-framer-name\":\"Will B.\",fonts:[\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Head of Operations \\xb7 OneScript\\xa0\\xa0\"})}),className:\"framer-1wncjym\",\"data-framer-name\":\"Head of Business Operations \\xb7 OneScript\\xa0\\xa0\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-598o2u\",\"data-border\":true,\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-188c6h8\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pq3911\",\"data-framer-name\":\"Heading 3\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"42px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(114, 123, 132)\"},children:\"Blazingly fast,\"}),/*#__PURE__*/_jsx(\"br\",{}),\"effortlessly adaptable.\"]})})},OFyMZHFxL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(114, 123, 132)\"},children:\"Blazingly fast,\"}),/*#__PURE__*/_jsx(\"br\",{}),\"effortlessly adaptable.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(114, 123, 132)\"},children:\"Blazingly fast,\"}),/*#__PURE__*/_jsx(\"br\",{}),\"effortlessly adaptable.\"]})}),className:\"framer-13tgs2a\",\"data-framer-name\":\"Heading 1 \u2192 The next gen of CRM.\",fonts:[\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1njoaor\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"In just 5 minutes learn how Phonely sets industry standard for businesses who want\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"to have 100% of their calls answered with AI. \"})]}),className:\"framer-16vhjmy\",\"data-framer-name\":\"Phonely is the engine that scales your customer support from one call to 1 million+.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1asx49u\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o6chzs\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ycwpyu\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pc5po5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"j6LXNKUwD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:5,bottomLeftRadius:5,bottomRightRadius:5,height:\"100%\",id:\"j6LXNKUwD\",isMixedBorderRadius:false,isRed:true,layoutId:\"j6LXNKUwD\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:5,topRightRadius:5,url:\"https://youtu.be/H-sJo5gIOkU\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10so3vr\",\"data-framer-name\":\"About\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{background:{alt:\"\",backgroundSize:1.5,fit:\"tile\",pixelHeight:1904,pixelWidth:1921,positionX:\"left\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1400px)`,src:\"https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg\",srcSet:\"https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg 1921w\"}},C1LBoBDxd:{background:{alt:\"\",backgroundSize:1.5,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5024+0),pixelHeight:1904,pixelWidth:1921,positionX:\"left\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.95)`,src:\"https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg\",srcSet:\"https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg 1921w\"}},OFyMZHFxL:{background:{alt:\"\",backgroundSize:1.5,fit:\"tile\",pixelHeight:1904,pixelWidth:1921,positionX:\"left\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1400px)`,src:\"https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg\",srcSet:\"https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg 1921w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",backgroundSize:1.5,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5044+0),pixelHeight:1904,pixelWidth:1921,positionX:\"left\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1400px)`,src:\"https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg\",srcSet:\"https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/44umqX7tvmxdgJGJMX3ejucJfPQ.svg 1921w\"},className:\"framer-1xkfxdo\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17r159g\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Voice AI at\\xa0full\\xa0throttle.  \"}),\"Supercharge your customer interactions at scale. Craft intelligent workflows, integrate with software, connect your data sources, and monitor performance \u2014 all in one platform.\"]})})},C1LBoBDxd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Voice AI at\\xa0full\\xa0throttle.  \"}),\"Supercharge your customer interactions at scale. Craft intelligent workflows, integrate with software, connect your data sources, and monitor performance \u2014 all in one platform.\"]})})},OFyMZHFxL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Voice AI at\\xa0full\\xa0throttle.  \"}),\"Supercharge your customer interactions at scale. Craft intelligent workflows, integrate with software, connect your data sources, and monitor performance \u2014 all in one platform.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"29.25px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-size\":\"29.5px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Voice AI at\\xa0full\\xa0throttle. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"29.5px\"},children:\"Supercharge your customer interactions\"}),\" at scale. Craft intelligent workflows, integrate with software, connect your data sources, and monitor performance \u2014 all in one platform.\"]})}),className:\"framer-e8phdg\",\"data-framer-name\":\"at scale. Craft intelligent workflows, integrate with software, connect your data sources, and monitor performance \u2014 all in one platform.\",fonts:[\"Inter-Medium\",\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ldwgpf\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dl87x5\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p6wzlz\",\"data-border\":true,\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6k4ucv\",\"data-framer-name\":\"user-identifier-card\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.642 2.26611H1.358C0.88414 2.26611 0.5 2.65025 0.5 3.12411V10.8761C0.5 11.35 0.88414 11.7341 1.358 11.7341H12.642C13.1159 11.7341 13.5 11.35 13.5 10.8761V3.12411C13.5 2.65025 13.1159 2.26611 12.642 2.26611Z\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M9.35938 5.87939H11.3462\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M9.35938 7.84863H11.3462\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.5072 6.20769C3.5072 7.11388 4.24181 7.8485 5.148 7.8485C5.37709 7.8485 5.59521 7.80154 5.79327 7.71674C6.37866 7.46609 6.78879 6.88479 6.78879 6.20769C6.78879 5.3015 6.05419 4.56689 5.148 4.56689C4.24181 4.56689 3.5072 5.3015 3.5072 6.20769Z\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M2.65381 9.47328C2.91453 8.97738 3.28096 8.56753 3.71787 8.28314C4.15478 7.99874 4.64748 7.84937 5.1486 7.84937C5.64973 7.84937 6.14243 7.99874 6.57934 8.28314C7.01625 8.56753 7.38268 8.97738 7.6434 9.47328\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(46, 50, 56)\"},children:\"Knowledge Base\"})}),className:\"framer-vhigyb\",\"data-framer-name\":\"Knowledge Base\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9e5bdn\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1giom6v\",\"data-border\":true,\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-kov0ug\",\"data-framer-name\":\"wrench--crescent-tool-construction-tools-wrench-setting-edit-adjust\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1222_38182)\">\\n<path d=\"M13.4096 3.59655C13.3903 3.49176 13.3492 3.3922 13.2889 3.30433C13.2286 3.21647 13.1505 3.14227 13.0596 3.08655L11.0596 5.08655C10.9663 5.18333 10.8545 5.26032 10.7308 5.3129C10.6071 5.36548 10.474 5.39258 10.3396 5.39258C10.2052 5.39258 10.0722 5.36548 9.94846 5.3129C9.82475 5.26032 9.71291 5.18333 9.61963 5.08655L8.85963 4.40655C8.6764 4.21962 8.57377 3.9683 8.57377 3.70655C8.57377 3.4448 8.6764 3.19348 8.85963 3.00655L10.8596 1.00655C10.816 0.90409 10.7504 0.812464 10.6675 0.738158C10.5845 0.663853 10.4863 0.608683 10.3796 0.576553C9.6818 0.437393 8.95892 0.496961 8.29329 0.748476C7.62766 0.999991 7.04602 1.43334 6.61459 1.9992C6.18316 2.56506 5.91928 3.24069 5.85299 3.94916C5.79089 4.61282 5.90452 5.28032 6.18133 5.88496L0.814623 11.2516C0.418454 11.6478 0.425024 12.2921 0.82919 12.6801L1.38997 13.2185C1.78111 13.594 2.40026 13.5894 2.78575 13.208L8.21408 7.83851C8.8012 8.08098 9.44074 8.17321 10.0745 8.10527C10.7752 8.03015 11.4414 7.76214 11.9989 7.33104C12.5565 6.89993 12.9835 6.32264 13.2325 5.66334C13.4816 5.00405 13.5429 4.2886 13.4096 3.59655Z\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1222_38182\">\\n<rect width=\"14\" height=\"14\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(46, 50, 56)\"},children:\"Integrations\"})}),className:\"framer-1kzataq\",\"data-framer-name\":\"Knowledge Base\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18ercv7\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2cnm1q\",\"data-border\":true,\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14cm6ym\",\"data-framer-name\":\"dictionary-language-book\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.5 13.5H3C2.60218 13.5 2.22064 13.342 1.93934 13.0607C1.65804 12.7794 1.5 12.3978 1.5 12C1.5 11.6022 1.65804 11.2206 1.93934 10.9393C2.22064 10.658 2.60218 10.5 3 10.5H11.5C11.7652 10.5 12.0196 10.3946 12.2071 10.2071C12.3946 10.0196 12.5 9.76522 12.5 9.5V1.5C12.5 1.23478 12.3946 0.98043 12.2071 0.792893C12.0196 0.605357 11.7652 0.5 11.5 0.5H3C2.60901 0.499861 2.23342 0.652394 1.95324 0.925105C1.67305 1.19782 1.51043 1.56915 1.5 1.96V11.96\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11.5 10.5V13.5\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.05149 5.00195H10.3665L7.9068 8.47454H10.5112\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.51172 5.98553L4.57774 2.78747C4.63239 2.62352 4.78581 2.51294 4.95863 2.51294C5.13145 2.51294 5.28488 2.62352 5.33952 2.78747L6.40554 5.98553M3.89756 4.828H6.0197\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(46, 50, 56)\"},children:\"Any Language\"})}),className:\"framer-1kx8vnx\",\"data-framer-name\":\"Knowledge Base\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u6pjmz\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d2kzrw\",\"data-border\":true,\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-hv83n6\",\"data-framer-name\":\"graph-dot--product-data-bars-analysis-analytics-graph-business-chart-dot\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1222_32284)\">\\n<path d=\"M0.642822 0.642822V13.3572H13.3572\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.58105 3.85449C5.56185 3.85449 6.35693 4.64958 6.35693 5.63037C6.35693 6.61116 5.56185 7.40625 4.58105 7.40625C3.60026 7.40625 2.80518 6.61116 2.80518 5.63037C2.80518 4.64958 3.60026 3.85449 4.58105 3.85449Z\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11.5811 0.885742C12.5618 0.885742 13.3569 1.68083 13.3569 2.66162C13.3569 3.64241 12.5618 4.4375 11.5811 4.4375C10.6003 4.4375 9.80518 3.64241 9.80518 2.66162C9.80518 1.68083 10.6003 0.885742 11.5811 0.885742Z\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M9.1123 7.40625C10.0931 7.40625 10.8882 8.20134 10.8882 9.18213C10.8882 10.1629 10.0931 10.958 9.1123 10.958C8.13151 10.958 7.33643 10.1629 7.33643 9.18213C7.33643 8.20134 8.13151 7.40625 9.1123 7.40625Z\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M0.642578 9.42403L3.17676 6.71777\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.12988 6.51562L7.75488 8.03125\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M9.89551 7.57812L11.0674 4.35938\" stroke=\"black\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1222_32284\">\\n<rect width=\"14\" height=\"14\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(46, 50, 56)\"},children:\"Data & Analytics\"})}),className:\"framer-1zi630\",\"data-framer-name\":\"Knowledge Base\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bhlxh8 hidden-b8xbdo hidden-1fyuir6 hidden-1vmutcu\",\"data-framer-name\":\"Bone\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5044+0+150+176+1821),pixelHeight:395,pixelWidth:754,sizes:\"636px\",src:\"https://framerusercontent.com/images/6ELQRLWDh6f7ntyJG9rzgv7Cpfs.svg\",srcSet:\"https://framerusercontent.com/images/6ELQRLWDh6f7ntyJG9rzgv7Cpfs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/6ELQRLWDh6f7ntyJG9rzgv7Cpfs.svg 754w\"},className:\"framer-10bpqkf\",\"data-framer-name\":\"Level 4 - Card\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v6jak9\",\"data-framer-name\":\"Level 4 - Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"With AI powered analytics\"})}),className:\"framer-1xdckof\",\"data-framer-name\":\"Integrated with everything.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Record, transcribe, and analyze calls with AI-driven insights and summaries to optimize every interaction\"})}),className:\"framer-tbair5\",\"data-framer-name\":\"precision. Design powerful workflows, deploy AI, integrate your data and build detailed reports \u2014 all in one platform.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x33www\",\"data-framer-name\":\"Level 3 - Conent\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Connected to your software\"})}),className:\"framer-1qm31zi\",\"data-framer-name\":\"Integrated with everything.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Phonely integrates your tools in real-time schedule appointments, update CRMs, and so much more \"})}),className:\"framer-13eu850\",\"data-framer-name\":\"precision. Design powerful workflows, deploy AI, integrate your data and build detailed reports \u2014 all in one platform.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17j673n\",\"data-border\":true,\"data-framer-name\":\"Level 3 - Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2c1jz-container\",isAuthoredByUser:true,nodeId:\"LJBhtBA4l\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(RightSvgWires,{height:\"100%\",id:\"LJBhtBA4l\",layoutId:\"LJBhtBA4l\",width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5m4k4w\",\"data-framer-name\":\"Right_Part\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 218 334\"><path d=\"M 180 188.5 C 173.649 188.5 168.5 188.5 168.5 188.5 L 168.5 139.5 C 168.5 139.5 173.649 139.5 180 139.5 L 206 139.5 C 212.351 139.5 217.5 139.5 217.5 139.5 L 217.5 188.5 C 217.5 188.5 212.351 188.5 206 188.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 180 188.5 C 173.649 188.5 168.5 188.5 168.5 188.5 L 168.5 139.5 C 168.5 139.5 173.649 139.5 180 139.5 L 206 139.5 C 212.351 139.5 217.5 139.5 217.5 139.5 L 217.5 188.5 C 217.5 188.5 212.351 188.5 206 188.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(178 149)\" id=\"ss10167505042_3\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_5\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_7\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><path d=\"M 6.597 19.077 C 6.597 20.8 5.205 22.192 3.483 22.192 C 1.761 22.192 0.369 20.8 0.369 19.077 C 0.369 17.355 1.761 15.963 3.483 15.963 L 6.597 15.963 Z M 8.154 19.077 C 8.154 17.355 9.546 15.963 11.268 15.963 C 12.99 15.963 14.382 17.355 14.382 19.077 L 14.382 26.863 C 14.382 28.585 12.99 29.977 11.268 29.977 C 9.546 29.977 8.154 28.585 8.154 26.863 Z\" fill=\"rgb(224,30,90)\"></path><path d=\"M 11.268 6.572 C 9.546 6.572 8.154 5.181 8.154 3.458 C 8.154 1.736 9.546 0.344 11.268 0.344 C 12.99 0.344 14.382 1.736 14.382 3.458 L 14.382 6.572 Z M 11.268 8.153 C 12.99 8.153 14.382 9.545 14.382 11.267 C 14.382 12.989 12.99 14.381 11.268 14.381 L 3.459 14.381 C 1.737 14.381 0.345 12.989 0.345 11.267 C 0.345 9.545 1.737 8.153 3.459 8.153 Z\" fill=\"rgb(54,197,240)\"></path><path d=\"M 23.747 11.267 C 23.747 9.545 25.139 8.153 26.861 8.153 C 28.584 8.153 29.975 9.545 29.975 11.267 C 29.975 12.989 28.584 14.381 26.861 14.381 L 23.747 14.381 Z M 22.19 11.267 C 22.19 12.989 20.798 14.381 19.076 14.381 C 17.354 14.381 15.962 12.989 15.962 11.267 L 15.962 3.458 C 15.962 1.736 17.354 0.344 19.076 0.344 C 20.798 0.344 22.19 1.736 22.19 3.458 Z\" fill=\"rgb(46,182,125)\"></path><path d=\"M 19.076 23.749 C 20.798 23.749 22.19 25.141 22.19 26.863 C 22.19 28.585 20.798 29.977 19.076 29.977 C 17.354 29.977 15.962 28.585 15.962 26.863 L 15.962 23.749 Z M 19.076 22.192 C 17.354 22.192 15.962 20.8 15.962 19.077 C 15.962 17.355 17.354 15.963 19.076 15.963 L 26.885 15.963 C 28.607 15.963 29.999 17.355 29.999 19.077 C 29.999 20.8 28.607 22.192 26.885 22.192 Z\" fill=\"rgb(236,178,46)\"></path></g></g></g><path d=\"M 111 226.5 C 104.649 226.5 99.5 226.5 99.5 226.5 L 99.5 177.5 C 99.5 177.5 104.649 177.5 111 177.5 L 137 177.5 C 143.351 177.5 148.5 177.5 148.5 177.5 L 148.5 226.5 C 148.5 226.5 143.351 226.5 137 226.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 111 226.5 C 104.649 226.5 99.5 226.5 99.5 226.5 L 99.5 177.5 C 99.5 177.5 104.649 177.5 111 177.5 L 137 177.5 C 143.351 177.5 148.5 177.5 148.5 177.5 L 148.5 226.5 C 148.5 226.5 143.351 226.5 137 226.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(109 188.5)\" id=\"ss10167505042_15\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_17\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_19\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_21\"><path d=\"M 30 14.175 C 30.002 13.948 29.881 13.737 29.681 13.619 L 29.677 13.619 L 29.665 13.612 L 19.269 7.658 C 19.224 7.629 19.178 7.602 19.13 7.578 C 18.728 7.378 18.252 7.378 17.85 7.578 C 17.802 7.602 17.755 7.629 17.711 7.658 L 7.315 13.612 L 7.303 13.619 C 6.985 13.81 6.888 14.214 7.085 14.521 C 7.143 14.612 7.224 14.687 7.319 14.741 L 17.714 20.695 C 17.759 20.724 17.806 20.75 17.854 20.775 C 18.255 20.975 18.732 20.975 19.133 20.775 C 19.181 20.75 19.228 20.724 19.273 20.695 L 29.668 14.741 C 29.876 14.624 30.003 14.408 30 14.175 Z\" fill=\"rgb(10,39,103)\"></path><path d=\"M 8.527 10.2 L 15.349 10.2 L 15.349 16.25 L 8.527 16.25 Z M 28.604 4.05 L 28.604 1.282 C 28.621 0.591 28.055 0.017 27.34 0 L 9.637 0 C 8.922 0.017 8.356 0.591 8.372 1.282 L 8.372 4.05 L 18.837 6.75 Z\" fill=\"rgb(3,100,184)\"></path><path d=\"M 8.372 4.05 L 15.349 4.05 L 15.349 10.125 L 8.372 10.125 Z\" fill=\"rgb(0,120,212)\"></path><path d=\"M 22.326 4.05 L 15.349 4.05 L 15.349 10.125 L 22.326 16.2 L 28.605 16.2 L 28.605 10.125 Z\" fill=\"rgb(40,168,234)\"></path><path d=\"M 15.349 10.125 L 22.326 10.125 L 22.326 16.2 L 15.349 16.2 Z\" fill=\"rgb(0,120,212)\"></path><path d=\"M 15.349 16.2 L 22.326 16.2 L 22.326 22.275 L 15.349 22.275 Z\" fill=\"rgb(3,100,184)\"></path><path d=\"M 8.527 16.25 L 15.349 16.25 L 15.349 21.75 L 8.527 21.75 Z\" fill=\"rgb(20,68,125)\"></path><path d=\"M 22.326 16.2 L 28.605 16.2 L 28.605 22.275 L 22.326 22.275 Z\" fill=\"rgb(0,120,212)\"></path><g><defs><linearGradient id=\"idss10167505042_30g1977229117\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(53,184,241)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(40,168,234)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.68 14.703 L 29.667 14.71 L 19.272 20.367 C 19.226 20.394 19.18 20.419 19.132 20.442 C 18.956 20.524 18.764 20.569 18.568 20.577 L 18 20.256 C 17.952 20.233 17.906 20.207 17.861 20.178 L 7.326 14.361 L 7.321 14.361 L 6.977 14.175 L 6.977 25.626 C 6.982 26.39 7.626 27.005 8.416 27 L 28.583 27 C 28.595 27 28.605 26.994 28.618 26.994 C 28.784 26.984 28.949 26.951 29.106 26.896 C 29.174 26.868 29.239 26.835 29.302 26.797 C 29.349 26.772 29.429 26.716 29.429 26.716 C 29.786 26.46 29.998 26.056 30 25.626 L 30 14.175 C 30 14.394 29.877 14.596 29.68 14.703 Z\" fill=\"url(#idss10167505042_30g1977229117)\"></path></g><path d=\"M 29.442 14.129 L 29.442 14.831 L 18.572 22.072 L 7.318 14.366 C 7.318 14.362 7.315 14.359 7.311 14.359 L 6.279 13.758 L 6.279 13.252 L 6.704 13.245 L 7.604 13.745 L 7.625 13.751 L 7.702 13.799 C 7.702 13.799 18.279 19.637 18.307 19.651 L 18.711 19.88 C 18.746 19.867 18.781 19.853 18.823 19.84 C 18.844 19.826 29.323 14.123 29.323 14.123 Z\" fill=\"rgb(10,39,103)\" opacity=\"0.5\"></path><path d=\"M 29.681 14.703 L 29.667 14.711 L 19.272 20.367 C 19.227 20.394 19.181 20.42 19.133 20.443 C 18.729 20.634 18.257 20.634 17.853 20.443 C 17.805 20.42 17.759 20.395 17.714 20.367 L 7.318 14.711 L 7.306 14.703 C 7.105 14.598 6.979 14.396 6.977 14.175 L 6.977 25.626 C 6.982 26.389 7.626 27.005 8.416 27 L 28.562 27 C 29.351 27.005 29.995 26.389 30 25.626 L 30 14.175 C 30 14.394 29.878 14.596 29.681 14.703 Z\" fill=\"rgb(20,144,223)\"></path><path d=\"M 19.423 20.284 L 19.267 20.369 C 19.222 20.396 19.176 20.422 19.128 20.445 C 18.957 20.526 18.77 20.574 18.58 20.585 L 22.535 25.11 L 29.434 26.719 C 29.623 26.581 29.773 26.399 29.871 26.19 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.1\"></path><path d=\"M 20.128 19.9 L 19.267 20.368 C 19.222 20.396 19.176 20.421 19.128 20.444 C 18.957 20.526 18.77 20.574 18.58 20.585 L 20.433 25.528 L 29.436 26.716 C 29.791 26.459 30 26.055 30 25.626 L 30 25.478 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.05\"></path><path d=\"M 8.435 27 L 28.56 27 C 28.869 27.001 29.171 26.907 29.421 26.73 L 18 20.257 C 17.952 20.234 17.906 20.208 17.861 20.18 L 7.326 14.363 L 7.321 14.363 L 6.977 14.175 L 6.977 25.586 C 6.976 26.366 7.629 26.999 8.435 27 Z\" fill=\"rgb(40,168,234)\"></path><path d=\"M 16.744 6.638 L 16.744 21.035 C 16.743 21.54 16.425 21.994 15.942 22.183 C 15.792 22.245 15.63 22.277 15.467 22.277 L 6.977 22.277 L 6.977 6.075 L 8.372 6.075 L 8.372 5.4 L 15.467 5.4 C 16.172 5.403 16.742 5.956 16.744 6.638 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.1\"></path><path d=\"M 16.046 7.313 L 16.046 21.71 C 16.048 21.873 16.012 22.035 15.942 22.183 C 15.748 22.645 15.285 22.948 14.77 22.95 L 6.977 22.95 L 6.977 6.075 L 14.77 6.075 C 14.972 6.073 15.171 6.122 15.349 6.217 C 15.776 6.425 16.046 6.849 16.046 7.313 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 16.046 7.313 L 16.046 20.36 C 16.043 21.042 15.474 21.594 14.77 21.6 L 6.977 21.6 L 6.977 6.075 L 14.77 6.075 C 14.972 6.073 15.171 6.122 15.349 6.217 C 15.776 6.425 16.046 6.849 16.046 7.313 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 15.349 7.312 L 15.349 20.36 C 15.348 21.043 14.777 21.597 14.072 21.6 L 6.977 21.6 L 6.977 6.075 L 14.072 6.075 C 14.777 6.076 15.349 6.63 15.349 7.312 C 15.349 7.313 15.349 7.312 15.349 7.312 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><g><defs><linearGradient id=\"idss10167505042_40g828522074\" x1=\"0.2194443772667855\" x2=\"0.7805556227332144\" y1=\"5.551115123125783e-17\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(23,132,217)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(10,99,201)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 1.279 6.075 L 14.07 6.075 C 14.776 6.075 15.349 6.629 15.349 7.312 L 15.349 19.688 C 15.349 20.371 14.776 20.925 14.07 20.925 L 1.279 20.925 C 0.573 20.925 0 20.371 0 19.688 L 0 7.312 C 0 6.629 0.573 6.075 1.279 6.075 Z\" fill=\"url(#idss10167505042_40g828522074)\"></path></g><path d=\"M 3.997 11.265 C 4.312 10.615 4.821 10.071 5.458 9.703 C 6.163 9.313 6.966 9.118 7.779 9.14 C 8.532 9.125 9.275 9.309 9.927 9.674 C 10.54 10.028 11.034 10.546 11.348 11.166 C 11.691 11.849 11.861 12.601 11.846 13.36 C 11.863 14.153 11.687 14.939 11.334 15.655 C 11.012 16.297 10.502 16.833 9.869 17.199 C 9.191 17.575 8.421 17.764 7.64 17.747 C 6.871 17.765 6.111 17.578 5.445 17.207 C 4.826 16.852 4.326 16.334 4.005 15.712 C 3.66 15.039 3.487 14.296 3.501 13.545 C 3.486 12.758 3.656 11.979 3.997 11.265 Z M 5.554 14.93 C 5.722 15.341 6.007 15.697 6.376 15.957 C 6.752 16.211 7.201 16.342 7.66 16.331 C 8.148 16.35 8.629 16.214 9.03 15.945 C 9.394 15.685 9.672 15.328 9.828 14.918 C 10.003 14.459 10.089 13.973 10.083 13.485 C 10.088 12.991 10.007 12.501 9.843 12.033 C 9.698 11.612 9.429 11.24 9.07 10.963 C 8.678 10.681 8.199 10.538 7.711 10.558 C 7.243 10.546 6.783 10.678 6.398 10.935 C 6.023 11.197 5.732 11.556 5.56 11.971 C 5.179 12.923 5.177 13.978 5.555 14.931 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 22.326 4.05 L 28.605 4.05 L 28.605 10.125 L 22.326 10.125 Z\" fill=\"rgb(80,217,255)\"></path></g></g></g></g><path d=\"M 180 333.5 C 173.649 333.5 168.5 333.5 168.5 333.5 L 168.5 284.5 C 168.5 284.5 173.649 284.5 180 284.5 L 206 284.5 C 212.351 284.5 217.5 284.5 217.5 284.5 L 217.5 333.5 C 217.5 333.5 212.351 333.5 206 333.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 180 333.5 C 173.649 333.5 168.5 333.5 168.5 333.5 L 168.5 284.5 C 168.5 284.5 173.649 284.5 180 284.5 L 206 284.5 C 212.351 284.5 217.5 284.5 217.5 284.5 L 217.5 333.5 C 217.5 333.5 212.351 333.5 206 333.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(178 295.5)\" id=\"ss10167505042_45\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_47\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_49\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_51\"><path d=\"M 30 14.175 C 30.002 13.948 29.881 13.737 29.681 13.619 L 29.677 13.619 L 29.665 13.612 L 19.269 7.658 C 19.224 7.629 19.178 7.602 19.13 7.578 C 18.728 7.378 18.252 7.378 17.85 7.578 C 17.802 7.602 17.755 7.629 17.711 7.658 L 7.315 13.612 L 7.303 13.619 C 6.985 13.81 6.888 14.214 7.085 14.521 C 7.143 14.612 7.224 14.687 7.319 14.741 L 17.714 20.695 C 17.759 20.724 17.806 20.75 17.854 20.775 C 18.255 20.975 18.732 20.975 19.133 20.775 C 19.181 20.75 19.228 20.724 19.273 20.695 L 29.668 14.741 C 29.876 14.624 30.003 14.408 30 14.175 Z\" fill=\"rgb(10,39,103)\"></path><path d=\"M 8.527 10.2 L 15.349 10.2 L 15.349 16.25 L 8.527 16.25 Z M 28.604 4.05 L 28.604 1.282 C 28.621 0.591 28.055 0.017 27.34 0 L 9.637 0 C 8.922 0.017 8.356 0.591 8.372 1.282 L 8.372 4.05 L 18.837 6.75 Z\" fill=\"rgb(3,100,184)\"></path><path d=\"M 8.372 4.05 L 15.349 4.05 L 15.349 10.125 L 8.372 10.125 Z\" fill=\"rgb(0,120,212)\"></path><path d=\"M 22.326 4.05 L 15.349 4.05 L 15.349 10.125 L 22.326 16.2 L 28.605 16.2 L 28.605 10.125 Z\" fill=\"rgb(40,168,234)\"></path><path d=\"M 15.349 10.125 L 22.326 10.125 L 22.326 16.2 L 15.349 16.2 Z\" fill=\"rgb(0,120,212)\"></path><path d=\"M 15.349 16.2 L 22.326 16.2 L 22.326 22.275 L 15.349 22.275 Z\" fill=\"rgb(3,100,184)\"></path><path d=\"M 8.527 16.25 L 15.349 16.25 L 15.349 21.75 L 8.527 21.75 Z\" fill=\"rgb(20,68,125)\"></path><path d=\"M 22.326 16.2 L 28.605 16.2 L 28.605 22.275 L 22.326 22.275 Z\" fill=\"rgb(0,120,212)\"></path><g><defs><linearGradient id=\"idss10167505042_60g1977229117\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(53,184,241)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(40,168,234)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.68 14.703 L 29.667 14.71 L 19.272 20.367 C 19.226 20.394 19.18 20.419 19.132 20.442 C 18.956 20.524 18.764 20.569 18.568 20.577 L 18 20.256 C 17.952 20.233 17.906 20.207 17.861 20.178 L 7.326 14.361 L 7.321 14.361 L 6.977 14.175 L 6.977 25.626 C 6.982 26.39 7.626 27.005 8.416 27 L 28.583 27 C 28.595 27 28.605 26.994 28.618 26.994 C 28.784 26.984 28.949 26.951 29.106 26.896 C 29.174 26.868 29.239 26.835 29.302 26.797 C 29.349 26.772 29.429 26.716 29.429 26.716 C 29.786 26.46 29.998 26.056 30 25.626 L 30 14.175 C 30 14.394 29.877 14.596 29.68 14.703 Z\" fill=\"url(#idss10167505042_60g1977229117)\"></path></g><path d=\"M 29.442 14.129 L 29.442 14.831 L 18.572 22.072 L 7.318 14.366 C 7.318 14.362 7.315 14.359 7.311 14.359 L 6.279 13.758 L 6.279 13.252 L 6.704 13.245 L 7.604 13.745 L 7.625 13.751 L 7.702 13.799 C 7.702 13.799 18.279 19.637 18.307 19.651 L 18.711 19.88 C 18.746 19.867 18.781 19.853 18.823 19.84 C 18.844 19.826 29.323 14.123 29.323 14.123 Z\" fill=\"rgb(10,39,103)\" opacity=\"0.5\"></path><path d=\"M 29.681 14.703 L 29.667 14.711 L 19.272 20.367 C 19.227 20.394 19.181 20.42 19.133 20.443 C 18.729 20.634 18.257 20.634 17.853 20.443 C 17.805 20.42 17.759 20.395 17.714 20.367 L 7.318 14.711 L 7.306 14.703 C 7.105 14.598 6.979 14.396 6.977 14.175 L 6.977 25.626 C 6.982 26.389 7.626 27.005 8.416 27 L 28.562 27 C 29.351 27.005 29.995 26.389 30 25.626 L 30 14.175 C 30 14.394 29.878 14.596 29.681 14.703 Z\" fill=\"rgb(20,144,223)\"></path><path d=\"M 19.423 20.284 L 19.267 20.369 C 19.222 20.396 19.176 20.422 19.128 20.445 C 18.957 20.526 18.77 20.574 18.58 20.585 L 22.535 25.11 L 29.434 26.719 C 29.623 26.581 29.773 26.399 29.871 26.19 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.1\"></path><path d=\"M 20.128 19.9 L 19.267 20.368 C 19.222 20.396 19.176 20.421 19.128 20.444 C 18.957 20.526 18.77 20.574 18.58 20.585 L 20.433 25.528 L 29.436 26.716 C 29.791 26.459 30 26.055 30 25.626 L 30 25.478 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.05\"></path><path d=\"M 8.435 27 L 28.56 27 C 28.869 27.001 29.171 26.907 29.421 26.73 L 18 20.257 C 17.952 20.234 17.906 20.208 17.861 20.18 L 7.326 14.363 L 7.321 14.363 L 6.977 14.175 L 6.977 25.586 C 6.976 26.366 7.629 26.999 8.435 27 Z\" fill=\"rgb(40,168,234)\"></path><path d=\"M 16.744 6.638 L 16.744 21.035 C 16.743 21.54 16.425 21.994 15.942 22.183 C 15.792 22.245 15.63 22.277 15.467 22.277 L 6.977 22.277 L 6.977 6.075 L 8.372 6.075 L 8.372 5.4 L 15.467 5.4 C 16.172 5.403 16.742 5.956 16.744 6.638 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.1\"></path><path d=\"M 16.046 7.313 L 16.046 21.71 C 16.048 21.873 16.012 22.035 15.942 22.183 C 15.748 22.645 15.285 22.948 14.77 22.95 L 6.977 22.95 L 6.977 6.075 L 14.77 6.075 C 14.972 6.073 15.171 6.122 15.349 6.217 C 15.776 6.425 16.046 6.849 16.046 7.313 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 16.046 7.313 L 16.046 20.36 C 16.043 21.042 15.474 21.594 14.77 21.6 L 6.977 21.6 L 6.977 6.075 L 14.77 6.075 C 14.972 6.073 15.171 6.122 15.349 6.217 C 15.776 6.425 16.046 6.849 16.046 7.313 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 15.349 7.312 L 15.349 20.36 C 15.348 21.043 14.777 21.597 14.072 21.6 L 6.977 21.6 L 6.977 6.075 L 14.072 6.075 C 14.777 6.076 15.349 6.63 15.349 7.312 C 15.349 7.313 15.349 7.312 15.349 7.312 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><g><defs><linearGradient id=\"idss10167505042_70g828522074\" x1=\"0.21944437726678606\" x2=\"0.780555622733214\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(23,132,217)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(10,99,201)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 1.279 6.075 L 14.07 6.075 C 14.776 6.075 15.349 6.629 15.349 7.312 L 15.349 19.688 C 15.349 20.371 14.776 20.925 14.07 20.925 L 1.279 20.925 C 0.573 20.925 0 20.371 0 19.688 L 0 7.312 C 0 6.629 0.573 6.075 1.279 6.075 Z\" fill=\"url(#idss10167505042_70g828522074)\"></path></g><path d=\"M 3.997 11.265 C 4.312 10.615 4.821 10.071 5.458 9.703 C 6.163 9.313 6.966 9.118 7.779 9.14 C 8.532 9.125 9.275 9.309 9.927 9.674 C 10.54 10.028 11.034 10.546 11.348 11.166 C 11.691 11.849 11.861 12.601 11.846 13.36 C 11.863 14.153 11.687 14.939 11.334 15.655 C 11.012 16.297 10.502 16.833 9.869 17.199 C 9.191 17.575 8.421 17.764 7.64 17.747 C 6.871 17.765 6.111 17.578 5.445 17.207 C 4.826 16.852 4.326 16.334 4.005 15.712 C 3.66 15.039 3.487 14.296 3.501 13.545 C 3.486 12.758 3.656 11.979 3.997 11.265 Z M 5.554 14.93 C 5.722 15.341 6.007 15.697 6.376 15.957 C 6.752 16.211 7.201 16.342 7.66 16.331 C 8.148 16.35 8.629 16.214 9.03 15.945 C 9.394 15.685 9.672 15.328 9.828 14.918 C 10.003 14.459 10.089 13.973 10.083 13.485 C 10.088 12.991 10.007 12.501 9.843 12.033 C 9.698 11.612 9.429 11.24 9.07 10.963 C 8.678 10.681 8.199 10.538 7.711 10.558 C 7.243 10.546 6.783 10.678 6.398 10.935 C 6.023 11.197 5.732 11.556 5.56 11.971 C 5.179 12.923 5.177 13.978 5.555 14.931 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 22.326 4.05 L 28.605 4.05 L 28.605 10.125 L 22.326 10.125 Z\" fill=\"rgb(80,217,255)\"></path></g></g></g></g><path d=\"M 111 153.5 C 104.649 153.5 99.5 153.5 99.5 153.5 L 99.5 104.5 C 99.5 104.5 104.649 104.5 111 104.5 L 137 104.5 C 143.351 104.5 148.5 104.5 148.5 104.5 L 148.5 153.5 C 148.5 153.5 143.351 153.5 137 153.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 111 153.5 C 104.649 153.5 99.5 153.5 99.5 153.5 L 99.5 104.5 C 99.5 104.5 104.649 104.5 111 104.5 L 137 104.5 C 143.351 104.5 148.5 104.5 148.5 104.5 L 148.5 153.5 C 148.5 153.5 143.351 153.5 137 153.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(109 119)\" id=\"ss10167505042_75\"><path d=\"M 0 20 L 0 0 L 30 0 L 30 20 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_77\"><path d=\"M 0 20 L 0 0 L 30 0 L 30 20 Z\" fill=\"transparent\"></path><path d=\"M 21.325 2.223 L 15.811 2.223 C 10.85 2.223 10.469 4.392 10.469 7.298 L 10.469 12.703 C 10.469 15.725 10.85 17.778 15.83 17.778 L 21.325 17.778 C 26.285 17.778 26.667 15.609 26.667 12.722 L 26.667 7.298 C 26.667 4.392 26.285 2.223 21.325 2.223 Z M 3.333 6.116 C 3.333 3.559 4.326 2.223 6.005 2.223 C 7.683 2.223 8.676 3.559 8.676 6.116 L 8.676 13.884 C 8.676 16.442 7.683 17.778 6.005 17.778 C 4.326 17.778 3.333 16.442 3.333 13.884 Z\" fill=\"rgb(26,26,25)\"></path></g></g><path d=\"M 180 261.5 C 173.649 261.5 168.5 261.5 168.5 261.5 L 168.5 212.5 C 168.5 212.5 173.649 212.5 180 212.5 L 206 212.5 C 212.351 212.5 217.5 212.5 217.5 212.5 L 217.5 261.5 C 217.5 261.5 212.351 261.5 206 261.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 180 261.5 C 173.649 261.5 168.5 261.5 168.5 261.5 L 168.5 212.5 C 168.5 212.5 173.649 212.5 180 212.5 L 206 212.5 C 212.351 212.5 217.5 212.5 217.5 212.5 L 217.5 261.5 C 217.5 261.5 212.351 261.5 206 261.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(178 222)\" id=\"ss10167505042_82\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_84\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g transform=\"translate(1.071 4.554)\" id=\"ss10167505042_86\"><path d=\"M 0 20.893 L 5.521 20.893 L 5.521 0.001 L 0 0.001 Z\" fill=\"rgb(229,92,255)\"></path><path d=\"M 11.168 0 L 0 20.892 L 5.521 20.892 L 16.689 0 Z\" fill=\"rgb(36,35,92)\"></path><path d=\"M 11.168 20.892 L 16.689 20.892 L 16.689 0 L 11.168 0 Z\" fill=\"rgb(229,92,255)\"></path><path d=\"M 22.337 0 L 11.169 20.892 L 16.69 20.892 L 27.858 0 Z\" fill=\"rgb(36,35,92)\"></path><path d=\"M 22.306 20.892 L 27.826 20.892 L 27.826 0 L 22.306 0 Z\" fill=\"rgb(229,92,255)\"></path></g></g></g><path d=\"M 111 301.5 C 104.649 301.5 99.5 301.5 99.5 301.5 L 99.5 252.5 C 99.5 252.5 104.649 252.5 111 252.5 L 137 252.5 C 143.351 252.5 148.5 252.5 148.5 252.5 L 148.5 301.5 C 148.5 301.5 143.351 301.5 137 301.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 111 301.5 C 104.649 301.5 99.5 301.5 99.5 301.5 L 99.5 252.5 C 99.5 252.5 104.649 252.5 111 252.5 L 137 252.5 C 143.351 252.5 148.5 252.5 148.5 252.5 L 148.5 301.5 C 148.5 301.5 143.351 301.5 137 301.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(109 262)\" id=\"ss10167505042_94\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_96\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><path d=\"M 18.428 19.728 L 2.409 19.728 C 1.673 19.728 1.071 19.126 1.071 18.39 C 1.071 17.654 1.673 17.052 2.409 17.052 L 18.428 17.052 C 19.163 17.052 19.765 17.654 19.765 18.39 C 19.765 19.126 19.163 19.728 18.428 19.728 Z\" fill=\"rgb(153,207,172)\"></path><path d=\"M 15.016 27.921 C 13.712 27.921 12.408 27.72 11.17 27.352 C 10.468 27.118 10.067 26.382 10.301 25.68 C 10.535 24.978 11.271 24.577 11.973 24.811 C 12.943 25.112 13.979 25.279 15.016 25.279 C 19.564 25.279 23.51 22.369 24.815 18.022 C 25.015 17.32 25.784 16.918 26.487 17.119 C 27.189 17.32 27.59 18.089 27.39 18.791 C 25.684 24.242 20.735 27.921 15.016 27.921 Z\" fill=\"rgb(73,184,129)\"></path><path d=\"M 27.591 12.939 L 11.572 12.939 C 10.837 12.939 10.235 12.337 10.235 11.601 C 10.235 10.865 10.837 10.263 11.572 10.263 L 27.591 10.263 C 28.327 10.263 28.929 10.865 28.929 11.601 C 28.929 12.337 28.327 12.939 27.591 12.939 Z\" fill=\"rgb(153,207,172)\"></path><path d=\"M 3.914 12.939 C 3.78 12.939 3.646 12.906 3.513 12.872 C 2.81 12.671 2.409 11.902 2.61 11.2 C 4.315 5.749 9.265 2.07 15.017 2.07 C 16.321 2.07 17.625 2.271 18.863 2.639 C 19.565 2.873 19.966 3.609 19.732 4.311 C 19.498 5.013 18.762 5.415 18.06 5.18 C 17.09 4.879 16.053 4.712 15.017 4.712 C 10.469 4.712 6.522 7.622 5.218 11.969 C 5.018 12.571 4.483 12.939 3.914 12.939 Z\" fill=\"rgb(73,184,129)\"></path><path d=\"M 22.942 7.856 C 23.681 7.856 24.28 7.257 24.28 6.518 C 24.28 5.779 23.681 5.18 22.942 5.18 C 22.203 5.18 21.604 5.779 21.604 6.518 C 21.604 7.257 22.203 7.856 22.942 7.856 Z\" fill=\"rgb(153,207,172)\"></path><path d=\"M 7.057 24.844 C 7.796 24.844 8.395 24.245 8.395 23.506 C 8.395 22.767 7.796 22.168 7.057 22.168 C 6.318 22.168 5.719 22.767 5.719 23.506 C 5.719 24.245 6.318 24.844 7.057 24.844 Z\" fill=\"rgb(153,207,172)\"></path></g></g><path d=\"M 180 120.5 C 173.649 120.5 168.5 120.5 168.5 120.5 L 168.5 71.5 C 168.5 71.5 173.649 71.5 180 71.5 L 206 71.5 C 212.351 71.5 217.5 71.5 217.5 71.5 L 217.5 120.5 C 217.5 120.5 212.351 120.5 206 120.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 180 120.5 C 173.649 120.5 168.5 120.5 168.5 120.5 L 168.5 71.5 C 168.5 71.5 173.649 71.5 180 71.5 L 206 71.5 C 212.351 71.5 217.5 71.5 217.5 71.5 L 217.5 120.5 C 217.5 120.5 212.351 120.5 206 120.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(178 81)\" id=\"ss10167505042_106\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_108\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_110\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><path d=\"M 13.348 0.911 C 17.927 0.911 24.848 2.321 28.067 5.555 C 28.883 6.375 29.951 7.981 29.951 10.333 C 29.951 14.515 26.595 20.933 22.89 24.652 C 20.974 26.575 17.927 29.089 13.828 29.089 C 9.822 29.089 6.761 26.357 5.876 25.467 C 2.482 22.059 0.051 16.887 0.051 12.064 C 0.051 9.021 0.915 6.364 3.119 4.147 C 5.161 2.1 8.678 0.911 13.348 0.911 Z M 19.016 17.588 C 20.562 16.035 20.978 14.122 20.978 13.069 C 20.985 12.544 20.887 12.022 20.689 11.535 C 20.492 11.048 20.199 10.605 19.828 10.233 C 18.37 8.769 16.755 8.355 15.001 8.355 C 12.776 8.355 11.281 9.062 10.285 10.062 C 9.504 10.846 8.829 12.052 8.829 13.762 C 8.829 15.472 9.738 17.127 10.729 18.121 C 11.644 19.04 13.082 19.721 14.529 19.721 C 15.976 19.721 17.47 19.141 19.016 17.588 Z\" fill=\"rgb(89,82,255)\"></path></g></g></g><path d=\"M 179 49.5 C 172.649 49.5 167.5 49.5 167.5 49.5 L 167.5 0.5 C 167.5 0.5 172.649 0.5 179 0.5 L 205 0.5 C 211.351 0.5 216.5 0.5 216.5 0.5 L 216.5 49.5 C 216.5 49.5 211.351 49.5 205 49.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 179 49.5 C 172.649 49.5 167.5 49.5 167.5 49.5 L 167.5 0.5 C 167.5 0.5 172.649 0.5 179 0.5 L 205 0.5 C 211.351 0.5 216.5 0.5 216.5 0.5 L 216.5 49.5 C 216.5 49.5 211.351 49.5 205 49.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(177 13.495)\" id=\"ss10167505042_115\"><path d=\"M 0 23.005 L 0 0.005 L 30 0.005 L 30 23.005 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss10167505042_117\"><path d=\"M 0 23.005 L 0 0.005 L 30 0.005 L 30 23.005 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss10167505042_119\"><path d=\"M 0 23.005 L 0 0.005 L 30 0.005 L 30 23.005 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss10167505042_121\"><path d=\"M 2.045 23.005 L 6.818 23.005 L 6.818 11.157 L 0 5.93 L 0 20.914 C 0 22.071 0.917 23.005 2.045 23.005 Z\" fill=\"rgb(66,133,244)\"></path><path d=\"M 23.182 23.005 L 27.954 23.005 C 29.086 23.005 30 22.068 30 20.914 L 30 5.93 L 23.182 11.157\" fill=\"rgb(52,168,83)\"></path><path d=\"M 23.182 2.097 L 23.182 11.157 L 30 5.93 L 30 3.142 C 30 0.557 27.112 -0.918 25.091 0.633\" fill=\"rgb(251,188,4)\"></path><path d=\"M 6.818 11.157 L 6.818 2.097 L 15 8.369 L 23.182 2.097 L 23.182 11.157 L 15 17.43\" fill=\"rgb(234,67,53)\"></path><path d=\"M 0 3.142 L 0 5.93 L 6.818 11.157 L 6.818 2.097 L 4.909 0.633 C 2.884 -0.918 0 0.557 0 3.142 Z\" fill=\"rgb(197,34,31)\"></path></g></g></g></g><path d=\"M 112 81.5 C 105.649 81.5 100.5 81.5 100.5 81.5 L 100.5 32.5 C 100.5 32.5 105.649 32.5 112 32.5 L 138 32.5 C 144.351 32.5 149.5 32.5 149.5 32.5 L 149.5 81.5 C 149.5 81.5 144.351 81.5 138 81.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 112 81.5 C 105.649 81.5 100.5 81.5 100.5 81.5 L 100.5 32.5 C 100.5 32.5 105.649 32.5 112 32.5 L 138 32.5 C 144.351 32.5 149.5 32.5 149.5 32.5 L 149.5 81.5 C 149.5 81.5 144.351 81.5 138 81.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(110 42)\" id=\"ss10167505042_129\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_131\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_133\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><path d=\"M 18.751 15.007 C 18.751 16.089 18.555 17.161 18.174 18.174 C 17.162 18.555 16.089 18.75 15.007 18.75 L 14.994 18.75 C 13.912 18.751 12.839 18.555 11.826 18.174 C 11.444 17.162 11.249 16.089 11.249 15.007 L 11.249 14.992 C 11.249 13.878 11.453 12.81 11.824 11.825 C 12.837 11.443 13.91 11.248 14.992 11.249 L 15.004 11.249 C 16.12 11.249 17.187 11.453 18.172 11.825 C 18.554 12.838 18.749 13.911 18.748 14.992 L 18.748 15.007 Z M 29.792 12.5 L 21.037 12.5 L 27.227 6.309 C 26.254 4.942 25.059 3.747 23.691 2.774 L 17.5 8.965 L 17.5 0.209 C 16.676 0.07 15.843 0.001 15.008 0 L 14.992 0 C 14.143 0 13.311 0.073 12.5 0.209 L 12.5 8.965 L 6.307 2.773 C 5.625 3.259 4.985 3.8 4.394 4.393 L 4.391 4.396 C 3.799 4.987 3.258 5.628 2.773 6.309 L 8.966 12.5 L 0.208 12.5 C 0.208 12.5 0 14.145 0 14.995 L 0 15.005 C 0 15.855 0.072 16.689 0.209 17.5 L 8.966 17.5 L 2.772 23.69 C 3.747 25.057 4.942 26.252 6.309 27.226 L 12.501 21.035 L 12.501 29.792 C 13.31 29.927 14.141 29.999 14.989 30 L 15.011 30 C 15.844 29.999 16.677 29.93 17.499 29.792 L 17.499 21.035 L 23.692 27.227 C 24.374 26.741 25.014 26.2 25.607 25.608 L 25.608 25.608 C 26.199 25.015 26.74 24.375 27.226 23.693 L 21.035 17.5 L 29.793 17.5 C 29.928 16.69 30 15.859 30 15.011 L 30 14.989 C 30 14.155 29.93 13.322 29.792 12.5 Z\" fill=\"rgb(255,74,0)\"></path></g></g></g></svg>',svgContentId:10167505042,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4r8er8\",\"data-framer-name\":\"Left_Part\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wrcy5i-container\",isAuthoredByUser:true,nodeId:\"TvuMhOhcK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LeftSvgWires,{height:\"100%\",id:\"TvuMhOhcK\",layoutId:\"TvuMhOhcK\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7xx3re\",\"data-framer-name\":\"Vector 21\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 81 76\"></svg>',svgContentId:11817787165,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h54nbv\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-edtb06\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_43\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_43)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Integrate CaaS\"})}),className:\"framer-qm82d5\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f6a4th\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vpb4uq\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25866 0H1.72266C1.1306 0 0.650635 0.484109 0.650635 1.08129V7.56901C0.650635 8.16619 1.1306 8.6503 1.72266 8.6503H2.25866C2.85073 8.6503 3.33069 8.16619 3.33069 7.56901V1.08129C3.33069 0.484109 2.85073 0 2.25866 0Z\" stroke=\"#A4ADBA\" stroke-width=\"1.17857\"/>\\n<path d=\"M7.88684 4.48904V2.97353V1.3516C7.88684 1.10039 7.88684 0.974787 7.86625 0.870335C7.78165 0.441394 7.44923 0.106097 7.02396 0.0207694C6.92041 5.45137e-08 6.79588 0 6.54682 0C6.29776 0 6.17322 5.45137e-08 6.06967 0.0207694C5.64441 0.106097 5.31198 0.441394 5.22739 0.870335C5.20679 0.974787 5.20679 1.10039 5.20679 1.3516V10.5425C5.20679 10.7938 5.20679 10.9193 5.22739 11.0238C5.31198 11.4527 5.64441 11.7881 6.06967 11.8733C6.17322 11.8941 6.29776 11.8941 6.54682 11.8941\" stroke=\"#A4ADBA\" stroke-width=\"1.17857\" stroke-linecap=\"round\"/>\\n<path d=\"M9.76318 1.3516C9.76318 1.10039 9.76318 0.974787 9.7838 0.870335C9.86844 0.441394 10.2008 0.106097 10.6261 0.0207694C10.7296 5.45137e-08 10.8542 0 11.1032 0C11.3523 0 11.4768 5.45137e-08 11.5804 0.0207694C12.0056 0.106097 12.3381 0.441394 12.4227 0.870335C12.4433 0.974787 12.4433 1.10039 12.4433 1.3516V1.89225C12.4433 2.14346 12.4433 2.26907 12.4227 2.37352C12.3381 2.80245 12.0056 3.13776 11.5804 3.22308C11.4768 3.24386 11.3523 3.24386 11.1032 3.24386C10.8542 3.24386 10.7296 3.24386 10.6261 3.22308C10.2008 3.13776 9.86844 2.80245 9.7838 2.37352C9.76318 2.26907 9.76318 2.14346 9.76318 1.89225V1.3516Z\" stroke=\"#A4ADBA\" stroke-width=\"1.17857\"/>\\n<path d=\"M10.2995 12C11.9573 12 13.3012 10.6445 13.3012 8.97243C13.3012 7.30033 11.9573 5.94482 10.2995 5.94482C8.64174 5.94482 7.29785 7.30033 7.29785 8.97243C7.29785 10.6445 8.64174 12 10.2995 12Z\" stroke=\"#A4ADBA\" stroke-width=\"1.07143\" stroke-linecap=\"round\"/>\\n<path d=\"M10.6747 7.83691V8.97227H9.54907\" stroke=\"#A4ADBA\" stroke-width=\"1.07143\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Check tracking info\"})}),className:\"framer-1qec5gw\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ivn0om\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-y3c4i\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Make payment\"})}),className:\"framer-9mjbrz\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19h9g7n\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-iq7se2\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Modify billing information\"})}),className:\"framer-1vo9gz7\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rn561y\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8sqc4o\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Escalate call\"})}),className:\"framer-17p878w\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10k7tyb\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1k4i49j\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Save to CRM\"})}),className:\"framer-nnpi6b\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-115i02g\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1l60cik\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Save to CRM\"})}),className:\"framer-1uz5aqh\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1alfavb\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-322hhb\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_55\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0H0V11.25H11.25V0Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_55)\">\\n<path d=\"M10.8477 5.21735V5.17717C10.8477 4.05207 10.8477 3.48952 10.6287 3.05978C10.4361 2.68178 10.1288 2.37445 9.75081 2.18185C9.32106 1.96289 8.75849 1.96289 7.63341 1.96289H4.41913C3.29403 1.96289 2.73148 1.96289 2.30175 2.18185C1.92375 2.37445 1.61642 2.68177 1.42381 3.05978C1.20486 3.48951 1.20485 4.05206 1.20484 5.17716L1.20483 6.7843C1.20483 7.90942 1.20483 8.472 1.42379 8.90167C1.61639 9.27967 1.92372 9.58702 2.30172 9.77962C2.73146 9.99862 3.29401 9.99862 4.41912 9.99862H5.42357\" stroke=\"#868B98\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.03498 3.96094L6.3443 5.7065C5.99537 6.06676 5.41669 6.06406 5.07114 5.70055C4.7186 5.32969 4.12553 5.33556 3.78039 5.71331L2.81177 6.77344\" stroke=\"#868B98\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.83887 10.4824C10.0815 10.4824 11.0889 9.47506 11.0889 8.23242C11.0889 6.98978 10.0815 5.98242 8.83887 5.98242C7.59623 5.98242 6.58887 6.98978 6.58887 8.23242C6.58887 9.47506 7.59623 10.4824 8.83887 10.4824Z\" stroke=\"#868B98\" stroke-width=\"1.07143\" stroke-linecap=\"round\"/>\\n<path d=\"M9.12012 7.38867V8.23245H8.27637\" stroke=\"#868B98\" stroke-width=\"1.07143\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Schedule appointment\"})}),className:\"framer-1u9f4ue\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-km2yu9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vvkm4i\",\"data-framer-name\":\"Rectangle 12\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h775hz\",\"data-framer-name\":\"Rectangle 13\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5044+0+150+176+1303+120.50000000000009+14.000000000000021),sizes:\"68px\",src:\"https://framerusercontent.com/images/keaS28RAuPgSm34pkaW6bNpnPI.png\",srcSet:\"https://framerusercontent.com/images/keaS28RAuPgSm34pkaW6bNpnPI.png 658w\"},className:\"framer-h281yk\",\"data-framer-name\":\"Transparent (2) 2\",transformTemplate:transformTemplate1})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hxfl25\",\"data-border\":true,\"data-framer-name\":\"Ellipse 19\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1awgj0s\",\"data-border\":true,\"data-framer-name\":\"Ellipse 19\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4i2e4p\",\"data-border\":true,\"data-framer-name\":\"Ellipse 19\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l7d47b\",\"data-border\":true,\"data-framer-name\":\"Ellipse 19\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8d7q81\",\"data-border\":true,\"data-framer-name\":\"Level 2 - Card\",style:{scale:.92},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:387,intrinsicWidth:741,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5044+0+150+176+743+0),pixelHeight:387,pixelWidth:737,positionX:\"center\",positionY:\"center\",sizes:\"754px\",src:\"https://framerusercontent.com/images/7ToY0DlEVggAodHswhLXnz6ioBw.png\",srcSet:\"https://framerusercontent.com/images/7ToY0DlEVggAodHswhLXnz6ioBw.png?scale-down-to=512 512w,https://framerusercontent.com/images/7ToY0DlEVggAodHswhLXnz6ioBw.png 737w\"},className:\"framer-22xsh5\",\"data-framer-name\":\"_Vector map\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-b9g4p0\",\"data-framer-name\":\"Lines \",fill:\"rgba(0,0,0,1)\",intrinsicHeight:367,intrinsicWidth:737,svg:'<svg width=\"737\" height=\"367\" viewBox=\"0 0 737 367\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M729.417 294.387C729.417 294.125 729.417 293.864 729.286 293.733C724.056 268.114 715.95 243.149 705.36 219.491C705.36 219.23 705.229 219.099 705.099 218.837C693.855 193.741 679.865 169.822 662.999 147.602C662.869 147.34 662.607 147.209 662.476 146.948C652.278 133.485 641.165 120.676 629.006 108.651C617.108 96.7562 604.557 85.7767 591.483 75.8429C591.221 75.5815 590.829 75.3201 590.567 75.1894C526.896 26.9581 449.626 0.816528 368.435 0.816528C287.243 0.816528 209.974 26.9581 146.302 75.1894C146.04 75.4508 145.648 75.5815 145.387 75.8429C132.312 85.9074 119.761 96.7562 107.863 108.651C95.7041 120.806 84.5909 133.616 74.3929 146.948C74.2622 147.209 74.0007 147.471 73.87 147.602C57.1348 169.822 43.0145 193.611 31.7706 218.837C31.7706 219.099 31.5091 219.23 31.5091 219.491C20.9189 243.28 12.9436 268.114 7.58311 293.733C7.58311 293.994 7.58311 294.125 7.45237 294.387C2.74561 317.653 0.130743 341.572 0 365.753V366.407H1.43818V365.753C1.69966 341.311 4.31453 317.391 9.02129 294.387C9.02129 294.125 9.02129 293.864 9.15203 293.733C14.5125 267.853 22.7493 243.018 33.3395 219.491C33.3395 219.23 33.4703 218.968 33.601 218.837C45.1064 193.48 59.3575 169.56 75.9619 147.602C76.0926 147.34 76.3541 147.209 76.4848 146.948C97.0115 120.022 121.068 96.1026 148.132 75.8429C148.394 75.5815 148.786 75.4508 149.047 75.1894C194.154 41.4667 247.366 17.8086 305.155 7.74405C316.399 5.78343 327.773 4.34564 339.279 3.43069C345.424 2.90786 351.699 2.64644 357.975 2.38502C361.505 2.38502 365.035 2.25432 368.565 2.25432C372.095 2.25432 370.265 2.25432 371.18 2.25432C371.572 2.25432 371.834 2.25432 372.226 2.25432C383.209 2.25432 394.06 2.90785 404.781 3.95352C473.029 10.6196 535.786 36.1077 587.953 75.0586C588.214 75.3201 588.476 75.4508 588.868 75.7122C615.932 95.9719 639.988 120.022 660.515 146.817C660.646 147.079 660.907 147.34 661.038 147.471C677.643 169.43 691.894 193.219 703.399 218.707C703.399 218.968 703.66 219.099 703.66 219.36C714.251 242.888 722.357 267.853 727.848 293.602C727.848 293.864 727.848 293.994 727.979 294.256C732.816 317.391 735.431 341.18 735.562 365.622V366.276H737V365.622C736.739 341.311 734.254 317.522 729.548 294.256L729.417 294.387Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M660.646 294.386C660.646 294.125 660.646 293.864 660.646 293.733C656.985 268.114 650.971 243.28 642.603 219.491C642.603 219.229 642.472 218.968 642.342 218.837C633.582 193.741 622.207 169.822 608.61 147.601C608.61 147.34 608.349 147.079 608.218 146.948C598.804 131.786 588.345 117.408 576.839 103.945C568.21 93.8805 559.189 84.4695 549.776 75.8428C549.514 75.5814 549.253 75.32 548.991 75.1893C507.022 36.6304 457.471 12.3187 404.65 4.08413C391.445 1.99281 377.979 0.947144 364.382 0.947144C344.247 0.947144 324.374 3.29989 305.155 7.74396C259.525 18.462 216.772 41.3359 179.772 75.1893C179.511 75.4507 179.249 75.5814 178.988 75.8428C169.574 84.4695 160.553 93.8805 151.924 103.945C140.418 117.408 129.959 131.786 120.545 146.948C120.415 147.209 120.284 147.471 120.153 147.601C106.425 169.822 95.1811 193.741 86.4213 218.837C86.4213 219.099 86.2906 219.229 86.1598 219.491C77.7923 243.28 71.7781 268.114 68.1173 293.733C68.1173 293.994 68.1173 294.125 68.1173 294.386C65.5024 313.339 64.0642 332.815 64.0642 352.552C64.0642 372.288 64.0642 361.44 64.3257 365.884C64.3257 366.145 64.3257 366.276 64.3257 366.537H65.6331C65.6331 366.276 65.6331 366.145 65.6331 365.884C65.5024 361.44 65.3716 356.996 65.3716 352.552C65.3716 332.815 66.8098 313.339 69.4247 294.386C69.4247 294.125 69.4247 293.994 69.4247 293.733C73.0855 267.853 79.3612 243.018 87.598 219.491C87.598 219.229 87.7288 219.099 87.8595 218.837C96.8808 193.48 108.255 169.56 121.853 147.601C121.983 147.34 122.114 147.079 122.245 146.948C138.849 120.153 158.722 96.1025 181.079 75.8428C181.341 75.5814 181.602 75.32 181.864 75.1893C226.186 35.0619 280.314 9.18174 339.148 3.43059C347.123 2.64635 355.099 2.25422 363.205 2.25422C363.205 2.25422 363.336 2.25422 363.466 2.25422H364.251C366.473 2.25422 368.696 2.25422 370.919 2.25422C371.834 2.25422 372.618 2.25422 373.534 2.25422C438.644 4.60697 498.524 31.4021 546.768 75.0586C547.03 75.32 547.291 75.4507 547.553 75.7121C569.91 96.1025 589.652 120.022 606.387 146.817C606.518 147.079 606.649 147.34 606.78 147.471C620.377 169.43 631.752 193.219 640.773 218.707C640.773 218.968 640.904 219.099 641.034 219.36C649.271 243.018 655.416 267.853 659.208 293.602C659.208 293.864 659.208 293.994 659.208 294.256C661.953 313.208 663.261 332.553 663.261 352.421C663.261 372.288 663.261 361.309 662.999 365.753C662.999 366.014 662.999 366.145 662.999 366.407H664.307C664.307 366.145 664.307 366.014 664.307 365.753C664.437 361.309 664.568 356.865 664.568 352.421C664.568 332.815 663.261 313.339 660.515 294.256L660.646 294.386Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M578.8 294.387C578.8 294.125 578.8 293.864 578.8 293.733C576.447 268.114 572.263 243.28 566.379 219.491C566.379 219.23 566.379 219.099 566.249 218.837C560.104 193.742 551.998 169.822 542.192 147.602C542.192 147.34 541.93 147.21 541.93 146.948C535.001 131.263 527.026 116.362 518.397 102.507C512.382 92.9657 506.107 84.0776 499.57 75.843C499.439 75.5816 499.177 75.3202 499.047 75.1895C463.223 30.2259 419.816 4.86858 373.794 2.38513C373.272 2.38513 372.749 2.38513 372.226 2.38513C370.264 2.38513 368.303 2.38513 366.473 2.38513C364.642 2.38513 364.642 2.38513 363.727 2.38513C363.727 2.38513 363.597 2.38513 363.466 2.38513C361.635 2.38513 359.805 2.38513 357.975 2.64655C312.345 5.39141 269.2 30.7488 233.638 75.4509C233.507 75.7123 233.245 75.843 233.115 76.1044C226.578 84.339 220.302 93.2272 214.288 102.769C205.528 116.624 197.683 131.525 190.754 147.21C190.754 147.471 190.492 147.732 190.492 147.863C180.687 170.083 172.581 194.003 166.436 219.099C166.436 219.36 166.436 219.491 166.305 219.752C160.421 243.541 156.238 268.507 153.884 293.995C153.884 294.256 153.884 294.387 153.884 294.648C152.446 311.117 151.662 327.848 151.662 344.709C151.662 361.571 151.662 358.956 152.054 366.015C152.054 366.276 152.054 366.407 152.054 366.668H153.1C153.1 366.407 153.1 366.276 153.1 366.015C152.838 358.956 152.708 351.898 152.708 344.709C152.708 327.717 153.492 310.987 155.061 294.648C155.061 294.387 155.061 294.125 155.061 293.995C157.414 268.114 161.729 243.28 167.482 219.752C167.482 219.491 167.482 219.36 167.612 219.099C173.888 193.742 182.125 169.822 191.8 147.863C191.8 147.602 192.061 147.34 192.061 147.21C204.09 120.414 218.341 96.3641 234.553 76.1044C234.684 75.843 234.945 75.5816 235.076 75.4509C269.2 32.9708 311.691 6.56779 357.844 3.69221C359.282 3.69221 360.72 3.5615 362.289 3.43079C363.466 3.43079 364.773 3.43079 365.95 3.43079H366.604C367.65 3.43079 368.565 3.43079 369.48 3.43079C370.918 3.43079 372.356 3.43079 373.794 3.5615C420.208 6.17566 462.961 32.5787 497.347 75.3202C497.478 75.5816 497.739 75.7123 497.87 75.9737C514.082 96.2334 528.464 120.284 540.361 147.079C540.361 147.34 540.623 147.602 540.623 147.732C550.298 169.691 558.535 193.48 564.81 218.968C564.81 219.23 564.81 219.36 564.941 219.622C570.825 243.28 575.008 268.114 577.493 293.864C577.493 294.125 577.493 294.256 577.493 294.517C579.061 310.856 579.846 327.586 579.846 344.579C579.846 361.571 579.715 358.826 579.454 365.884C579.454 366.145 579.454 366.276 579.454 366.537H580.5C580.5 366.276 580.5 366.145 580.5 365.884C580.761 358.826 580.892 351.637 580.892 344.579C580.892 327.717 580.107 310.987 578.669 294.517L578.8 294.387Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M476.691 294.387C476.691 294.125 476.691 293.864 476.691 293.733C476.298 282.884 475.645 272.166 474.86 261.579C473.683 247.855 471.984 233.607 469.761 219.491C469.761 219.23 469.761 219.099 469.761 218.837C466.1 194.918 461.132 170.737 455.118 147.602C455.118 147.34 455.118 147.21 454.987 146.948C449.757 126.95 443.743 107.866 437.206 90.4823C435.245 85.3847 433.284 80.4178 431.323 75.843C431.323 75.5816 431.061 75.3202 431.061 75.1895C413.411 33.755 393.668 8.78982 374.188 3.43079C371.704 2.77725 369.089 2.38513 366.605 2.38513H366.343C363.598 2.38513 360.983 2.77726 358.237 3.5615C338.495 9.05124 318.36 33.8857 299.926 75.3202C299.926 75.5816 299.664 75.7123 299.664 75.9737C297.572 80.6792 295.48 85.7768 293.388 90.8744C286.59 108.259 280.314 127.211 274.823 147.079C274.823 147.34 274.823 147.602 274.692 147.732C268.416 170.737 263.187 194.918 259.395 218.968C259.395 219.23 259.395 219.491 259.395 219.622C256.78 236.091 254.819 252.56 253.512 268.376C252.858 276.741 252.335 285.237 252.073 293.864C252.073 294.125 252.073 294.256 252.073 294.517C251.289 317.783 251.943 341.703 253.773 365.884C253.773 366.145 253.773 366.407 253.773 366.537H254.427C254.427 366.276 254.427 366.145 254.427 365.884C252.596 341.703 251.943 317.783 252.727 294.517C252.727 294.256 252.727 293.995 252.727 293.864C252.989 285.237 253.512 276.741 254.165 268.376C255.473 252.429 257.434 235.96 260.049 219.491C260.049 219.23 260.049 219.099 260.049 218.837C263.84 194.787 269.07 170.737 275.346 147.602C275.346 147.34 275.346 147.079 275.607 146.948C280.968 127.211 287.243 108.259 294.042 91.0051C296.134 85.7768 298.226 80.6792 300.449 75.843C300.449 75.5816 300.71 75.3202 300.71 75.1895C320.322 31.1409 341.894 5.91424 362.682 3.30009C363.859 3.16938 365.166 3.03867 366.343 3.03867H366.735C366.735 3.03867 366.997 3.03867 367.128 3.03867C368.174 3.03867 369.089 3.03867 370.004 3.30009C390.531 5.91424 411.58 31.1409 430.407 75.1895C430.407 75.4509 430.538 75.5816 430.669 75.843C432.63 80.5485 434.722 85.5154 436.683 90.7437C443.22 107.997 449.234 127.081 454.464 146.948C454.464 147.21 454.464 147.471 454.595 147.602C460.609 170.606 465.577 194.787 469.238 218.837C469.238 219.099 469.238 219.23 469.238 219.491C471.461 233.738 473.16 247.855 474.337 261.71C475.252 272.166 475.906 282.884 476.167 293.864C476.167 294.125 476.167 294.256 476.167 294.517C476.952 317.783 476.429 341.834 474.599 365.884C474.599 366.145 474.599 366.276 474.599 366.537H475.252C475.252 366.276 475.252 366.015 475.252 365.884C476.952 341.703 477.606 317.783 476.821 294.517L476.691 294.387Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M366.604 2.51575H365.95V366.537H366.604V2.51575Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M591.483 75.7121H145.387C145.648 75.4507 146.04 75.1893 146.302 75.0586H590.568C590.829 75.32 591.221 75.4507 591.483 75.7121Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M662.999 147.601H73.8701C74.0009 147.34 74.2623 147.209 74.3931 146.948H662.476C662.607 147.209 662.869 147.471 662.999 147.601Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M705.361 219.36H31.5098C31.5098 219.099 31.7713 218.968 31.7713 218.707H704.969C704.969 218.968 705.23 219.099 705.23 219.36H705.361Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M729.417 294.387H7.45203C7.45203 294.125 7.45203 293.864 7.58277 293.733H729.155C729.155 293.995 729.155 294.125 729.286 294.387H729.417Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M736.869 365.753H0V366.407H736.869V365.753Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M82.6299 232.17C104.726 159.627 150.355 92.1814 213.242 49.1785C201.606 57.5438 190.624 66.6933 180.164 76.3657C135.45 119.107 101.98 173.482 82.6299 232.17Z\" fill=\"#4F4F4F\"/>\\n<path d=\"M484.796 30.6179C544.546 60.0271 592.529 113.879 622.208 172.959C625.738 180.148 629.268 188.121 632.406 195.441C629.137 188.121 625.345 180.409 621.685 173.22C590.96 114.663 543.762 61.4649 484.796 30.6179Z\" fill=\"#4F4F4F\"/>\\n<path d=\"M247 75.2647H300.902C300.902 75.2647 330.803 2 367 2C403.197 2 440.574 83.9548 455 150\" stroke=\"#4F4F4F\" stroke-width=\"0.707336\" stroke-miterlimit=\"10\"/>\\n<path d=\"M366.343 27.6117C366.866 73.6209 366.997 124.728 366.997 170.998V218.837V219.36H366.474H334.05C334.05 219.23 301.625 218.837 301.625 218.837L334.05 218.576H366.474C366.474 218.445 365.951 218.837 365.951 218.837V170.998C365.82 124.728 365.951 73.7516 366.474 27.6117H366.343Z\" fill=\"#4F4F4F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1srvx1j\",\"data-framer-name\":\"Frame 22\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p2ecgj\",\"data-framer-name\":\"Button groups\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bkm3u9\",\"data-framer-name\":\"Frame 23\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7xepjf\",\"data-framer-name\":\"Button 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:45,svg:'<svg width=\"45\" height=\"40\" viewBox=\"0 0 45 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" fill=\"white\"/>\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" stroke=\"#EDEFF3\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" fill=\"#DDF9E4\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" stroke=\"#C7F4D3\"/>\\n<path d=\"M15 18.5V20.75\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M18 15.5V23.75\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M21 13.25V26.75\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M24 17V22.25\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M27 14.75V24.5\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M30 18.5V20.75\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ax64yg\",\"data-border\":true,\"data-framer-name\":\"Button 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"Voice Cloning\"})}),className:\"framer-uyyvty\",\"data-framer-name\":\"Voice Cloning\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-86wsoy\",\"data-framer-name\":\"Frame 24\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11yne81\",\"data-framer-name\":\"Button 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:45,svg:'<svg width=\"45\" height=\"40\" viewBox=\"0 0 45 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" fill=\"white\"/>\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" stroke=\"#EDEFF3\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" fill=\"#DAF4FC\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" stroke=\"#C3EDF9\"/>\\n<path d=\"M28.75 22.25C28.75 22.6478 28.592 23.0294 28.3107 23.3107C28.0294 23.592 27.6478 23.75 27.25 23.75H18.25L15.25 26.75V14.75C15.25 14.3522 15.408 13.9706 15.6893 13.6893C15.9706 13.408 16.3522 13.25 16.75 13.25H27.25C27.6478 13.25 28.0294 13.408 28.3107 13.6893C28.592 13.9706 28.75 14.3522 28.75 14.75V22.25Z\" stroke=\"#0A5A70\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k0c42n\",\"data-border\":true,\"data-framer-name\":\"Button 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"Natural conversation\"})}),className:\"framer-8y9a5v\",\"data-framer-name\":\"Natural conversation\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uj9s43\",\"data-framer-name\":\"Frame 25\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1gtw1vc\",\"data-framer-name\":\"Button 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:45,svg:'<svg width=\"45\" height=\"40\" viewBox=\"0 0 45 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" fill=\"white\"/>\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" stroke=\"#EDEFF3\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" fill=\"#F5F0FF\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" stroke=\"#E8DDFE\"/>\\n<path d=\"M22 11.6667C21.337 11.6667 20.7011 11.9301 20.2322 12.3989C19.7634 12.8678 19.5 13.5036 19.5 14.1667V20C19.5 20.6631 19.7634 21.2989 20.2322 21.7678C20.7011 22.2366 21.337 22.5 22 22.5C22.663 22.5 23.2989 22.2366 23.7678 21.7678C24.2366 21.2989 24.5 20.6631 24.5 20V14.1667C24.5 13.5036 24.2366 12.8678 23.7678 12.3989C23.2989 11.9301 22.663 11.6667 22 11.6667Z\" stroke=\"#4711BB\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M27.8334 18.3333V20C27.8334 21.5471 27.2188 23.0308 26.1249 24.1248C25.0309 25.2187 23.5472 25.8333 22.0001 25.8333C20.453 25.8333 18.9693 25.2187 17.8753 24.1248C16.7813 23.0308 16.1667 21.5471 16.1667 20V18.3333\" stroke=\"#4711BB\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M22 25.8333V28.3333\" stroke=\"#4711BB\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nmd0tg\",\"data-border\":true,\"data-framer-name\":\"Button 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"Seamless Turn-talking\"})}),className:\"framer-d5bs3x\",\"data-framer-name\":\"Seamless Turn-talking\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ds5dr6\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"Hola\"})}),className:\"framer-ookhrk\",\"data-framer-name\":\"Hola\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mkp7t9\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"\u4F60\u597D\"})}),className:\"framer-1f4tg0c\",\"data-framer-name\":\"\u4F60\u597D\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ik3z9q\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"Bonjour\"})}),className:\"framer-1dzd3w2\",\"data-framer-name\":\"Bonjour\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12j8ad9\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"Hallo\"})}),className:\"framer-1bkydpo\",\"data-framer-name\":\"Hallo\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5t4qo8\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"\uC548\uB155\uD558\uC138\uC694\"})}),className:\"framer-1dofgwv\",\"data-framer-name\":\"\uC548\uB155\uD558\uC138\uC694\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zsckge\",\"data-framer-name\":\"Level 2- Conent\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qy3q2d\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mzpztz\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-29x392\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"In any language & every accent\"})}),className:\"framer-1p620g6\",\"data-framer-name\":\"Integrated with everything.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Enjoy natural, human-like conversations with 100+ natural sounding AI voices, voice cloning, and seamless turn-taking.\"})}),className:\"framer-1hnzh3r\",\"data-framer-name\":\"precision. Design powerful workflows, deploy AI, integrate your data and build detailed reports \u2014 all in one platform.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5044+0+150+176+274),pixelHeight:387,pixelWidth:737,positionX:\"center\",positionY:\"center\",sizes:\"681px\",src:\"https://framerusercontent.com/images/7qjNxpDFsVpaxbhNAfUM5RxUs.svg\",srcSet:\"https://framerusercontent.com/images/7qjNxpDFsVpaxbhNAfUM5RxUs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/7qjNxpDFsVpaxbhNAfUM5RxUs.svg 737w\"},className:\"framer-1ke1w4k\",\"data-border\":true,\"data-framer-name\":\"Level 1 - Card\",style:{scale:.94}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xls72y\",\"data-framer-name\":\"Level 1 - Conent\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Trained on your data\"})}),className:\"framer-1ljdkou\",\"data-framer-name\":\"Integrated with everything.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Connect your data sources, upload files, or add a website, and Phonely will use all of that data to train your AI.\"})}),className:\"framer-1ugv08g\",\"data-framer-name\":\"precision. Design powerful workflows, deploy AI, integrate your data and build detailed reports \u2014 all in one platform.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+5044+0+150+176+363+0+200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nsgil6-container\",nodeId:\"niXnPhi1F\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{g_G74OEHz:\"https://app.phonely.ai/sign-up\",height:\"100%\",id:\"niXnPhi1F\",layoutId:\"niXnPhi1F\",muxhgbKdh:false,Pw3Qxl4NQ:\"Start for free\",style:{height:\"100%\"},variant:\"eYiFB1fQf\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e9odft-container\",isAuthoredByUser:true,nodeId:\"ssKjAX0bx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AnimatedPaths,{height:\"100%\",id:\"ssKjAX0bx\",layoutId:\"ssKjAX0bx\",width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1suq4kt hidden-72rtr7 hidden-b8xbdo hidden-1vmutcu\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jdmxhv hidden-72rtr7\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nuu8gf hidden-72rtr7\",\"data-framer-name\":\"Level 1 - Conent\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Trained on your data\"})}),className:\"framer-11c3mbe\",\"data-framer-name\":\"Integrated with everything.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Connect your data sources, upload files, or add a website, and Phonely will use all of that data to train your AI.\"})}),className:\"framer-ksx38z\",\"data-framer-name\":\"precision. Design powerful workflows, deploy AI, integrate your data and build detailed reports \u2014 all in one platform.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vm69ch-container\",nodeId:\"skAufD9xP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{g_G74OEHz:\"https://app.phonely.ai/sign-up\",height:\"100%\",id:\"skAufD9xP\",layoutId:\"skAufD9xP\",muxhgbKdh:false,Pw3Qxl4NQ:\"Start for free\",style:{height:\"100%\"},variant:\"eYiFB1fQf\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:387,pixelWidth:737,positionX:\"center\",positionY:\"center\",sizes:\"681px\",src:\"https://framerusercontent.com/images/7qjNxpDFsVpaxbhNAfUM5RxUs.svg\",srcSet:\"https://framerusercontent.com/images/7qjNxpDFsVpaxbhNAfUM5RxUs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/7qjNxpDFsVpaxbhNAfUM5RxUs.svg 737w\"},className:\"framer-pvbumk\",\"data-border\":true,\"data-framer-name\":\"Level 1 - Card\",style:{scale:.7}})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qxxn33 hidden-72rtr7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5gpge2\",\"data-framer-name\":\"Level 1 - Conent\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"In any language & every accent\"})}),className:\"framer-19micr2\",\"data-framer-name\":\"Integrated with everything.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Enjoy natural, human-like conversations with 100+ voices, voice cloning, and seamless turn-taking.\"})}),className:\"framer-1m7jzn2\",\"data-framer-name\":\"precision. Design powerful workflows, deploy AI, integrate your data and build detailed reports \u2014 all in one platform.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dbbr8s\",\"data-border\":true,\"data-framer-name\":\"Level 2 - Card\",style:{scale:.7},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:387,intrinsicWidth:741,pixelHeight:387,pixelWidth:737,positionX:\"center\",positionY:\"center\",sizes:\"740px\",src:\"https://framerusercontent.com/images/7ToY0DlEVggAodHswhLXnz6ioBw.png\",srcSet:\"https://framerusercontent.com/images/7ToY0DlEVggAodHswhLXnz6ioBw.png?scale-down-to=512 512w,https://framerusercontent.com/images/7ToY0DlEVggAodHswhLXnz6ioBw.png 737w\"},className:\"framer-1x9f2v1\",\"data-framer-name\":\"_Vector map\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ujjv95\",\"data-framer-name\":\"Lines \",fill:\"rgba(0,0,0,1)\",intrinsicHeight:367,intrinsicWidth:737,svg:'<svg width=\"737\" height=\"367\" viewBox=\"0 0 737 367\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M729.417 294.387C729.417 294.125 729.417 293.864 729.286 293.733C724.056 268.114 715.95 243.149 705.36 219.491C705.36 219.23 705.229 219.099 705.099 218.837C693.855 193.741 679.865 169.822 662.999 147.602C662.869 147.34 662.607 147.209 662.476 146.948C652.278 133.485 641.165 120.676 629.006 108.651C617.108 96.7562 604.557 85.7767 591.483 75.8429C591.221 75.5815 590.829 75.3201 590.567 75.1894C526.896 26.9581 449.626 0.816528 368.435 0.816528C287.243 0.816528 209.974 26.9581 146.302 75.1894C146.04 75.4508 145.648 75.5815 145.387 75.8429C132.312 85.9074 119.761 96.7562 107.863 108.651C95.7041 120.806 84.5909 133.616 74.3929 146.948C74.2622 147.209 74.0007 147.471 73.87 147.602C57.1348 169.822 43.0145 193.611 31.7706 218.837C31.7706 219.099 31.5091 219.23 31.5091 219.491C20.9189 243.28 12.9436 268.114 7.58311 293.733C7.58311 293.994 7.58311 294.125 7.45237 294.387C2.74561 317.653 0.130743 341.572 0 365.753V366.407H1.43818V365.753C1.69966 341.311 4.31453 317.391 9.02129 294.387C9.02129 294.125 9.02129 293.864 9.15203 293.733C14.5125 267.853 22.7493 243.018 33.3395 219.491C33.3395 219.23 33.4703 218.968 33.601 218.837C45.1064 193.48 59.3575 169.56 75.9619 147.602C76.0926 147.34 76.3541 147.209 76.4848 146.948C97.0115 120.022 121.068 96.1026 148.132 75.8429C148.394 75.5815 148.786 75.4508 149.047 75.1894C194.154 41.4667 247.366 17.8086 305.155 7.74405C316.399 5.78343 327.773 4.34564 339.279 3.43069C345.424 2.90786 351.699 2.64644 357.975 2.38502C361.505 2.38502 365.035 2.25432 368.565 2.25432C372.095 2.25432 370.265 2.25432 371.18 2.25432C371.572 2.25432 371.834 2.25432 372.226 2.25432C383.209 2.25432 394.06 2.90785 404.781 3.95352C473.029 10.6196 535.786 36.1077 587.953 75.0586C588.214 75.3201 588.476 75.4508 588.868 75.7122C615.932 95.9719 639.988 120.022 660.515 146.817C660.646 147.079 660.907 147.34 661.038 147.471C677.643 169.43 691.894 193.219 703.399 218.707C703.399 218.968 703.66 219.099 703.66 219.36C714.251 242.888 722.357 267.853 727.848 293.602C727.848 293.864 727.848 293.994 727.979 294.256C732.816 317.391 735.431 341.18 735.562 365.622V366.276H737V365.622C736.739 341.311 734.254 317.522 729.548 294.256L729.417 294.387Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M660.646 294.386C660.646 294.125 660.646 293.864 660.646 293.733C656.985 268.114 650.971 243.28 642.603 219.491C642.603 219.229 642.472 218.968 642.342 218.837C633.582 193.741 622.207 169.822 608.61 147.601C608.61 147.34 608.349 147.079 608.218 146.948C598.804 131.786 588.345 117.408 576.839 103.945C568.21 93.8805 559.189 84.4695 549.776 75.8428C549.514 75.5814 549.253 75.32 548.991 75.1893C507.022 36.6304 457.471 12.3187 404.65 4.08413C391.445 1.99281 377.979 0.947144 364.382 0.947144C344.247 0.947144 324.374 3.29989 305.155 7.74396C259.525 18.462 216.772 41.3359 179.772 75.1893C179.511 75.4507 179.249 75.5814 178.988 75.8428C169.574 84.4695 160.553 93.8805 151.924 103.945C140.418 117.408 129.959 131.786 120.545 146.948C120.415 147.209 120.284 147.471 120.153 147.601C106.425 169.822 95.1811 193.741 86.4213 218.837C86.4213 219.099 86.2906 219.229 86.1598 219.491C77.7923 243.28 71.7781 268.114 68.1173 293.733C68.1173 293.994 68.1173 294.125 68.1173 294.386C65.5024 313.339 64.0642 332.815 64.0642 352.552C64.0642 372.288 64.0642 361.44 64.3257 365.884C64.3257 366.145 64.3257 366.276 64.3257 366.537H65.6331C65.6331 366.276 65.6331 366.145 65.6331 365.884C65.5024 361.44 65.3716 356.996 65.3716 352.552C65.3716 332.815 66.8098 313.339 69.4247 294.386C69.4247 294.125 69.4247 293.994 69.4247 293.733C73.0855 267.853 79.3612 243.018 87.598 219.491C87.598 219.229 87.7288 219.099 87.8595 218.837C96.8808 193.48 108.255 169.56 121.853 147.601C121.983 147.34 122.114 147.079 122.245 146.948C138.849 120.153 158.722 96.1025 181.079 75.8428C181.341 75.5814 181.602 75.32 181.864 75.1893C226.186 35.0619 280.314 9.18174 339.148 3.43059C347.123 2.64635 355.099 2.25422 363.205 2.25422C363.205 2.25422 363.336 2.25422 363.466 2.25422H364.251C366.473 2.25422 368.696 2.25422 370.919 2.25422C371.834 2.25422 372.618 2.25422 373.534 2.25422C438.644 4.60697 498.524 31.4021 546.768 75.0586C547.03 75.32 547.291 75.4507 547.553 75.7121C569.91 96.1025 589.652 120.022 606.387 146.817C606.518 147.079 606.649 147.34 606.78 147.471C620.377 169.43 631.752 193.219 640.773 218.707C640.773 218.968 640.904 219.099 641.034 219.36C649.271 243.018 655.416 267.853 659.208 293.602C659.208 293.864 659.208 293.994 659.208 294.256C661.953 313.208 663.261 332.553 663.261 352.421C663.261 372.288 663.261 361.309 662.999 365.753C662.999 366.014 662.999 366.145 662.999 366.407H664.307C664.307 366.145 664.307 366.014 664.307 365.753C664.437 361.309 664.568 356.865 664.568 352.421C664.568 332.815 663.261 313.339 660.515 294.256L660.646 294.386Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M578.8 294.387C578.8 294.125 578.8 293.864 578.8 293.733C576.447 268.114 572.263 243.28 566.379 219.491C566.379 219.23 566.379 219.099 566.249 218.837C560.104 193.742 551.998 169.822 542.192 147.602C542.192 147.34 541.93 147.21 541.93 146.948C535.001 131.263 527.026 116.362 518.397 102.507C512.382 92.9657 506.107 84.0776 499.57 75.843C499.439 75.5816 499.177 75.3202 499.047 75.1895C463.223 30.2259 419.816 4.86858 373.794 2.38513C373.272 2.38513 372.749 2.38513 372.226 2.38513C370.264 2.38513 368.303 2.38513 366.473 2.38513C364.642 2.38513 364.642 2.38513 363.727 2.38513C363.727 2.38513 363.597 2.38513 363.466 2.38513C361.635 2.38513 359.805 2.38513 357.975 2.64655C312.345 5.39141 269.2 30.7488 233.638 75.4509C233.507 75.7123 233.245 75.843 233.115 76.1044C226.578 84.339 220.302 93.2272 214.288 102.769C205.528 116.624 197.683 131.525 190.754 147.21C190.754 147.471 190.492 147.732 190.492 147.863C180.687 170.083 172.581 194.003 166.436 219.099C166.436 219.36 166.436 219.491 166.305 219.752C160.421 243.541 156.238 268.507 153.884 293.995C153.884 294.256 153.884 294.387 153.884 294.648C152.446 311.117 151.662 327.848 151.662 344.709C151.662 361.571 151.662 358.956 152.054 366.015C152.054 366.276 152.054 366.407 152.054 366.668H153.1C153.1 366.407 153.1 366.276 153.1 366.015C152.838 358.956 152.708 351.898 152.708 344.709C152.708 327.717 153.492 310.987 155.061 294.648C155.061 294.387 155.061 294.125 155.061 293.995C157.414 268.114 161.729 243.28 167.482 219.752C167.482 219.491 167.482 219.36 167.612 219.099C173.888 193.742 182.125 169.822 191.8 147.863C191.8 147.602 192.061 147.34 192.061 147.21C204.09 120.414 218.341 96.3641 234.553 76.1044C234.684 75.843 234.945 75.5816 235.076 75.4509C269.2 32.9708 311.691 6.56779 357.844 3.69221C359.282 3.69221 360.72 3.5615 362.289 3.43079C363.466 3.43079 364.773 3.43079 365.95 3.43079H366.604C367.65 3.43079 368.565 3.43079 369.48 3.43079C370.918 3.43079 372.356 3.43079 373.794 3.5615C420.208 6.17566 462.961 32.5787 497.347 75.3202C497.478 75.5816 497.739 75.7123 497.87 75.9737C514.082 96.2334 528.464 120.284 540.361 147.079C540.361 147.34 540.623 147.602 540.623 147.732C550.298 169.691 558.535 193.48 564.81 218.968C564.81 219.23 564.81 219.36 564.941 219.622C570.825 243.28 575.008 268.114 577.493 293.864C577.493 294.125 577.493 294.256 577.493 294.517C579.061 310.856 579.846 327.586 579.846 344.579C579.846 361.571 579.715 358.826 579.454 365.884C579.454 366.145 579.454 366.276 579.454 366.537H580.5C580.5 366.276 580.5 366.145 580.5 365.884C580.761 358.826 580.892 351.637 580.892 344.579C580.892 327.717 580.107 310.987 578.669 294.517L578.8 294.387Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M476.691 294.387C476.691 294.125 476.691 293.864 476.691 293.733C476.298 282.884 475.645 272.166 474.86 261.579C473.683 247.855 471.984 233.607 469.761 219.491C469.761 219.23 469.761 219.099 469.761 218.837C466.1 194.918 461.132 170.737 455.118 147.602C455.118 147.34 455.118 147.21 454.987 146.948C449.757 126.95 443.743 107.866 437.206 90.4823C435.245 85.3847 433.284 80.4178 431.323 75.843C431.323 75.5816 431.061 75.3202 431.061 75.1895C413.411 33.755 393.668 8.78982 374.188 3.43079C371.704 2.77725 369.089 2.38513 366.605 2.38513H366.343C363.598 2.38513 360.983 2.77726 358.237 3.5615C338.495 9.05124 318.36 33.8857 299.926 75.3202C299.926 75.5816 299.664 75.7123 299.664 75.9737C297.572 80.6792 295.48 85.7768 293.388 90.8744C286.59 108.259 280.314 127.211 274.823 147.079C274.823 147.34 274.823 147.602 274.692 147.732C268.416 170.737 263.187 194.918 259.395 218.968C259.395 219.23 259.395 219.491 259.395 219.622C256.78 236.091 254.819 252.56 253.512 268.376C252.858 276.741 252.335 285.237 252.073 293.864C252.073 294.125 252.073 294.256 252.073 294.517C251.289 317.783 251.943 341.703 253.773 365.884C253.773 366.145 253.773 366.407 253.773 366.537H254.427C254.427 366.276 254.427 366.145 254.427 365.884C252.596 341.703 251.943 317.783 252.727 294.517C252.727 294.256 252.727 293.995 252.727 293.864C252.989 285.237 253.512 276.741 254.165 268.376C255.473 252.429 257.434 235.96 260.049 219.491C260.049 219.23 260.049 219.099 260.049 218.837C263.84 194.787 269.07 170.737 275.346 147.602C275.346 147.34 275.346 147.079 275.607 146.948C280.968 127.211 287.243 108.259 294.042 91.0051C296.134 85.7768 298.226 80.6792 300.449 75.843C300.449 75.5816 300.71 75.3202 300.71 75.1895C320.322 31.1409 341.894 5.91424 362.682 3.30009C363.859 3.16938 365.166 3.03867 366.343 3.03867H366.735C366.735 3.03867 366.997 3.03867 367.128 3.03867C368.174 3.03867 369.089 3.03867 370.004 3.30009C390.531 5.91424 411.58 31.1409 430.407 75.1895C430.407 75.4509 430.538 75.5816 430.669 75.843C432.63 80.5485 434.722 85.5154 436.683 90.7437C443.22 107.997 449.234 127.081 454.464 146.948C454.464 147.21 454.464 147.471 454.595 147.602C460.609 170.606 465.577 194.787 469.238 218.837C469.238 219.099 469.238 219.23 469.238 219.491C471.461 233.738 473.16 247.855 474.337 261.71C475.252 272.166 475.906 282.884 476.167 293.864C476.167 294.125 476.167 294.256 476.167 294.517C476.952 317.783 476.429 341.834 474.599 365.884C474.599 366.145 474.599 366.276 474.599 366.537H475.252C475.252 366.276 475.252 366.015 475.252 365.884C476.952 341.703 477.606 317.783 476.821 294.517L476.691 294.387Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M366.604 2.51575H365.95V366.537H366.604V2.51575Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M591.483 75.7121H145.387C145.648 75.4507 146.04 75.1893 146.302 75.0586H590.568C590.829 75.32 591.221 75.4507 591.483 75.7121Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M662.999 147.601H73.8701C74.0009 147.34 74.2623 147.209 74.3931 146.948H662.476C662.607 147.209 662.869 147.471 662.999 147.601Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M705.361 219.36H31.5098C31.5098 219.099 31.7713 218.968 31.7713 218.707H704.969C704.969 218.968 705.23 219.099 705.23 219.36H705.361Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M729.417 294.387H7.45203C7.45203 294.125 7.45203 293.864 7.58277 293.733H729.155C729.155 293.995 729.155 294.125 729.286 294.387H729.417Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M736.869 365.753H0V366.407H736.869V365.753Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M82.6299 232.17C104.726 159.627 150.355 92.1814 213.242 49.1785C201.606 57.5438 190.624 66.6933 180.164 76.3657C135.45 119.107 101.98 173.482 82.6299 232.17Z\" fill=\"#4F4F4F\"/>\\n<path d=\"M484.796 30.6179C544.546 60.0271 592.529 113.879 622.208 172.959C625.738 180.148 629.268 188.121 632.406 195.441C629.137 188.121 625.345 180.409 621.685 173.22C590.96 114.663 543.762 61.4649 484.796 30.6179Z\" fill=\"#4F4F4F\"/>\\n<path d=\"M247 75.2647H300.902C300.902 75.2647 330.803 2 367 2C403.197 2 440.574 83.9548 455 150\" stroke=\"#4F4F4F\" stroke-width=\"0.707336\" stroke-miterlimit=\"10\"/>\\n<path d=\"M366.343 27.6117C366.866 73.6209 366.997 124.728 366.997 170.998V218.837V219.36H366.474H334.05C334.05 219.23 301.625 218.837 301.625 218.837L334.05 218.576H366.474C366.474 218.445 365.951 218.837 365.951 218.837V170.998C365.82 124.728 365.951 73.7516 366.474 27.6117H366.343Z\" fill=\"#4F4F4F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i97myk\",\"data-framer-name\":\"Frame 22\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1afh6d7\",\"data-framer-name\":\"Button groups\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mbpf1y\",\"data-framer-name\":\"Frame 23\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16mwanq\",\"data-framer-name\":\"Button 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:45,svg:'<svg width=\"45\" height=\"40\" viewBox=\"0 0 45 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" fill=\"white\"/>\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" stroke=\"#EDEFF3\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" fill=\"#DDF9E4\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" stroke=\"#C7F4D3\"/>\\n<path d=\"M15 18.5V20.75\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M18 15.5V23.75\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M21 13.25V26.75\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M24 17V22.25\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M27 14.75V24.5\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M30 18.5V20.75\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bw80nb\",\"data-border\":true,\"data-framer-name\":\"Button 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"Voice Cloning\"})}),className:\"framer-a8tjio\",\"data-framer-name\":\"Voice Cloning\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n2hvcm\",\"data-framer-name\":\"Frame 24\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xm9mtt\",\"data-framer-name\":\"Button 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:45,svg:'<svg width=\"45\" height=\"40\" viewBox=\"0 0 45 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" fill=\"white\"/>\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" stroke=\"#EDEFF3\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" fill=\"#DAF4FC\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" stroke=\"#C3EDF9\"/>\\n<path d=\"M28.75 22.25C28.75 22.6478 28.592 23.0294 28.3107 23.3107C28.0294 23.592 27.6478 23.75 27.25 23.75H18.25L15.25 26.75V14.75C15.25 14.3522 15.408 13.9706 15.6893 13.6893C15.9706 13.408 16.3522 13.25 16.75 13.25H27.25C27.6478 13.25 28.0294 13.408 28.3107 13.6893C28.592 13.9706 28.75 14.3522 28.75 14.75V22.25Z\" stroke=\"#0A5A70\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gajxvy\",\"data-border\":true,\"data-framer-name\":\"Button 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"Natural conversation\"})}),className:\"framer-13ivjfr\",\"data-framer-name\":\"Natural conversation\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-glzwku\",\"data-framer-name\":\"Frame 25\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1h5svqg\",\"data-framer-name\":\"Button 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:45,svg:'<svg width=\"45\" height=\"40\" viewBox=\"0 0 45 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" fill=\"white\"/>\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" stroke=\"#EDEFF3\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" fill=\"#F5F0FF\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" stroke=\"#E8DDFE\"/>\\n<path d=\"M22 11.6667C21.337 11.6667 20.7011 11.9301 20.2322 12.3989C19.7634 12.8678 19.5 13.5036 19.5 14.1667V20C19.5 20.6631 19.7634 21.2989 20.2322 21.7678C20.7011 22.2366 21.337 22.5 22 22.5C22.663 22.5 23.2989 22.2366 23.7678 21.7678C24.2366 21.2989 24.5 20.6631 24.5 20V14.1667C24.5 13.5036 24.2366 12.8678 23.7678 12.3989C23.2989 11.9301 22.663 11.6667 22 11.6667Z\" stroke=\"#4711BB\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M27.8334 18.3333V20C27.8334 21.5471 27.2188 23.0308 26.1249 24.1248C25.0309 25.2187 23.5472 25.8333 22.0001 25.8333C20.453 25.8333 18.9693 25.2187 17.8753 24.1248C16.7813 23.0308 16.1667 21.5471 16.1667 20V18.3333\" stroke=\"#4711BB\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M22 25.8333V28.3333\" stroke=\"#4711BB\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nnlj4f\",\"data-border\":true,\"data-framer-name\":\"Button 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"Seamless Turn-talking\"})}),className:\"framer-190idd2\",\"data-framer-name\":\"Seamless Turn-talking\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wfjupd\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"Hola\"})}),className:\"framer-1haxxu1\",\"data-framer-name\":\"Hola\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13smrun\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"\u4F60\u597D\"})}),className:\"framer-1jzcrj1\",\"data-framer-name\":\"\u4F60\u597D\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ns6gwv\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"Bonjour\"})}),className:\"framer-kc7x3i\",\"data-framer-name\":\"Bonjour\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gqramb\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"Hallo\"})}),className:\"framer-17aezi3\",\"data-framer-name\":\"Hallo\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3oi1k8\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"\uC548\uB155\uD558\uC138\uC694\"})}),className:\"framer-ip50l1\",\"data-framer-name\":\"\uC548\uB155\uD558\uC138\uC694\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13g9ix6 hidden-72rtr7\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13zo5sl hidden-72rtr7\",\"data-framer-name\":\"Level 3 - Conent\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Connected to your software\"})}),className:\"framer-hd7e4r\",\"data-framer-name\":\"Integrated with everything.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"21px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Phonely integrates your tools in real-time schedule appointments, update CRMs, and so much more \"})}),className:\"framer-sjojo2\",\"data-framer-name\":\"precision. Design powerful workflows, deploy AI, integrate your data and build detailed reports \u2014 all in one platform.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p1fmut-container\",nodeId:\"XXd6wHdbh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"XXd6wHdbh\",layoutId:\"XXd6wHdbh\",muxhgbKdh:false,Pw3Qxl4NQ:\"View integrations\",style:{height:\"100%\"},variant:\"OQMKxbynb\",width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qc1l4j hidden-72rtr7\",\"data-border\":true,\"data-framer-name\":\"Level 3 - Card\",style:{scale:.7},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1awj6og-container\",isAuthoredByUser:true,nodeId:\"f8lp00Mm0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(RightSvgWires,{height:\"100%\",id:\"f8lp00Mm0\",layoutId:\"f8lp00Mm0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hrmvx0\",\"data-framer-name\":\"Right_Part\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 218 334\"><path d=\"M 180 188.5 C 173.649 188.5 168.5 188.5 168.5 188.5 L 168.5 139.5 C 168.5 139.5 173.649 139.5 180 139.5 L 206 139.5 C 212.351 139.5 217.5 139.5 217.5 139.5 L 217.5 188.5 C 217.5 188.5 212.351 188.5 206 188.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 180 188.5 C 173.649 188.5 168.5 188.5 168.5 188.5 L 168.5 139.5 C 168.5 139.5 173.649 139.5 180 139.5 L 206 139.5 C 212.351 139.5 217.5 139.5 217.5 139.5 L 217.5 188.5 C 217.5 188.5 212.351 188.5 206 188.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(178 149)\" id=\"ss10167505042_3\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_5\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_7\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><path d=\"M 6.597 19.077 C 6.597 20.8 5.205 22.192 3.483 22.192 C 1.761 22.192 0.369 20.8 0.369 19.077 C 0.369 17.355 1.761 15.963 3.483 15.963 L 6.597 15.963 Z M 8.154 19.077 C 8.154 17.355 9.546 15.963 11.268 15.963 C 12.99 15.963 14.382 17.355 14.382 19.077 L 14.382 26.863 C 14.382 28.585 12.99 29.977 11.268 29.977 C 9.546 29.977 8.154 28.585 8.154 26.863 Z\" fill=\"rgb(224,30,90)\"></path><path d=\"M 11.268 6.572 C 9.546 6.572 8.154 5.181 8.154 3.458 C 8.154 1.736 9.546 0.344 11.268 0.344 C 12.99 0.344 14.382 1.736 14.382 3.458 L 14.382 6.572 Z M 11.268 8.153 C 12.99 8.153 14.382 9.545 14.382 11.267 C 14.382 12.989 12.99 14.381 11.268 14.381 L 3.459 14.381 C 1.737 14.381 0.345 12.989 0.345 11.267 C 0.345 9.545 1.737 8.153 3.459 8.153 Z\" fill=\"rgb(54,197,240)\"></path><path d=\"M 23.747 11.267 C 23.747 9.545 25.139 8.153 26.861 8.153 C 28.584 8.153 29.975 9.545 29.975 11.267 C 29.975 12.989 28.584 14.381 26.861 14.381 L 23.747 14.381 Z M 22.19 11.267 C 22.19 12.989 20.798 14.381 19.076 14.381 C 17.354 14.381 15.962 12.989 15.962 11.267 L 15.962 3.458 C 15.962 1.736 17.354 0.344 19.076 0.344 C 20.798 0.344 22.19 1.736 22.19 3.458 Z\" fill=\"rgb(46,182,125)\"></path><path d=\"M 19.076 23.749 C 20.798 23.749 22.19 25.141 22.19 26.863 C 22.19 28.585 20.798 29.977 19.076 29.977 C 17.354 29.977 15.962 28.585 15.962 26.863 L 15.962 23.749 Z M 19.076 22.192 C 17.354 22.192 15.962 20.8 15.962 19.077 C 15.962 17.355 17.354 15.963 19.076 15.963 L 26.885 15.963 C 28.607 15.963 29.999 17.355 29.999 19.077 C 29.999 20.8 28.607 22.192 26.885 22.192 Z\" fill=\"rgb(236,178,46)\"></path></g></g></g><path d=\"M 111 226.5 C 104.649 226.5 99.5 226.5 99.5 226.5 L 99.5 177.5 C 99.5 177.5 104.649 177.5 111 177.5 L 137 177.5 C 143.351 177.5 148.5 177.5 148.5 177.5 L 148.5 226.5 C 148.5 226.5 143.351 226.5 137 226.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 111 226.5 C 104.649 226.5 99.5 226.5 99.5 226.5 L 99.5 177.5 C 99.5 177.5 104.649 177.5 111 177.5 L 137 177.5 C 143.351 177.5 148.5 177.5 148.5 177.5 L 148.5 226.5 C 148.5 226.5 143.351 226.5 137 226.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(109 188.5)\" id=\"ss10167505042_15\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_17\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_19\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_21\"><path d=\"M 30 14.175 C 30.002 13.948 29.881 13.737 29.681 13.619 L 29.677 13.619 L 29.665 13.612 L 19.269 7.658 C 19.224 7.629 19.178 7.602 19.13 7.578 C 18.728 7.378 18.252 7.378 17.85 7.578 C 17.802 7.602 17.755 7.629 17.711 7.658 L 7.315 13.612 L 7.303 13.619 C 6.985 13.81 6.888 14.214 7.085 14.521 C 7.143 14.612 7.224 14.687 7.319 14.741 L 17.714 20.695 C 17.759 20.724 17.806 20.75 17.854 20.775 C 18.255 20.975 18.732 20.975 19.133 20.775 C 19.181 20.75 19.228 20.724 19.273 20.695 L 29.668 14.741 C 29.876 14.624 30.003 14.408 30 14.175 Z\" fill=\"rgb(10,39,103)\"></path><path d=\"M 8.527 10.2 L 15.349 10.2 L 15.349 16.25 L 8.527 16.25 Z M 28.604 4.05 L 28.604 1.282 C 28.621 0.591 28.055 0.017 27.34 0 L 9.637 0 C 8.922 0.017 8.356 0.591 8.372 1.282 L 8.372 4.05 L 18.837 6.75 Z\" fill=\"rgb(3,100,184)\"></path><path d=\"M 8.372 4.05 L 15.349 4.05 L 15.349 10.125 L 8.372 10.125 Z\" fill=\"rgb(0,120,212)\"></path><path d=\"M 22.326 4.05 L 15.349 4.05 L 15.349 10.125 L 22.326 16.2 L 28.605 16.2 L 28.605 10.125 Z\" fill=\"rgb(40,168,234)\"></path><path d=\"M 15.349 10.125 L 22.326 10.125 L 22.326 16.2 L 15.349 16.2 Z\" fill=\"rgb(0,120,212)\"></path><path d=\"M 15.349 16.2 L 22.326 16.2 L 22.326 22.275 L 15.349 22.275 Z\" fill=\"rgb(3,100,184)\"></path><path d=\"M 8.527 16.25 L 15.349 16.25 L 15.349 21.75 L 8.527 21.75 Z\" fill=\"rgb(20,68,125)\"></path><path d=\"M 22.326 16.2 L 28.605 16.2 L 28.605 22.275 L 22.326 22.275 Z\" fill=\"rgb(0,120,212)\"></path><g><defs><linearGradient id=\"idss10167505042_30g1977229117\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(53,184,241)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(40,168,234)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.68 14.703 L 29.667 14.71 L 19.272 20.367 C 19.226 20.394 19.18 20.419 19.132 20.442 C 18.956 20.524 18.764 20.569 18.568 20.577 L 18 20.256 C 17.952 20.233 17.906 20.207 17.861 20.178 L 7.326 14.361 L 7.321 14.361 L 6.977 14.175 L 6.977 25.626 C 6.982 26.39 7.626 27.005 8.416 27 L 28.583 27 C 28.595 27 28.605 26.994 28.618 26.994 C 28.784 26.984 28.949 26.951 29.106 26.896 C 29.174 26.868 29.239 26.835 29.302 26.797 C 29.349 26.772 29.429 26.716 29.429 26.716 C 29.786 26.46 29.998 26.056 30 25.626 L 30 14.175 C 30 14.394 29.877 14.596 29.68 14.703 Z\" fill=\"url(#idss10167505042_30g1977229117)\"></path></g><path d=\"M 29.442 14.129 L 29.442 14.831 L 18.572 22.072 L 7.318 14.366 C 7.318 14.362 7.315 14.359 7.311 14.359 L 6.279 13.758 L 6.279 13.252 L 6.704 13.245 L 7.604 13.745 L 7.625 13.751 L 7.702 13.799 C 7.702 13.799 18.279 19.637 18.307 19.651 L 18.711 19.88 C 18.746 19.867 18.781 19.853 18.823 19.84 C 18.844 19.826 29.323 14.123 29.323 14.123 Z\" fill=\"rgb(10,39,103)\" opacity=\"0.5\"></path><path d=\"M 29.681 14.703 L 29.667 14.711 L 19.272 20.367 C 19.227 20.394 19.181 20.42 19.133 20.443 C 18.729 20.634 18.257 20.634 17.853 20.443 C 17.805 20.42 17.759 20.395 17.714 20.367 L 7.318 14.711 L 7.306 14.703 C 7.105 14.598 6.979 14.396 6.977 14.175 L 6.977 25.626 C 6.982 26.389 7.626 27.005 8.416 27 L 28.562 27 C 29.351 27.005 29.995 26.389 30 25.626 L 30 14.175 C 30 14.394 29.878 14.596 29.681 14.703 Z\" fill=\"rgb(20,144,223)\"></path><path d=\"M 19.423 20.284 L 19.267 20.369 C 19.222 20.396 19.176 20.422 19.128 20.445 C 18.957 20.526 18.77 20.574 18.58 20.585 L 22.535 25.11 L 29.434 26.719 C 29.623 26.581 29.773 26.399 29.871 26.19 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.1\"></path><path d=\"M 20.128 19.9 L 19.267 20.368 C 19.222 20.396 19.176 20.421 19.128 20.444 C 18.957 20.526 18.77 20.574 18.58 20.585 L 20.433 25.528 L 29.436 26.716 C 29.791 26.459 30 26.055 30 25.626 L 30 25.478 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.05\"></path><path d=\"M 8.435 27 L 28.56 27 C 28.869 27.001 29.171 26.907 29.421 26.73 L 18 20.257 C 17.952 20.234 17.906 20.208 17.861 20.18 L 7.326 14.363 L 7.321 14.363 L 6.977 14.175 L 6.977 25.586 C 6.976 26.366 7.629 26.999 8.435 27 Z\" fill=\"rgb(40,168,234)\"></path><path d=\"M 16.744 6.638 L 16.744 21.035 C 16.743 21.54 16.425 21.994 15.942 22.183 C 15.792 22.245 15.63 22.277 15.467 22.277 L 6.977 22.277 L 6.977 6.075 L 8.372 6.075 L 8.372 5.4 L 15.467 5.4 C 16.172 5.403 16.742 5.956 16.744 6.638 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.1\"></path><path d=\"M 16.046 7.313 L 16.046 21.71 C 16.048 21.873 16.012 22.035 15.942 22.183 C 15.748 22.645 15.285 22.948 14.77 22.95 L 6.977 22.95 L 6.977 6.075 L 14.77 6.075 C 14.972 6.073 15.171 6.122 15.349 6.217 C 15.776 6.425 16.046 6.849 16.046 7.313 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 16.046 7.313 L 16.046 20.36 C 16.043 21.042 15.474 21.594 14.77 21.6 L 6.977 21.6 L 6.977 6.075 L 14.77 6.075 C 14.972 6.073 15.171 6.122 15.349 6.217 C 15.776 6.425 16.046 6.849 16.046 7.313 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 15.349 7.312 L 15.349 20.36 C 15.348 21.043 14.777 21.597 14.072 21.6 L 6.977 21.6 L 6.977 6.075 L 14.072 6.075 C 14.777 6.076 15.349 6.63 15.349 7.312 C 15.349 7.313 15.349 7.312 15.349 7.312 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><g><defs><linearGradient id=\"idss10167505042_40g828522074\" x1=\"0.2194443772667855\" x2=\"0.7805556227332144\" y1=\"5.551115123125783e-17\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(23,132,217)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(10,99,201)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 1.279 6.075 L 14.07 6.075 C 14.776 6.075 15.349 6.629 15.349 7.312 L 15.349 19.688 C 15.349 20.371 14.776 20.925 14.07 20.925 L 1.279 20.925 C 0.573 20.925 0 20.371 0 19.688 L 0 7.312 C 0 6.629 0.573 6.075 1.279 6.075 Z\" fill=\"url(#idss10167505042_40g828522074)\"></path></g><path d=\"M 3.997 11.265 C 4.312 10.615 4.821 10.071 5.458 9.703 C 6.163 9.313 6.966 9.118 7.779 9.14 C 8.532 9.125 9.275 9.309 9.927 9.674 C 10.54 10.028 11.034 10.546 11.348 11.166 C 11.691 11.849 11.861 12.601 11.846 13.36 C 11.863 14.153 11.687 14.939 11.334 15.655 C 11.012 16.297 10.502 16.833 9.869 17.199 C 9.191 17.575 8.421 17.764 7.64 17.747 C 6.871 17.765 6.111 17.578 5.445 17.207 C 4.826 16.852 4.326 16.334 4.005 15.712 C 3.66 15.039 3.487 14.296 3.501 13.545 C 3.486 12.758 3.656 11.979 3.997 11.265 Z M 5.554 14.93 C 5.722 15.341 6.007 15.697 6.376 15.957 C 6.752 16.211 7.201 16.342 7.66 16.331 C 8.148 16.35 8.629 16.214 9.03 15.945 C 9.394 15.685 9.672 15.328 9.828 14.918 C 10.003 14.459 10.089 13.973 10.083 13.485 C 10.088 12.991 10.007 12.501 9.843 12.033 C 9.698 11.612 9.429 11.24 9.07 10.963 C 8.678 10.681 8.199 10.538 7.711 10.558 C 7.243 10.546 6.783 10.678 6.398 10.935 C 6.023 11.197 5.732 11.556 5.56 11.971 C 5.179 12.923 5.177 13.978 5.555 14.931 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 22.326 4.05 L 28.605 4.05 L 28.605 10.125 L 22.326 10.125 Z\" fill=\"rgb(80,217,255)\"></path></g></g></g></g><path d=\"M 180 333.5 C 173.649 333.5 168.5 333.5 168.5 333.5 L 168.5 284.5 C 168.5 284.5 173.649 284.5 180 284.5 L 206 284.5 C 212.351 284.5 217.5 284.5 217.5 284.5 L 217.5 333.5 C 217.5 333.5 212.351 333.5 206 333.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 180 333.5 C 173.649 333.5 168.5 333.5 168.5 333.5 L 168.5 284.5 C 168.5 284.5 173.649 284.5 180 284.5 L 206 284.5 C 212.351 284.5 217.5 284.5 217.5 284.5 L 217.5 333.5 C 217.5 333.5 212.351 333.5 206 333.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(178 295.5)\" id=\"ss10167505042_45\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_47\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_49\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_51\"><path d=\"M 30 14.175 C 30.002 13.948 29.881 13.737 29.681 13.619 L 29.677 13.619 L 29.665 13.612 L 19.269 7.658 C 19.224 7.629 19.178 7.602 19.13 7.578 C 18.728 7.378 18.252 7.378 17.85 7.578 C 17.802 7.602 17.755 7.629 17.711 7.658 L 7.315 13.612 L 7.303 13.619 C 6.985 13.81 6.888 14.214 7.085 14.521 C 7.143 14.612 7.224 14.687 7.319 14.741 L 17.714 20.695 C 17.759 20.724 17.806 20.75 17.854 20.775 C 18.255 20.975 18.732 20.975 19.133 20.775 C 19.181 20.75 19.228 20.724 19.273 20.695 L 29.668 14.741 C 29.876 14.624 30.003 14.408 30 14.175 Z\" fill=\"rgb(10,39,103)\"></path><path d=\"M 8.527 10.2 L 15.349 10.2 L 15.349 16.25 L 8.527 16.25 Z M 28.604 4.05 L 28.604 1.282 C 28.621 0.591 28.055 0.017 27.34 0 L 9.637 0 C 8.922 0.017 8.356 0.591 8.372 1.282 L 8.372 4.05 L 18.837 6.75 Z\" fill=\"rgb(3,100,184)\"></path><path d=\"M 8.372 4.05 L 15.349 4.05 L 15.349 10.125 L 8.372 10.125 Z\" fill=\"rgb(0,120,212)\"></path><path d=\"M 22.326 4.05 L 15.349 4.05 L 15.349 10.125 L 22.326 16.2 L 28.605 16.2 L 28.605 10.125 Z\" fill=\"rgb(40,168,234)\"></path><path d=\"M 15.349 10.125 L 22.326 10.125 L 22.326 16.2 L 15.349 16.2 Z\" fill=\"rgb(0,120,212)\"></path><path d=\"M 15.349 16.2 L 22.326 16.2 L 22.326 22.275 L 15.349 22.275 Z\" fill=\"rgb(3,100,184)\"></path><path d=\"M 8.527 16.25 L 15.349 16.25 L 15.349 21.75 L 8.527 21.75 Z\" fill=\"rgb(20,68,125)\"></path><path d=\"M 22.326 16.2 L 28.605 16.2 L 28.605 22.275 L 22.326 22.275 Z\" fill=\"rgb(0,120,212)\"></path><g><defs><linearGradient id=\"idss10167505042_60g1977229117\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(53,184,241)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(40,168,234)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.68 14.703 L 29.667 14.71 L 19.272 20.367 C 19.226 20.394 19.18 20.419 19.132 20.442 C 18.956 20.524 18.764 20.569 18.568 20.577 L 18 20.256 C 17.952 20.233 17.906 20.207 17.861 20.178 L 7.326 14.361 L 7.321 14.361 L 6.977 14.175 L 6.977 25.626 C 6.982 26.39 7.626 27.005 8.416 27 L 28.583 27 C 28.595 27 28.605 26.994 28.618 26.994 C 28.784 26.984 28.949 26.951 29.106 26.896 C 29.174 26.868 29.239 26.835 29.302 26.797 C 29.349 26.772 29.429 26.716 29.429 26.716 C 29.786 26.46 29.998 26.056 30 25.626 L 30 14.175 C 30 14.394 29.877 14.596 29.68 14.703 Z\" fill=\"url(#idss10167505042_60g1977229117)\"></path></g><path d=\"M 29.442 14.129 L 29.442 14.831 L 18.572 22.072 L 7.318 14.366 C 7.318 14.362 7.315 14.359 7.311 14.359 L 6.279 13.758 L 6.279 13.252 L 6.704 13.245 L 7.604 13.745 L 7.625 13.751 L 7.702 13.799 C 7.702 13.799 18.279 19.637 18.307 19.651 L 18.711 19.88 C 18.746 19.867 18.781 19.853 18.823 19.84 C 18.844 19.826 29.323 14.123 29.323 14.123 Z\" fill=\"rgb(10,39,103)\" opacity=\"0.5\"></path><path d=\"M 29.681 14.703 L 29.667 14.711 L 19.272 20.367 C 19.227 20.394 19.181 20.42 19.133 20.443 C 18.729 20.634 18.257 20.634 17.853 20.443 C 17.805 20.42 17.759 20.395 17.714 20.367 L 7.318 14.711 L 7.306 14.703 C 7.105 14.598 6.979 14.396 6.977 14.175 L 6.977 25.626 C 6.982 26.389 7.626 27.005 8.416 27 L 28.562 27 C 29.351 27.005 29.995 26.389 30 25.626 L 30 14.175 C 30 14.394 29.878 14.596 29.681 14.703 Z\" fill=\"rgb(20,144,223)\"></path><path d=\"M 19.423 20.284 L 19.267 20.369 C 19.222 20.396 19.176 20.422 19.128 20.445 C 18.957 20.526 18.77 20.574 18.58 20.585 L 22.535 25.11 L 29.434 26.719 C 29.623 26.581 29.773 26.399 29.871 26.19 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.1\"></path><path d=\"M 20.128 19.9 L 19.267 20.368 C 19.222 20.396 19.176 20.421 19.128 20.444 C 18.957 20.526 18.77 20.574 18.58 20.585 L 20.433 25.528 L 29.436 26.716 C 29.791 26.459 30 26.055 30 25.626 L 30 25.478 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.05\"></path><path d=\"M 8.435 27 L 28.56 27 C 28.869 27.001 29.171 26.907 29.421 26.73 L 18 20.257 C 17.952 20.234 17.906 20.208 17.861 20.18 L 7.326 14.363 L 7.321 14.363 L 6.977 14.175 L 6.977 25.586 C 6.976 26.366 7.629 26.999 8.435 27 Z\" fill=\"rgb(40,168,234)\"></path><path d=\"M 16.744 6.638 L 16.744 21.035 C 16.743 21.54 16.425 21.994 15.942 22.183 C 15.792 22.245 15.63 22.277 15.467 22.277 L 6.977 22.277 L 6.977 6.075 L 8.372 6.075 L 8.372 5.4 L 15.467 5.4 C 16.172 5.403 16.742 5.956 16.744 6.638 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.1\"></path><path d=\"M 16.046 7.313 L 16.046 21.71 C 16.048 21.873 16.012 22.035 15.942 22.183 C 15.748 22.645 15.285 22.948 14.77 22.95 L 6.977 22.95 L 6.977 6.075 L 14.77 6.075 C 14.972 6.073 15.171 6.122 15.349 6.217 C 15.776 6.425 16.046 6.849 16.046 7.313 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 16.046 7.313 L 16.046 20.36 C 16.043 21.042 15.474 21.594 14.77 21.6 L 6.977 21.6 L 6.977 6.075 L 14.77 6.075 C 14.972 6.073 15.171 6.122 15.349 6.217 C 15.776 6.425 16.046 6.849 16.046 7.313 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 15.349 7.312 L 15.349 20.36 C 15.348 21.043 14.777 21.597 14.072 21.6 L 6.977 21.6 L 6.977 6.075 L 14.072 6.075 C 14.777 6.076 15.349 6.63 15.349 7.312 C 15.349 7.313 15.349 7.312 15.349 7.312 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><g><defs><linearGradient id=\"idss10167505042_70g828522074\" x1=\"0.21944437726678606\" x2=\"0.780555622733214\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(23,132,217)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(10,99,201)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 1.279 6.075 L 14.07 6.075 C 14.776 6.075 15.349 6.629 15.349 7.312 L 15.349 19.688 C 15.349 20.371 14.776 20.925 14.07 20.925 L 1.279 20.925 C 0.573 20.925 0 20.371 0 19.688 L 0 7.312 C 0 6.629 0.573 6.075 1.279 6.075 Z\" fill=\"url(#idss10167505042_70g828522074)\"></path></g><path d=\"M 3.997 11.265 C 4.312 10.615 4.821 10.071 5.458 9.703 C 6.163 9.313 6.966 9.118 7.779 9.14 C 8.532 9.125 9.275 9.309 9.927 9.674 C 10.54 10.028 11.034 10.546 11.348 11.166 C 11.691 11.849 11.861 12.601 11.846 13.36 C 11.863 14.153 11.687 14.939 11.334 15.655 C 11.012 16.297 10.502 16.833 9.869 17.199 C 9.191 17.575 8.421 17.764 7.64 17.747 C 6.871 17.765 6.111 17.578 5.445 17.207 C 4.826 16.852 4.326 16.334 4.005 15.712 C 3.66 15.039 3.487 14.296 3.501 13.545 C 3.486 12.758 3.656 11.979 3.997 11.265 Z M 5.554 14.93 C 5.722 15.341 6.007 15.697 6.376 15.957 C 6.752 16.211 7.201 16.342 7.66 16.331 C 8.148 16.35 8.629 16.214 9.03 15.945 C 9.394 15.685 9.672 15.328 9.828 14.918 C 10.003 14.459 10.089 13.973 10.083 13.485 C 10.088 12.991 10.007 12.501 9.843 12.033 C 9.698 11.612 9.429 11.24 9.07 10.963 C 8.678 10.681 8.199 10.538 7.711 10.558 C 7.243 10.546 6.783 10.678 6.398 10.935 C 6.023 11.197 5.732 11.556 5.56 11.971 C 5.179 12.923 5.177 13.978 5.555 14.931 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 22.326 4.05 L 28.605 4.05 L 28.605 10.125 L 22.326 10.125 Z\" fill=\"rgb(80,217,255)\"></path></g></g></g></g><path d=\"M 111 153.5 C 104.649 153.5 99.5 153.5 99.5 153.5 L 99.5 104.5 C 99.5 104.5 104.649 104.5 111 104.5 L 137 104.5 C 143.351 104.5 148.5 104.5 148.5 104.5 L 148.5 153.5 C 148.5 153.5 143.351 153.5 137 153.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 111 153.5 C 104.649 153.5 99.5 153.5 99.5 153.5 L 99.5 104.5 C 99.5 104.5 104.649 104.5 111 104.5 L 137 104.5 C 143.351 104.5 148.5 104.5 148.5 104.5 L 148.5 153.5 C 148.5 153.5 143.351 153.5 137 153.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(109 119)\" id=\"ss10167505042_75\"><path d=\"M 0 20 L 0 0 L 30 0 L 30 20 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_77\"><path d=\"M 0 20 L 0 0 L 30 0 L 30 20 Z\" fill=\"transparent\"></path><path d=\"M 21.325 2.223 L 15.811 2.223 C 10.85 2.223 10.469 4.392 10.469 7.298 L 10.469 12.703 C 10.469 15.725 10.85 17.778 15.83 17.778 L 21.325 17.778 C 26.285 17.778 26.667 15.609 26.667 12.722 L 26.667 7.298 C 26.667 4.392 26.285 2.223 21.325 2.223 Z M 3.333 6.116 C 3.333 3.559 4.326 2.223 6.005 2.223 C 7.683 2.223 8.676 3.559 8.676 6.116 L 8.676 13.884 C 8.676 16.442 7.683 17.778 6.005 17.778 C 4.326 17.778 3.333 16.442 3.333 13.884 Z\" fill=\"rgb(26,26,25)\"></path></g></g><path d=\"M 180 261.5 C 173.649 261.5 168.5 261.5 168.5 261.5 L 168.5 212.5 C 168.5 212.5 173.649 212.5 180 212.5 L 206 212.5 C 212.351 212.5 217.5 212.5 217.5 212.5 L 217.5 261.5 C 217.5 261.5 212.351 261.5 206 261.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 180 261.5 C 173.649 261.5 168.5 261.5 168.5 261.5 L 168.5 212.5 C 168.5 212.5 173.649 212.5 180 212.5 L 206 212.5 C 212.351 212.5 217.5 212.5 217.5 212.5 L 217.5 261.5 C 217.5 261.5 212.351 261.5 206 261.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(178 222)\" id=\"ss10167505042_82\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_84\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g transform=\"translate(1.071 4.554)\" id=\"ss10167505042_86\"><path d=\"M 0 20.893 L 5.521 20.893 L 5.521 0.001 L 0 0.001 Z\" fill=\"rgb(229,92,255)\"></path><path d=\"M 11.168 0 L 0 20.892 L 5.521 20.892 L 16.689 0 Z\" fill=\"rgb(36,35,92)\"></path><path d=\"M 11.168 20.892 L 16.689 20.892 L 16.689 0 L 11.168 0 Z\" fill=\"rgb(229,92,255)\"></path><path d=\"M 22.337 0 L 11.169 20.892 L 16.69 20.892 L 27.858 0 Z\" fill=\"rgb(36,35,92)\"></path><path d=\"M 22.306 20.892 L 27.826 20.892 L 27.826 0 L 22.306 0 Z\" fill=\"rgb(229,92,255)\"></path></g></g></g><path d=\"M 111 301.5 C 104.649 301.5 99.5 301.5 99.5 301.5 L 99.5 252.5 C 99.5 252.5 104.649 252.5 111 252.5 L 137 252.5 C 143.351 252.5 148.5 252.5 148.5 252.5 L 148.5 301.5 C 148.5 301.5 143.351 301.5 137 301.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 111 301.5 C 104.649 301.5 99.5 301.5 99.5 301.5 L 99.5 252.5 C 99.5 252.5 104.649 252.5 111 252.5 L 137 252.5 C 143.351 252.5 148.5 252.5 148.5 252.5 L 148.5 301.5 C 148.5 301.5 143.351 301.5 137 301.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(109 262)\" id=\"ss10167505042_94\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_96\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><path d=\"M 18.428 19.728 L 2.409 19.728 C 1.673 19.728 1.071 19.126 1.071 18.39 C 1.071 17.654 1.673 17.052 2.409 17.052 L 18.428 17.052 C 19.163 17.052 19.765 17.654 19.765 18.39 C 19.765 19.126 19.163 19.728 18.428 19.728 Z\" fill=\"rgb(153,207,172)\"></path><path d=\"M 15.016 27.921 C 13.712 27.921 12.408 27.72 11.17 27.352 C 10.468 27.118 10.067 26.382 10.301 25.68 C 10.535 24.978 11.271 24.577 11.973 24.811 C 12.943 25.112 13.979 25.279 15.016 25.279 C 19.564 25.279 23.51 22.369 24.815 18.022 C 25.015 17.32 25.784 16.918 26.487 17.119 C 27.189 17.32 27.59 18.089 27.39 18.791 C 25.684 24.242 20.735 27.921 15.016 27.921 Z\" fill=\"rgb(73,184,129)\"></path><path d=\"M 27.591 12.939 L 11.572 12.939 C 10.837 12.939 10.235 12.337 10.235 11.601 C 10.235 10.865 10.837 10.263 11.572 10.263 L 27.591 10.263 C 28.327 10.263 28.929 10.865 28.929 11.601 C 28.929 12.337 28.327 12.939 27.591 12.939 Z\" fill=\"rgb(153,207,172)\"></path><path d=\"M 3.914 12.939 C 3.78 12.939 3.646 12.906 3.513 12.872 C 2.81 12.671 2.409 11.902 2.61 11.2 C 4.315 5.749 9.265 2.07 15.017 2.07 C 16.321 2.07 17.625 2.271 18.863 2.639 C 19.565 2.873 19.966 3.609 19.732 4.311 C 19.498 5.013 18.762 5.415 18.06 5.18 C 17.09 4.879 16.053 4.712 15.017 4.712 C 10.469 4.712 6.522 7.622 5.218 11.969 C 5.018 12.571 4.483 12.939 3.914 12.939 Z\" fill=\"rgb(73,184,129)\"></path><path d=\"M 22.942 7.856 C 23.681 7.856 24.28 7.257 24.28 6.518 C 24.28 5.779 23.681 5.18 22.942 5.18 C 22.203 5.18 21.604 5.779 21.604 6.518 C 21.604 7.257 22.203 7.856 22.942 7.856 Z\" fill=\"rgb(153,207,172)\"></path><path d=\"M 7.057 24.844 C 7.796 24.844 8.395 24.245 8.395 23.506 C 8.395 22.767 7.796 22.168 7.057 22.168 C 6.318 22.168 5.719 22.767 5.719 23.506 C 5.719 24.245 6.318 24.844 7.057 24.844 Z\" fill=\"rgb(153,207,172)\"></path></g></g><path d=\"M 180 120.5 C 173.649 120.5 168.5 120.5 168.5 120.5 L 168.5 71.5 C 168.5 71.5 173.649 71.5 180 71.5 L 206 71.5 C 212.351 71.5 217.5 71.5 217.5 71.5 L 217.5 120.5 C 217.5 120.5 212.351 120.5 206 120.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 180 120.5 C 173.649 120.5 168.5 120.5 168.5 120.5 L 168.5 71.5 C 168.5 71.5 173.649 71.5 180 71.5 L 206 71.5 C 212.351 71.5 217.5 71.5 217.5 71.5 L 217.5 120.5 C 217.5 120.5 212.351 120.5 206 120.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(178 81)\" id=\"ss10167505042_106\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_108\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_110\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><path d=\"M 13.348 0.911 C 17.927 0.911 24.848 2.321 28.067 5.555 C 28.883 6.375 29.951 7.981 29.951 10.333 C 29.951 14.515 26.595 20.933 22.89 24.652 C 20.974 26.575 17.927 29.089 13.828 29.089 C 9.822 29.089 6.761 26.357 5.876 25.467 C 2.482 22.059 0.051 16.887 0.051 12.064 C 0.051 9.021 0.915 6.364 3.119 4.147 C 5.161 2.1 8.678 0.911 13.348 0.911 Z M 19.016 17.588 C 20.562 16.035 20.978 14.122 20.978 13.069 C 20.985 12.544 20.887 12.022 20.689 11.535 C 20.492 11.048 20.199 10.605 19.828 10.233 C 18.37 8.769 16.755 8.355 15.001 8.355 C 12.776 8.355 11.281 9.062 10.285 10.062 C 9.504 10.846 8.829 12.052 8.829 13.762 C 8.829 15.472 9.738 17.127 10.729 18.121 C 11.644 19.04 13.082 19.721 14.529 19.721 C 15.976 19.721 17.47 19.141 19.016 17.588 Z\" fill=\"rgb(89,82,255)\"></path></g></g></g><path d=\"M 179 49.5 C 172.649 49.5 167.5 49.5 167.5 49.5 L 167.5 0.5 C 167.5 0.5 172.649 0.5 179 0.5 L 205 0.5 C 211.351 0.5 216.5 0.5 216.5 0.5 L 216.5 49.5 C 216.5 49.5 211.351 49.5 205 49.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 179 49.5 C 172.649 49.5 167.5 49.5 167.5 49.5 L 167.5 0.5 C 167.5 0.5 172.649 0.5 179 0.5 L 205 0.5 C 211.351 0.5 216.5 0.5 216.5 0.5 L 216.5 49.5 C 216.5 49.5 211.351 49.5 205 49.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(177 13.495)\" id=\"ss10167505042_115\"><path d=\"M 0 23.005 L 0 0.005 L 30 0.005 L 30 23.005 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss10167505042_117\"><path d=\"M 0 23.005 L 0 0.005 L 30 0.005 L 30 23.005 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss10167505042_119\"><path d=\"M 0 23.005 L 0 0.005 L 30 0.005 L 30 23.005 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss10167505042_121\"><path d=\"M 2.045 23.005 L 6.818 23.005 L 6.818 11.157 L 0 5.93 L 0 20.914 C 0 22.071 0.917 23.005 2.045 23.005 Z\" fill=\"rgb(66,133,244)\"></path><path d=\"M 23.182 23.005 L 27.954 23.005 C 29.086 23.005 30 22.068 30 20.914 L 30 5.93 L 23.182 11.157\" fill=\"rgb(52,168,83)\"></path><path d=\"M 23.182 2.097 L 23.182 11.157 L 30 5.93 L 30 3.142 C 30 0.557 27.112 -0.918 25.091 0.633\" fill=\"rgb(251,188,4)\"></path><path d=\"M 6.818 11.157 L 6.818 2.097 L 15 8.369 L 23.182 2.097 L 23.182 11.157 L 15 17.43\" fill=\"rgb(234,67,53)\"></path><path d=\"M 0 3.142 L 0 5.93 L 6.818 11.157 L 6.818 2.097 L 4.909 0.633 C 2.884 -0.918 0 0.557 0 3.142 Z\" fill=\"rgb(197,34,31)\"></path></g></g></g></g><path d=\"M 112 81.5 C 105.649 81.5 100.5 81.5 100.5 81.5 L 100.5 32.5 C 100.5 32.5 105.649 32.5 112 32.5 L 138 32.5 C 144.351 32.5 149.5 32.5 149.5 32.5 L 149.5 81.5 C 149.5 81.5 144.351 81.5 138 81.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 112 81.5 C 105.649 81.5 100.5 81.5 100.5 81.5 L 100.5 32.5 C 100.5 32.5 105.649 32.5 112 32.5 L 138 32.5 C 144.351 32.5 149.5 32.5 149.5 32.5 L 149.5 81.5 C 149.5 81.5 144.351 81.5 138 81.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(110 42)\" id=\"ss10167505042_129\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_131\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_133\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><path d=\"M 18.751 15.007 C 18.751 16.089 18.555 17.161 18.174 18.174 C 17.162 18.555 16.089 18.75 15.007 18.75 L 14.994 18.75 C 13.912 18.751 12.839 18.555 11.826 18.174 C 11.444 17.162 11.249 16.089 11.249 15.007 L 11.249 14.992 C 11.249 13.878 11.453 12.81 11.824 11.825 C 12.837 11.443 13.91 11.248 14.992 11.249 L 15.004 11.249 C 16.12 11.249 17.187 11.453 18.172 11.825 C 18.554 12.838 18.749 13.911 18.748 14.992 L 18.748 15.007 Z M 29.792 12.5 L 21.037 12.5 L 27.227 6.309 C 26.254 4.942 25.059 3.747 23.691 2.774 L 17.5 8.965 L 17.5 0.209 C 16.676 0.07 15.843 0.001 15.008 0 L 14.992 0 C 14.143 0 13.311 0.073 12.5 0.209 L 12.5 8.965 L 6.307 2.773 C 5.625 3.259 4.985 3.8 4.394 4.393 L 4.391 4.396 C 3.799 4.987 3.258 5.628 2.773 6.309 L 8.966 12.5 L 0.208 12.5 C 0.208 12.5 0 14.145 0 14.995 L 0 15.005 C 0 15.855 0.072 16.689 0.209 17.5 L 8.966 17.5 L 2.772 23.69 C 3.747 25.057 4.942 26.252 6.309 27.226 L 12.501 21.035 L 12.501 29.792 C 13.31 29.927 14.141 29.999 14.989 30 L 15.011 30 C 15.844 29.999 16.677 29.93 17.499 29.792 L 17.499 21.035 L 23.692 27.227 C 24.374 26.741 25.014 26.2 25.607 25.608 L 25.608 25.608 C 26.199 25.015 26.74 24.375 27.226 23.693 L 21.035 17.5 L 29.793 17.5 C 29.928 16.69 30 15.859 30 15.011 L 30 14.989 C 30 14.155 29.93 13.322 29.792 12.5 Z\" fill=\"rgb(255,74,0)\"></path></g></g></g></svg>',svgContentId:10167505042,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1isc2tt\",\"data-framer-name\":\"Left_Part\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-104gjdz-container\",isAuthoredByUser:true,nodeId:\"kfCfOJYp7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LeftSvgWires,{height:\"100%\",id:\"kfCfOJYp7\",layoutId:\"kfCfOJYp7\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16rh4lh\",\"data-framer-name\":\"Vector 21\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 81 76\"></svg>',svgContentId:11817787165,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qow2bp\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10pbj1w\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_43\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_43)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Integrate CaaS\"})}),className:\"framer-58n5mt\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ryfij4\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-zyk428\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25866 0H1.72266C1.1306 0 0.650635 0.484109 0.650635 1.08129V7.56901C0.650635 8.16619 1.1306 8.6503 1.72266 8.6503H2.25866C2.85073 8.6503 3.33069 8.16619 3.33069 7.56901V1.08129C3.33069 0.484109 2.85073 0 2.25866 0Z\" stroke=\"#A4ADBA\" stroke-width=\"1.17857\"/>\\n<path d=\"M7.88684 4.48904V2.97353V1.3516C7.88684 1.10039 7.88684 0.974787 7.86625 0.870335C7.78165 0.441394 7.44923 0.106097 7.02396 0.0207694C6.92041 5.45137e-08 6.79588 0 6.54682 0C6.29776 0 6.17322 5.45137e-08 6.06967 0.0207694C5.64441 0.106097 5.31198 0.441394 5.22739 0.870335C5.20679 0.974787 5.20679 1.10039 5.20679 1.3516V10.5425C5.20679 10.7938 5.20679 10.9193 5.22739 11.0238C5.31198 11.4527 5.64441 11.7881 6.06967 11.8733C6.17322 11.8941 6.29776 11.8941 6.54682 11.8941\" stroke=\"#A4ADBA\" stroke-width=\"1.17857\" stroke-linecap=\"round\"/>\\n<path d=\"M9.76318 1.3516C9.76318 1.10039 9.76318 0.974787 9.7838 0.870335C9.86844 0.441394 10.2008 0.106097 10.6261 0.0207694C10.7296 5.45137e-08 10.8542 0 11.1032 0C11.3523 0 11.4768 5.45137e-08 11.5804 0.0207694C12.0056 0.106097 12.3381 0.441394 12.4227 0.870335C12.4433 0.974787 12.4433 1.10039 12.4433 1.3516V1.89225C12.4433 2.14346 12.4433 2.26907 12.4227 2.37352C12.3381 2.80245 12.0056 3.13776 11.5804 3.22308C11.4768 3.24386 11.3523 3.24386 11.1032 3.24386C10.8542 3.24386 10.7296 3.24386 10.6261 3.22308C10.2008 3.13776 9.86844 2.80245 9.7838 2.37352C9.76318 2.26907 9.76318 2.14346 9.76318 1.89225V1.3516Z\" stroke=\"#A4ADBA\" stroke-width=\"1.17857\"/>\\n<path d=\"M10.2995 12C11.9573 12 13.3012 10.6445 13.3012 8.97243C13.3012 7.30033 11.9573 5.94482 10.2995 5.94482C8.64174 5.94482 7.29785 7.30033 7.29785 8.97243C7.29785 10.6445 8.64174 12 10.2995 12Z\" stroke=\"#A4ADBA\" stroke-width=\"1.07143\" stroke-linecap=\"round\"/>\\n<path d=\"M10.6747 7.83691V8.97227H9.54907\" stroke=\"#A4ADBA\" stroke-width=\"1.07143\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Check tracking info\"})}),className:\"framer-12v19lu\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1afy6h3\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-4k1874\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Make payment\"})}),className:\"framer-gwb93f\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wk0dox\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1f4as11\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Modify billing information\"})}),className:\"framer-mle549\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1308ob0\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-2g5x40\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Escalate call\"})}),className:\"framer-12nlcmx\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1400em8\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1crbxc2\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Save to CRM\"})}),className:\"framer-8is4tk\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ox1lq5\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11f52u6\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Save to CRM\"})}),className:\"framer-1mr2zkq\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dzdwuj\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1lfsbyy\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_55\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0H0V11.25H11.25V0Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_55)\">\\n<path d=\"M10.8477 5.21735V5.17717C10.8477 4.05207 10.8477 3.48952 10.6287 3.05978C10.4361 2.68178 10.1288 2.37445 9.75081 2.18185C9.32106 1.96289 8.75849 1.96289 7.63341 1.96289H4.41913C3.29403 1.96289 2.73148 1.96289 2.30175 2.18185C1.92375 2.37445 1.61642 2.68177 1.42381 3.05978C1.20486 3.48951 1.20485 4.05206 1.20484 5.17716L1.20483 6.7843C1.20483 7.90942 1.20483 8.472 1.42379 8.90167C1.61639 9.27967 1.92372 9.58702 2.30172 9.77962C2.73146 9.99862 3.29401 9.99862 4.41912 9.99862H5.42357\" stroke=\"#868B98\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.03498 3.96094L6.3443 5.7065C5.99537 6.06676 5.41669 6.06406 5.07114 5.70055C4.7186 5.32969 4.12553 5.33556 3.78039 5.71331L2.81177 6.77344\" stroke=\"#868B98\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.83887 10.4824C10.0815 10.4824 11.0889 9.47506 11.0889 8.23242C11.0889 6.98978 10.0815 5.98242 8.83887 5.98242C7.59623 5.98242 6.58887 6.98978 6.58887 8.23242C6.58887 9.47506 7.59623 10.4824 8.83887 10.4824Z\" stroke=\"#868B98\" stroke-width=\"1.07143\" stroke-linecap=\"round\"/>\\n<path d=\"M9.12012 7.38867V8.23245H8.27637\" stroke=\"#868B98\" stroke-width=\"1.07143\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Schedule appointment\"})}),className:\"framer-23mf1q\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ydphw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v7ct95\",\"data-framer-name\":\"Rectangle 12\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1syeh63\",\"data-framer-name\":\"Rectangle 13\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{background:{alt:\"\",fit:\"fill\",sizes:\"68px\",src:\"https://framerusercontent.com/images/keaS28RAuPgSm34pkaW6bNpnPI.png\",srcSet:\"https://framerusercontent.com/images/keaS28RAuPgSm34pkaW6bNpnPI.png 658w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/keaS28RAuPgSm34pkaW6bNpnPI.png\",srcSet:\"https://framerusercontent.com/images/keaS28RAuPgSm34pkaW6bNpnPI.png 658w\"},className:\"framer-ar210x\",\"data-framer-name\":\"Transparent (2) 2\",transformTemplate:transformTemplate1})})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wzwztl hidden-72rtr7\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r4mljf hidden-72rtr7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"With AI powered analytics\"})}),className:\"framer-1byfcqj\",\"data-framer-name\":\"Integrated with everything.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"21px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Record, transcribe, and analyze calls with AI-driven insights and summaries to optimize every interaction\"})}),className:\"framer-me7kzg\",\"data-framer-name\":\"precision. Design powerful workflows, deploy AI, integrate your data and build detailed reports \u2014 all in one platform.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:395,pixelWidth:754,positionX:\"center\",positionY:\"center\",sizes:\"628px\",src:\"https://framerusercontent.com/images/6ELQRLWDh6f7ntyJG9rzgv7Cpfs.svg\",srcSet:\"https://framerusercontent.com/images/6ELQRLWDh6f7ntyJG9rzgv7Cpfs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/6ELQRLWDh6f7ntyJG9rzgv7Cpfs.svg 754w\"},className:\"framer-6o4kt0\",\"data-framer-name\":\"Level 4 - Card\",style:{scale:.7}})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dje0hp hidden-72rtr7 hidden-b8xbdo hidden-1fyuir6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4vsy7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jfksjn\",\"data-framer-name\":\"Level 1 - Conent\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Trained on your data\"})}),className:\"framer-1njxeb9\",\"data-framer-name\":\"Integrated with everything.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Connect your data sources, upload files, or add a website, and Phonely will use all of that data to train your AI.\"})}),className:\"framer-dp169s\",\"data-framer-name\":\"precision. Design powerful workflows, deploy AI, integrate your data and build detailed reports \u2014 all in one platform.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vf60b1-container\",nodeId:\"plRxUFlsx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{g_G74OEHz:\"https://app.phonely.ai/sign-up\",height:\"100%\",id:\"plRxUFlsx\",layoutId:\"plRxUFlsx\",muxhgbKdh:false,Pw3Qxl4NQ:\"Start for free\",style:{height:\"100%\"},variant:\"eYiFB1fQf\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:387,pixelWidth:737,positionX:\"center\",positionY:\"center\",sizes:\"681px\",src:\"https://framerusercontent.com/images/7qjNxpDFsVpaxbhNAfUM5RxUs.svg\",srcSet:\"https://framerusercontent.com/images/7qjNxpDFsVpaxbhNAfUM5RxUs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/7qjNxpDFsVpaxbhNAfUM5RxUs.svg 737w\"},className:\"framer-1lqmfgh\",\"data-border\":true,\"data-framer-name\":\"Level 1 - Card\",style:{scale:.5}})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1020jzv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2dmzx3\",\"data-framer-name\":\"Level 1 - Conent\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"In any language & every accent\"})}),className:\"framer-5c93c2\",\"data-framer-name\":\"Integrated with everything.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Enjoy natural, human-like conversations with 100+ voices, voice cloning, and seamless turn-taking.\"})}),className:\"framer-ezi6px\",\"data-framer-name\":\"precision. Design powerful workflows, deploy AI, integrate your data and build detailed reports \u2014 all in one platform.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pwlshp\",\"data-border\":true,\"data-framer-name\":\"Level 2 - Card\",style:{scale:.5},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:387,intrinsicWidth:741,pixelHeight:387,pixelWidth:737,positionX:\"center\",positionY:\"center\",sizes:\"723px\",src:\"https://framerusercontent.com/images/7ToY0DlEVggAodHswhLXnz6ioBw.png\",srcSet:\"https://framerusercontent.com/images/7ToY0DlEVggAodHswhLXnz6ioBw.png?scale-down-to=512 512w,https://framerusercontent.com/images/7ToY0DlEVggAodHswhLXnz6ioBw.png 737w\"},className:\"framer-kgb9lu\",\"data-framer-name\":\"_Vector map\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ow8cam\",\"data-framer-name\":\"Lines \",fill:\"rgba(0,0,0,1)\",intrinsicHeight:367,intrinsicWidth:737,svg:'<svg width=\"737\" height=\"367\" viewBox=\"0 0 737 367\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M729.417 294.387C729.417 294.125 729.417 293.864 729.286 293.733C724.056 268.114 715.95 243.149 705.36 219.491C705.36 219.23 705.229 219.099 705.099 218.837C693.855 193.741 679.865 169.822 662.999 147.602C662.869 147.34 662.607 147.209 662.476 146.948C652.278 133.485 641.165 120.676 629.006 108.651C617.108 96.7562 604.557 85.7767 591.483 75.8429C591.221 75.5815 590.829 75.3201 590.567 75.1894C526.896 26.9581 449.626 0.816528 368.435 0.816528C287.243 0.816528 209.974 26.9581 146.302 75.1894C146.04 75.4508 145.648 75.5815 145.387 75.8429C132.312 85.9074 119.761 96.7562 107.863 108.651C95.7041 120.806 84.5909 133.616 74.3929 146.948C74.2622 147.209 74.0007 147.471 73.87 147.602C57.1348 169.822 43.0145 193.611 31.7706 218.837C31.7706 219.099 31.5091 219.23 31.5091 219.491C20.9189 243.28 12.9436 268.114 7.58311 293.733C7.58311 293.994 7.58311 294.125 7.45237 294.387C2.74561 317.653 0.130743 341.572 0 365.753V366.407H1.43818V365.753C1.69966 341.311 4.31453 317.391 9.02129 294.387C9.02129 294.125 9.02129 293.864 9.15203 293.733C14.5125 267.853 22.7493 243.018 33.3395 219.491C33.3395 219.23 33.4703 218.968 33.601 218.837C45.1064 193.48 59.3575 169.56 75.9619 147.602C76.0926 147.34 76.3541 147.209 76.4848 146.948C97.0115 120.022 121.068 96.1026 148.132 75.8429C148.394 75.5815 148.786 75.4508 149.047 75.1894C194.154 41.4667 247.366 17.8086 305.155 7.74405C316.399 5.78343 327.773 4.34564 339.279 3.43069C345.424 2.90786 351.699 2.64644 357.975 2.38502C361.505 2.38502 365.035 2.25432 368.565 2.25432C372.095 2.25432 370.265 2.25432 371.18 2.25432C371.572 2.25432 371.834 2.25432 372.226 2.25432C383.209 2.25432 394.06 2.90785 404.781 3.95352C473.029 10.6196 535.786 36.1077 587.953 75.0586C588.214 75.3201 588.476 75.4508 588.868 75.7122C615.932 95.9719 639.988 120.022 660.515 146.817C660.646 147.079 660.907 147.34 661.038 147.471C677.643 169.43 691.894 193.219 703.399 218.707C703.399 218.968 703.66 219.099 703.66 219.36C714.251 242.888 722.357 267.853 727.848 293.602C727.848 293.864 727.848 293.994 727.979 294.256C732.816 317.391 735.431 341.18 735.562 365.622V366.276H737V365.622C736.739 341.311 734.254 317.522 729.548 294.256L729.417 294.387Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M660.646 294.386C660.646 294.125 660.646 293.864 660.646 293.733C656.985 268.114 650.971 243.28 642.603 219.491C642.603 219.229 642.472 218.968 642.342 218.837C633.582 193.741 622.207 169.822 608.61 147.601C608.61 147.34 608.349 147.079 608.218 146.948C598.804 131.786 588.345 117.408 576.839 103.945C568.21 93.8805 559.189 84.4695 549.776 75.8428C549.514 75.5814 549.253 75.32 548.991 75.1893C507.022 36.6304 457.471 12.3187 404.65 4.08413C391.445 1.99281 377.979 0.947144 364.382 0.947144C344.247 0.947144 324.374 3.29989 305.155 7.74396C259.525 18.462 216.772 41.3359 179.772 75.1893C179.511 75.4507 179.249 75.5814 178.988 75.8428C169.574 84.4695 160.553 93.8805 151.924 103.945C140.418 117.408 129.959 131.786 120.545 146.948C120.415 147.209 120.284 147.471 120.153 147.601C106.425 169.822 95.1811 193.741 86.4213 218.837C86.4213 219.099 86.2906 219.229 86.1598 219.491C77.7923 243.28 71.7781 268.114 68.1173 293.733C68.1173 293.994 68.1173 294.125 68.1173 294.386C65.5024 313.339 64.0642 332.815 64.0642 352.552C64.0642 372.288 64.0642 361.44 64.3257 365.884C64.3257 366.145 64.3257 366.276 64.3257 366.537H65.6331C65.6331 366.276 65.6331 366.145 65.6331 365.884C65.5024 361.44 65.3716 356.996 65.3716 352.552C65.3716 332.815 66.8098 313.339 69.4247 294.386C69.4247 294.125 69.4247 293.994 69.4247 293.733C73.0855 267.853 79.3612 243.018 87.598 219.491C87.598 219.229 87.7288 219.099 87.8595 218.837C96.8808 193.48 108.255 169.56 121.853 147.601C121.983 147.34 122.114 147.079 122.245 146.948C138.849 120.153 158.722 96.1025 181.079 75.8428C181.341 75.5814 181.602 75.32 181.864 75.1893C226.186 35.0619 280.314 9.18174 339.148 3.43059C347.123 2.64635 355.099 2.25422 363.205 2.25422C363.205 2.25422 363.336 2.25422 363.466 2.25422H364.251C366.473 2.25422 368.696 2.25422 370.919 2.25422C371.834 2.25422 372.618 2.25422 373.534 2.25422C438.644 4.60697 498.524 31.4021 546.768 75.0586C547.03 75.32 547.291 75.4507 547.553 75.7121C569.91 96.1025 589.652 120.022 606.387 146.817C606.518 147.079 606.649 147.34 606.78 147.471C620.377 169.43 631.752 193.219 640.773 218.707C640.773 218.968 640.904 219.099 641.034 219.36C649.271 243.018 655.416 267.853 659.208 293.602C659.208 293.864 659.208 293.994 659.208 294.256C661.953 313.208 663.261 332.553 663.261 352.421C663.261 372.288 663.261 361.309 662.999 365.753C662.999 366.014 662.999 366.145 662.999 366.407H664.307C664.307 366.145 664.307 366.014 664.307 365.753C664.437 361.309 664.568 356.865 664.568 352.421C664.568 332.815 663.261 313.339 660.515 294.256L660.646 294.386Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M578.8 294.387C578.8 294.125 578.8 293.864 578.8 293.733C576.447 268.114 572.263 243.28 566.379 219.491C566.379 219.23 566.379 219.099 566.249 218.837C560.104 193.742 551.998 169.822 542.192 147.602C542.192 147.34 541.93 147.21 541.93 146.948C535.001 131.263 527.026 116.362 518.397 102.507C512.382 92.9657 506.107 84.0776 499.57 75.843C499.439 75.5816 499.177 75.3202 499.047 75.1895C463.223 30.2259 419.816 4.86858 373.794 2.38513C373.272 2.38513 372.749 2.38513 372.226 2.38513C370.264 2.38513 368.303 2.38513 366.473 2.38513C364.642 2.38513 364.642 2.38513 363.727 2.38513C363.727 2.38513 363.597 2.38513 363.466 2.38513C361.635 2.38513 359.805 2.38513 357.975 2.64655C312.345 5.39141 269.2 30.7488 233.638 75.4509C233.507 75.7123 233.245 75.843 233.115 76.1044C226.578 84.339 220.302 93.2272 214.288 102.769C205.528 116.624 197.683 131.525 190.754 147.21C190.754 147.471 190.492 147.732 190.492 147.863C180.687 170.083 172.581 194.003 166.436 219.099C166.436 219.36 166.436 219.491 166.305 219.752C160.421 243.541 156.238 268.507 153.884 293.995C153.884 294.256 153.884 294.387 153.884 294.648C152.446 311.117 151.662 327.848 151.662 344.709C151.662 361.571 151.662 358.956 152.054 366.015C152.054 366.276 152.054 366.407 152.054 366.668H153.1C153.1 366.407 153.1 366.276 153.1 366.015C152.838 358.956 152.708 351.898 152.708 344.709C152.708 327.717 153.492 310.987 155.061 294.648C155.061 294.387 155.061 294.125 155.061 293.995C157.414 268.114 161.729 243.28 167.482 219.752C167.482 219.491 167.482 219.36 167.612 219.099C173.888 193.742 182.125 169.822 191.8 147.863C191.8 147.602 192.061 147.34 192.061 147.21C204.09 120.414 218.341 96.3641 234.553 76.1044C234.684 75.843 234.945 75.5816 235.076 75.4509C269.2 32.9708 311.691 6.56779 357.844 3.69221C359.282 3.69221 360.72 3.5615 362.289 3.43079C363.466 3.43079 364.773 3.43079 365.95 3.43079H366.604C367.65 3.43079 368.565 3.43079 369.48 3.43079C370.918 3.43079 372.356 3.43079 373.794 3.5615C420.208 6.17566 462.961 32.5787 497.347 75.3202C497.478 75.5816 497.739 75.7123 497.87 75.9737C514.082 96.2334 528.464 120.284 540.361 147.079C540.361 147.34 540.623 147.602 540.623 147.732C550.298 169.691 558.535 193.48 564.81 218.968C564.81 219.23 564.81 219.36 564.941 219.622C570.825 243.28 575.008 268.114 577.493 293.864C577.493 294.125 577.493 294.256 577.493 294.517C579.061 310.856 579.846 327.586 579.846 344.579C579.846 361.571 579.715 358.826 579.454 365.884C579.454 366.145 579.454 366.276 579.454 366.537H580.5C580.5 366.276 580.5 366.145 580.5 365.884C580.761 358.826 580.892 351.637 580.892 344.579C580.892 327.717 580.107 310.987 578.669 294.517L578.8 294.387Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M476.691 294.387C476.691 294.125 476.691 293.864 476.691 293.733C476.298 282.884 475.645 272.166 474.86 261.579C473.683 247.855 471.984 233.607 469.761 219.491C469.761 219.23 469.761 219.099 469.761 218.837C466.1 194.918 461.132 170.737 455.118 147.602C455.118 147.34 455.118 147.21 454.987 146.948C449.757 126.95 443.743 107.866 437.206 90.4823C435.245 85.3847 433.284 80.4178 431.323 75.843C431.323 75.5816 431.061 75.3202 431.061 75.1895C413.411 33.755 393.668 8.78982 374.188 3.43079C371.704 2.77725 369.089 2.38513 366.605 2.38513H366.343C363.598 2.38513 360.983 2.77726 358.237 3.5615C338.495 9.05124 318.36 33.8857 299.926 75.3202C299.926 75.5816 299.664 75.7123 299.664 75.9737C297.572 80.6792 295.48 85.7768 293.388 90.8744C286.59 108.259 280.314 127.211 274.823 147.079C274.823 147.34 274.823 147.602 274.692 147.732C268.416 170.737 263.187 194.918 259.395 218.968C259.395 219.23 259.395 219.491 259.395 219.622C256.78 236.091 254.819 252.56 253.512 268.376C252.858 276.741 252.335 285.237 252.073 293.864C252.073 294.125 252.073 294.256 252.073 294.517C251.289 317.783 251.943 341.703 253.773 365.884C253.773 366.145 253.773 366.407 253.773 366.537H254.427C254.427 366.276 254.427 366.145 254.427 365.884C252.596 341.703 251.943 317.783 252.727 294.517C252.727 294.256 252.727 293.995 252.727 293.864C252.989 285.237 253.512 276.741 254.165 268.376C255.473 252.429 257.434 235.96 260.049 219.491C260.049 219.23 260.049 219.099 260.049 218.837C263.84 194.787 269.07 170.737 275.346 147.602C275.346 147.34 275.346 147.079 275.607 146.948C280.968 127.211 287.243 108.259 294.042 91.0051C296.134 85.7768 298.226 80.6792 300.449 75.843C300.449 75.5816 300.71 75.3202 300.71 75.1895C320.322 31.1409 341.894 5.91424 362.682 3.30009C363.859 3.16938 365.166 3.03867 366.343 3.03867H366.735C366.735 3.03867 366.997 3.03867 367.128 3.03867C368.174 3.03867 369.089 3.03867 370.004 3.30009C390.531 5.91424 411.58 31.1409 430.407 75.1895C430.407 75.4509 430.538 75.5816 430.669 75.843C432.63 80.5485 434.722 85.5154 436.683 90.7437C443.22 107.997 449.234 127.081 454.464 146.948C454.464 147.21 454.464 147.471 454.595 147.602C460.609 170.606 465.577 194.787 469.238 218.837C469.238 219.099 469.238 219.23 469.238 219.491C471.461 233.738 473.16 247.855 474.337 261.71C475.252 272.166 475.906 282.884 476.167 293.864C476.167 294.125 476.167 294.256 476.167 294.517C476.952 317.783 476.429 341.834 474.599 365.884C474.599 366.145 474.599 366.276 474.599 366.537H475.252C475.252 366.276 475.252 366.015 475.252 365.884C476.952 341.703 477.606 317.783 476.821 294.517L476.691 294.387Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M366.604 2.51575H365.95V366.537H366.604V2.51575Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M591.483 75.7121H145.387C145.648 75.4507 146.04 75.1893 146.302 75.0586H590.568C590.829 75.32 591.221 75.4507 591.483 75.7121Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M662.999 147.601H73.8701C74.0009 147.34 74.2623 147.209 74.3931 146.948H662.476C662.607 147.209 662.869 147.471 662.999 147.601Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M705.361 219.36H31.5098C31.5098 219.099 31.7713 218.968 31.7713 218.707H704.969C704.969 218.968 705.23 219.099 705.23 219.36H705.361Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M729.417 294.387H7.45203C7.45203 294.125 7.45203 293.864 7.58277 293.733H729.155C729.155 293.995 729.155 294.125 729.286 294.387H729.417Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M736.869 365.753H0V366.407H736.869V365.753Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M82.6299 232.17C104.726 159.627 150.355 92.1814 213.242 49.1785C201.606 57.5438 190.624 66.6933 180.164 76.3657C135.45 119.107 101.98 173.482 82.6299 232.17Z\" fill=\"#4F4F4F\"/>\\n<path d=\"M484.796 30.6179C544.546 60.0271 592.529 113.879 622.208 172.959C625.738 180.148 629.268 188.121 632.406 195.441C629.137 188.121 625.345 180.409 621.685 173.22C590.96 114.663 543.762 61.4649 484.796 30.6179Z\" fill=\"#4F4F4F\"/>\\n<path d=\"M247 75.2647H300.902C300.902 75.2647 330.803 2 367 2C403.197 2 440.574 83.9548 455 150\" stroke=\"#4F4F4F\" stroke-width=\"0.707336\" stroke-miterlimit=\"10\"/>\\n<path d=\"M366.343 27.6117C366.866 73.6209 366.997 124.728 366.997 170.998V218.837V219.36H366.474H334.05C334.05 219.23 301.625 218.837 301.625 218.837L334.05 218.576H366.474C366.474 218.445 365.951 218.837 365.951 218.837V170.998C365.82 124.728 365.951 73.7516 366.474 27.6117H366.343Z\" fill=\"#4F4F4F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ei37ma\",\"data-framer-name\":\"Frame 22\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nproe\",\"data-framer-name\":\"Button groups\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-32a7c\",\"data-framer-name\":\"Frame 23\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-g5a18y\",\"data-framer-name\":\"Button 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:45,svg:'<svg width=\"45\" height=\"40\" viewBox=\"0 0 45 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" fill=\"white\"/>\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" stroke=\"#EDEFF3\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" fill=\"#DDF9E4\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" stroke=\"#C7F4D3\"/>\\n<path d=\"M15 18.5V20.75\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M18 15.5V23.75\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M21 13.25V26.75\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M24 17V22.25\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M27 14.75V24.5\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M30 18.5V20.75\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nwj0fs\",\"data-border\":true,\"data-framer-name\":\"Button 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"Voice Cloning\"})}),className:\"framer-i3m2m5\",\"data-framer-name\":\"Voice Cloning\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mg9tjx\",\"data-framer-name\":\"Frame 24\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-gsf6em\",\"data-framer-name\":\"Button 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:45,svg:'<svg width=\"45\" height=\"40\" viewBox=\"0 0 45 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" fill=\"white\"/>\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" stroke=\"#EDEFF3\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" fill=\"#DAF4FC\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" stroke=\"#C3EDF9\"/>\\n<path d=\"M28.75 22.25C28.75 22.6478 28.592 23.0294 28.3107 23.3107C28.0294 23.592 27.6478 23.75 27.25 23.75H18.25L15.25 26.75V14.75C15.25 14.3522 15.408 13.9706 15.6893 13.6893C15.9706 13.408 16.3522 13.25 16.75 13.25H27.25C27.6478 13.25 28.0294 13.408 28.3107 13.6893C28.592 13.9706 28.75 14.3522 28.75 14.75V22.25Z\" stroke=\"#0A5A70\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lpjuaa\",\"data-border\":true,\"data-framer-name\":\"Button 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"Natural conversation\"})}),className:\"framer-1kpagi3\",\"data-framer-name\":\"Natural conversation\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17t8rc6\",\"data-framer-name\":\"Frame 25\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-g5p1tz\",\"data-framer-name\":\"Button 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:45,svg:'<svg width=\"45\" height=\"40\" viewBox=\"0 0 45 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" fill=\"white\"/>\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" stroke=\"#EDEFF3\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" fill=\"#F5F0FF\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" stroke=\"#E8DDFE\"/>\\n<path d=\"M22 11.6667C21.337 11.6667 20.7011 11.9301 20.2322 12.3989C19.7634 12.8678 19.5 13.5036 19.5 14.1667V20C19.5 20.6631 19.7634 21.2989 20.2322 21.7678C20.7011 22.2366 21.337 22.5 22 22.5C22.663 22.5 23.2989 22.2366 23.7678 21.7678C24.2366 21.2989 24.5 20.6631 24.5 20V14.1667C24.5 13.5036 24.2366 12.8678 23.7678 12.3989C23.2989 11.9301 22.663 11.6667 22 11.6667Z\" stroke=\"#4711BB\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M27.8334 18.3333V20C27.8334 21.5471 27.2188 23.0308 26.1249 24.1248C25.0309 25.2187 23.5472 25.8333 22.0001 25.8333C20.453 25.8333 18.9693 25.2187 17.8753 24.1248C16.7813 23.0308 16.1667 21.5471 16.1667 20V18.3333\" stroke=\"#4711BB\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M22 25.8333V28.3333\" stroke=\"#4711BB\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j850ak\",\"data-border\":true,\"data-framer-name\":\"Button 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"Seamless Turn-talking\"})}),className:\"framer-1j27s47\",\"data-framer-name\":\"Seamless Turn-talking\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wpfiz2\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"Hola\"})}),className:\"framer-c69g0u\",\"data-framer-name\":\"Hola\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bueuzv\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"\u4F60\u597D\"})}),className:\"framer-u1ynmi\",\"data-framer-name\":\"\u4F60\u597D\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j72e86\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"Bonjour\"})}),className:\"framer-7gh3mt\",\"data-framer-name\":\"Bonjour\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ikj69d\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"Hallo\"})}),className:\"framer-1o2mynm\",\"data-framer-name\":\"Hallo\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-952lnm\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"\uC548\uB155\uD558\uC138\uC694\"})}),className:\"framer-1p77clc\",\"data-framer-name\":\"\uC548\uB155\uD558\uC138\uC694\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zdn1yj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qxxu81\",\"data-framer-name\":\"Level 3 - Conent\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Connected to your software\"})}),className:\"framer-16tvpod\",\"data-framer-name\":\"Integrated with everything.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"21px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Phonely integrates your tools in real-time schedule appointments, update CRMs, and so much more \"})}),className:\"framer-g7335b\",\"data-framer-name\":\"precision. Design powerful workflows, deploy AI, integrate your data and build detailed reports \u2014 all in one platform.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-shas01-container\",nodeId:\"Z7VpIELmJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Z7VpIELmJ\",layoutId:\"Z7VpIELmJ\",muxhgbKdh:false,Pw3Qxl4NQ:\"View integrations\",style:{height:\"100%\"},variant:\"OQMKxbynb\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8000vu\",\"data-border\":true,\"data-framer-name\":\"Level 3 - Card\",style:{scale:.52},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1820gdt-container\",isAuthoredByUser:true,nodeId:\"NN50iKBri\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(RightSvgWires,{height:\"100%\",id:\"NN50iKBri\",layoutId:\"NN50iKBri\",width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zodxw8\",\"data-framer-name\":\"Right_Part\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 218 334\"><path d=\"M 180 188.5 C 173.649 188.5 168.5 188.5 168.5 188.5 L 168.5 139.5 C 168.5 139.5 173.649 139.5 180 139.5 L 206 139.5 C 212.351 139.5 217.5 139.5 217.5 139.5 L 217.5 188.5 C 217.5 188.5 212.351 188.5 206 188.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 180 188.5 C 173.649 188.5 168.5 188.5 168.5 188.5 L 168.5 139.5 C 168.5 139.5 173.649 139.5 180 139.5 L 206 139.5 C 212.351 139.5 217.5 139.5 217.5 139.5 L 217.5 188.5 C 217.5 188.5 212.351 188.5 206 188.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(178 149)\" id=\"ss10167505042_3\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_5\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_7\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><path d=\"M 6.597 19.077 C 6.597 20.8 5.205 22.192 3.483 22.192 C 1.761 22.192 0.369 20.8 0.369 19.077 C 0.369 17.355 1.761 15.963 3.483 15.963 L 6.597 15.963 Z M 8.154 19.077 C 8.154 17.355 9.546 15.963 11.268 15.963 C 12.99 15.963 14.382 17.355 14.382 19.077 L 14.382 26.863 C 14.382 28.585 12.99 29.977 11.268 29.977 C 9.546 29.977 8.154 28.585 8.154 26.863 Z\" fill=\"rgb(224,30,90)\"></path><path d=\"M 11.268 6.572 C 9.546 6.572 8.154 5.181 8.154 3.458 C 8.154 1.736 9.546 0.344 11.268 0.344 C 12.99 0.344 14.382 1.736 14.382 3.458 L 14.382 6.572 Z M 11.268 8.153 C 12.99 8.153 14.382 9.545 14.382 11.267 C 14.382 12.989 12.99 14.381 11.268 14.381 L 3.459 14.381 C 1.737 14.381 0.345 12.989 0.345 11.267 C 0.345 9.545 1.737 8.153 3.459 8.153 Z\" fill=\"rgb(54,197,240)\"></path><path d=\"M 23.747 11.267 C 23.747 9.545 25.139 8.153 26.861 8.153 C 28.584 8.153 29.975 9.545 29.975 11.267 C 29.975 12.989 28.584 14.381 26.861 14.381 L 23.747 14.381 Z M 22.19 11.267 C 22.19 12.989 20.798 14.381 19.076 14.381 C 17.354 14.381 15.962 12.989 15.962 11.267 L 15.962 3.458 C 15.962 1.736 17.354 0.344 19.076 0.344 C 20.798 0.344 22.19 1.736 22.19 3.458 Z\" fill=\"rgb(46,182,125)\"></path><path d=\"M 19.076 23.749 C 20.798 23.749 22.19 25.141 22.19 26.863 C 22.19 28.585 20.798 29.977 19.076 29.977 C 17.354 29.977 15.962 28.585 15.962 26.863 L 15.962 23.749 Z M 19.076 22.192 C 17.354 22.192 15.962 20.8 15.962 19.077 C 15.962 17.355 17.354 15.963 19.076 15.963 L 26.885 15.963 C 28.607 15.963 29.999 17.355 29.999 19.077 C 29.999 20.8 28.607 22.192 26.885 22.192 Z\" fill=\"rgb(236,178,46)\"></path></g></g></g><path d=\"M 111 226.5 C 104.649 226.5 99.5 226.5 99.5 226.5 L 99.5 177.5 C 99.5 177.5 104.649 177.5 111 177.5 L 137 177.5 C 143.351 177.5 148.5 177.5 148.5 177.5 L 148.5 226.5 C 148.5 226.5 143.351 226.5 137 226.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 111 226.5 C 104.649 226.5 99.5 226.5 99.5 226.5 L 99.5 177.5 C 99.5 177.5 104.649 177.5 111 177.5 L 137 177.5 C 143.351 177.5 148.5 177.5 148.5 177.5 L 148.5 226.5 C 148.5 226.5 143.351 226.5 137 226.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(109 188.5)\" id=\"ss10167505042_15\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_17\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_19\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_21\"><path d=\"M 30 14.175 C 30.002 13.948 29.881 13.737 29.681 13.619 L 29.677 13.619 L 29.665 13.612 L 19.269 7.658 C 19.224 7.629 19.178 7.602 19.13 7.578 C 18.728 7.378 18.252 7.378 17.85 7.578 C 17.802 7.602 17.755 7.629 17.711 7.658 L 7.315 13.612 L 7.303 13.619 C 6.985 13.81 6.888 14.214 7.085 14.521 C 7.143 14.612 7.224 14.687 7.319 14.741 L 17.714 20.695 C 17.759 20.724 17.806 20.75 17.854 20.775 C 18.255 20.975 18.732 20.975 19.133 20.775 C 19.181 20.75 19.228 20.724 19.273 20.695 L 29.668 14.741 C 29.876 14.624 30.003 14.408 30 14.175 Z\" fill=\"rgb(10,39,103)\"></path><path d=\"M 8.527 10.2 L 15.349 10.2 L 15.349 16.25 L 8.527 16.25 Z M 28.604 4.05 L 28.604 1.282 C 28.621 0.591 28.055 0.017 27.34 0 L 9.637 0 C 8.922 0.017 8.356 0.591 8.372 1.282 L 8.372 4.05 L 18.837 6.75 Z\" fill=\"rgb(3,100,184)\"></path><path d=\"M 8.372 4.05 L 15.349 4.05 L 15.349 10.125 L 8.372 10.125 Z\" fill=\"rgb(0,120,212)\"></path><path d=\"M 22.326 4.05 L 15.349 4.05 L 15.349 10.125 L 22.326 16.2 L 28.605 16.2 L 28.605 10.125 Z\" fill=\"rgb(40,168,234)\"></path><path d=\"M 15.349 10.125 L 22.326 10.125 L 22.326 16.2 L 15.349 16.2 Z\" fill=\"rgb(0,120,212)\"></path><path d=\"M 15.349 16.2 L 22.326 16.2 L 22.326 22.275 L 15.349 22.275 Z\" fill=\"rgb(3,100,184)\"></path><path d=\"M 8.527 16.25 L 15.349 16.25 L 15.349 21.75 L 8.527 21.75 Z\" fill=\"rgb(20,68,125)\"></path><path d=\"M 22.326 16.2 L 28.605 16.2 L 28.605 22.275 L 22.326 22.275 Z\" fill=\"rgb(0,120,212)\"></path><g><defs><linearGradient id=\"idss10167505042_30g1977229117\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(53,184,241)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(40,168,234)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.68 14.703 L 29.667 14.71 L 19.272 20.367 C 19.226 20.394 19.18 20.419 19.132 20.442 C 18.956 20.524 18.764 20.569 18.568 20.577 L 18 20.256 C 17.952 20.233 17.906 20.207 17.861 20.178 L 7.326 14.361 L 7.321 14.361 L 6.977 14.175 L 6.977 25.626 C 6.982 26.39 7.626 27.005 8.416 27 L 28.583 27 C 28.595 27 28.605 26.994 28.618 26.994 C 28.784 26.984 28.949 26.951 29.106 26.896 C 29.174 26.868 29.239 26.835 29.302 26.797 C 29.349 26.772 29.429 26.716 29.429 26.716 C 29.786 26.46 29.998 26.056 30 25.626 L 30 14.175 C 30 14.394 29.877 14.596 29.68 14.703 Z\" fill=\"url(#idss10167505042_30g1977229117)\"></path></g><path d=\"M 29.442 14.129 L 29.442 14.831 L 18.572 22.072 L 7.318 14.366 C 7.318 14.362 7.315 14.359 7.311 14.359 L 6.279 13.758 L 6.279 13.252 L 6.704 13.245 L 7.604 13.745 L 7.625 13.751 L 7.702 13.799 C 7.702 13.799 18.279 19.637 18.307 19.651 L 18.711 19.88 C 18.746 19.867 18.781 19.853 18.823 19.84 C 18.844 19.826 29.323 14.123 29.323 14.123 Z\" fill=\"rgb(10,39,103)\" opacity=\"0.5\"></path><path d=\"M 29.681 14.703 L 29.667 14.711 L 19.272 20.367 C 19.227 20.394 19.181 20.42 19.133 20.443 C 18.729 20.634 18.257 20.634 17.853 20.443 C 17.805 20.42 17.759 20.395 17.714 20.367 L 7.318 14.711 L 7.306 14.703 C 7.105 14.598 6.979 14.396 6.977 14.175 L 6.977 25.626 C 6.982 26.389 7.626 27.005 8.416 27 L 28.562 27 C 29.351 27.005 29.995 26.389 30 25.626 L 30 14.175 C 30 14.394 29.878 14.596 29.681 14.703 Z\" fill=\"rgb(20,144,223)\"></path><path d=\"M 19.423 20.284 L 19.267 20.369 C 19.222 20.396 19.176 20.422 19.128 20.445 C 18.957 20.526 18.77 20.574 18.58 20.585 L 22.535 25.11 L 29.434 26.719 C 29.623 26.581 29.773 26.399 29.871 26.19 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.1\"></path><path d=\"M 20.128 19.9 L 19.267 20.368 C 19.222 20.396 19.176 20.421 19.128 20.444 C 18.957 20.526 18.77 20.574 18.58 20.585 L 20.433 25.528 L 29.436 26.716 C 29.791 26.459 30 26.055 30 25.626 L 30 25.478 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.05\"></path><path d=\"M 8.435 27 L 28.56 27 C 28.869 27.001 29.171 26.907 29.421 26.73 L 18 20.257 C 17.952 20.234 17.906 20.208 17.861 20.18 L 7.326 14.363 L 7.321 14.363 L 6.977 14.175 L 6.977 25.586 C 6.976 26.366 7.629 26.999 8.435 27 Z\" fill=\"rgb(40,168,234)\"></path><path d=\"M 16.744 6.638 L 16.744 21.035 C 16.743 21.54 16.425 21.994 15.942 22.183 C 15.792 22.245 15.63 22.277 15.467 22.277 L 6.977 22.277 L 6.977 6.075 L 8.372 6.075 L 8.372 5.4 L 15.467 5.4 C 16.172 5.403 16.742 5.956 16.744 6.638 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.1\"></path><path d=\"M 16.046 7.313 L 16.046 21.71 C 16.048 21.873 16.012 22.035 15.942 22.183 C 15.748 22.645 15.285 22.948 14.77 22.95 L 6.977 22.95 L 6.977 6.075 L 14.77 6.075 C 14.972 6.073 15.171 6.122 15.349 6.217 C 15.776 6.425 16.046 6.849 16.046 7.313 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 16.046 7.313 L 16.046 20.36 C 16.043 21.042 15.474 21.594 14.77 21.6 L 6.977 21.6 L 6.977 6.075 L 14.77 6.075 C 14.972 6.073 15.171 6.122 15.349 6.217 C 15.776 6.425 16.046 6.849 16.046 7.313 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 15.349 7.312 L 15.349 20.36 C 15.348 21.043 14.777 21.597 14.072 21.6 L 6.977 21.6 L 6.977 6.075 L 14.072 6.075 C 14.777 6.076 15.349 6.63 15.349 7.312 C 15.349 7.313 15.349 7.312 15.349 7.312 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><g><defs><linearGradient id=\"idss10167505042_40g828522074\" x1=\"0.2194443772667855\" x2=\"0.7805556227332144\" y1=\"5.551115123125783e-17\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(23,132,217)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(10,99,201)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 1.279 6.075 L 14.07 6.075 C 14.776 6.075 15.349 6.629 15.349 7.312 L 15.349 19.688 C 15.349 20.371 14.776 20.925 14.07 20.925 L 1.279 20.925 C 0.573 20.925 0 20.371 0 19.688 L 0 7.312 C 0 6.629 0.573 6.075 1.279 6.075 Z\" fill=\"url(#idss10167505042_40g828522074)\"></path></g><path d=\"M 3.997 11.265 C 4.312 10.615 4.821 10.071 5.458 9.703 C 6.163 9.313 6.966 9.118 7.779 9.14 C 8.532 9.125 9.275 9.309 9.927 9.674 C 10.54 10.028 11.034 10.546 11.348 11.166 C 11.691 11.849 11.861 12.601 11.846 13.36 C 11.863 14.153 11.687 14.939 11.334 15.655 C 11.012 16.297 10.502 16.833 9.869 17.199 C 9.191 17.575 8.421 17.764 7.64 17.747 C 6.871 17.765 6.111 17.578 5.445 17.207 C 4.826 16.852 4.326 16.334 4.005 15.712 C 3.66 15.039 3.487 14.296 3.501 13.545 C 3.486 12.758 3.656 11.979 3.997 11.265 Z M 5.554 14.93 C 5.722 15.341 6.007 15.697 6.376 15.957 C 6.752 16.211 7.201 16.342 7.66 16.331 C 8.148 16.35 8.629 16.214 9.03 15.945 C 9.394 15.685 9.672 15.328 9.828 14.918 C 10.003 14.459 10.089 13.973 10.083 13.485 C 10.088 12.991 10.007 12.501 9.843 12.033 C 9.698 11.612 9.429 11.24 9.07 10.963 C 8.678 10.681 8.199 10.538 7.711 10.558 C 7.243 10.546 6.783 10.678 6.398 10.935 C 6.023 11.197 5.732 11.556 5.56 11.971 C 5.179 12.923 5.177 13.978 5.555 14.931 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 22.326 4.05 L 28.605 4.05 L 28.605 10.125 L 22.326 10.125 Z\" fill=\"rgb(80,217,255)\"></path></g></g></g></g><path d=\"M 180 333.5 C 173.649 333.5 168.5 333.5 168.5 333.5 L 168.5 284.5 C 168.5 284.5 173.649 284.5 180 284.5 L 206 284.5 C 212.351 284.5 217.5 284.5 217.5 284.5 L 217.5 333.5 C 217.5 333.5 212.351 333.5 206 333.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 180 333.5 C 173.649 333.5 168.5 333.5 168.5 333.5 L 168.5 284.5 C 168.5 284.5 173.649 284.5 180 284.5 L 206 284.5 C 212.351 284.5 217.5 284.5 217.5 284.5 L 217.5 333.5 C 217.5 333.5 212.351 333.5 206 333.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(178 295.5)\" id=\"ss10167505042_45\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_47\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_49\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_51\"><path d=\"M 30 14.175 C 30.002 13.948 29.881 13.737 29.681 13.619 L 29.677 13.619 L 29.665 13.612 L 19.269 7.658 C 19.224 7.629 19.178 7.602 19.13 7.578 C 18.728 7.378 18.252 7.378 17.85 7.578 C 17.802 7.602 17.755 7.629 17.711 7.658 L 7.315 13.612 L 7.303 13.619 C 6.985 13.81 6.888 14.214 7.085 14.521 C 7.143 14.612 7.224 14.687 7.319 14.741 L 17.714 20.695 C 17.759 20.724 17.806 20.75 17.854 20.775 C 18.255 20.975 18.732 20.975 19.133 20.775 C 19.181 20.75 19.228 20.724 19.273 20.695 L 29.668 14.741 C 29.876 14.624 30.003 14.408 30 14.175 Z\" fill=\"rgb(10,39,103)\"></path><path d=\"M 8.527 10.2 L 15.349 10.2 L 15.349 16.25 L 8.527 16.25 Z M 28.604 4.05 L 28.604 1.282 C 28.621 0.591 28.055 0.017 27.34 0 L 9.637 0 C 8.922 0.017 8.356 0.591 8.372 1.282 L 8.372 4.05 L 18.837 6.75 Z\" fill=\"rgb(3,100,184)\"></path><path d=\"M 8.372 4.05 L 15.349 4.05 L 15.349 10.125 L 8.372 10.125 Z\" fill=\"rgb(0,120,212)\"></path><path d=\"M 22.326 4.05 L 15.349 4.05 L 15.349 10.125 L 22.326 16.2 L 28.605 16.2 L 28.605 10.125 Z\" fill=\"rgb(40,168,234)\"></path><path d=\"M 15.349 10.125 L 22.326 10.125 L 22.326 16.2 L 15.349 16.2 Z\" fill=\"rgb(0,120,212)\"></path><path d=\"M 15.349 16.2 L 22.326 16.2 L 22.326 22.275 L 15.349 22.275 Z\" fill=\"rgb(3,100,184)\"></path><path d=\"M 8.527 16.25 L 15.349 16.25 L 15.349 21.75 L 8.527 21.75 Z\" fill=\"rgb(20,68,125)\"></path><path d=\"M 22.326 16.2 L 28.605 16.2 L 28.605 22.275 L 22.326 22.275 Z\" fill=\"rgb(0,120,212)\"></path><g><defs><linearGradient id=\"idss10167505042_60g1977229117\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(53,184,241)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(40,168,234)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.68 14.703 L 29.667 14.71 L 19.272 20.367 C 19.226 20.394 19.18 20.419 19.132 20.442 C 18.956 20.524 18.764 20.569 18.568 20.577 L 18 20.256 C 17.952 20.233 17.906 20.207 17.861 20.178 L 7.326 14.361 L 7.321 14.361 L 6.977 14.175 L 6.977 25.626 C 6.982 26.39 7.626 27.005 8.416 27 L 28.583 27 C 28.595 27 28.605 26.994 28.618 26.994 C 28.784 26.984 28.949 26.951 29.106 26.896 C 29.174 26.868 29.239 26.835 29.302 26.797 C 29.349 26.772 29.429 26.716 29.429 26.716 C 29.786 26.46 29.998 26.056 30 25.626 L 30 14.175 C 30 14.394 29.877 14.596 29.68 14.703 Z\" fill=\"url(#idss10167505042_60g1977229117)\"></path></g><path d=\"M 29.442 14.129 L 29.442 14.831 L 18.572 22.072 L 7.318 14.366 C 7.318 14.362 7.315 14.359 7.311 14.359 L 6.279 13.758 L 6.279 13.252 L 6.704 13.245 L 7.604 13.745 L 7.625 13.751 L 7.702 13.799 C 7.702 13.799 18.279 19.637 18.307 19.651 L 18.711 19.88 C 18.746 19.867 18.781 19.853 18.823 19.84 C 18.844 19.826 29.323 14.123 29.323 14.123 Z\" fill=\"rgb(10,39,103)\" opacity=\"0.5\"></path><path d=\"M 29.681 14.703 L 29.667 14.711 L 19.272 20.367 C 19.227 20.394 19.181 20.42 19.133 20.443 C 18.729 20.634 18.257 20.634 17.853 20.443 C 17.805 20.42 17.759 20.395 17.714 20.367 L 7.318 14.711 L 7.306 14.703 C 7.105 14.598 6.979 14.396 6.977 14.175 L 6.977 25.626 C 6.982 26.389 7.626 27.005 8.416 27 L 28.562 27 C 29.351 27.005 29.995 26.389 30 25.626 L 30 14.175 C 30 14.394 29.878 14.596 29.681 14.703 Z\" fill=\"rgb(20,144,223)\"></path><path d=\"M 19.423 20.284 L 19.267 20.369 C 19.222 20.396 19.176 20.422 19.128 20.445 C 18.957 20.526 18.77 20.574 18.58 20.585 L 22.535 25.11 L 29.434 26.719 C 29.623 26.581 29.773 26.399 29.871 26.19 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.1\"></path><path d=\"M 20.128 19.9 L 19.267 20.368 C 19.222 20.396 19.176 20.421 19.128 20.444 C 18.957 20.526 18.77 20.574 18.58 20.585 L 20.433 25.528 L 29.436 26.716 C 29.791 26.459 30 26.055 30 25.626 L 30 25.478 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.05\"></path><path d=\"M 8.435 27 L 28.56 27 C 28.869 27.001 29.171 26.907 29.421 26.73 L 18 20.257 C 17.952 20.234 17.906 20.208 17.861 20.18 L 7.326 14.363 L 7.321 14.363 L 6.977 14.175 L 6.977 25.586 C 6.976 26.366 7.629 26.999 8.435 27 Z\" fill=\"rgb(40,168,234)\"></path><path d=\"M 16.744 6.638 L 16.744 21.035 C 16.743 21.54 16.425 21.994 15.942 22.183 C 15.792 22.245 15.63 22.277 15.467 22.277 L 6.977 22.277 L 6.977 6.075 L 8.372 6.075 L 8.372 5.4 L 15.467 5.4 C 16.172 5.403 16.742 5.956 16.744 6.638 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.1\"></path><path d=\"M 16.046 7.313 L 16.046 21.71 C 16.048 21.873 16.012 22.035 15.942 22.183 C 15.748 22.645 15.285 22.948 14.77 22.95 L 6.977 22.95 L 6.977 6.075 L 14.77 6.075 C 14.972 6.073 15.171 6.122 15.349 6.217 C 15.776 6.425 16.046 6.849 16.046 7.313 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 16.046 7.313 L 16.046 20.36 C 16.043 21.042 15.474 21.594 14.77 21.6 L 6.977 21.6 L 6.977 6.075 L 14.77 6.075 C 14.972 6.073 15.171 6.122 15.349 6.217 C 15.776 6.425 16.046 6.849 16.046 7.313 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 15.349 7.312 L 15.349 20.36 C 15.348 21.043 14.777 21.597 14.072 21.6 L 6.977 21.6 L 6.977 6.075 L 14.072 6.075 C 14.777 6.076 15.349 6.63 15.349 7.312 C 15.349 7.313 15.349 7.312 15.349 7.312 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><g><defs><linearGradient id=\"idss10167505042_70g828522074\" x1=\"0.21944437726678606\" x2=\"0.780555622733214\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(23,132,217)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(10,99,201)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 1.279 6.075 L 14.07 6.075 C 14.776 6.075 15.349 6.629 15.349 7.312 L 15.349 19.688 C 15.349 20.371 14.776 20.925 14.07 20.925 L 1.279 20.925 C 0.573 20.925 0 20.371 0 19.688 L 0 7.312 C 0 6.629 0.573 6.075 1.279 6.075 Z\" fill=\"url(#idss10167505042_70g828522074)\"></path></g><path d=\"M 3.997 11.265 C 4.312 10.615 4.821 10.071 5.458 9.703 C 6.163 9.313 6.966 9.118 7.779 9.14 C 8.532 9.125 9.275 9.309 9.927 9.674 C 10.54 10.028 11.034 10.546 11.348 11.166 C 11.691 11.849 11.861 12.601 11.846 13.36 C 11.863 14.153 11.687 14.939 11.334 15.655 C 11.012 16.297 10.502 16.833 9.869 17.199 C 9.191 17.575 8.421 17.764 7.64 17.747 C 6.871 17.765 6.111 17.578 5.445 17.207 C 4.826 16.852 4.326 16.334 4.005 15.712 C 3.66 15.039 3.487 14.296 3.501 13.545 C 3.486 12.758 3.656 11.979 3.997 11.265 Z M 5.554 14.93 C 5.722 15.341 6.007 15.697 6.376 15.957 C 6.752 16.211 7.201 16.342 7.66 16.331 C 8.148 16.35 8.629 16.214 9.03 15.945 C 9.394 15.685 9.672 15.328 9.828 14.918 C 10.003 14.459 10.089 13.973 10.083 13.485 C 10.088 12.991 10.007 12.501 9.843 12.033 C 9.698 11.612 9.429 11.24 9.07 10.963 C 8.678 10.681 8.199 10.538 7.711 10.558 C 7.243 10.546 6.783 10.678 6.398 10.935 C 6.023 11.197 5.732 11.556 5.56 11.971 C 5.179 12.923 5.177 13.978 5.555 14.931 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 22.326 4.05 L 28.605 4.05 L 28.605 10.125 L 22.326 10.125 Z\" fill=\"rgb(80,217,255)\"></path></g></g></g></g><path d=\"M 111 153.5 C 104.649 153.5 99.5 153.5 99.5 153.5 L 99.5 104.5 C 99.5 104.5 104.649 104.5 111 104.5 L 137 104.5 C 143.351 104.5 148.5 104.5 148.5 104.5 L 148.5 153.5 C 148.5 153.5 143.351 153.5 137 153.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 111 153.5 C 104.649 153.5 99.5 153.5 99.5 153.5 L 99.5 104.5 C 99.5 104.5 104.649 104.5 111 104.5 L 137 104.5 C 143.351 104.5 148.5 104.5 148.5 104.5 L 148.5 153.5 C 148.5 153.5 143.351 153.5 137 153.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(109 119)\" id=\"ss10167505042_75\"><path d=\"M 0 20 L 0 0 L 30 0 L 30 20 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_77\"><path d=\"M 0 20 L 0 0 L 30 0 L 30 20 Z\" fill=\"transparent\"></path><path d=\"M 21.325 2.223 L 15.811 2.223 C 10.85 2.223 10.469 4.392 10.469 7.298 L 10.469 12.703 C 10.469 15.725 10.85 17.778 15.83 17.778 L 21.325 17.778 C 26.285 17.778 26.667 15.609 26.667 12.722 L 26.667 7.298 C 26.667 4.392 26.285 2.223 21.325 2.223 Z M 3.333 6.116 C 3.333 3.559 4.326 2.223 6.005 2.223 C 7.683 2.223 8.676 3.559 8.676 6.116 L 8.676 13.884 C 8.676 16.442 7.683 17.778 6.005 17.778 C 4.326 17.778 3.333 16.442 3.333 13.884 Z\" fill=\"rgb(26,26,25)\"></path></g></g><path d=\"M 180 261.5 C 173.649 261.5 168.5 261.5 168.5 261.5 L 168.5 212.5 C 168.5 212.5 173.649 212.5 180 212.5 L 206 212.5 C 212.351 212.5 217.5 212.5 217.5 212.5 L 217.5 261.5 C 217.5 261.5 212.351 261.5 206 261.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 180 261.5 C 173.649 261.5 168.5 261.5 168.5 261.5 L 168.5 212.5 C 168.5 212.5 173.649 212.5 180 212.5 L 206 212.5 C 212.351 212.5 217.5 212.5 217.5 212.5 L 217.5 261.5 C 217.5 261.5 212.351 261.5 206 261.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(178 222)\" id=\"ss10167505042_82\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_84\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g transform=\"translate(1.071 4.554)\" id=\"ss10167505042_86\"><path d=\"M 0 20.893 L 5.521 20.893 L 5.521 0.001 L 0 0.001 Z\" fill=\"rgb(229,92,255)\"></path><path d=\"M 11.168 0 L 0 20.892 L 5.521 20.892 L 16.689 0 Z\" fill=\"rgb(36,35,92)\"></path><path d=\"M 11.168 20.892 L 16.689 20.892 L 16.689 0 L 11.168 0 Z\" fill=\"rgb(229,92,255)\"></path><path d=\"M 22.337 0 L 11.169 20.892 L 16.69 20.892 L 27.858 0 Z\" fill=\"rgb(36,35,92)\"></path><path d=\"M 22.306 20.892 L 27.826 20.892 L 27.826 0 L 22.306 0 Z\" fill=\"rgb(229,92,255)\"></path></g></g></g><path d=\"M 111 301.5 C 104.649 301.5 99.5 301.5 99.5 301.5 L 99.5 252.5 C 99.5 252.5 104.649 252.5 111 252.5 L 137 252.5 C 143.351 252.5 148.5 252.5 148.5 252.5 L 148.5 301.5 C 148.5 301.5 143.351 301.5 137 301.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 111 301.5 C 104.649 301.5 99.5 301.5 99.5 301.5 L 99.5 252.5 C 99.5 252.5 104.649 252.5 111 252.5 L 137 252.5 C 143.351 252.5 148.5 252.5 148.5 252.5 L 148.5 301.5 C 148.5 301.5 143.351 301.5 137 301.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(109 262)\" id=\"ss10167505042_94\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_96\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><path d=\"M 18.428 19.728 L 2.409 19.728 C 1.673 19.728 1.071 19.126 1.071 18.39 C 1.071 17.654 1.673 17.052 2.409 17.052 L 18.428 17.052 C 19.163 17.052 19.765 17.654 19.765 18.39 C 19.765 19.126 19.163 19.728 18.428 19.728 Z\" fill=\"rgb(153,207,172)\"></path><path d=\"M 15.016 27.921 C 13.712 27.921 12.408 27.72 11.17 27.352 C 10.468 27.118 10.067 26.382 10.301 25.68 C 10.535 24.978 11.271 24.577 11.973 24.811 C 12.943 25.112 13.979 25.279 15.016 25.279 C 19.564 25.279 23.51 22.369 24.815 18.022 C 25.015 17.32 25.784 16.918 26.487 17.119 C 27.189 17.32 27.59 18.089 27.39 18.791 C 25.684 24.242 20.735 27.921 15.016 27.921 Z\" fill=\"rgb(73,184,129)\"></path><path d=\"M 27.591 12.939 L 11.572 12.939 C 10.837 12.939 10.235 12.337 10.235 11.601 C 10.235 10.865 10.837 10.263 11.572 10.263 L 27.591 10.263 C 28.327 10.263 28.929 10.865 28.929 11.601 C 28.929 12.337 28.327 12.939 27.591 12.939 Z\" fill=\"rgb(153,207,172)\"></path><path d=\"M 3.914 12.939 C 3.78 12.939 3.646 12.906 3.513 12.872 C 2.81 12.671 2.409 11.902 2.61 11.2 C 4.315 5.749 9.265 2.07 15.017 2.07 C 16.321 2.07 17.625 2.271 18.863 2.639 C 19.565 2.873 19.966 3.609 19.732 4.311 C 19.498 5.013 18.762 5.415 18.06 5.18 C 17.09 4.879 16.053 4.712 15.017 4.712 C 10.469 4.712 6.522 7.622 5.218 11.969 C 5.018 12.571 4.483 12.939 3.914 12.939 Z\" fill=\"rgb(73,184,129)\"></path><path d=\"M 22.942 7.856 C 23.681 7.856 24.28 7.257 24.28 6.518 C 24.28 5.779 23.681 5.18 22.942 5.18 C 22.203 5.18 21.604 5.779 21.604 6.518 C 21.604 7.257 22.203 7.856 22.942 7.856 Z\" fill=\"rgb(153,207,172)\"></path><path d=\"M 7.057 24.844 C 7.796 24.844 8.395 24.245 8.395 23.506 C 8.395 22.767 7.796 22.168 7.057 22.168 C 6.318 22.168 5.719 22.767 5.719 23.506 C 5.719 24.245 6.318 24.844 7.057 24.844 Z\" fill=\"rgb(153,207,172)\"></path></g></g><path d=\"M 180 120.5 C 173.649 120.5 168.5 120.5 168.5 120.5 L 168.5 71.5 C 168.5 71.5 173.649 71.5 180 71.5 L 206 71.5 C 212.351 71.5 217.5 71.5 217.5 71.5 L 217.5 120.5 C 217.5 120.5 212.351 120.5 206 120.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 180 120.5 C 173.649 120.5 168.5 120.5 168.5 120.5 L 168.5 71.5 C 168.5 71.5 173.649 71.5 180 71.5 L 206 71.5 C 212.351 71.5 217.5 71.5 217.5 71.5 L 217.5 120.5 C 217.5 120.5 212.351 120.5 206 120.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(178 81)\" id=\"ss10167505042_106\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_108\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_110\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><path d=\"M 13.348 0.911 C 17.927 0.911 24.848 2.321 28.067 5.555 C 28.883 6.375 29.951 7.981 29.951 10.333 C 29.951 14.515 26.595 20.933 22.89 24.652 C 20.974 26.575 17.927 29.089 13.828 29.089 C 9.822 29.089 6.761 26.357 5.876 25.467 C 2.482 22.059 0.051 16.887 0.051 12.064 C 0.051 9.021 0.915 6.364 3.119 4.147 C 5.161 2.1 8.678 0.911 13.348 0.911 Z M 19.016 17.588 C 20.562 16.035 20.978 14.122 20.978 13.069 C 20.985 12.544 20.887 12.022 20.689 11.535 C 20.492 11.048 20.199 10.605 19.828 10.233 C 18.37 8.769 16.755 8.355 15.001 8.355 C 12.776 8.355 11.281 9.062 10.285 10.062 C 9.504 10.846 8.829 12.052 8.829 13.762 C 8.829 15.472 9.738 17.127 10.729 18.121 C 11.644 19.04 13.082 19.721 14.529 19.721 C 15.976 19.721 17.47 19.141 19.016 17.588 Z\" fill=\"rgb(89,82,255)\"></path></g></g></g><path d=\"M 179 49.5 C 172.649 49.5 167.5 49.5 167.5 49.5 L 167.5 0.5 C 167.5 0.5 172.649 0.5 179 0.5 L 205 0.5 C 211.351 0.5 216.5 0.5 216.5 0.5 L 216.5 49.5 C 216.5 49.5 211.351 49.5 205 49.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 179 49.5 C 172.649 49.5 167.5 49.5 167.5 49.5 L 167.5 0.5 C 167.5 0.5 172.649 0.5 179 0.5 L 205 0.5 C 211.351 0.5 216.5 0.5 216.5 0.5 L 216.5 49.5 C 216.5 49.5 211.351 49.5 205 49.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(177 13.495)\" id=\"ss10167505042_115\"><path d=\"M 0 23.005 L 0 0.005 L 30 0.005 L 30 23.005 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss10167505042_117\"><path d=\"M 0 23.005 L 0 0.005 L 30 0.005 L 30 23.005 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss10167505042_119\"><path d=\"M 0 23.005 L 0 0.005 L 30 0.005 L 30 23.005 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss10167505042_121\"><path d=\"M 2.045 23.005 L 6.818 23.005 L 6.818 11.157 L 0 5.93 L 0 20.914 C 0 22.071 0.917 23.005 2.045 23.005 Z\" fill=\"rgb(66,133,244)\"></path><path d=\"M 23.182 23.005 L 27.954 23.005 C 29.086 23.005 30 22.068 30 20.914 L 30 5.93 L 23.182 11.157\" fill=\"rgb(52,168,83)\"></path><path d=\"M 23.182 2.097 L 23.182 11.157 L 30 5.93 L 30 3.142 C 30 0.557 27.112 -0.918 25.091 0.633\" fill=\"rgb(251,188,4)\"></path><path d=\"M 6.818 11.157 L 6.818 2.097 L 15 8.369 L 23.182 2.097 L 23.182 11.157 L 15 17.43\" fill=\"rgb(234,67,53)\"></path><path d=\"M 0 3.142 L 0 5.93 L 6.818 11.157 L 6.818 2.097 L 4.909 0.633 C 2.884 -0.918 0 0.557 0 3.142 Z\" fill=\"rgb(197,34,31)\"></path></g></g></g></g><path d=\"M 112 81.5 C 105.649 81.5 100.5 81.5 100.5 81.5 L 100.5 32.5 C 100.5 32.5 105.649 32.5 112 32.5 L 138 32.5 C 144.351 32.5 149.5 32.5 149.5 32.5 L 149.5 81.5 C 149.5 81.5 144.351 81.5 138 81.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 112 81.5 C 105.649 81.5 100.5 81.5 100.5 81.5 L 100.5 32.5 C 100.5 32.5 105.649 32.5 112 32.5 L 138 32.5 C 144.351 32.5 149.5 32.5 149.5 32.5 L 149.5 81.5 C 149.5 81.5 144.351 81.5 138 81.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(110 42)\" id=\"ss10167505042_129\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_131\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_133\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><path d=\"M 18.751 15.007 C 18.751 16.089 18.555 17.161 18.174 18.174 C 17.162 18.555 16.089 18.75 15.007 18.75 L 14.994 18.75 C 13.912 18.751 12.839 18.555 11.826 18.174 C 11.444 17.162 11.249 16.089 11.249 15.007 L 11.249 14.992 C 11.249 13.878 11.453 12.81 11.824 11.825 C 12.837 11.443 13.91 11.248 14.992 11.249 L 15.004 11.249 C 16.12 11.249 17.187 11.453 18.172 11.825 C 18.554 12.838 18.749 13.911 18.748 14.992 L 18.748 15.007 Z M 29.792 12.5 L 21.037 12.5 L 27.227 6.309 C 26.254 4.942 25.059 3.747 23.691 2.774 L 17.5 8.965 L 17.5 0.209 C 16.676 0.07 15.843 0.001 15.008 0 L 14.992 0 C 14.143 0 13.311 0.073 12.5 0.209 L 12.5 8.965 L 6.307 2.773 C 5.625 3.259 4.985 3.8 4.394 4.393 L 4.391 4.396 C 3.799 4.987 3.258 5.628 2.773 6.309 L 8.966 12.5 L 0.208 12.5 C 0.208 12.5 0 14.145 0 14.995 L 0 15.005 C 0 15.855 0.072 16.689 0.209 17.5 L 8.966 17.5 L 2.772 23.69 C 3.747 25.057 4.942 26.252 6.309 27.226 L 12.501 21.035 L 12.501 29.792 C 13.31 29.927 14.141 29.999 14.989 30 L 15.011 30 C 15.844 29.999 16.677 29.93 17.499 29.792 L 17.499 21.035 L 23.692 27.227 C 24.374 26.741 25.014 26.2 25.607 25.608 L 25.608 25.608 C 26.199 25.015 26.74 24.375 27.226 23.693 L 21.035 17.5 L 29.793 17.5 C 29.928 16.69 30 15.859 30 15.011 L 30 14.989 C 30 14.155 29.93 13.322 29.792 12.5 Z\" fill=\"rgb(255,74,0)\"></path></g></g></g></svg>',svgContentId:10167505042,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nuh1tf\",\"data-framer-name\":\"Left_Part\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ep4m8z-container\",isAuthoredByUser:true,nodeId:\"HoAvijKAm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LeftSvgWires,{height:\"100%\",id:\"HoAvijKAm\",layoutId:\"HoAvijKAm\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-klpudb\",\"data-framer-name\":\"Vector 21\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 81 76\"></svg>',svgContentId:11817787165,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-77yxr3\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-iadblf\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_43\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_43)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Integrate CaaS\"})}),className:\"framer-j7ax3m\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10x9mnv\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12sdmik\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25866 0H1.72266C1.1306 0 0.650635 0.484109 0.650635 1.08129V7.56901C0.650635 8.16619 1.1306 8.6503 1.72266 8.6503H2.25866C2.85073 8.6503 3.33069 8.16619 3.33069 7.56901V1.08129C3.33069 0.484109 2.85073 0 2.25866 0Z\" stroke=\"#A4ADBA\" stroke-width=\"1.17857\"/>\\n<path d=\"M7.88684 4.48904V2.97353V1.3516C7.88684 1.10039 7.88684 0.974787 7.86625 0.870335C7.78165 0.441394 7.44923 0.106097 7.02396 0.0207694C6.92041 5.45137e-08 6.79588 0 6.54682 0C6.29776 0 6.17322 5.45137e-08 6.06967 0.0207694C5.64441 0.106097 5.31198 0.441394 5.22739 0.870335C5.20679 0.974787 5.20679 1.10039 5.20679 1.3516V10.5425C5.20679 10.7938 5.20679 10.9193 5.22739 11.0238C5.31198 11.4527 5.64441 11.7881 6.06967 11.8733C6.17322 11.8941 6.29776 11.8941 6.54682 11.8941\" stroke=\"#A4ADBA\" stroke-width=\"1.17857\" stroke-linecap=\"round\"/>\\n<path d=\"M9.76318 1.3516C9.76318 1.10039 9.76318 0.974787 9.7838 0.870335C9.86844 0.441394 10.2008 0.106097 10.6261 0.0207694C10.7296 5.45137e-08 10.8542 0 11.1032 0C11.3523 0 11.4768 5.45137e-08 11.5804 0.0207694C12.0056 0.106097 12.3381 0.441394 12.4227 0.870335C12.4433 0.974787 12.4433 1.10039 12.4433 1.3516V1.89225C12.4433 2.14346 12.4433 2.26907 12.4227 2.37352C12.3381 2.80245 12.0056 3.13776 11.5804 3.22308C11.4768 3.24386 11.3523 3.24386 11.1032 3.24386C10.8542 3.24386 10.7296 3.24386 10.6261 3.22308C10.2008 3.13776 9.86844 2.80245 9.7838 2.37352C9.76318 2.26907 9.76318 2.14346 9.76318 1.89225V1.3516Z\" stroke=\"#A4ADBA\" stroke-width=\"1.17857\"/>\\n<path d=\"M10.2995 12C11.9573 12 13.3012 10.6445 13.3012 8.97243C13.3012 7.30033 11.9573 5.94482 10.2995 5.94482C8.64174 5.94482 7.29785 7.30033 7.29785 8.97243C7.29785 10.6445 8.64174 12 10.2995 12Z\" stroke=\"#A4ADBA\" stroke-width=\"1.07143\" stroke-linecap=\"round\"/>\\n<path d=\"M10.6747 7.83691V8.97227H9.54907\" stroke=\"#A4ADBA\" stroke-width=\"1.07143\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Check tracking info\"})}),className:\"framer-jc7hvm\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ago3e5\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fmf7zf\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Make payment\"})}),className:\"framer-1qi073t\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fq8wxb\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17r6ard\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Modify billing information\"})}),className:\"framer-1gbbbx3\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e5kp9x\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-155m0lf\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Escalate call\"})}),className:\"framer-dvnjtr\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x7vwyf\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qqux59\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Save to CRM\"})}),className:\"framer-sxwm2l\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19oag9h\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-35vnmj\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Save to CRM\"})}),className:\"framer-1qeu0jw\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x5swys\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1oai8m0\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_55\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0H0V11.25H11.25V0Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_55)\">\\n<path d=\"M10.8477 5.21735V5.17717C10.8477 4.05207 10.8477 3.48952 10.6287 3.05978C10.4361 2.68178 10.1288 2.37445 9.75081 2.18185C9.32106 1.96289 8.75849 1.96289 7.63341 1.96289H4.41913C3.29403 1.96289 2.73148 1.96289 2.30175 2.18185C1.92375 2.37445 1.61642 2.68177 1.42381 3.05978C1.20486 3.48951 1.20485 4.05206 1.20484 5.17716L1.20483 6.7843C1.20483 7.90942 1.20483 8.472 1.42379 8.90167C1.61639 9.27967 1.92372 9.58702 2.30172 9.77962C2.73146 9.99862 3.29401 9.99862 4.41912 9.99862H5.42357\" stroke=\"#868B98\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.03498 3.96094L6.3443 5.7065C5.99537 6.06676 5.41669 6.06406 5.07114 5.70055C4.7186 5.32969 4.12553 5.33556 3.78039 5.71331L2.81177 6.77344\" stroke=\"#868B98\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.83887 10.4824C10.0815 10.4824 11.0889 9.47506 11.0889 8.23242C11.0889 6.98978 10.0815 5.98242 8.83887 5.98242C7.59623 5.98242 6.58887 6.98978 6.58887 8.23242C6.58887 9.47506 7.59623 10.4824 8.83887 10.4824Z\" stroke=\"#868B98\" stroke-width=\"1.07143\" stroke-linecap=\"round\"/>\\n<path d=\"M9.12012 7.38867V8.23245H8.27637\" stroke=\"#868B98\" stroke-width=\"1.07143\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Schedule appointment\"})}),className:\"framer-1txrom4\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iuhutr\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-42qitm\",\"data-framer-name\":\"Rectangle 12\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xqadtm\",\"data-framer-name\":\"Rectangle 13\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"68px\",src:\"https://framerusercontent.com/images/keaS28RAuPgSm34pkaW6bNpnPI.png\",srcSet:\"https://framerusercontent.com/images/keaS28RAuPgSm34pkaW6bNpnPI.png 658w\"},className:\"framer-bf8y3n\",\"data-framer-name\":\"Transparent (2) 2\",transformTemplate:transformTemplate1})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uwatrh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iigyw6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"With AI powered analytics\"})}),className:\"framer-i2gsxa\",\"data-framer-name\":\"Integrated with everything.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"21px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Record, transcribe, and analyze calls with AI-driven insights and summaries to optimize every interaction\"})}),className:\"framer-8sd3qz\",\"data-framer-name\":\"precision. Design powerful workflows, deploy AI, integrate your data and build detailed reports \u2014 all in one platform.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:395,pixelWidth:754,positionX:\"center\",positionY:\"center\",sizes:\"628px\",src:\"https://framerusercontent.com/images/6ELQRLWDh6f7ntyJG9rzgv7Cpfs.svg\",srcSet:\"https://framerusercontent.com/images/6ELQRLWDh6f7ntyJG9rzgv7Cpfs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/6ELQRLWDh6f7ntyJG9rzgv7Cpfs.svg 754w\"},className:\"framer-1vxeqr\",\"data-framer-name\":\"Level 4 - Card\",style:{scale:.55}})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jfaw7z hidden-72rtr7 hidden-1fyuir6 hidden-1vmutcu\",\"data-framer-name\":\"Bone\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1LBoBDxd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5024+0+100+206+1754),pixelHeight:395,pixelWidth:754,positionX:\"center\",positionY:\"center\",sizes:\"628px\",src:\"https://framerusercontent.com/images/6ELQRLWDh6f7ntyJG9rzgv7Cpfs.svg\",srcSet:\"https://framerusercontent.com/images/6ELQRLWDh6f7ntyJG9rzgv7Cpfs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/6ELQRLWDh6f7ntyJG9rzgv7Cpfs.svg 754w\"},style:{scale:.7}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:395,pixelWidth:754,positionX:\"center\",positionY:\"center\",sizes:\"628px\",src:\"https://framerusercontent.com/images/6ELQRLWDh6f7ntyJG9rzgv7Cpfs.svg\",srcSet:\"https://framerusercontent.com/images/6ELQRLWDh6f7ntyJG9rzgv7Cpfs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/6ELQRLWDh6f7ntyJG9rzgv7Cpfs.svg 754w\"},className:\"framer-ra5dbu\",\"data-framer-name\":\"Level 4 - Card\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rqsjkk\",\"data-framer-name\":\"Level 4 - Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"With AI powered analytics\"})}),className:\"framer-1teyp0w\",\"data-framer-name\":\"Integrated with everything.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Record, transcribe, and analyze calls with AI-driven insights and summaries to optimize every interaction\"})}),className:\"framer-1wzar0t\",\"data-framer-name\":\"precision. Design powerful workflows, deploy AI, integrate your data and build detailed reports \u2014 all in one platform.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-155bow8\",\"data-framer-name\":\"Level 3 - Conent\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Connected to your software\"})}),className:\"framer-edsrmq\",\"data-framer-name\":\"Integrated with everything.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Phonely integrates your tools in real-time schedule appointments, update CRMs, and so much more \"})}),className:\"framer-1wlqrmw\",\"data-framer-name\":\"precision. Design powerful workflows, deploy AI, integrate your data and build detailed reports \u2014 all in one platform.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1LBoBDxd:{y:(componentViewport?.y||0)+0+5024+0+100+206+1355+0+154}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f8s3ym-container\",nodeId:\"eQLx_Vn1t\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"eQLx_Vn1t\",layoutId:\"eQLx_Vn1t\",muxhgbKdh:false,Pw3Qxl4NQ:\"View integrations\",style:{height:\"100%\"},variant:\"OQMKxbynb\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m5wfgo\",\"data-border\":true,\"data-framer-name\":\"Level 3 - Card\",style:{scale:.7},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cn3iwe-container\",isAuthoredByUser:true,nodeId:\"gbKnm7uq0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(RightSvgWires,{height:\"100%\",id:\"gbKnm7uq0\",layoutId:\"gbKnm7uq0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12leaii\",\"data-framer-name\":\"Right_Part\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 218 334\"><path d=\"M 180 188.5 C 173.649 188.5 168.5 188.5 168.5 188.5 L 168.5 139.5 C 168.5 139.5 173.649 139.5 180 139.5 L 206 139.5 C 212.351 139.5 217.5 139.5 217.5 139.5 L 217.5 188.5 C 217.5 188.5 212.351 188.5 206 188.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 180 188.5 C 173.649 188.5 168.5 188.5 168.5 188.5 L 168.5 139.5 C 168.5 139.5 173.649 139.5 180 139.5 L 206 139.5 C 212.351 139.5 217.5 139.5 217.5 139.5 L 217.5 188.5 C 217.5 188.5 212.351 188.5 206 188.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(178 149)\" id=\"ss10167505042_3\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_5\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_7\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><path d=\"M 6.597 19.077 C 6.597 20.8 5.205 22.192 3.483 22.192 C 1.761 22.192 0.369 20.8 0.369 19.077 C 0.369 17.355 1.761 15.963 3.483 15.963 L 6.597 15.963 Z M 8.154 19.077 C 8.154 17.355 9.546 15.963 11.268 15.963 C 12.99 15.963 14.382 17.355 14.382 19.077 L 14.382 26.863 C 14.382 28.585 12.99 29.977 11.268 29.977 C 9.546 29.977 8.154 28.585 8.154 26.863 Z\" fill=\"rgb(224,30,90)\"></path><path d=\"M 11.268 6.572 C 9.546 6.572 8.154 5.181 8.154 3.458 C 8.154 1.736 9.546 0.344 11.268 0.344 C 12.99 0.344 14.382 1.736 14.382 3.458 L 14.382 6.572 Z M 11.268 8.153 C 12.99 8.153 14.382 9.545 14.382 11.267 C 14.382 12.989 12.99 14.381 11.268 14.381 L 3.459 14.381 C 1.737 14.381 0.345 12.989 0.345 11.267 C 0.345 9.545 1.737 8.153 3.459 8.153 Z\" fill=\"rgb(54,197,240)\"></path><path d=\"M 23.747 11.267 C 23.747 9.545 25.139 8.153 26.861 8.153 C 28.584 8.153 29.975 9.545 29.975 11.267 C 29.975 12.989 28.584 14.381 26.861 14.381 L 23.747 14.381 Z M 22.19 11.267 C 22.19 12.989 20.798 14.381 19.076 14.381 C 17.354 14.381 15.962 12.989 15.962 11.267 L 15.962 3.458 C 15.962 1.736 17.354 0.344 19.076 0.344 C 20.798 0.344 22.19 1.736 22.19 3.458 Z\" fill=\"rgb(46,182,125)\"></path><path d=\"M 19.076 23.749 C 20.798 23.749 22.19 25.141 22.19 26.863 C 22.19 28.585 20.798 29.977 19.076 29.977 C 17.354 29.977 15.962 28.585 15.962 26.863 L 15.962 23.749 Z M 19.076 22.192 C 17.354 22.192 15.962 20.8 15.962 19.077 C 15.962 17.355 17.354 15.963 19.076 15.963 L 26.885 15.963 C 28.607 15.963 29.999 17.355 29.999 19.077 C 29.999 20.8 28.607 22.192 26.885 22.192 Z\" fill=\"rgb(236,178,46)\"></path></g></g></g><path d=\"M 111 226.5 C 104.649 226.5 99.5 226.5 99.5 226.5 L 99.5 177.5 C 99.5 177.5 104.649 177.5 111 177.5 L 137 177.5 C 143.351 177.5 148.5 177.5 148.5 177.5 L 148.5 226.5 C 148.5 226.5 143.351 226.5 137 226.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 111 226.5 C 104.649 226.5 99.5 226.5 99.5 226.5 L 99.5 177.5 C 99.5 177.5 104.649 177.5 111 177.5 L 137 177.5 C 143.351 177.5 148.5 177.5 148.5 177.5 L 148.5 226.5 C 148.5 226.5 143.351 226.5 137 226.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(109 188.5)\" id=\"ss10167505042_15\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_17\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_19\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_21\"><path d=\"M 30 14.175 C 30.002 13.948 29.881 13.737 29.681 13.619 L 29.677 13.619 L 29.665 13.612 L 19.269 7.658 C 19.224 7.629 19.178 7.602 19.13 7.578 C 18.728 7.378 18.252 7.378 17.85 7.578 C 17.802 7.602 17.755 7.629 17.711 7.658 L 7.315 13.612 L 7.303 13.619 C 6.985 13.81 6.888 14.214 7.085 14.521 C 7.143 14.612 7.224 14.687 7.319 14.741 L 17.714 20.695 C 17.759 20.724 17.806 20.75 17.854 20.775 C 18.255 20.975 18.732 20.975 19.133 20.775 C 19.181 20.75 19.228 20.724 19.273 20.695 L 29.668 14.741 C 29.876 14.624 30.003 14.408 30 14.175 Z\" fill=\"rgb(10,39,103)\"></path><path d=\"M 8.527 10.2 L 15.349 10.2 L 15.349 16.25 L 8.527 16.25 Z M 28.604 4.05 L 28.604 1.282 C 28.621 0.591 28.055 0.017 27.34 0 L 9.637 0 C 8.922 0.017 8.356 0.591 8.372 1.282 L 8.372 4.05 L 18.837 6.75 Z\" fill=\"rgb(3,100,184)\"></path><path d=\"M 8.372 4.05 L 15.349 4.05 L 15.349 10.125 L 8.372 10.125 Z\" fill=\"rgb(0,120,212)\"></path><path d=\"M 22.326 4.05 L 15.349 4.05 L 15.349 10.125 L 22.326 16.2 L 28.605 16.2 L 28.605 10.125 Z\" fill=\"rgb(40,168,234)\"></path><path d=\"M 15.349 10.125 L 22.326 10.125 L 22.326 16.2 L 15.349 16.2 Z\" fill=\"rgb(0,120,212)\"></path><path d=\"M 15.349 16.2 L 22.326 16.2 L 22.326 22.275 L 15.349 22.275 Z\" fill=\"rgb(3,100,184)\"></path><path d=\"M 8.527 16.25 L 15.349 16.25 L 15.349 21.75 L 8.527 21.75 Z\" fill=\"rgb(20,68,125)\"></path><path d=\"M 22.326 16.2 L 28.605 16.2 L 28.605 22.275 L 22.326 22.275 Z\" fill=\"rgb(0,120,212)\"></path><g><defs><linearGradient id=\"idss10167505042_30g1977229117\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(53,184,241)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(40,168,234)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.68 14.703 L 29.667 14.71 L 19.272 20.367 C 19.226 20.394 19.18 20.419 19.132 20.442 C 18.956 20.524 18.764 20.569 18.568 20.577 L 18 20.256 C 17.952 20.233 17.906 20.207 17.861 20.178 L 7.326 14.361 L 7.321 14.361 L 6.977 14.175 L 6.977 25.626 C 6.982 26.39 7.626 27.005 8.416 27 L 28.583 27 C 28.595 27 28.605 26.994 28.618 26.994 C 28.784 26.984 28.949 26.951 29.106 26.896 C 29.174 26.868 29.239 26.835 29.302 26.797 C 29.349 26.772 29.429 26.716 29.429 26.716 C 29.786 26.46 29.998 26.056 30 25.626 L 30 14.175 C 30 14.394 29.877 14.596 29.68 14.703 Z\" fill=\"url(#idss10167505042_30g1977229117)\"></path></g><path d=\"M 29.442 14.129 L 29.442 14.831 L 18.572 22.072 L 7.318 14.366 C 7.318 14.362 7.315 14.359 7.311 14.359 L 6.279 13.758 L 6.279 13.252 L 6.704 13.245 L 7.604 13.745 L 7.625 13.751 L 7.702 13.799 C 7.702 13.799 18.279 19.637 18.307 19.651 L 18.711 19.88 C 18.746 19.867 18.781 19.853 18.823 19.84 C 18.844 19.826 29.323 14.123 29.323 14.123 Z\" fill=\"rgb(10,39,103)\" opacity=\"0.5\"></path><path d=\"M 29.681 14.703 L 29.667 14.711 L 19.272 20.367 C 19.227 20.394 19.181 20.42 19.133 20.443 C 18.729 20.634 18.257 20.634 17.853 20.443 C 17.805 20.42 17.759 20.395 17.714 20.367 L 7.318 14.711 L 7.306 14.703 C 7.105 14.598 6.979 14.396 6.977 14.175 L 6.977 25.626 C 6.982 26.389 7.626 27.005 8.416 27 L 28.562 27 C 29.351 27.005 29.995 26.389 30 25.626 L 30 14.175 C 30 14.394 29.878 14.596 29.681 14.703 Z\" fill=\"rgb(20,144,223)\"></path><path d=\"M 19.423 20.284 L 19.267 20.369 C 19.222 20.396 19.176 20.422 19.128 20.445 C 18.957 20.526 18.77 20.574 18.58 20.585 L 22.535 25.11 L 29.434 26.719 C 29.623 26.581 29.773 26.399 29.871 26.19 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.1\"></path><path d=\"M 20.128 19.9 L 19.267 20.368 C 19.222 20.396 19.176 20.421 19.128 20.444 C 18.957 20.526 18.77 20.574 18.58 20.585 L 20.433 25.528 L 29.436 26.716 C 29.791 26.459 30 26.055 30 25.626 L 30 25.478 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.05\"></path><path d=\"M 8.435 27 L 28.56 27 C 28.869 27.001 29.171 26.907 29.421 26.73 L 18 20.257 C 17.952 20.234 17.906 20.208 17.861 20.18 L 7.326 14.363 L 7.321 14.363 L 6.977 14.175 L 6.977 25.586 C 6.976 26.366 7.629 26.999 8.435 27 Z\" fill=\"rgb(40,168,234)\"></path><path d=\"M 16.744 6.638 L 16.744 21.035 C 16.743 21.54 16.425 21.994 15.942 22.183 C 15.792 22.245 15.63 22.277 15.467 22.277 L 6.977 22.277 L 6.977 6.075 L 8.372 6.075 L 8.372 5.4 L 15.467 5.4 C 16.172 5.403 16.742 5.956 16.744 6.638 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.1\"></path><path d=\"M 16.046 7.313 L 16.046 21.71 C 16.048 21.873 16.012 22.035 15.942 22.183 C 15.748 22.645 15.285 22.948 14.77 22.95 L 6.977 22.95 L 6.977 6.075 L 14.77 6.075 C 14.972 6.073 15.171 6.122 15.349 6.217 C 15.776 6.425 16.046 6.849 16.046 7.313 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 16.046 7.313 L 16.046 20.36 C 16.043 21.042 15.474 21.594 14.77 21.6 L 6.977 21.6 L 6.977 6.075 L 14.77 6.075 C 14.972 6.073 15.171 6.122 15.349 6.217 C 15.776 6.425 16.046 6.849 16.046 7.313 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 15.349 7.312 L 15.349 20.36 C 15.348 21.043 14.777 21.597 14.072 21.6 L 6.977 21.6 L 6.977 6.075 L 14.072 6.075 C 14.777 6.076 15.349 6.63 15.349 7.312 C 15.349 7.313 15.349 7.312 15.349 7.312 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><g><defs><linearGradient id=\"idss10167505042_40g828522074\" x1=\"0.2194443772667855\" x2=\"0.7805556227332144\" y1=\"5.551115123125783e-17\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(23,132,217)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(10,99,201)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 1.279 6.075 L 14.07 6.075 C 14.776 6.075 15.349 6.629 15.349 7.312 L 15.349 19.688 C 15.349 20.371 14.776 20.925 14.07 20.925 L 1.279 20.925 C 0.573 20.925 0 20.371 0 19.688 L 0 7.312 C 0 6.629 0.573 6.075 1.279 6.075 Z\" fill=\"url(#idss10167505042_40g828522074)\"></path></g><path d=\"M 3.997 11.265 C 4.312 10.615 4.821 10.071 5.458 9.703 C 6.163 9.313 6.966 9.118 7.779 9.14 C 8.532 9.125 9.275 9.309 9.927 9.674 C 10.54 10.028 11.034 10.546 11.348 11.166 C 11.691 11.849 11.861 12.601 11.846 13.36 C 11.863 14.153 11.687 14.939 11.334 15.655 C 11.012 16.297 10.502 16.833 9.869 17.199 C 9.191 17.575 8.421 17.764 7.64 17.747 C 6.871 17.765 6.111 17.578 5.445 17.207 C 4.826 16.852 4.326 16.334 4.005 15.712 C 3.66 15.039 3.487 14.296 3.501 13.545 C 3.486 12.758 3.656 11.979 3.997 11.265 Z M 5.554 14.93 C 5.722 15.341 6.007 15.697 6.376 15.957 C 6.752 16.211 7.201 16.342 7.66 16.331 C 8.148 16.35 8.629 16.214 9.03 15.945 C 9.394 15.685 9.672 15.328 9.828 14.918 C 10.003 14.459 10.089 13.973 10.083 13.485 C 10.088 12.991 10.007 12.501 9.843 12.033 C 9.698 11.612 9.429 11.24 9.07 10.963 C 8.678 10.681 8.199 10.538 7.711 10.558 C 7.243 10.546 6.783 10.678 6.398 10.935 C 6.023 11.197 5.732 11.556 5.56 11.971 C 5.179 12.923 5.177 13.978 5.555 14.931 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 22.326 4.05 L 28.605 4.05 L 28.605 10.125 L 22.326 10.125 Z\" fill=\"rgb(80,217,255)\"></path></g></g></g></g><path d=\"M 180 333.5 C 173.649 333.5 168.5 333.5 168.5 333.5 L 168.5 284.5 C 168.5 284.5 173.649 284.5 180 284.5 L 206 284.5 C 212.351 284.5 217.5 284.5 217.5 284.5 L 217.5 333.5 C 217.5 333.5 212.351 333.5 206 333.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 180 333.5 C 173.649 333.5 168.5 333.5 168.5 333.5 L 168.5 284.5 C 168.5 284.5 173.649 284.5 180 284.5 L 206 284.5 C 212.351 284.5 217.5 284.5 217.5 284.5 L 217.5 333.5 C 217.5 333.5 212.351 333.5 206 333.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(178 295.5)\" id=\"ss10167505042_45\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_47\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_49\"><path d=\"M 0 27 L 0 0 L 30 0 L 30 27 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_51\"><path d=\"M 30 14.175 C 30.002 13.948 29.881 13.737 29.681 13.619 L 29.677 13.619 L 29.665 13.612 L 19.269 7.658 C 19.224 7.629 19.178 7.602 19.13 7.578 C 18.728 7.378 18.252 7.378 17.85 7.578 C 17.802 7.602 17.755 7.629 17.711 7.658 L 7.315 13.612 L 7.303 13.619 C 6.985 13.81 6.888 14.214 7.085 14.521 C 7.143 14.612 7.224 14.687 7.319 14.741 L 17.714 20.695 C 17.759 20.724 17.806 20.75 17.854 20.775 C 18.255 20.975 18.732 20.975 19.133 20.775 C 19.181 20.75 19.228 20.724 19.273 20.695 L 29.668 14.741 C 29.876 14.624 30.003 14.408 30 14.175 Z\" fill=\"rgb(10,39,103)\"></path><path d=\"M 8.527 10.2 L 15.349 10.2 L 15.349 16.25 L 8.527 16.25 Z M 28.604 4.05 L 28.604 1.282 C 28.621 0.591 28.055 0.017 27.34 0 L 9.637 0 C 8.922 0.017 8.356 0.591 8.372 1.282 L 8.372 4.05 L 18.837 6.75 Z\" fill=\"rgb(3,100,184)\"></path><path d=\"M 8.372 4.05 L 15.349 4.05 L 15.349 10.125 L 8.372 10.125 Z\" fill=\"rgb(0,120,212)\"></path><path d=\"M 22.326 4.05 L 15.349 4.05 L 15.349 10.125 L 22.326 16.2 L 28.605 16.2 L 28.605 10.125 Z\" fill=\"rgb(40,168,234)\"></path><path d=\"M 15.349 10.125 L 22.326 10.125 L 22.326 16.2 L 15.349 16.2 Z\" fill=\"rgb(0,120,212)\"></path><path d=\"M 15.349 16.2 L 22.326 16.2 L 22.326 22.275 L 15.349 22.275 Z\" fill=\"rgb(3,100,184)\"></path><path d=\"M 8.527 16.25 L 15.349 16.25 L 15.349 21.75 L 8.527 21.75 Z\" fill=\"rgb(20,68,125)\"></path><path d=\"M 22.326 16.2 L 28.605 16.2 L 28.605 22.275 L 22.326 22.275 Z\" fill=\"rgb(0,120,212)\"></path><g><defs><linearGradient id=\"idss10167505042_60g1977229117\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(53,184,241)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(40,168,234)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.68 14.703 L 29.667 14.71 L 19.272 20.367 C 19.226 20.394 19.18 20.419 19.132 20.442 C 18.956 20.524 18.764 20.569 18.568 20.577 L 18 20.256 C 17.952 20.233 17.906 20.207 17.861 20.178 L 7.326 14.361 L 7.321 14.361 L 6.977 14.175 L 6.977 25.626 C 6.982 26.39 7.626 27.005 8.416 27 L 28.583 27 C 28.595 27 28.605 26.994 28.618 26.994 C 28.784 26.984 28.949 26.951 29.106 26.896 C 29.174 26.868 29.239 26.835 29.302 26.797 C 29.349 26.772 29.429 26.716 29.429 26.716 C 29.786 26.46 29.998 26.056 30 25.626 L 30 14.175 C 30 14.394 29.877 14.596 29.68 14.703 Z\" fill=\"url(#idss10167505042_60g1977229117)\"></path></g><path d=\"M 29.442 14.129 L 29.442 14.831 L 18.572 22.072 L 7.318 14.366 C 7.318 14.362 7.315 14.359 7.311 14.359 L 6.279 13.758 L 6.279 13.252 L 6.704 13.245 L 7.604 13.745 L 7.625 13.751 L 7.702 13.799 C 7.702 13.799 18.279 19.637 18.307 19.651 L 18.711 19.88 C 18.746 19.867 18.781 19.853 18.823 19.84 C 18.844 19.826 29.323 14.123 29.323 14.123 Z\" fill=\"rgb(10,39,103)\" opacity=\"0.5\"></path><path d=\"M 29.681 14.703 L 29.667 14.711 L 19.272 20.367 C 19.227 20.394 19.181 20.42 19.133 20.443 C 18.729 20.634 18.257 20.634 17.853 20.443 C 17.805 20.42 17.759 20.395 17.714 20.367 L 7.318 14.711 L 7.306 14.703 C 7.105 14.598 6.979 14.396 6.977 14.175 L 6.977 25.626 C 6.982 26.389 7.626 27.005 8.416 27 L 28.562 27 C 29.351 27.005 29.995 26.389 30 25.626 L 30 14.175 C 30 14.394 29.878 14.596 29.681 14.703 Z\" fill=\"rgb(20,144,223)\"></path><path d=\"M 19.423 20.284 L 19.267 20.369 C 19.222 20.396 19.176 20.422 19.128 20.445 C 18.957 20.526 18.77 20.574 18.58 20.585 L 22.535 25.11 L 29.434 26.719 C 29.623 26.581 29.773 26.399 29.871 26.19 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.1\"></path><path d=\"M 20.128 19.9 L 19.267 20.368 C 19.222 20.396 19.176 20.421 19.128 20.444 C 18.957 20.526 18.77 20.574 18.58 20.585 L 20.433 25.528 L 29.436 26.716 C 29.791 26.459 30 26.055 30 25.626 L 30 25.478 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.05\"></path><path d=\"M 8.435 27 L 28.56 27 C 28.869 27.001 29.171 26.907 29.421 26.73 L 18 20.257 C 17.952 20.234 17.906 20.208 17.861 20.18 L 7.326 14.363 L 7.321 14.363 L 6.977 14.175 L 6.977 25.586 C 6.976 26.366 7.629 26.999 8.435 27 Z\" fill=\"rgb(40,168,234)\"></path><path d=\"M 16.744 6.638 L 16.744 21.035 C 16.743 21.54 16.425 21.994 15.942 22.183 C 15.792 22.245 15.63 22.277 15.467 22.277 L 6.977 22.277 L 6.977 6.075 L 8.372 6.075 L 8.372 5.4 L 15.467 5.4 C 16.172 5.403 16.742 5.956 16.744 6.638 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.1\"></path><path d=\"M 16.046 7.313 L 16.046 21.71 C 16.048 21.873 16.012 22.035 15.942 22.183 C 15.748 22.645 15.285 22.948 14.77 22.95 L 6.977 22.95 L 6.977 6.075 L 14.77 6.075 C 14.972 6.073 15.171 6.122 15.349 6.217 C 15.776 6.425 16.046 6.849 16.046 7.313 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 16.046 7.313 L 16.046 20.36 C 16.043 21.042 15.474 21.594 14.77 21.6 L 6.977 21.6 L 6.977 6.075 L 14.77 6.075 C 14.972 6.073 15.171 6.122 15.349 6.217 C 15.776 6.425 16.046 6.849 16.046 7.313 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><path d=\"M 15.349 7.312 L 15.349 20.36 C 15.348 21.043 14.777 21.597 14.072 21.6 L 6.977 21.6 L 6.977 6.075 L 14.072 6.075 C 14.777 6.076 15.349 6.63 15.349 7.312 C 15.349 7.313 15.349 7.312 15.349 7.312 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.2\"></path><g><defs><linearGradient id=\"idss10167505042_70g828522074\" x1=\"0.21944437726678606\" x2=\"0.780555622733214\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(23,132,217)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(10,99,201)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 1.279 6.075 L 14.07 6.075 C 14.776 6.075 15.349 6.629 15.349 7.312 L 15.349 19.688 C 15.349 20.371 14.776 20.925 14.07 20.925 L 1.279 20.925 C 0.573 20.925 0 20.371 0 19.688 L 0 7.312 C 0 6.629 0.573 6.075 1.279 6.075 Z\" fill=\"url(#idss10167505042_70g828522074)\"></path></g><path d=\"M 3.997 11.265 C 4.312 10.615 4.821 10.071 5.458 9.703 C 6.163 9.313 6.966 9.118 7.779 9.14 C 8.532 9.125 9.275 9.309 9.927 9.674 C 10.54 10.028 11.034 10.546 11.348 11.166 C 11.691 11.849 11.861 12.601 11.846 13.36 C 11.863 14.153 11.687 14.939 11.334 15.655 C 11.012 16.297 10.502 16.833 9.869 17.199 C 9.191 17.575 8.421 17.764 7.64 17.747 C 6.871 17.765 6.111 17.578 5.445 17.207 C 4.826 16.852 4.326 16.334 4.005 15.712 C 3.66 15.039 3.487 14.296 3.501 13.545 C 3.486 12.758 3.656 11.979 3.997 11.265 Z M 5.554 14.93 C 5.722 15.341 6.007 15.697 6.376 15.957 C 6.752 16.211 7.201 16.342 7.66 16.331 C 8.148 16.35 8.629 16.214 9.03 15.945 C 9.394 15.685 9.672 15.328 9.828 14.918 C 10.003 14.459 10.089 13.973 10.083 13.485 C 10.088 12.991 10.007 12.501 9.843 12.033 C 9.698 11.612 9.429 11.24 9.07 10.963 C 8.678 10.681 8.199 10.538 7.711 10.558 C 7.243 10.546 6.783 10.678 6.398 10.935 C 6.023 11.197 5.732 11.556 5.56 11.971 C 5.179 12.923 5.177 13.978 5.555 14.931 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 22.326 4.05 L 28.605 4.05 L 28.605 10.125 L 22.326 10.125 Z\" fill=\"rgb(80,217,255)\"></path></g></g></g></g><path d=\"M 111 153.5 C 104.649 153.5 99.5 153.5 99.5 153.5 L 99.5 104.5 C 99.5 104.5 104.649 104.5 111 104.5 L 137 104.5 C 143.351 104.5 148.5 104.5 148.5 104.5 L 148.5 153.5 C 148.5 153.5 143.351 153.5 137 153.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 111 153.5 C 104.649 153.5 99.5 153.5 99.5 153.5 L 99.5 104.5 C 99.5 104.5 104.649 104.5 111 104.5 L 137 104.5 C 143.351 104.5 148.5 104.5 148.5 104.5 L 148.5 153.5 C 148.5 153.5 143.351 153.5 137 153.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(109 119)\" id=\"ss10167505042_75\"><path d=\"M 0 20 L 0 0 L 30 0 L 30 20 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_77\"><path d=\"M 0 20 L 0 0 L 30 0 L 30 20 Z\" fill=\"transparent\"></path><path d=\"M 21.325 2.223 L 15.811 2.223 C 10.85 2.223 10.469 4.392 10.469 7.298 L 10.469 12.703 C 10.469 15.725 10.85 17.778 15.83 17.778 L 21.325 17.778 C 26.285 17.778 26.667 15.609 26.667 12.722 L 26.667 7.298 C 26.667 4.392 26.285 2.223 21.325 2.223 Z M 3.333 6.116 C 3.333 3.559 4.326 2.223 6.005 2.223 C 7.683 2.223 8.676 3.559 8.676 6.116 L 8.676 13.884 C 8.676 16.442 7.683 17.778 6.005 17.778 C 4.326 17.778 3.333 16.442 3.333 13.884 Z\" fill=\"rgb(26,26,25)\"></path></g></g><path d=\"M 180 261.5 C 173.649 261.5 168.5 261.5 168.5 261.5 L 168.5 212.5 C 168.5 212.5 173.649 212.5 180 212.5 L 206 212.5 C 212.351 212.5 217.5 212.5 217.5 212.5 L 217.5 261.5 C 217.5 261.5 212.351 261.5 206 261.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 180 261.5 C 173.649 261.5 168.5 261.5 168.5 261.5 L 168.5 212.5 C 168.5 212.5 173.649 212.5 180 212.5 L 206 212.5 C 212.351 212.5 217.5 212.5 217.5 212.5 L 217.5 261.5 C 217.5 261.5 212.351 261.5 206 261.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(178 222)\" id=\"ss10167505042_82\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_84\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g transform=\"translate(1.071 4.554)\" id=\"ss10167505042_86\"><path d=\"M 0 20.893 L 5.521 20.893 L 5.521 0.001 L 0 0.001 Z\" fill=\"rgb(229,92,255)\"></path><path d=\"M 11.168 0 L 0 20.892 L 5.521 20.892 L 16.689 0 Z\" fill=\"rgb(36,35,92)\"></path><path d=\"M 11.168 20.892 L 16.689 20.892 L 16.689 0 L 11.168 0 Z\" fill=\"rgb(229,92,255)\"></path><path d=\"M 22.337 0 L 11.169 20.892 L 16.69 20.892 L 27.858 0 Z\" fill=\"rgb(36,35,92)\"></path><path d=\"M 22.306 20.892 L 27.826 20.892 L 27.826 0 L 22.306 0 Z\" fill=\"rgb(229,92,255)\"></path></g></g></g><path d=\"M 111 301.5 C 104.649 301.5 99.5 301.5 99.5 301.5 L 99.5 252.5 C 99.5 252.5 104.649 252.5 111 252.5 L 137 252.5 C 143.351 252.5 148.5 252.5 148.5 252.5 L 148.5 301.5 C 148.5 301.5 143.351 301.5 137 301.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 111 301.5 C 104.649 301.5 99.5 301.5 99.5 301.5 L 99.5 252.5 C 99.5 252.5 104.649 252.5 111 252.5 L 137 252.5 C 143.351 252.5 148.5 252.5 148.5 252.5 L 148.5 301.5 C 148.5 301.5 143.351 301.5 137 301.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(109 262)\" id=\"ss10167505042_94\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_96\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><path d=\"M 18.428 19.728 L 2.409 19.728 C 1.673 19.728 1.071 19.126 1.071 18.39 C 1.071 17.654 1.673 17.052 2.409 17.052 L 18.428 17.052 C 19.163 17.052 19.765 17.654 19.765 18.39 C 19.765 19.126 19.163 19.728 18.428 19.728 Z\" fill=\"rgb(153,207,172)\"></path><path d=\"M 15.016 27.921 C 13.712 27.921 12.408 27.72 11.17 27.352 C 10.468 27.118 10.067 26.382 10.301 25.68 C 10.535 24.978 11.271 24.577 11.973 24.811 C 12.943 25.112 13.979 25.279 15.016 25.279 C 19.564 25.279 23.51 22.369 24.815 18.022 C 25.015 17.32 25.784 16.918 26.487 17.119 C 27.189 17.32 27.59 18.089 27.39 18.791 C 25.684 24.242 20.735 27.921 15.016 27.921 Z\" fill=\"rgb(73,184,129)\"></path><path d=\"M 27.591 12.939 L 11.572 12.939 C 10.837 12.939 10.235 12.337 10.235 11.601 C 10.235 10.865 10.837 10.263 11.572 10.263 L 27.591 10.263 C 28.327 10.263 28.929 10.865 28.929 11.601 C 28.929 12.337 28.327 12.939 27.591 12.939 Z\" fill=\"rgb(153,207,172)\"></path><path d=\"M 3.914 12.939 C 3.78 12.939 3.646 12.906 3.513 12.872 C 2.81 12.671 2.409 11.902 2.61 11.2 C 4.315 5.749 9.265 2.07 15.017 2.07 C 16.321 2.07 17.625 2.271 18.863 2.639 C 19.565 2.873 19.966 3.609 19.732 4.311 C 19.498 5.013 18.762 5.415 18.06 5.18 C 17.09 4.879 16.053 4.712 15.017 4.712 C 10.469 4.712 6.522 7.622 5.218 11.969 C 5.018 12.571 4.483 12.939 3.914 12.939 Z\" fill=\"rgb(73,184,129)\"></path><path d=\"M 22.942 7.856 C 23.681 7.856 24.28 7.257 24.28 6.518 C 24.28 5.779 23.681 5.18 22.942 5.18 C 22.203 5.18 21.604 5.779 21.604 6.518 C 21.604 7.257 22.203 7.856 22.942 7.856 Z\" fill=\"rgb(153,207,172)\"></path><path d=\"M 7.057 24.844 C 7.796 24.844 8.395 24.245 8.395 23.506 C 8.395 22.767 7.796 22.168 7.057 22.168 C 6.318 22.168 5.719 22.767 5.719 23.506 C 5.719 24.245 6.318 24.844 7.057 24.844 Z\" fill=\"rgb(153,207,172)\"></path></g></g><path d=\"M 180 120.5 C 173.649 120.5 168.5 120.5 168.5 120.5 L 168.5 71.5 C 168.5 71.5 173.649 71.5 180 71.5 L 206 71.5 C 212.351 71.5 217.5 71.5 217.5 71.5 L 217.5 120.5 C 217.5 120.5 212.351 120.5 206 120.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 180 120.5 C 173.649 120.5 168.5 120.5 168.5 120.5 L 168.5 71.5 C 168.5 71.5 173.649 71.5 180 71.5 L 206 71.5 C 212.351 71.5 217.5 71.5 217.5 71.5 L 217.5 120.5 C 217.5 120.5 212.351 120.5 206 120.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(178 81)\" id=\"ss10167505042_106\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_108\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_110\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><path d=\"M 13.348 0.911 C 17.927 0.911 24.848 2.321 28.067 5.555 C 28.883 6.375 29.951 7.981 29.951 10.333 C 29.951 14.515 26.595 20.933 22.89 24.652 C 20.974 26.575 17.927 29.089 13.828 29.089 C 9.822 29.089 6.761 26.357 5.876 25.467 C 2.482 22.059 0.051 16.887 0.051 12.064 C 0.051 9.021 0.915 6.364 3.119 4.147 C 5.161 2.1 8.678 0.911 13.348 0.911 Z M 19.016 17.588 C 20.562 16.035 20.978 14.122 20.978 13.069 C 20.985 12.544 20.887 12.022 20.689 11.535 C 20.492 11.048 20.199 10.605 19.828 10.233 C 18.37 8.769 16.755 8.355 15.001 8.355 C 12.776 8.355 11.281 9.062 10.285 10.062 C 9.504 10.846 8.829 12.052 8.829 13.762 C 8.829 15.472 9.738 17.127 10.729 18.121 C 11.644 19.04 13.082 19.721 14.529 19.721 C 15.976 19.721 17.47 19.141 19.016 17.588 Z\" fill=\"rgb(89,82,255)\"></path></g></g></g><path d=\"M 179 49.5 C 172.649 49.5 167.5 49.5 167.5 49.5 L 167.5 0.5 C 167.5 0.5 172.649 0.5 179 0.5 L 205 0.5 C 211.351 0.5 216.5 0.5 216.5 0.5 L 216.5 49.5 C 216.5 49.5 211.351 49.5 205 49.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 179 49.5 C 172.649 49.5 167.5 49.5 167.5 49.5 L 167.5 0.5 C 167.5 0.5 172.649 0.5 179 0.5 L 205 0.5 C 211.351 0.5 216.5 0.5 216.5 0.5 L 216.5 49.5 C 216.5 49.5 211.351 49.5 205 49.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(177 13.495)\" id=\"ss10167505042_115\"><path d=\"M 0 23.005 L 0 0.005 L 30 0.005 L 30 23.005 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss10167505042_117\"><path d=\"M 0 23.005 L 0 0.005 L 30 0.005 L 30 23.005 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss10167505042_119\"><path d=\"M 0 23.005 L 0 0.005 L 30 0.005 L 30 23.005 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss10167505042_121\"><path d=\"M 2.045 23.005 L 6.818 23.005 L 6.818 11.157 L 0 5.93 L 0 20.914 C 0 22.071 0.917 23.005 2.045 23.005 Z\" fill=\"rgb(66,133,244)\"></path><path d=\"M 23.182 23.005 L 27.954 23.005 C 29.086 23.005 30 22.068 30 20.914 L 30 5.93 L 23.182 11.157\" fill=\"rgb(52,168,83)\"></path><path d=\"M 23.182 2.097 L 23.182 11.157 L 30 5.93 L 30 3.142 C 30 0.557 27.112 -0.918 25.091 0.633\" fill=\"rgb(251,188,4)\"></path><path d=\"M 6.818 11.157 L 6.818 2.097 L 15 8.369 L 23.182 2.097 L 23.182 11.157 L 15 17.43\" fill=\"rgb(234,67,53)\"></path><path d=\"M 0 3.142 L 0 5.93 L 6.818 11.157 L 6.818 2.097 L 4.909 0.633 C 2.884 -0.918 0 0.557 0 3.142 Z\" fill=\"rgb(197,34,31)\"></path></g></g></g></g><path d=\"M 112 81.5 C 105.649 81.5 100.5 81.5 100.5 81.5 L 100.5 32.5 C 100.5 32.5 105.649 32.5 112 32.5 L 138 32.5 C 144.351 32.5 149.5 32.5 149.5 32.5 L 149.5 81.5 C 149.5 81.5 144.351 81.5 138 81.5 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 112 81.5 C 105.649 81.5 100.5 81.5 100.5 81.5 L 100.5 32.5 C 100.5 32.5 105.649 32.5 112 32.5 L 138 32.5 C 144.351 32.5 149.5 32.5 149.5 32.5 L 149.5 81.5 C 149.5 81.5 144.351 81.5 138 81.5 Z\" fill=\"transparent\" stroke=\"rgb(237,239,243)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><g transform=\"translate(110 42)\" id=\"ss10167505042_129\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_131\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><g id=\"ss10167505042_133\"><path d=\"M 0 30 L 0 0 L 30 0 L 30 30 Z\" fill=\"transparent\"></path><path d=\"M 18.751 15.007 C 18.751 16.089 18.555 17.161 18.174 18.174 C 17.162 18.555 16.089 18.75 15.007 18.75 L 14.994 18.75 C 13.912 18.751 12.839 18.555 11.826 18.174 C 11.444 17.162 11.249 16.089 11.249 15.007 L 11.249 14.992 C 11.249 13.878 11.453 12.81 11.824 11.825 C 12.837 11.443 13.91 11.248 14.992 11.249 L 15.004 11.249 C 16.12 11.249 17.187 11.453 18.172 11.825 C 18.554 12.838 18.749 13.911 18.748 14.992 L 18.748 15.007 Z M 29.792 12.5 L 21.037 12.5 L 27.227 6.309 C 26.254 4.942 25.059 3.747 23.691 2.774 L 17.5 8.965 L 17.5 0.209 C 16.676 0.07 15.843 0.001 15.008 0 L 14.992 0 C 14.143 0 13.311 0.073 12.5 0.209 L 12.5 8.965 L 6.307 2.773 C 5.625 3.259 4.985 3.8 4.394 4.393 L 4.391 4.396 C 3.799 4.987 3.258 5.628 2.773 6.309 L 8.966 12.5 L 0.208 12.5 C 0.208 12.5 0 14.145 0 14.995 L 0 15.005 C 0 15.855 0.072 16.689 0.209 17.5 L 8.966 17.5 L 2.772 23.69 C 3.747 25.057 4.942 26.252 6.309 27.226 L 12.501 21.035 L 12.501 29.792 C 13.31 29.927 14.141 29.999 14.989 30 L 15.011 30 C 15.844 29.999 16.677 29.93 17.499 29.792 L 17.499 21.035 L 23.692 27.227 C 24.374 26.741 25.014 26.2 25.607 25.608 L 25.608 25.608 C 26.199 25.015 26.74 24.375 27.226 23.693 L 21.035 17.5 L 29.793 17.5 C 29.928 16.69 30 15.859 30 15.011 L 30 14.989 C 30 14.155 29.93 13.322 29.792 12.5 Z\" fill=\"rgb(255,74,0)\"></path></g></g></g></svg>',svgContentId:10167505042,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h100lf\",\"data-framer-name\":\"Left_Part\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-un63lz-container\",isAuthoredByUser:true,nodeId:\"gRhCteg9F\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LeftSvgWires,{height:\"100%\",id:\"gRhCteg9F\",layoutId:\"gRhCteg9F\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j9cbxx\",\"data-framer-name\":\"Vector 21\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 81 76\"></svg>',svgContentId:11817787165,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ygroui\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1hmuv5p\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_43\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_43)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Integrate CaaS\"})}),className:\"framer-16sv28p\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15a1kfo\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-yzv31q\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.25866 0H1.72266C1.1306 0 0.650635 0.484109 0.650635 1.08129V7.56901C0.650635 8.16619 1.1306 8.6503 1.72266 8.6503H2.25866C2.85073 8.6503 3.33069 8.16619 3.33069 7.56901V1.08129C3.33069 0.484109 2.85073 0 2.25866 0Z\" stroke=\"#A4ADBA\" stroke-width=\"1.17857\"/>\\n<path d=\"M7.88684 4.48904V2.97353V1.3516C7.88684 1.10039 7.88684 0.974787 7.86625 0.870335C7.78165 0.441394 7.44923 0.106097 7.02396 0.0207694C6.92041 5.45137e-08 6.79588 0 6.54682 0C6.29776 0 6.17322 5.45137e-08 6.06967 0.0207694C5.64441 0.106097 5.31198 0.441394 5.22739 0.870335C5.20679 0.974787 5.20679 1.10039 5.20679 1.3516V10.5425C5.20679 10.7938 5.20679 10.9193 5.22739 11.0238C5.31198 11.4527 5.64441 11.7881 6.06967 11.8733C6.17322 11.8941 6.29776 11.8941 6.54682 11.8941\" stroke=\"#A4ADBA\" stroke-width=\"1.17857\" stroke-linecap=\"round\"/>\\n<path d=\"M9.76318 1.3516C9.76318 1.10039 9.76318 0.974787 9.7838 0.870335C9.86844 0.441394 10.2008 0.106097 10.6261 0.0207694C10.7296 5.45137e-08 10.8542 0 11.1032 0C11.3523 0 11.4768 5.45137e-08 11.5804 0.0207694C12.0056 0.106097 12.3381 0.441394 12.4227 0.870335C12.4433 0.974787 12.4433 1.10039 12.4433 1.3516V1.89225C12.4433 2.14346 12.4433 2.26907 12.4227 2.37352C12.3381 2.80245 12.0056 3.13776 11.5804 3.22308C11.4768 3.24386 11.3523 3.24386 11.1032 3.24386C10.8542 3.24386 10.7296 3.24386 10.6261 3.22308C10.2008 3.13776 9.86844 2.80245 9.7838 2.37352C9.76318 2.26907 9.76318 2.14346 9.76318 1.89225V1.3516Z\" stroke=\"#A4ADBA\" stroke-width=\"1.17857\"/>\\n<path d=\"M10.2995 12C11.9573 12 13.3012 10.6445 13.3012 8.97243C13.3012 7.30033 11.9573 5.94482 10.2995 5.94482C8.64174 5.94482 7.29785 7.30033 7.29785 8.97243C7.29785 10.6445 8.64174 12 10.2995 12Z\" stroke=\"#A4ADBA\" stroke-width=\"1.07143\" stroke-linecap=\"round\"/>\\n<path d=\"M10.6747 7.83691V8.97227H9.54907\" stroke=\"#A4ADBA\" stroke-width=\"1.07143\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Check tracking info\"})}),className:\"framer-113gptm\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lg1ql9\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-y4ld7o\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Make payment\"})}),className:\"framer-adaxk1\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2u246y\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1gqlldn\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Modify billing information\"})}),className:\"framer-143cdou\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19amnzm\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1batafh\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Escalate call\"})}),className:\"framer-1apk9kw\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n0jrms\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qcx4g0\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Save to CRM\"})}),className:\"framer-lu5bo2\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ixjoj3\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fiihx2\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_31\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0.75H0V12H11.25V0.75Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_31)\">\\n<path d=\"M1.20484 5.71916L1.20483 7.3263C1.20483 8.45138 1.20483 9.01395 1.42379 9.4437C1.61639 9.8217 1.92372 10.1291 2.30172 10.3217C2.73146 10.5406 3.29401 10.5406 4.41912 10.5406H7.63341C8.75849 10.5406 9.32106 10.5406 9.75081 10.3217C10.1288 10.1291 10.4361 9.8217 10.6287 9.4437C10.8477 9.01395 10.8477 8.45145 10.8477 7.32632V5.71917C10.8477 4.59407 10.8477 4.03152 10.6287 3.60178C10.4361 3.22377 10.1288 2.91645 9.75081 2.72385C9.32106 2.50488 8.75849 2.50488 7.63341 2.50488H4.41913C3.29403 2.50488 2.73148 2.50488 2.30175 2.72385C1.92375 2.91645 1.61642 3.22377 1.42381 3.60177C1.20486 4.03151 1.20485 4.59405 1.20484 5.71916Z\" stroke=\"#9599A5\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.271 8.32403V4.72099C3.271 4.33218 3.66281 4.06566 4.02443 4.20849L8.5857 6.01002C9.05047 6.1936 9.05047 6.85143 8.5857 7.03501L4.02443 8.83658C3.66281 8.97938 3.271 8.71283 3.271 8.32403Z\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.2002 4.37988V8.66558\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.12793 5.45215V7.595\" stroke=\"#9599A5\" stroke-width=\"1.10204\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Save to CRM\"})}),className:\"framer-1kc9z3f\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j7p5sp\",\"data-border\":true,\"data-framer-name\":\"Link\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8bwkm8\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2049_55\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<path d=\"M11.25 0H0V11.25H11.25V0Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2049_55)\">\\n<path d=\"M10.8477 5.21735V5.17717C10.8477 4.05207 10.8477 3.48952 10.6287 3.05978C10.4361 2.68178 10.1288 2.37445 9.75081 2.18185C9.32106 1.96289 8.75849 1.96289 7.63341 1.96289H4.41913C3.29403 1.96289 2.73148 1.96289 2.30175 2.18185C1.92375 2.37445 1.61642 2.68177 1.42381 3.05978C1.20486 3.48951 1.20485 4.05206 1.20484 5.17716L1.20483 6.7843C1.20483 7.90942 1.20483 8.472 1.42379 8.90167C1.61639 9.27967 1.92372 9.58702 2.30172 9.77962C2.73146 9.99862 3.29401 9.99862 4.41912 9.99862H5.42357\" stroke=\"#868B98\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.03498 3.96094L6.3443 5.7065C5.99537 6.06676 5.41669 6.06406 5.07114 5.70055C4.7186 5.32969 4.12553 5.33556 3.78039 5.71331L2.81177 6.77344\" stroke=\"#868B98\" stroke-width=\"1.17857\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.83887 10.4824C10.0815 10.4824 11.0889 9.47506 11.0889 8.23242C11.0889 6.98978 10.0815 5.98242 8.83887 5.98242C7.59623 5.98242 6.58887 6.98978 6.58887 8.23242C6.58887 9.47506 7.59623 10.4824 8.83887 10.4824Z\" stroke=\"#868B98\" stroke-width=\"1.07143\" stroke-linecap=\"round\"/>\\n<path d=\"M9.12012 7.38867V8.23245H8.27637\" stroke=\"#868B98\" stroke-width=\"1.07143\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__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\":\"11.78px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18.2px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Schedule appointment\"})}),className:\"framer-1309qzc\",\"data-framer-name\":\"Schedule appointment\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11v7790\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w7y4xn\",\"data-framer-name\":\"Rectangle 12\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vtioft\",\"data-framer-name\":\"Rectangle 13\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1LBoBDxd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5024+0+100+206+1264+120.50000000000009+14.000000000000021),sizes:\"68px\",src:\"https://framerusercontent.com/images/keaS28RAuPgSm34pkaW6bNpnPI.png\",srcSet:\"https://framerusercontent.com/images/keaS28RAuPgSm34pkaW6bNpnPI.png 658w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"68px\",src:\"https://framerusercontent.com/images/keaS28RAuPgSm34pkaW6bNpnPI.png\",srcSet:\"https://framerusercontent.com/images/keaS28RAuPgSm34pkaW6bNpnPI.png 658w\"},className:\"framer-106e4g4\",\"data-framer-name\":\"Transparent (2) 2\",transformTemplate:transformTemplate1})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2nw8rv\",\"data-border\":true,\"data-framer-name\":\"Ellipse 19\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c7bwq3\",\"data-border\":true,\"data-framer-name\":\"Ellipse 19\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mcqdi2\",\"data-border\":true,\"data-framer-name\":\"Ellipse 19\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u450ql\",\"data-border\":true,\"data-framer-name\":\"Ellipse 19\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1639p0e\",\"data-border\":true,\"data-framer-name\":\"Level 2 - Card\",style:{scale:.7},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1LBoBDxd:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:387,intrinsicWidth:741,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5024+0+100+206+714+0),pixelHeight:387,pixelWidth:737,positionX:\"center\",positionY:\"center\",sizes:\"746px\",src:\"https://framerusercontent.com/images/7ToY0DlEVggAodHswhLXnz6ioBw.png\",srcSet:\"https://framerusercontent.com/images/7ToY0DlEVggAodHswhLXnz6ioBw.png?scale-down-to=512 512w,https://framerusercontent.com/images/7ToY0DlEVggAodHswhLXnz6ioBw.png 737w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:387,intrinsicWidth:741,pixelHeight:387,pixelWidth:737,positionX:\"center\",positionY:\"center\",sizes:\"746px\",src:\"https://framerusercontent.com/images/7ToY0DlEVggAodHswhLXnz6ioBw.png\",srcSet:\"https://framerusercontent.com/images/7ToY0DlEVggAodHswhLXnz6ioBw.png?scale-down-to=512 512w,https://framerusercontent.com/images/7ToY0DlEVggAodHswhLXnz6ioBw.png 737w\"},className:\"framer-15gfc8a\",\"data-framer-name\":\"_Vector map\"})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zteiic\",\"data-framer-name\":\"Lines \",fill:\"rgba(0,0,0,1)\",intrinsicHeight:367,intrinsicWidth:737,svg:'<svg width=\"737\" height=\"367\" viewBox=\"0 0 737 367\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M729.417 294.387C729.417 294.125 729.417 293.864 729.286 293.733C724.056 268.114 715.95 243.149 705.36 219.491C705.36 219.23 705.229 219.099 705.099 218.837C693.855 193.741 679.865 169.822 662.999 147.602C662.869 147.34 662.607 147.209 662.476 146.948C652.278 133.485 641.165 120.676 629.006 108.651C617.108 96.7562 604.557 85.7767 591.483 75.8429C591.221 75.5815 590.829 75.3201 590.567 75.1894C526.896 26.9581 449.626 0.816528 368.435 0.816528C287.243 0.816528 209.974 26.9581 146.302 75.1894C146.04 75.4508 145.648 75.5815 145.387 75.8429C132.312 85.9074 119.761 96.7562 107.863 108.651C95.7041 120.806 84.5909 133.616 74.3929 146.948C74.2622 147.209 74.0007 147.471 73.87 147.602C57.1348 169.822 43.0145 193.611 31.7706 218.837C31.7706 219.099 31.5091 219.23 31.5091 219.491C20.9189 243.28 12.9436 268.114 7.58311 293.733C7.58311 293.994 7.58311 294.125 7.45237 294.387C2.74561 317.653 0.130743 341.572 0 365.753V366.407H1.43818V365.753C1.69966 341.311 4.31453 317.391 9.02129 294.387C9.02129 294.125 9.02129 293.864 9.15203 293.733C14.5125 267.853 22.7493 243.018 33.3395 219.491C33.3395 219.23 33.4703 218.968 33.601 218.837C45.1064 193.48 59.3575 169.56 75.9619 147.602C76.0926 147.34 76.3541 147.209 76.4848 146.948C97.0115 120.022 121.068 96.1026 148.132 75.8429C148.394 75.5815 148.786 75.4508 149.047 75.1894C194.154 41.4667 247.366 17.8086 305.155 7.74405C316.399 5.78343 327.773 4.34564 339.279 3.43069C345.424 2.90786 351.699 2.64644 357.975 2.38502C361.505 2.38502 365.035 2.25432 368.565 2.25432C372.095 2.25432 370.265 2.25432 371.18 2.25432C371.572 2.25432 371.834 2.25432 372.226 2.25432C383.209 2.25432 394.06 2.90785 404.781 3.95352C473.029 10.6196 535.786 36.1077 587.953 75.0586C588.214 75.3201 588.476 75.4508 588.868 75.7122C615.932 95.9719 639.988 120.022 660.515 146.817C660.646 147.079 660.907 147.34 661.038 147.471C677.643 169.43 691.894 193.219 703.399 218.707C703.399 218.968 703.66 219.099 703.66 219.36C714.251 242.888 722.357 267.853 727.848 293.602C727.848 293.864 727.848 293.994 727.979 294.256C732.816 317.391 735.431 341.18 735.562 365.622V366.276H737V365.622C736.739 341.311 734.254 317.522 729.548 294.256L729.417 294.387Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M660.646 294.386C660.646 294.125 660.646 293.864 660.646 293.733C656.985 268.114 650.971 243.28 642.603 219.491C642.603 219.229 642.472 218.968 642.342 218.837C633.582 193.741 622.207 169.822 608.61 147.601C608.61 147.34 608.349 147.079 608.218 146.948C598.804 131.786 588.345 117.408 576.839 103.945C568.21 93.8805 559.189 84.4695 549.776 75.8428C549.514 75.5814 549.253 75.32 548.991 75.1893C507.022 36.6304 457.471 12.3187 404.65 4.08413C391.445 1.99281 377.979 0.947144 364.382 0.947144C344.247 0.947144 324.374 3.29989 305.155 7.74396C259.525 18.462 216.772 41.3359 179.772 75.1893C179.511 75.4507 179.249 75.5814 178.988 75.8428C169.574 84.4695 160.553 93.8805 151.924 103.945C140.418 117.408 129.959 131.786 120.545 146.948C120.415 147.209 120.284 147.471 120.153 147.601C106.425 169.822 95.1811 193.741 86.4213 218.837C86.4213 219.099 86.2906 219.229 86.1598 219.491C77.7923 243.28 71.7781 268.114 68.1173 293.733C68.1173 293.994 68.1173 294.125 68.1173 294.386C65.5024 313.339 64.0642 332.815 64.0642 352.552C64.0642 372.288 64.0642 361.44 64.3257 365.884C64.3257 366.145 64.3257 366.276 64.3257 366.537H65.6331C65.6331 366.276 65.6331 366.145 65.6331 365.884C65.5024 361.44 65.3716 356.996 65.3716 352.552C65.3716 332.815 66.8098 313.339 69.4247 294.386C69.4247 294.125 69.4247 293.994 69.4247 293.733C73.0855 267.853 79.3612 243.018 87.598 219.491C87.598 219.229 87.7288 219.099 87.8595 218.837C96.8808 193.48 108.255 169.56 121.853 147.601C121.983 147.34 122.114 147.079 122.245 146.948C138.849 120.153 158.722 96.1025 181.079 75.8428C181.341 75.5814 181.602 75.32 181.864 75.1893C226.186 35.0619 280.314 9.18174 339.148 3.43059C347.123 2.64635 355.099 2.25422 363.205 2.25422C363.205 2.25422 363.336 2.25422 363.466 2.25422H364.251C366.473 2.25422 368.696 2.25422 370.919 2.25422C371.834 2.25422 372.618 2.25422 373.534 2.25422C438.644 4.60697 498.524 31.4021 546.768 75.0586C547.03 75.32 547.291 75.4507 547.553 75.7121C569.91 96.1025 589.652 120.022 606.387 146.817C606.518 147.079 606.649 147.34 606.78 147.471C620.377 169.43 631.752 193.219 640.773 218.707C640.773 218.968 640.904 219.099 641.034 219.36C649.271 243.018 655.416 267.853 659.208 293.602C659.208 293.864 659.208 293.994 659.208 294.256C661.953 313.208 663.261 332.553 663.261 352.421C663.261 372.288 663.261 361.309 662.999 365.753C662.999 366.014 662.999 366.145 662.999 366.407H664.307C664.307 366.145 664.307 366.014 664.307 365.753C664.437 361.309 664.568 356.865 664.568 352.421C664.568 332.815 663.261 313.339 660.515 294.256L660.646 294.386Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M578.8 294.387C578.8 294.125 578.8 293.864 578.8 293.733C576.447 268.114 572.263 243.28 566.379 219.491C566.379 219.23 566.379 219.099 566.249 218.837C560.104 193.742 551.998 169.822 542.192 147.602C542.192 147.34 541.93 147.21 541.93 146.948C535.001 131.263 527.026 116.362 518.397 102.507C512.382 92.9657 506.107 84.0776 499.57 75.843C499.439 75.5816 499.177 75.3202 499.047 75.1895C463.223 30.2259 419.816 4.86858 373.794 2.38513C373.272 2.38513 372.749 2.38513 372.226 2.38513C370.264 2.38513 368.303 2.38513 366.473 2.38513C364.642 2.38513 364.642 2.38513 363.727 2.38513C363.727 2.38513 363.597 2.38513 363.466 2.38513C361.635 2.38513 359.805 2.38513 357.975 2.64655C312.345 5.39141 269.2 30.7488 233.638 75.4509C233.507 75.7123 233.245 75.843 233.115 76.1044C226.578 84.339 220.302 93.2272 214.288 102.769C205.528 116.624 197.683 131.525 190.754 147.21C190.754 147.471 190.492 147.732 190.492 147.863C180.687 170.083 172.581 194.003 166.436 219.099C166.436 219.36 166.436 219.491 166.305 219.752C160.421 243.541 156.238 268.507 153.884 293.995C153.884 294.256 153.884 294.387 153.884 294.648C152.446 311.117 151.662 327.848 151.662 344.709C151.662 361.571 151.662 358.956 152.054 366.015C152.054 366.276 152.054 366.407 152.054 366.668H153.1C153.1 366.407 153.1 366.276 153.1 366.015C152.838 358.956 152.708 351.898 152.708 344.709C152.708 327.717 153.492 310.987 155.061 294.648C155.061 294.387 155.061 294.125 155.061 293.995C157.414 268.114 161.729 243.28 167.482 219.752C167.482 219.491 167.482 219.36 167.612 219.099C173.888 193.742 182.125 169.822 191.8 147.863C191.8 147.602 192.061 147.34 192.061 147.21C204.09 120.414 218.341 96.3641 234.553 76.1044C234.684 75.843 234.945 75.5816 235.076 75.4509C269.2 32.9708 311.691 6.56779 357.844 3.69221C359.282 3.69221 360.72 3.5615 362.289 3.43079C363.466 3.43079 364.773 3.43079 365.95 3.43079H366.604C367.65 3.43079 368.565 3.43079 369.48 3.43079C370.918 3.43079 372.356 3.43079 373.794 3.5615C420.208 6.17566 462.961 32.5787 497.347 75.3202C497.478 75.5816 497.739 75.7123 497.87 75.9737C514.082 96.2334 528.464 120.284 540.361 147.079C540.361 147.34 540.623 147.602 540.623 147.732C550.298 169.691 558.535 193.48 564.81 218.968C564.81 219.23 564.81 219.36 564.941 219.622C570.825 243.28 575.008 268.114 577.493 293.864C577.493 294.125 577.493 294.256 577.493 294.517C579.061 310.856 579.846 327.586 579.846 344.579C579.846 361.571 579.715 358.826 579.454 365.884C579.454 366.145 579.454 366.276 579.454 366.537H580.5C580.5 366.276 580.5 366.145 580.5 365.884C580.761 358.826 580.892 351.637 580.892 344.579C580.892 327.717 580.107 310.987 578.669 294.517L578.8 294.387Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M476.691 294.387C476.691 294.125 476.691 293.864 476.691 293.733C476.298 282.884 475.645 272.166 474.86 261.579C473.683 247.855 471.984 233.607 469.761 219.491C469.761 219.23 469.761 219.099 469.761 218.837C466.1 194.918 461.132 170.737 455.118 147.602C455.118 147.34 455.118 147.21 454.987 146.948C449.757 126.95 443.743 107.866 437.206 90.4823C435.245 85.3847 433.284 80.4178 431.323 75.843C431.323 75.5816 431.061 75.3202 431.061 75.1895C413.411 33.755 393.668 8.78982 374.188 3.43079C371.704 2.77725 369.089 2.38513 366.605 2.38513H366.343C363.598 2.38513 360.983 2.77726 358.237 3.5615C338.495 9.05124 318.36 33.8857 299.926 75.3202C299.926 75.5816 299.664 75.7123 299.664 75.9737C297.572 80.6792 295.48 85.7768 293.388 90.8744C286.59 108.259 280.314 127.211 274.823 147.079C274.823 147.34 274.823 147.602 274.692 147.732C268.416 170.737 263.187 194.918 259.395 218.968C259.395 219.23 259.395 219.491 259.395 219.622C256.78 236.091 254.819 252.56 253.512 268.376C252.858 276.741 252.335 285.237 252.073 293.864C252.073 294.125 252.073 294.256 252.073 294.517C251.289 317.783 251.943 341.703 253.773 365.884C253.773 366.145 253.773 366.407 253.773 366.537H254.427C254.427 366.276 254.427 366.145 254.427 365.884C252.596 341.703 251.943 317.783 252.727 294.517C252.727 294.256 252.727 293.995 252.727 293.864C252.989 285.237 253.512 276.741 254.165 268.376C255.473 252.429 257.434 235.96 260.049 219.491C260.049 219.23 260.049 219.099 260.049 218.837C263.84 194.787 269.07 170.737 275.346 147.602C275.346 147.34 275.346 147.079 275.607 146.948C280.968 127.211 287.243 108.259 294.042 91.0051C296.134 85.7768 298.226 80.6792 300.449 75.843C300.449 75.5816 300.71 75.3202 300.71 75.1895C320.322 31.1409 341.894 5.91424 362.682 3.30009C363.859 3.16938 365.166 3.03867 366.343 3.03867H366.735C366.735 3.03867 366.997 3.03867 367.128 3.03867C368.174 3.03867 369.089 3.03867 370.004 3.30009C390.531 5.91424 411.58 31.1409 430.407 75.1895C430.407 75.4509 430.538 75.5816 430.669 75.843C432.63 80.5485 434.722 85.5154 436.683 90.7437C443.22 107.997 449.234 127.081 454.464 146.948C454.464 147.21 454.464 147.471 454.595 147.602C460.609 170.606 465.577 194.787 469.238 218.837C469.238 219.099 469.238 219.23 469.238 219.491C471.461 233.738 473.16 247.855 474.337 261.71C475.252 272.166 475.906 282.884 476.167 293.864C476.167 294.125 476.167 294.256 476.167 294.517C476.952 317.783 476.429 341.834 474.599 365.884C474.599 366.145 474.599 366.276 474.599 366.537H475.252C475.252 366.276 475.252 366.015 475.252 365.884C476.952 341.703 477.606 317.783 476.821 294.517L476.691 294.387Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M366.604 2.51575H365.95V366.537H366.604V2.51575Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M591.483 75.7121H145.387C145.648 75.4507 146.04 75.1893 146.302 75.0586H590.568C590.829 75.32 591.221 75.4507 591.483 75.7121Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M662.999 147.601H73.8701C74.0009 147.34 74.2623 147.209 74.3931 146.948H662.476C662.607 147.209 662.869 147.471 662.999 147.601Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M705.361 219.36H31.5098C31.5098 219.099 31.7713 218.968 31.7713 218.707H704.969C704.969 218.968 705.23 219.099 705.23 219.36H705.361Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M729.417 294.387H7.45203C7.45203 294.125 7.45203 293.864 7.58277 293.733H729.155C729.155 293.995 729.155 294.125 729.286 294.387H729.417Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M736.869 365.753H0V366.407H736.869V365.753Z\" fill=\"#C6C6C6\"/>\\n<path d=\"M82.6299 232.17C104.726 159.627 150.355 92.1814 213.242 49.1785C201.606 57.5438 190.624 66.6933 180.164 76.3657C135.45 119.107 101.98 173.482 82.6299 232.17Z\" fill=\"#4F4F4F\"/>\\n<path d=\"M484.796 30.6179C544.546 60.0271 592.529 113.879 622.208 172.959C625.738 180.148 629.268 188.121 632.406 195.441C629.137 188.121 625.345 180.409 621.685 173.22C590.96 114.663 543.762 61.4649 484.796 30.6179Z\" fill=\"#4F4F4F\"/>\\n<path d=\"M247 75.2647H300.902C300.902 75.2647 330.803 2 367 2C403.197 2 440.574 83.9548 455 150\" stroke=\"#4F4F4F\" stroke-width=\"0.707336\" stroke-miterlimit=\"10\"/>\\n<path d=\"M366.343 27.6117C366.866 73.6209 366.997 124.728 366.997 170.998V218.837V219.36H366.474H334.05C334.05 219.23 301.625 218.837 301.625 218.837L334.05 218.576H366.474C366.474 218.445 365.951 218.837 365.951 218.837V170.998C365.82 124.728 365.951 73.7516 366.474 27.6117H366.343Z\" fill=\"#4F4F4F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f61cu9\",\"data-framer-name\":\"Frame 22\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e7r2o5\",\"data-framer-name\":\"Button groups\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pctvtd\",\"data-framer-name\":\"Frame 23\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-t9v65r\",\"data-framer-name\":\"Button 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:45,svg:'<svg width=\"45\" height=\"40\" viewBox=\"0 0 45 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" fill=\"white\"/>\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" stroke=\"#EDEFF3\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" fill=\"#DDF9E4\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" stroke=\"#C7F4D3\"/>\\n<path d=\"M15 18.5V20.75\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M18 15.5V23.75\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M21 13.25V26.75\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M24 17V22.25\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M27 14.75V24.5\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M30 18.5V20.75\" stroke=\"#075A39\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aer1kg\",\"data-border\":true,\"data-framer-name\":\"Button 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"Voice Cloning\"})}),className:\"framer-ovpji0\",\"data-framer-name\":\"Voice Cloning\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f76byv\",\"data-framer-name\":\"Frame 24\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qytw8v\",\"data-framer-name\":\"Button 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:45,svg:'<svg width=\"45\" height=\"40\" viewBox=\"0 0 45 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" fill=\"white\"/>\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" stroke=\"#EDEFF3\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" fill=\"#DAF4FC\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" stroke=\"#C3EDF9\"/>\\n<path d=\"M28.75 22.25C28.75 22.6478 28.592 23.0294 28.3107 23.3107C28.0294 23.592 27.6478 23.75 27.25 23.75H18.25L15.25 26.75V14.75C15.25 14.3522 15.408 13.9706 15.6893 13.6893C15.9706 13.408 16.3522 13.25 16.75 13.25H27.25C27.6478 13.25 28.0294 13.408 28.3107 13.6893C28.592 13.9706 28.75 14.3522 28.75 14.75V22.25Z\" stroke=\"#0A5A70\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k1h0bl\",\"data-border\":true,\"data-framer-name\":\"Button 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"Natural conversation\"})}),className:\"framer-1qx5lcc\",\"data-framer-name\":\"Natural conversation\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16l21r1\",\"data-framer-name\":\"Frame 25\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-t74o5s\",\"data-framer-name\":\"Button 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:45,svg:'<svg width=\"45\" height=\"40\" viewBox=\"0 0 45 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" fill=\"white\"/>\\n<path d=\"M1 8C1 3.85786 4.35786 0.5 8.5 0.5H44V39.5H8.5C4.35786 39.5 1 36.1421 1 32V8Z\" stroke=\"#EDEFF3\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" fill=\"#F5F0FF\"/>\\n<rect x=\"7\" y=\"4.5\" width=\"31\" height=\"31\" rx=\"7.5\" stroke=\"#E8DDFE\"/>\\n<path d=\"M22 11.6667C21.337 11.6667 20.7011 11.9301 20.2322 12.3989C19.7634 12.8678 19.5 13.5036 19.5 14.1667V20C19.5 20.6631 19.7634 21.2989 20.2322 21.7678C20.7011 22.2366 21.337 22.5 22 22.5C22.663 22.5 23.2989 22.2366 23.7678 21.7678C24.2366 21.2989 24.5 20.6631 24.5 20V14.1667C24.5 13.5036 24.2366 12.8678 23.7678 12.3989C23.2989 11.9301 22.663 11.6667 22 11.6667Z\" stroke=\"#4711BB\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M27.8334 18.3333V20C27.8334 21.5471 27.2188 23.0308 26.1249 24.1248C25.0309 25.2187 23.5472 25.8333 22.0001 25.8333C20.453 25.8333 18.9693 25.2187 17.8753 24.1248C16.7813 23.0308 16.1667 21.5471 16.1667 20V18.3333\" stroke=\"#4711BB\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M22 25.8333V28.3333\" stroke=\"#4711BB\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fr7bz1\",\"data-border\":true,\"data-framer-name\":\"Button 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"Seamless Turn-talking\"})}),className:\"framer-1dokb1c\",\"data-framer-name\":\"Seamless Turn-talking\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-duvyzq\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"Hola\"})}),className:\"framer-s9ylnw\",\"data-framer-name\":\"Hola\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h1fsz3\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"\u4F60\u597D\"})}),className:\"framer-vu6357\",\"data-framer-name\":\"\u4F60\u597D\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ibmllf\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"Bonjour\"})}),className:\"framer-1goxw8x\",\"data-framer-name\":\"Bonjour\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o3j7wk\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"Hallo\"})}),className:\"framer-gu38rx\",\"data-framer-name\":\"Hallo\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dfx3ic\",\"data-border\":true,\"data-framer-name\":\"Background+Shadow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(149, 153, 165)\"},children:\"\uC548\uB155\uD558\uC138\uC694\"})}),className:\"framer-wxsg8h\",\"data-framer-name\":\"\uC548\uB155\uD558\uC138\uC694\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s21ssw\",\"data-framer-name\":\"Level 2- Conent\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15li2c2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oqnpuq\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wmr4wo\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"In any language & every accent\"})}),className:\"framer-26c6wb\",\"data-framer-name\":\"Integrated with everything.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Enjoy natural, human-like conversations with 100+ voices, voice cloning, and seamless turn-taking.\"})}),className:\"framer-15wkgz3\",\"data-framer-name\":\"precision. Design powerful workflows, deploy AI, integrate your data and build detailed reports \u2014 all in one platform.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1LBoBDxd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5024+0+100+206+241),pixelHeight:387,pixelWidth:737,positionX:\"center\",positionY:\"center\",sizes:\"681px\",src:\"https://framerusercontent.com/images/7qjNxpDFsVpaxbhNAfUM5RxUs.svg\",srcSet:\"https://framerusercontent.com/images/7qjNxpDFsVpaxbhNAfUM5RxUs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/7qjNxpDFsVpaxbhNAfUM5RxUs.svg 737w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:387,pixelWidth:737,positionX:\"center\",positionY:\"center\",sizes:\"681px\",src:\"https://framerusercontent.com/images/7qjNxpDFsVpaxbhNAfUM5RxUs.svg\",srcSet:\"https://framerusercontent.com/images/7qjNxpDFsVpaxbhNAfUM5RxUs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/7qjNxpDFsVpaxbhNAfUM5RxUs.svg 737w\"},className:\"framer-1wp4b4o\",\"data-border\":true,\"data-framer-name\":\"Level 1 - Card\",style:{scale:.7}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rdm983\",\"data-framer-name\":\"Level 1 - Conent\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Trained on your data\"})}),className:\"framer-jpqeo0\",\"data-framer-name\":\"Integrated with everything.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Connect your data sources, upload files, or add a website, and Phonely will use all of that data to train your AI.\"})}),className:\"framer-r87kjl\",\"data-framer-name\":\"precision. Design powerful workflows, deploy AI, integrate your data and build detailed reports \u2014 all in one platform.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1LBoBDxd:{y:(componentViewport?.y||0)+0+5024+0+100+206+303+0+170}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yr4i0l-container\",nodeId:\"J_Wq4_XVE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{g_G74OEHz:\"https://app.phonely.ai/sign-up\",height:\"100%\",id:\"J_Wq4_XVE\",layoutId:\"J_Wq4_XVE\",muxhgbKdh:false,Pw3Qxl4NQ:\"Start for free\",style:{height:\"100%\"},variant:\"eYiFB1fQf\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wb1kyq-container\",isAuthoredByUser:true,nodeId:\"S3sIa3CKy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AnimatedPaths,{height:\"100%\",id:\"S3sIa3CKy\",layoutId:\"S3sIa3CKy\",width:\"100%\"})})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uolsxp\",\"data-border\":true,\"data-framer-name\":\"Security\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xy0wog\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hnilpb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Scale\\xa0with\\xa0security.\\xa0\"}),\"Phonely is audited and certified by industry-leading third party standards.\"]})})},C1LBoBDxd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Scale\\xa0with\\xa0security.\\xa0\"}),\"Phonely is audited and certified by industry-leading third party standards.\"]})})},OFyMZHFxL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Scale\\xa0with\\xa0security.\\xa0\"}),\"Phonely is audited and certified by industry-leading third party standards.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"31px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Scale\\xa0with\\xa0security.\\xa0\"}),\"Phonely is audited and certified by industry-leading third party standards.\"]})}),className:\"framer-1bl8t8e\",\"data-framer-name\":\"Phonely is audited and certified\",fonts:[\"Inter-Medium\",\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{y:undefined},C1LBoBDxd:{y:(componentViewport?.y||0)+0+7630+0+44.5+0+175},OFyMZHFxL:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+7720+0+90.5+0+185,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aib7tx-container\",nodeId:\"oHdBO0Oxd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{g_G74OEHz:\"https://cal.com/forms/46b9973f-b7cb-4a03-869a-137e2a80555c\",height:\"100%\",id:\"oHdBO0Oxd\",layoutId:\"oHdBO0Oxd\",muxhgbKdh:false,Pw3Qxl4NQ:\"Talk to sales\",style:{height:\"100%\"},variant:\"OQMKxbynb\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ks80di\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k9sita\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-3fdtyl\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:60,intrinsicWidth:55,svg:'<svg width=\"55\" height=\"60\" viewBox=\"0 0 55 60\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.8734 9.93889C20.1993 9.87627 15.1899 9.20263 10.0552 7.53619C9.63104 7.39883 9.21292 7.25643 8.80085 7.10998C7.13138 8.49363 5.46292 9.87829 3.79345 11.2619C3.62883 11.3912 3.46319 11.5205 3.29857 11.6488C3.42179 11.8407 3.545 12.0325 3.66822 12.2244C7.08694 17.3419 7.26369 21.1343 6.95363 23.4229C6.52742 26.575 4.64283 30.9492 4.51659 31.2006C3.47329 33.2923 2.531 35.4304 2.26639 37.7937C2.10883 39.2046 2.29063 40.5812 2.75925 41.9113C3.36826 43.6404 4.22168 45.2371 5.46696 46.6006C6.43451 47.66 7.69696 48.269 8.97355 48.8417C10.7238 49.6254 12.4731 50.4081 14.185 51.2747C18.653 53.537 19.1045 53.3491 20.1397 53.949C22.1334 55.1055 23.5776 56.3639 24.4886 57.2496C24.5755 57.3243 24.6613 57.4001 24.7482 57.4748C24.834 57.4021 24.9209 57.3294 25.0067 57.2557C27.5922 55.055 29.9081 53.7319 31.5876 52.9199C32.0199 52.7108 33.143 52.3382 35.2528 51.2979C37.099 50.3879 38.9523 49.4921 40.851 48.7003C42.9477 47.8256 44.5051 46.3854 45.6049 44.4261C46.5947 42.6627 47.2865 40.7953 47.2986 38.7501C47.3077 37.115 46.8371 35.5667 46.2553 34.0487C45.7463 32.7196 45.0908 31.4562 44.4899 30.1685C43.9678 29.0504 43.7496 28.4727 43.5486 27.9132C43.183 26.8921 42.7528 25.4075 42.5377 23.4896L42.4558 22.7573C42.7093 22.7927 42.9841 22.82 43.278 22.8331C43.8112 22.8563 44.293 22.827 44.7081 22.7745C44.7374 23.1371 44.7939 23.6966 44.9141 24.3713C45.0252 24.9974 45.2332 26.5558 46.4573 29.1393C47.4824 31.3026 48.557 33.4458 49.1408 35.7879C49.9164 38.9006 49.4195 41.8436 47.9793 44.6645C47.031 46.5208 45.8109 48.1478 44.0678 49.3416C42.8881 50.1486 41.5509 50.6374 40.2693 51.2383C38.2443 52.1877 36.2284 53.1562 34.1893 54.0723C32.6057 54.7833 30.9584 55.361 29.4708 56.271C28.2396 57.0244 27.1307 57.9051 26.352 59.1796C25.7167 60.2199 23.9867 60.2926 23.2908 59.2716C21.7708 57.0405 19.5519 55.8609 17.1593 54.8772C14.5172 53.7915 11.956 52.528 9.37552 51.307C8.25749 50.7778 7.10108 50.3314 6.02244 49.7133C4.17825 48.6568 2.85419 47.1035 1.84624 45.2805C1.12311 43.9736 0.544402 42.594 0.240403 41.1124C-0.22115 38.8622 0.00609267 36.6716 0.715087 34.5083C1.29481 32.7398 2.10984 31.0734 2.91378 29.4029C4.19037 26.7487 4.93572 23.9794 4.71858 21.0111C4.48225 17.7802 3.06325 15.3725 2.59261 14.5817C1.90381 13.4253 1.17967 12.5507 0.62621 11.9538C0.471685 11.7851 0.318169 11.6154 0.163645 11.4468C0.329279 11.3175 0.494914 11.1872 0.660548 11.0569C3.11981 9.12183 5.50837 7.15947 7.82826 5.17287C7.98076 5.03451 8.13428 4.89614 8.28678 4.75879C8.47766 4.83454 8.66855 4.90928 8.85842 4.98502C11.8994 6.06164 14.5657 6.69388 16.6493 7.0817C19.4034 7.59477 21.5102 7.75838 22.2788 7.79878C23.0373 7.83918 24.2624 7.92301 25.8702 7.88261C28.0437 7.82807 29.899 7.58669 31.3382 7.32915C31.6149 7.27461 31.8916 7.22007 32.1694 7.16553C32.0512 7.4564 31.932 7.80484 31.8381 8.20579C31.7401 8.62392 31.6927 9.00367 31.6715 9.32685C30.6251 9.51976 29.4728 9.6864 28.2245 9.79649C27.0246 9.90253 25.9026 9.94091 24.8734 9.93687V9.93889Z\" fill=\"#505967\"/>\\n<path d=\"M45.7645 35.1711C44.8172 32.6513 44.1597 31.6231 43.28 29.5901C42.6892 28.2236 41.9812 26.1582 41.7024 23.3555C41.6843 23.1263 41.6671 22.899 41.6489 22.6698C41.4408 22.6253 41.2338 22.5799 41.0258 22.5375C39.6876 22.1971 38.0241 21.5598 36.4617 20.3398C35.7649 19.7974 35.2619 19.2723 35.0185 19.0056C34.1368 18.0442 33.5197 17.0483 33.0773 16.1485C32.0351 14.0295 31.8502 12.0985 31.825 11.0209C31.8179 10.7987 31.8109 10.5785 31.8038 10.3563C31.5301 10.4159 31.1362 10.4977 30.6615 10.5805C28.7446 10.9158 27.264 10.9623 26.4378 10.9855C22.5081 11.0986 18.2632 10.4876 18.2632 10.4876C15.9352 10.1513 12.9185 9.55945 9.47248 8.45152C9.34927 8.40506 9.22504 8.35658 9.10182 8.30811C9.00487 8.39092 8.9069 8.47273 8.80793 8.55757C7.55052 9.60187 6.2911 10.6482 5.03369 11.6915C4.91351 11.7915 4.79231 11.8925 4.67213 11.9904C4.76908 12.1359 4.86402 12.2803 4.95896 12.4237C5.22559 12.8752 8.11812 17.8502 8.08277 21.9487C8.06863 23.6393 7.71212 25.4714 7.71212 25.4714C6.19111 30.4788 5.02359 32.4695 4.18027 34.6075C3.10971 37.3223 2.88752 40.0129 4.13685 42.7287C5.03773 44.6829 6.13253 46.4807 8.14337 47.4836C9.39168 48.1067 10.6834 48.641 11.9439 49.2389C12.7963 49.6439 16.319 51.0982 18.8106 52.3748C20.2306 53.102 22.2566 54.2392 24.5926 55.9299C24.6856 56.0046 24.7775 56.0804 24.8704 56.1551C24.9865 56.0551 25.1047 55.9541 25.2218 55.8541C26.56 54.6684 27.772 53.9221 28.6426 53.4545C29.5708 52.9586 30.0141 52.7778 33.3945 51.3123C33.9439 51.074 34.4903 50.8286 35.0316 50.571C36.9768 49.6429 38.9149 48.6996 40.8864 47.834C42.6023 47.0796 43.8577 45.8818 44.803 44.2891C46.522 41.3894 46.9795 38.3909 45.7645 35.1711ZM24.7462 11.6652C24.7512 11.6632 24.7573 11.6632 24.7603 11.6632C24.8068 11.6612 24.8552 11.6592 24.9017 11.6592C26.4166 11.6592 27.6458 12.755 27.6458 14.1093C27.6458 15.4637 26.4166 16.5575 24.9017 16.5575C24.7724 16.5575 24.6472 16.5504 24.524 16.5343C24.5219 16.5343 24.5199 16.5343 24.5189 16.5322C23.1868 16.3676 22.1596 15.3445 22.1596 14.1093C22.1596 12.8014 23.3059 11.7339 24.7462 11.6642V11.6652ZM22.1172 48.1188C21.2699 48.6218 20.4518 49.0591 19.6711 49.4389C19.4651 49.5409 19.2631 49.6358 19.0641 49.7287C19.7711 49.1773 20.5063 48.5713 21.2547 47.9088C22.0213 47.2301 22.7252 46.5584 23.3696 45.908C23.4049 45.9333 23.4393 45.9595 23.4756 45.9848C23.7786 46.207 24.0806 46.4251 24.3836 46.6473C23.6958 47.1331 22.9413 47.629 22.1182 48.1178L22.1172 48.1188ZM25.0098 50.6357V50.6397C25.0098 50.6397 25.0077 50.6448 25.0098 50.6468V50.6488C25.0098 50.6488 25.0077 50.6508 25.0098 50.6528V50.6549C25.0027 50.8144 24.9956 50.972 24.9896 51.1316C24.9481 52.1001 24.9108 53.0717 24.8714 54.0403C24.7603 51.6153 24.6512 49.1904 24.5421 46.7665C24.6189 46.818 24.6946 46.8725 24.7714 46.9241V46.9261C24.8966 47.0139 25.0239 47.0998 25.1491 47.1876C25.1027 48.338 25.0562 49.4873 25.0098 50.6377V50.6357ZM31.2251 37.3971C31.1089 41.5288 27.2236 44.6597 26.3944 45.301C25.7369 44.592 25.0815 43.882 24.424 43.173C24.2664 39.7271 24.1089 36.2831 23.9543 32.8371C22.9232 33.2724 21.0083 34.2632 20.473 36.0983C19.7579 38.5343 21.9061 41.0329 24.431 43.9719C25.7026 45.4546 27.7569 47.5684 30.7696 49.6388C29.8202 49.2449 20.5013 45.2526 18.9076 39.4049C18.6743 38.5525 18.2319 36.9426 18.9217 35.1802C19.7812 32.9734 21.8415 31.9938 22.4677 31.7201C23.5463 32.2452 24.6189 32.7694 25.6915 33.2926C25.6056 36.7739 25.5157 40.2583 25.4299 43.7396C25.7218 43.4437 30.0293 38.9736 29.2647 36.1548C29.1344 35.668 28.8971 35.2357 28.8971 35.2357C28.0477 33.6663 26.4267 33.0896 25.437 32.6795C24.9986 32.5008 21.8152 31.1555 19.5893 29.0235C18.9065 28.368 17.1835 26.6702 16.7149 24.0443C16.618 23.5 16.118 20.7004 17.5815 19.6833C17.6421 19.6419 18.3733 19.1501 19.2186 19.2894C19.966 19.4127 20.1549 19.9267 21.1759 20.2277C21.2668 20.2529 21.5345 20.3277 21.8031 20.5398C21.9395 20.6438 22.1556 20.8205 22.2576 21.1326C22.2849 21.2154 22.3667 21.4891 22.2465 21.7669C22.2465 21.7669 22.193 21.8901 22.096 21.9961C21.7021 22.4223 20.4033 22.5617 19.8317 23.0273C19.1459 23.5929 19.3035 24.8362 19.3247 25.019C19.461 26.0895 20.2185 26.844 22.2051 28.2933C23.8261 29.483 24.8401 30.0859 26.7933 31.3635C29.5556 33.1724 30.3181 33.7834 30.8049 34.8934C31.2564 35.9235 31.2402 36.8456 31.222 37.3971H31.2251ZM33.0501 24.0454C32.5956 26.5794 30.9706 28.2256 30.1757 29.0245C29.1405 30.0668 28.1053 30.7242 27.3892 31.1161C26.1763 30.3334 24.9663 29.5527 23.7534 28.77C23.6079 24.8493 23.4645 20.9286 23.3221 17.0079C23.616 17.1513 24.1422 17.3594 24.832 17.3877C25.4915 17.4149 26.0137 17.2645 26.3166 17.1513C26.1682 21.2023 26.0197 25.2523 25.8702 29.3042C26.0581 29.2345 26.3247 29.1255 26.6277 28.9608C27.0883 28.7114 27.3983 28.4589 27.568 28.3215C30.0071 26.3299 30.3626 25.5956 30.4393 25.021C30.4444 24.9745 30.4504 24.9311 30.4504 24.922C30.4858 24.5675 30.5413 23.5323 29.9293 23.0293C29.3617 22.5637 28.0598 22.4244 27.6649 21.9982C27.568 21.8921 27.5145 21.7689 27.5145 21.7689C27.3983 21.4912 27.4821 21.2175 27.5074 21.1346C27.6064 20.8226 27.8265 20.6458 27.9588 20.5418C28.2325 20.3307 28.4982 20.255 28.586 20.2297C29.6071 19.9287 29.802 19.4147 30.5494 19.2915C31.3927 19.1521 32.126 19.6439 32.1815 19.6853C33.6449 20.7024 33.1501 23.502 33.0521 24.0464L33.0501 24.0454Z\" fill=\"#505967\"/>\\n<path d=\"M30.8504 20.7601C30.8322 20.8086 30.6302 20.7157 30.0929 20.6854C29.6232 20.6601 29.391 20.7086 29.3768 20.644C29.3566 20.5773 29.594 20.4107 29.8565 20.3662C30.3736 20.2763 30.8807 20.6813 30.8504 20.7601Z\" fill=\"#505967\"/>\\n<path d=\"M20.3891 20.6436C20.375 20.7083 20.1417 20.6598 19.6731 20.685C19.5923 20.6901 19.5196 20.6962 19.4509 20.7032C19.0752 20.7406 18.9277 20.8022 18.9156 20.7608C18.8924 20.7002 19.1822 20.4477 19.5549 20.376C19.668 20.3528 19.7882 20.3457 19.9094 20.3669C20.169 20.4113 20.4093 20.578 20.3891 20.6446V20.6436Z\" fill=\"#505967\"/>\\n<path d=\"M43.6799 0C37.7625 0 32.9622 4.79429 32.9622 10.7177C32.9622 16.6412 37.7625 21.4355 43.6799 21.4355C49.5973 21.4355 54.3996 16.6391 54.3996 10.7177C54.3996 4.79631 49.6033 0 43.6799 0ZM40.1713 16.7896C40.1157 16.8341 39.8259 17.0563 39.4168 17.0148C39.0462 16.9734 38.8199 16.7442 38.7634 16.6856C37.001 14.7636 35.2336 12.8387 33.4651 10.9127L35.2851 9.41185C36.7071 10.9914 38.1291 12.568 39.5572 14.1435C39.5643 14.1546 39.6057 14.1991 39.6774 14.2041C39.7602 14.2112 39.8077 14.1536 39.8158 14.1466C43.6395 11.046 47.4652 7.94235 51.289 4.84378C51.799 5.42956 52.31 6.01332 52.8201 6.5991L40.1713 16.7886V16.7896Z\" fill=\"#505967\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y8urc2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18q6qo1\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.77002 13C10.0837 13 12.77 10.3137 12.77 7C12.77 3.68629 10.0837 1 6.77002 1C3.45631 1 0.77002 3.68629 0.77002 7C0.77002 10.3137 3.45631 13 6.77002 13Z\" fill=\"#8F99A8\"/>\\n<path d=\"M4.45459 7.42421L4.95849 8.22061C5.3225 8.7959 5.5045 9.08354 5.73792 9.18426C5.94187 9.27227 6.17275 9.27408 6.37806 9.18928C6.61303 9.09222 6.79951 8.80746 7.17248 8.23794L9.08316 5.32031\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__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-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"HIPAA\"})}),className:\"framer-1fql7al\",\"data-framer-name\":\"GDPR\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n09gh4\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3qfef1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:60,intrinsicWidth:44,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mn5sv1dOv4xP4xFRVYpvEM1Z3CI.svg\"}},C1LBoBDxd:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:60,intrinsicWidth:44,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7630+0+0+0+30+85),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mn5sv1dOv4xP4xFRVYpvEM1Z3CI.svg\"}},OFyMZHFxL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:60,intrinsicWidth:44,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mn5sv1dOv4xP4xFRVYpvEM1Z3CI.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:60,intrinsicWidth:44,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7720+0+0+0+30+126),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mn5sv1dOv4xP4xFRVYpvEM1Z3CI.svg\"},className:\"framer-1qedu3b\",\"data-framer-name\":\"Vector\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-38uu4x\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1j5lk80\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.12988 13C10.4436 13 13.1299 10.3137 13.1299 7C13.1299 3.68629 10.4436 1 7.12988 1C3.81617 1 1.12988 3.68629 1.12988 7C1.12988 10.3137 3.81617 13 7.12988 13Z\" fill=\"#8F99A8\"/>\\n<path d=\"M4.81445 7.42421L5.31835 8.22061C5.68236 8.7959 5.86436 9.08354 6.09778 9.18426C6.30173 9.27227 6.53261 9.27408 6.73792 9.18928C6.97289 9.09222 7.15937 8.80746 7.53234 8.23794L9.44302 5.32031\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__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-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"SOC II\"})}),className:\"framer-151rayu\",\"data-framer-name\":\"CCPA\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11e3utz\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pcq866\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-w0ovak\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:60,intrinsicWidth:61,svg:'<svg width=\"61\" height=\"60\" viewBox=\"0 0 61 60\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.75\">\\n<path d=\"M50.3217 30.707V40.4618H48.2593V32.6646H48.2021L45.9683 34.065V32.236L48.3831 30.707H50.3217Z\" fill=\"#505967\"/>\\n<path d=\"M40.6691 40.6766C39.8498 40.6735 39.1449 40.4719 38.5542 40.0717C37.9668 39.6717 37.5144 39.0922 37.1968 38.3332C36.8824 37.5744 36.7268 36.6614 36.73 35.5944C36.73 34.5308 36.8872 33.6242 37.2016 32.8748C37.5191 32.1254 37.9715 31.5554 38.559 31.1648C39.1496 30.771 39.853 30.5742 40.6691 30.5742C41.4852 30.5742 42.1869 30.771 42.7744 31.1648C43.3649 31.5586 43.8191 32.1302 44.1366 32.8795C44.4541 33.6258 44.6113 34.5308 44.6081 35.5944C44.6081 36.6646 44.4494 37.5791 44.1319 38.338C43.8175 39.097 43.3665 39.6764 42.7791 40.0765C42.1917 40.4767 41.4883 40.6766 40.6691 40.6766ZM40.6691 38.9667C41.228 38.9667 41.674 38.6857 42.0075 38.1237C42.3409 37.5617 42.5061 36.7186 42.5028 35.5944C42.5028 34.8546 42.4267 34.2385 42.2742 33.7464C42.125 33.2543 41.9123 32.8843 41.636 32.6366C41.3629 32.389 41.0406 32.2651 40.6691 32.2651C40.1133 32.2651 39.6688 32.5429 39.3354 33.0986C39.002 33.6543 38.8337 34.4863 38.8305 35.5944C38.8305 36.3439 38.9052 36.9694 39.0544 37.4712C39.2068 37.9697 39.4212 38.3443 39.6974 38.5952C39.9737 38.8429 40.2976 38.9667 40.6691 38.9667Z\" fill=\"#505967\"/>\\n<path d=\"M31.4342 40.6766C30.615 40.6735 29.91 40.4719 29.3195 40.0717C28.732 39.6717 28.2795 39.0922 27.962 38.3332C27.6476 37.5744 27.492 36.6614 27.4952 35.5944C27.4952 34.5308 27.6523 33.6242 27.9667 32.8748C28.2842 32.1254 28.7368 31.5554 29.3242 31.1648C29.9148 30.771 30.6181 30.5742 31.4342 30.5742C32.2503 30.5742 32.952 30.771 33.5395 31.1648C34.1301 31.5586 34.5842 32.1302 34.9017 32.8795C35.2193 33.6258 35.3765 34.5308 35.3733 35.5944C35.3733 36.6646 35.2145 37.5791 34.897 38.338C34.5826 39.097 34.1318 39.6764 33.5442 40.0765C32.9568 40.4767 32.2535 40.6766 31.4342 40.6766ZM31.4342 38.9667C31.9931 38.9667 32.4393 38.6857 32.7726 38.1237C33.106 37.5617 33.2712 36.7186 33.2681 35.5944C33.2681 34.8546 33.1918 34.2385 33.0394 33.7464C32.8901 33.2543 32.6774 32.8843 32.4011 32.6366C32.128 32.389 31.8057 32.2651 31.4342 32.2651C30.8786 32.2651 30.434 32.5429 30.1005 33.0986C29.7672 33.6543 29.5989 34.4863 29.5957 35.5944C29.5957 36.3439 29.6703 36.9694 29.8195 37.4712C29.972 37.9697 30.1863 38.3443 30.4626 38.5952C30.7388 38.8429 31.0627 38.9667 31.4342 38.9667Z\" fill=\"#505967\"/>\\n<path d=\"M20.2279 40.4618L24.2717 32.4598V32.3931H19.561V30.707H26.4057V32.4169L22.357 40.4618H20.2279Z\" fill=\"#505967\"/>\\n<path d=\"M11.3936 40.4623V38.9763L14.8659 35.7612C15.1612 35.4754 15.4088 35.2182 15.6089 34.9895C15.8121 34.7609 15.9661 34.5371 16.0709 34.318C16.1757 34.0957 16.2281 33.8559 16.2281 33.5987C16.2281 33.313 16.163 33.0669 16.0328 32.8605C15.9026 32.6509 15.7248 32.4906 15.4993 32.3794C15.2739 32.2651 15.0182 32.2079 14.7325 32.2079C14.434 32.2079 14.1736 32.2683 13.9513 32.389C13.729 32.5096 13.5576 32.6827 13.4369 32.9081C13.3162 33.1336 13.2559 33.4019 13.2559 33.7131H11.2983C11.2983 33.0748 11.4427 32.5207 11.7317 32.0507C12.0207 31.5808 12.4256 31.2172 12.9463 30.96C13.4671 30.7028 14.0672 30.5742 14.7468 30.5742C15.4453 30.5742 16.0534 30.6981 16.5711 30.9457C17.0918 31.1903 17.4966 31.53 17.7856 31.965C18.0746 32.4001 18.219 32.8986 18.219 33.4606C18.219 33.829 18.146 34.1925 17.9999 34.5513C17.857 34.9102 17.6014 35.3087 17.2331 35.7469C16.8648 36.182 16.3455 36.7043 15.6756 37.314L14.2514 38.7095V38.7762H18.3477V40.4623H11.3936Z\" fill=\"#505967\"/>\\n<path d=\"M43.4027 20.8311C43.4027 21.8948 43.2011 22.7998 42.7978 23.5461C42.3977 24.2922 41.8515 24.8622 41.1593 25.256C40.4702 25.6465 39.6954 25.8418 38.8349 25.8418C37.968 25.8418 37.1901 25.645 36.501 25.2512C35.8119 24.8574 35.2673 24.2875 34.8673 23.5412C34.4672 22.7951 34.2671 21.8916 34.2671 20.8311C34.2671 19.7673 34.4672 18.8623 34.8673 18.1161C35.2673 17.3699 35.8119 16.8015 36.501 16.4109C37.1901 16.0171 37.968 15.8203 38.8349 15.8203C39.6954 15.8203 40.4702 16.0171 41.1593 16.4109C41.8515 16.8015 42.3977 17.3699 42.7978 18.1161C43.2011 18.8623 43.4027 19.7673 43.4027 20.8311ZM41.3117 20.8311C41.3117 20.142 41.2085 19.5609 41.0021 19.0878C40.7988 18.6146 40.5115 18.2558 40.14 18.0113C39.7685 17.7668 39.3335 17.6445 38.8349 17.6445C38.3364 17.6445 37.9013 17.7668 37.5298 18.0113C37.1583 18.2558 36.8693 18.6146 36.663 19.0878C36.4597 19.5609 36.3581 20.142 36.3581 20.8311C36.3581 21.5201 36.4597 22.1012 36.663 22.5743C36.8693 23.0475 37.1583 23.4063 37.5298 23.6508C37.9013 23.8953 38.3364 24.0176 38.8349 24.0176C39.3335 24.0176 39.7685 23.8953 40.14 23.6508C40.5115 23.4063 40.7988 23.0475 41.0021 22.5743C41.2085 22.1012 41.3117 21.5201 41.3117 20.8311Z\" fill=\"#505967\"/>\\n<path d=\"M30.941 18.7591C30.903 18.3749 30.7394 18.0764 30.4505 17.8637C30.1615 17.6509 29.7694 17.5446 29.274 17.5446C28.9374 17.5446 28.6532 17.5922 28.4214 17.6874C28.1896 17.7795 28.0117 17.9081 27.8879 18.0733C27.7672 18.2383 27.7069 18.4257 27.7069 18.6353C27.7006 18.8099 27.7371 18.9623 27.8165 19.0926C27.899 19.2227 28.0117 19.3354 28.1547 19.4307C28.2976 19.5228 28.4626 19.6038 28.65 19.6736C28.8374 19.7403 29.0375 19.7974 29.2502 19.8451L30.1266 20.0546C30.5521 20.15 30.9427 20.2769 31.2983 20.4357C31.6539 20.5944 31.9619 20.7898 32.2224 21.0215C32.4827 21.2534 32.6844 21.5265 32.8273 21.8409C32.9734 22.1552 33.0479 22.5156 33.0511 22.9221C33.0479 23.519 32.8956 24.0366 32.5939 24.4748C32.2954 24.9098 31.8636 25.248 31.2983 25.4894C30.7362 25.7275 30.0583 25.8466 29.2645 25.8466C28.477 25.8466 27.7911 25.7259 27.2069 25.4845C26.6257 25.2433 26.1716 24.886 25.8446 24.4129C25.5207 23.9365 25.3508 23.3476 25.335 22.6458H27.3307C27.3529 22.9728 27.4466 23.246 27.6117 23.465C27.78 23.681 28.0039 23.8445 28.2832 23.9556C28.5659 24.0636 28.885 24.1175 29.2407 24.1175C29.5899 24.1175 29.8932 24.0668 30.1504 23.9652C30.4108 23.8636 30.6124 23.7222 30.7553 23.5412C30.8982 23.3602 30.9696 23.1522 30.9696 22.9172C30.9696 22.6982 30.9045 22.5141 30.7744 22.3647C30.6473 22.2155 30.46 22.0885 30.2123 21.9837C29.9678 21.8789 29.6677 21.7836 29.3121 21.698L28.2499 21.4312C27.4275 21.2311 26.7781 20.9183 26.3018 20.4928C25.8255 20.0673 25.5889 19.4942 25.5922 18.7734C25.5889 18.1827 25.7461 17.6667 26.0637 17.2254C26.3844 16.7841 26.8241 16.4395 27.383 16.1918C27.9419 15.9441 28.577 15.8203 29.2883 15.8203C30.0123 15.8203 30.6442 15.9441 31.184 16.1918C31.7269 16.4395 32.1493 16.7841 32.451 17.2254C32.7526 17.6667 32.9082 18.178 32.9178 18.7591H30.941Z\" fill=\"#505967\"/>\\n<path d=\"M18.8462 17.653V15.9526H24.3285V17.653H18.8462ZM18.8462 25.7074V24.0069H24.3285V25.7074H18.8462ZM22.6185 15.9526V25.7074H20.5561V15.9526H22.6185Z\" fill=\"#505967\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.6898 57.5409C45.9003 57.5409 58.2308 45.2104 58.2308 29.9999C58.2308 14.7894 45.9003 2.45891 30.6898 2.45891C15.4793 2.45891 3.14885 14.7894 3.14885 29.9999C3.14885 45.2104 15.4793 57.5409 30.6898 57.5409ZM30.6898 59.5081C46.9867 59.5081 60.198 46.2968 60.198 29.9999C60.198 13.703 46.9867 0.491699 30.6898 0.491699C14.393 0.491699 1.18164 13.703 1.18164 29.9999C1.18164 46.2968 14.393 59.5081 30.6898 59.5081Z\" fill=\"#505967\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e69nk5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-npp9xd\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.19971 13C10.5134 13 13.1997 10.3137 13.1997 7C13.1997 3.68629 10.5134 1 7.19971 1C3.886 1 1.19971 3.68629 1.19971 7C1.19971 10.3137 3.886 13 7.19971 13Z\" fill=\"#8F99A8\"/>\\n<path d=\"M4.88428 7.42421L5.38818 8.22061C5.75219 8.7959 5.93419 9.08354 6.16761 9.18426C6.37156 9.27227 6.60244 9.27408 6.80775 9.18928C7.04272 9.09222 7.2292 8.80746 7.60217 8.23794L9.51285 5.32031\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__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-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"ISO\"})}),className:\"framer-1ja1jvi\",\"data-framer-name\":\"ISO\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l8j37j\",\"data-border\":true,\"data-framer-name\":\"Overview\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b98zhr\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1up1fmh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Built by a team of PhD AI researchers. \"}),\"Phonely is built for scale. Our customers rely on Phonely when they can\u2019t afford to have their AI make a mistake\"]})})},C1LBoBDxd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Built by a team of PhD AI researchers. \"}),\"Phonely is built for scale. Our customers rely on Phonely when they can\u2019t afford to have their AI make a mistake\"]})})},OFyMZHFxL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Built by a team of PhD AI researchers. \"}),\"Phonely is built for scale. Our customers rely on Phonely when they can\u2019t afford to have their AI make a mistake\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"33px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Built by a team of PhD AI researchers. \"}),\"Phonely is built for scale. Our customers rely on Phonely when they can\u2019t afford to have their AI make a mistake\"]})}),className:\"framer-90y4ef\",\"data-framer-name\":\"Phonely is audited and certified\",fonts:[\"Inter-Medium\",\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ne40hy\",\"data-framer-name\":\"Gap\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l6qhhp\",\"data-framer-name\":\"Stats\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-svqjke\",\"data-framer-name\":\"Stat\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-p9pbeq\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y26nr4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xa6tyh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dLcyZcmIb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"comma\",end:400,gapSize:4,height:\"100%\",id:\"dLcyZcmIb\",incrementType:\"integer\",layoutId:\"dLcyZcmIb\",loop:false,prefixColor:\"rgb(0, 0, 0)\",prefixFont:{},prefixText:\"~\",restartOnViewport:false,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},speed:5,start:350,startOnViewport:true,suffixColor:\"rgb(0, 0, 0)\",suffixFont:{},suffixText:\"ms\",textColor:\"rgb(0, 0, 0)\",textSize:32,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFyMZHFxL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Latency\"})})}},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-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Latency\"})}),className:\"framer-1b101dn\",\"data-framer-name\":\"Latency\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a99mdd\",\"data-framer-name\":\"Stat\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hhfr1c\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a3zbs6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12mmfyi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tiuH1V2iE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"comma\",end:100,gapSize:4,height:\"100%\",id:\"tiuH1V2iE\",incrementType:\"integer\",layoutId:\"tiuH1V2iE\",loop:false,prefixColor:\"rgb(0, 0, 0)\",prefixFont:{},prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},speed:5,start:50,startOnViewport:true,suffixColor:\"rgb(0, 0, 0)\",suffixFont:{},suffixText:\"+\",textColor:\"rgb(0, 0, 0)\",textSize:32,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFyMZHFxL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Voices & Accents\"})})}},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-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Voices & Accents\"})}),className:\"framer-kqg3ly\",\"data-framer-name\":\"Latency\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hp9dc4\",\"data-framer-name\":\"Stat\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f30ll0\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h22yr5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFyMZHFxL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Secure LLM\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"31.38px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(35, 37, 41)\"},children:\"Secure LLM\"})}),className:\"framer-1hcusmx\",\"data-framer-name\":\"~400ms\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFyMZHFxL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Fine tuned for voice\"})})}},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-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Fine tuned for voice\"})}),className:\"framer-lc7wm2\",\"data-framer-name\":\"Latency\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yfqzis\",\"data-framer-name\":\"Stat\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lctqyn\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p1qmon\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dcdqsk-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FJshWBlMQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"comma\",end:99.99,gapSize:4,height:\"100%\",id:\"FJshWBlMQ\",incrementType:\"integer\",layoutId:\"FJshWBlMQ\",loop:false,prefixColor:\"rgb(0, 0, 0)\",prefixFont:{},prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},speed:5,start:50,startOnViewport:true,suffixColor:\"rgb(0, 0, 0)\",suffixFont:{},suffixText:\"%\",textColor:\"rgb(0, 0, 0)\",textSize:32,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OFyMZHFxL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Uptime\"})})}},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-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:\"Uptime\"})}),className:\"framer-17awvw2\",\"data-framer-name\":\"Latency\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gkw4yu\",\"data-framer-name\":\"Graph\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:445,intrinsicWidth:1303,svg:'<svg width=\"1303\" height=\"445\" viewBox=\"0 0 1303 445\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1303 444V0L1301 1.5L1300.5 3H1299.5L1295.5 6.5L1287.5 13.5L1270.5 27.5L1237.5 54L1203.5 79.5L1186.5 93L1169.5 105L1088 157L1055.5 176.5L1036 187L1025.5 192.5L1017.5 197L1008 202L996.5 207.5L996.5 208C996.169 208.331 995.786 208.607 995.368 208.816L995 209L992.5 210L985.5 213.5L965.5 223.5L930.5 240L854.5 272L777 299.5L697 324L611 347L525.5 369.5L499 375.5L471 381.5L416.5 391.5L307 411.5L297 412.5L290 413.5L284 414.5L278 415.5L267 417.5L247.5 420L213 424.5L142 433.25L0 445L1303 444Z\" fill=\"url(#paint0_linear_2225_8)\"/>\\n<path d=\"M0 445L38.2154 442.107C201.855 429.719 364.378 405.452 524.5 369.5V369.5L695.5 324L713.337 318.951C930.793 257.401 1132.08 148.863 1303 1V1\" stroke=\"#A34BCA\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2225_8\" x1=\"982.5\" y1=\"456.5\" x2=\"964\" y2=\"-33\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.0417988\" stop-color=\"#FAF7FA\"/>\\n<stop offset=\"0.789494\" stop-color=\"#DCBBE8\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s4647h\",\"data-framer-name\":\"Trail\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xbp4dt\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n663lq\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hff0fd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:[\"Your first 500 minutes \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"are completely free.\"})]})})},C1LBoBDxd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:[\"Your first 500 minutes \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"are completely free.\"})]})})},OFyMZHFxL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:[\"Your first 500 minutes \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"are completely free.\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"35px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:[\"Your first 500 minutes \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"are completely free.\"})]})}),className:\"framer-1sfi2yl\",\"data-framer-name\":\"Start with a 14-day\",fonts:[\"Inter-Bold\",\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9igmie\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{y:undefined},C1LBoBDxd:{y:(componentViewport?.y||0)+0+8864+0+50+31.5+0+145+0},OFyMZHFxL:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+9181+0+50+58.5+0+185+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wrwumw-container\",nodeId:\"wuwj_xusd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1LBoBDxd:{g_G74OEHz:\"https://app.phonely.ai/sign-up\"}},children:/*#__PURE__*/_jsx(Button,{g_G74OEHz:\"https://app.phonely.ai/\",height:\"100%\",id:\"wuwj_xusd\",layoutId:\"wuwj_xusd\",muxhgbKdh:false,Pw3Qxl4NQ:\"Start for free\",style:{height:\"100%\"},variant:\"eYiFB1fQf\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hWhe3b__2\"},implicitPathVariables:undefined},{href:{webPageId:\"hWhe3b__2\"},implicitPathVariables:undefined},{href:{webPageId:\"hWhe3b__2\"},implicitPathVariables:undefined},{href:{webPageId:\"hWhe3b__2\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{y:undefined},C1LBoBDxd:{y:(componentViewport?.y||0)+0+8864+0+50+31.5+0+145+0},OFyMZHFxL:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+9181+0+50+58.5+0+185+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gl2iff-container\",nodeId:\"BiDjMixB7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{g_G74OEHz:resolvedLinks[2]},C1LBoBDxd:{g_G74OEHz:resolvedLinks[1]},OFyMZHFxL:{g_G74OEHz:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Button,{g_G74OEHz:resolvedLinks[0],height:\"100%\",id:\"BiDjMixB7\",layoutId:\"BiDjMixB7\",muxhgbKdh:false,Pw3Qxl4NQ:\"See our plans\",style:{height:\"100%\"},variant:\"OQMKxbynb\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-riqs0c\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-s3preo\",\"data-framer-name\":\"Background+Border\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:338,intrinsicWidth:580,svg:'<svg width=\"580\" height=\"338\" viewBox=\"0 0 580 338\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0H580V338H0V0Z\" fill=\"url(#paint0_linear_2306_6921)\"/>\\n<path d=\"M0 0H580V338H0V0Z\" fill=\"url(#paint1_linear_2306_6921)\"/>\\n<g clip-path=\"url(#clip0_2306_6921)\">\\n<path d=\"M234.48 215.329L161.5 184.539V251.539L234.5 282.329L235 282.539V215.539L234.48 215.329ZM234.48 281.789L162 251.209V185.299L223.42 211.199L234.48 215.869V281.789Z\" fill=\"white\"/>\\n<path d=\"M235 215L162.79 184.54L161.49 184L161 184.21V251.87L234.48 282.87L234.98 283.08L235.48 282.87V215.21L235 215ZM234.5 281.79L162 251.21V185.3L223.42 211.2L234.48 215.87L234.5 281.79Z\" fill=\"#505967\"/>\\n<path d=\"M271.72 169L271.5 169.09V169H271.72Z\" fill=\"white\"/>\\n<path d=\"M273.01 169.031L272.99 169.041L272 169.461L271.72 169.581L271.71 169.591H271.69L271 169.891V168.211L271.72 168.501L272 168.621L273.01 169.031Z\" fill=\"#505967\"/>\\n<path d=\"M235 215L162.79 184.54L161.49 184L161 184.21V251.87L234.48 282.87L234.98 283.08L235.48 282.87V215.21L235 215ZM234.5 281.79L162 251.21V185.3L223.42 211.2L234.48 215.87L234.5 281.79Z\" fill=\"#505967\"/>\\n<path d=\"M273.01 169.031L272.99 169.041L272 169.461L271.72 169.581L271.71 169.591H271.69L271 169.891V168.211L271.72 168.501L272 168.621L273.01 169.031Z\" fill=\"#505967\"/>\\n<path d=\"M234.48 215.329L161.5 184.539V251.539L234.5 282.329L235 282.539V215.539L234.48 215.329ZM234.48 281.789L162 251.209V185.299L223.42 211.199L234.48 215.869V281.789Z\" fill=\"white\"/>\\n<path d=\"M235 215L162.79 184.54L161.49 184L161 184.21V251.87L234.48 282.87L234.98 283.08L235.48 282.87V215.21L235 215ZM234.5 281.79L162 251.21V185.3L223.42 211.2L234.48 215.87L234.5 281.79Z\" fill=\"#505967\"/>\\n<path d=\"M271.72 169L271.5 169.09V169H271.72Z\" fill=\"white\"/>\\n<path d=\"M273.01 169.031L272.99 169.041L272 169.461L271.72 169.581L271.71 169.591H271.69L271 169.891V168.211L271.72 168.501L272 168.621L273.01 169.031Z\" fill=\"#505967\"/>\\n<path d=\"M235 215L162.79 184.54L161.49 184L161 184.21V251.87L234.48 282.87L234.98 283.08L235.48 282.87V215.21L235 215ZM234.5 281.79L162 251.21V185.3L223.42 211.2L234.48 215.87L234.5 281.79Z\" fill=\"#505967\"/>\\n<path d=\"M273.01 169.031L272.99 169.041L272 169.461L271.72 169.581L271.71 169.591H271.69L271 169.891V168.211L271.72 168.501L272 168.621L273.01 169.031Z\" fill=\"#505967\"/>\\n<path d=\"M271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM308.47 86L307.82 86.27L307.17 86.54L235 117L234.5 117.21V184.87L234.81 185L235 185.08L235.19 185L235.5 184.87L253.26 177.38L271.02 169.88L271.71 169.59L271.99 169.47V137.87L272.77 137.54L309 122.28V86.21L308.47 86ZM271.47 137L270.98 137.21V168.8L235.46 183.8V117.87L246.54 113.2L308 87.3V121.62L271.47 137ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29ZM235 118.08L234.5 117.87V183.79L235 184L235.5 183.79V117.87L235 118.08ZM271 169.29V168.8L235.48 183.8V184.88L253.24 177.39L271 169.89L271.69 169.6L271 169.29Z\" fill=\"#505967\"/>\\n<path d=\"M273.01 169.031L272.99 169.041L272 169.461L271.72 169.581L271.71 169.591H271.69L271 169.891V168.211L271.72 168.501L272 168.621L273.01 169.031Z\" fill=\"#505967\"/>\\n<path d=\"M235 117L162.79 86.54L162.14 86.27L161.49 86L161 86.21V153.87L161.31 154L197 169L198.09 169.46L198.28 169.54C210.36 174.653 222.44 179.75 234.52 184.83L234.83 184.96L235.02 185.04L235.21 184.96L235.52 184.83V117.21L235 117ZM198.43 168.58L198.24 168.5L162 153.21V87.29L223.42 113.2L234.48 117.87V183.79L198.43 168.58Z\" fill=\"#505967\"/>\\n<path d=\"M308.47 86L235 55L161.49 86L161 86.21V86.87L162 87.29L223.42 113.2L234.48 117.87L234.98 118.08L235.48 117.87L246.54 113.2L308 87.3L309 86.88V86.22L308.47 86ZM162.79 86.54L235 56.08L307.19 86.54L235 117L162.79 86.54Z\" fill=\"#505967\"/>\\n<path d=\"M271.72 169L271.5 169.09V169H271.72Z\" fill=\"white\"/>\\n<path d=\"M273.01 169.031L272.99 169.041L272 169.461L271.72 169.581L271.71 169.591H271.69L271 169.891V168.211L271.72 168.501L272 168.621L273.01 169.031Z\" fill=\"#505967\"/>\\n<path d=\"M345.48 168.329L344.98 168.539V235.539L345.48 235.329L418.48 204.539V137.539L345.48 168.329ZM418 204.209L345.52 234.789V168.869L356.58 164.199L418 138.299V204.209Z\" fill=\"white\"/>\\n<path d=\"M418.47 137L417.17 137.54L345 168L344.5 168.21V235.87L344.81 236L345 236.08L345.5 235.87L418.98 204.87V137.21L418.47 137ZM345.47 168.87L356.53 164.2L418 138.3V204.21L345.52 234.79L345.47 168.87Z\" fill=\"#505967\"/>\\n<path d=\"M272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM418.47 137L345 106L309 121.19L308 121.62L271.5 137L271.01 137.21V137.87L272.01 138.29L333.43 164.19L344.49 168.86L344.99 169.07L345.49 168.86L356.55 164.19L418 138.3L418.5 138.09L419 137.88V137.22L418.47 137ZM272.79 137.54L309 122.28L345 107.08L417.19 137.54L345 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54ZM272.79 137.54L272.01 137.87V138.29L333.43 164.2L344.49 168.87V168.21L344.99 168L272.79 137.54Z\" fill=\"#505967\"/>\\n<path d=\"M345 168L272.79 137.54L271.5 137L271.01 137.21V169.29L271.7 169.59L300.7 181.81L307.17 184.54L307.95 184.87V220.46L308.26 220.59L308.95 220.88L344.47 235.88L344.78 236.01L344.97 236.09L345.47 235.88V168.21L345 168ZM344.5 234.79L309 219.8V184.21L308.51 184L273 169L272 168.59V138.3L333.42 164.2L344.48 168.87L344.5 234.79Z\" fill=\"#505967\"/>\\n<path d=\"M308.47 184L307.19 184.54L235 215L234.5 215.21V282.87L235 283.08L235.5 282.87L308.98 251.87V184.21L308.47 184ZM308 251.21L235.48 281.79V215.87L246.54 211.2L308 185.29V251.21Z\" fill=\"#505967\"/>\\n<path d=\"M308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.771L307.19 184.501L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.771L307.19 184.501L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.771L307.19 184.501L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.771L307.19 184.501L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.771L307.19 184.501L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.771L307.19 184.501L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.771L307.19 184.501L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.771L307.19 184.501L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.761L307.19 184.491L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM271 169.881L253.24 177.381L271 169.891L271.69 169.591L271 169.881ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.771L307.19 184.501L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.771L307.19 184.501L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.771L307.19 184.501L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.771L307.19 184.501L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.771L307.19 184.501L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.771L307.19 184.501L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.771L307.19 184.501L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.771L307.19 184.501L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.761L307.19 184.491L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001ZM271.69 169.591L271 169.881L253.24 177.381L271 169.891L271.69 169.591ZM308.47 184.001L273 169.001L272 168.581L271.72 168.461L271.31 168.631L271 168.761L235.48 183.761L235 184.001L234.5 183.791L198.43 168.581L198.24 168.501L197 169.001L161.49 184.001L161 184.211V184.871L161.5 185.081L162 185.291L223.42 211.191L234.48 215.861L234.98 216.071L235.48 215.861L246.54 211.191L308 185.301L309 184.881V184.221L308.47 184.001ZM235 215.001L162.79 184.541L198.24 169.541C210.32 174.654 222.4 179.751 234.48 184.831L234.79 184.961L234.98 185.041L235.17 184.961L235.48 184.831L253.24 177.341L271 169.891L271.69 169.591L300.69 181.811L307.16 184.541L235 215.001ZM271 169.881L253.24 177.381L271 169.891L271.69 169.591L271 169.881ZM308.46 184.001L273 169.001L272 168.581V169.421L271.72 169.541L300.72 181.761L307.19 184.491L235 215.001L235.5 215.211V215.871L246.56 211.201L308 185.291V184.871L307.22 184.541L308.46 184.001Z\" fill=\"#505967\"/>\\n<path d=\"M273.01 169.031L272.99 169.041L272 169.461L271.72 169.581L271.71 169.591H271.69L271 169.891V168.211L271.72 168.501L272 168.621L273.01 169.031Z\" fill=\"#505967\"/>\\n<path d=\"M418.47 137L417.17 137.54L345 168L344.5 168.21V235.87L344.81 236L345 236.08L345.5 235.87L418.98 204.87V137.21L418.47 137ZM345.47 168.87L356.53 164.2L418 138.3V204.21L345.52 234.79L345.47 168.87Z\" fill=\"#505967\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_2306_6921\" x1=\"290\" y1=\"0\" x2=\"290\" y2=\"338\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.0323342\" stop-color=\"#EDEFF3\"/>\\n<stop offset=\"0.0323342\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2306_6921\" x1=\"0\" y1=\"169\" x2=\"580\" y2=\"169\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.0155845\" stop-color=\"#EDEFF3\"/>\\n<stop offset=\"0.0155845\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_2306_6921\">\\n<rect width=\"257.96\" height=\"228.08\" fill=\"white\" transform=\"translate(161 55)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tanxke\",\"data-border\":true,\"data-framer-name\":\"Support\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{background:{alt:\"\",fit:\"fit\",pixelHeight:1452,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1400px)`,src:\"https://framerusercontent.com/images/D8wsu94zCDhyjBo5Qxxbadj2E.svg\",srcSet:\"https://framerusercontent.com/images/D8wsu94zCDhyjBo5Qxxbadj2E.svg?scale-down-to=512 512w,https://framerusercontent.com/images/D8wsu94zCDhyjBo5Qxxbadj2E.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/D8wsu94zCDhyjBo5Qxxbadj2E.svg 2048w\"}},C1LBoBDxd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9208+0),pixelHeight:1452,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1400px)`,src:\"https://framerusercontent.com/images/D8wsu94zCDhyjBo5Qxxbadj2E.svg\",srcSet:\"https://framerusercontent.com/images/D8wsu94zCDhyjBo5Qxxbadj2E.svg?scale-down-to=512 512w,https://framerusercontent.com/images/D8wsu94zCDhyjBo5Qxxbadj2E.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/D8wsu94zCDhyjBo5Qxxbadj2E.svg 2048w\"}},OFyMZHFxL:{background:{alt:\"\",fit:\"fit\",pixelHeight:1452,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1400px)`,src:\"https://framerusercontent.com/images/D8wsu94zCDhyjBo5Qxxbadj2E.svg\",srcSet:\"https://framerusercontent.com/images/D8wsu94zCDhyjBo5Qxxbadj2E.svg?scale-down-to=512 512w,https://framerusercontent.com/images/D8wsu94zCDhyjBo5Qxxbadj2E.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/D8wsu94zCDhyjBo5Qxxbadj2E.svg 2048w\"}}},children:/*#__PURE__*/_jsxs(Image,{className:\"framer-1xxx5bd\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"A\\xa0seismic\\xa0shift\\xa0in phone support.\\xa0\"}),\"Phonely\u2019s powerful AI Engine integrates into your operations, adapting to your workflow, not the other way around. Your customer experience \u2013 perfectly handled with Phonely.\"]})})},C1LBoBDxd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"A\\xa0seismic\\xa0shift\\xa0in phone support.\\xa0\"}),\"Phonely\u2019s powerful AI Engine integrates into your operations, adapting to your workflow, not the other way around. Your customer experience \u2013 perfectly handled with Phonely.\"]})})},OFyMZHFxL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"A\\xa0seismic\\xa0shift\\xa0in phone support.\\xa0\"}),\"Phonely\u2019s powerful AI Engine integrates into your operations, adapting to your workflow, not the other way around. Your customer experience \u2013 perfectly handled with Phonely.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"29.5px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 153, 168)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"A\\xa0seismic\\xa0shift\\xa0in phone support.\\xa0\"}),\"Phonely\u2019s powerful AI Engine integrates into your operations, adapting to your workflow, not the other way around. Your customer experience \u2013 perfectly handled with Phonely.\"]})}),className:\"framer-bowsh9\",\"data-framer-name\":\"at scale. Craft intelligent workflows, integrate with software, connect your data sources, and monitor performance \u2014 all in one platform.\",fonts:[\"Inter-Medium\",\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q1t3r6\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{width:\"90%\",y:undefined},C1LBoBDxd:{y:(componentViewport?.y||0)+0+9208+0+100+155},OFyMZHFxL:{width:\"90%\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,y:(componentViewport?.y||0)+0+9619+0+100+190,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1akgvui-container\",nodeId:\"pzSOLNa0o\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{style:{maxWidth:\"100%\"}},OFyMZHFxL:{style:{maxWidth:\"100%\"}}},children:/*#__PURE__*/_jsx(SupportTabs,{height:\"100%\",id:\"pzSOLNa0o\",layoutId:\"pzSOLNa0o\",variant:\"CchMBDKHO\",width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ceul42\",\"data-framer-name\":\"Sales\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dhp0bi\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xadjhu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ahqq4NgEN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Globe,{alignment:\"center\",background:\"rgb(250, 250, 251)\",baseColor:\"rgb(51, 51, 51)\",dark:1,diffuse:2,dragOptions:{damping:40,mass:1,stiffness:200},glowColor:\"rgb(255, 255, 255)\",height:\"100%\",id:\"Ahqq4NgEN\",isDraggable:false,layoutId:\"Ahqq4NgEN\",mapBrightness:12,markerArray:[],markerColor:\"rgb(255, 255, 255)\",markerSize:.1,maxSamples:2e4,maxWidth:800,offset:{offsetX:0,offsetY:0},phi:0,scale:1,speed:.25,style:{height:\"100%\",width:\"100%\"},theta:.3,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ph1dpe\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Powering Voice AI for\"})})},C1LBoBDxd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Powering Voice AI for\"})})},OFyMZHFxL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Powering Voice AI for\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"37.66px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"44px\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"Powering Voice AI for\"})}),className:\"framer-gogiz8\",\"data-framer-name\":\"Powering Voice AI for\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"thousands of companies.\"})})},C1LBoBDxd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"thousands of companies.\"})})},OFyMZHFxL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"thousands of companies.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"39.22px\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 29, 31)\"},children:\"thousands of companies.\"})}),className:\"framer-osr9vf\",\"data-framer-name\":\"thousands of companies.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1885krj\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nskbzy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{y:undefined},C1LBoBDxd:{y:(componentViewport?.y||0)+0+10049+0+100+0+0+88+0},OFyMZHFxL:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+10495+0+100+0+0+121+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kywto-container\",nodeId:\"yn_Sw0F4o\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1LBoBDxd:{g_G74OEHz:\"https://app.phonely.ai/sign-up\"}},children:/*#__PURE__*/_jsx(Button,{g_G74OEHz:\"https://app.phonely.ai/\",height:\"100%\",id:\"yn_Sw0F4o\",layoutId:\"yn_Sw0F4o\",muxhgbKdh:false,Pw3Qxl4NQ:\"Start for free\",style:{height:\"100%\"},variant:\"eYiFB1fQf\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{y:undefined},C1LBoBDxd:{y:(componentViewport?.y||0)+0+10049+0+100+0+0+88+0},OFyMZHFxL:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+10495+0+100+0+0+121+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fhtcan-container\",nodeId:\"LULvfCIUC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1LBoBDxd:{g_G74OEHz:\"https://cal.com/forms/46b9973f-b7cb-4a03-869a-137e2a80555c\"}},children:/*#__PURE__*/_jsx(Button,{g_G74OEHz:\"https://form.fillout.com/t/hoGHsk9hDzus\",height:\"100%\",id:\"LULvfCIUC\",layoutId:\"LULvfCIUC\",muxhgbKdh:false,Pw3Qxl4NQ:\"Get a demo\",style:{height:\"100%\"},variant:\"OQMKxbynb\",width:\"100%\"})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18hmv2l\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{y:undefined},C1LBoBDxd:{y:(componentViewport?.y||0)+0+10459},OFyMZHFxL:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+10938,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ux8ai3-container\",nodeId:\"KJ1Rj2qK2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AXwHhOdIX:{variant:\"UHOzly6rK\"},OFyMZHFxL:{variant:\"lthsuaR_q\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"KJ1Rj2qK2\",layoutId:\"KJ1Rj2qK2\",style:{width:\"100%\"},variant:\"rFV511qdy\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QER0v.framer-lux5qc, .framer-QER0v .framer-lux5qc { display: block; }\",\".framer-QER0v.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-QER0v .framer-ebc0fu-container { flex: none; height: 72px; left: calc(50.00000000000002% - 97.98611111111111% / 2); position: fixed; top: 5px; width: 98%; z-index: 9; }\",\".framer-QER0v .framer-1r33qgr { align-content: center; align-items: center; background-color: var(--token-ef7486f0-bbfd-4fcb-a404-0dbbe992df57, #ffffff); 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%; z-index: 2; }\",\".framer-QER0v .framer-1g1g3zn, .framer-QER0v .framer-598o2u, .framer-QER0v .framer-1tanxke { --border-bottom-width: 1px; --border-color: var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, #eaedf1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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-QER0v .framer-zz6wrb { --border-bottom-width: 0px; --border-color: var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, #eaedf1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; 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; max-width: 1400px; min-height: 100vh; overflow: visible; padding: 200px 0px 50px 0px; position: relative; width: 95%; }\",\".framer-QER0v .framer-1rwaj00 { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 30px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 248px; }\",\".framer-QER0v .framer-3sw4uh { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 28px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QER0v .framer-lz7u5g { --framer-paragraph-spacing: 0px; flex: none; height: 16px; position: relative; white-space: pre; width: auto; }\",\".framer-QER0v .framer-ck3cw7 { flex: none; height: 16px; overflow: hidden; position: relative; width: 190px; }\",\".framer-QER0v .framer-tpepd8 { --framer-paragraph-spacing: 0px; bottom: 0px; flex: none; left: calc(45.78947368421055% - 174.5px / 2); position: absolute; top: 0px; white-space: pre-wrap; width: 175px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-1wgg8r1 { flex: none; height: 15px; position: absolute; right: 0px; top: calc(50.00000000000002% - 15px / 2); width: 15px; }\",\".framer-QER0v .framer-1b18tqz, .framer-QER0v .framer-egamw8 { flex: none; height: 24px; overflow: hidden; position: relative; width: 342px; }\",\".framer-QER0v .framer-x2x848 { --framer-paragraph-spacing: 0px; flex: none; height: 74px; position: relative; white-space: pre-wrap; width: 834px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-zuszqj { --framer-paragraph-spacing: 0px; flex: none; height: 50px; position: relative; white-space: pre-wrap; width: 438px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-1q3r9q, .framer-QER0v .framer-o4s11k, .framer-QER0v .framer-1nnvlul { flex: none; height: 28px; overflow: hidden; position: relative; width: 342px; }\",\".framer-QER0v .framer-1d6ce4i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 4; }\",\".framer-QER0v .framer-10xvr0i-container, .framer-QER0v .framer-1h5dlh3-container, .framer-QER0v .framer-1xa6tyh-container, .framer-QER0v .framer-12mmfyi-container, .framer-QER0v .framer-dcdqsk-container, .framer-QER0v .framer-1akgvui-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-QER0v .framer-nco99y { flex: none; height: 200px; overflow: visible; position: relative; width: 150%; z-index: 3; }\",\".framer-QER0v .framer-b4tukn { -webkit-filter: blur(10px); align-content: center; align-items: center; bottom: 0px; display: flex; filter: blur(10px); flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; width: 100%; }\",\".framer-QER0v .framer-1qmu2z3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 504px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QER0v .framer-1qwj9zj-container { flex: none; height: auto; min-width: 120%; position: relative; width: auto; }\",\".framer-QER0v .framer-1tfxbex { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-QER0v .framer-71zyhy-container { flex: none; height: auto; position: relative; width: 150px; }\",\".framer-QER0v .framer-1ickrjy { flex: none; height: 60px; overflow: hidden; position: relative; width: 342px; }\",\".framer-QER0v .framer-1cot0lh-container, .framer-QER0v .framer-1ux8ai3-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-QER0v .framer-1xuaz76 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-QER0v .framer-1k9rksi, .framer-QER0v .framer-ta6uq9, .framer-QER0v .framer-ivx8j1, .framer-QER0v .framer-658kdr { background-color: #33aaff; flex: none; height: 50vh; opacity: 0; overflow: hidden; position: relative; width: 100%; }\",\".framer-QER0v .framer-19xybet { --border-bottom-width: 1px; --border-color: var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, #eaedf1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: var(--token-ef7486f0-bbfd-4fcb-a404-0dbbe992df57, #f8f9fa); bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; width: 100%; z-index: 1; }\",\".framer-QER0v .framer-8nsbyf { --border-bottom-width: 0px; --border-color: var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, #eaedf1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100vh; justify-content: center; max-width: 1400px; overflow: hidden; padding: 0px; position: relative; width: 95%; }\",\".framer-QER0v .framer-bdmmk0 { 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: 792px; }\",\".framer-QER0v .framer-1qz3mzu { background-color: rgba(255, 255, 255, 0.8); flex: none; height: 69px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-QER0v .framer-1fs3ilv { background-color: rgba(255, 255, 255, 0.8); flex: none; height: 59px; left: 0px; overflow: hidden; position: absolute; top: 65px; width: 100%; z-index: 1; }\",\".framer-QER0v .framer-am9bu0 { background-color: rgba(255, 255, 255, 0.8); flex: none; height: 59px; left: 0px; overflow: hidden; position: absolute; top: calc(65.00000000000003% - 59px / 2); width: 100%; z-index: 1; }\",\".framer-QER0v .framer-c21f9s { background-color: rgba(255, 255, 255, 0.8); flex: none; height: 59px; left: 0px; overflow: hidden; position: absolute; top: 187px; width: 100%; z-index: 1; }\",\".framer-QER0v .framer-1wto5ic { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 792px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-1187fza { flex: none; height: 42px; overflow: hidden; position: relative; width: 340px; }\",\".framer-QER0v .framer-1whk24f { --framer-paragraph-spacing: 0px; flex: none; height: 20px; left: calc(50.00000000000002% - 120px / 2); position: absolute; top: 0px; white-space: pre-wrap; width: 120px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-1wncjym { --framer-paragraph-spacing: 0px; bottom: 0px; flex: none; height: 17px; left: 0px; position: absolute; right: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-188c6h8, .framer-QER0v .framer-1xxx5bd { --border-bottom-width: 0px; --border-color: var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, #eaedf1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 95%; }\",\".framer-QER0v .framer-1pq3911 { flex: none; height: 39px; overflow: visible; position: relative; width: 268px; }\",\".framer-QER0v .framer-13tgs2a, .framer-QER0v .framer-16vhjmy, .framer-QER0v .framer-1xdckof, .framer-QER0v .framer-1qm31zi, .framer-QER0v .framer-uyyvty, .framer-QER0v .framer-8y9a5v, .framer-QER0v .framer-d5bs3x, .framer-QER0v .framer-ookhrk, .framer-QER0v .framer-1f4tg0c, .framer-QER0v .framer-1dzd3w2, .framer-QER0v .framer-1bkydpo, .framer-QER0v .framer-1dofgwv, .framer-QER0v .framer-1p620g6, .framer-QER0v .framer-1ljdkou, .framer-QER0v .framer-11c3mbe, .framer-QER0v .framer-19micr2, .framer-QER0v .framer-a8tjio, .framer-QER0v .framer-13ivjfr, .framer-QER0v .framer-190idd2, .framer-QER0v .framer-1haxxu1, .framer-QER0v .framer-1jzcrj1, .framer-QER0v .framer-kc7x3i, .framer-QER0v .framer-17aezi3, .framer-QER0v .framer-ip50l1, .framer-QER0v .framer-hd7e4r, .framer-QER0v .framer-1byfcqj, .framer-QER0v .framer-1njxeb9, .framer-QER0v .framer-5c93c2, .framer-QER0v .framer-i3m2m5, .framer-QER0v .framer-1kpagi3, .framer-QER0v .framer-1j27s47, .framer-QER0v .framer-c69g0u, .framer-QER0v .framer-u1ynmi, .framer-QER0v .framer-7gh3mt, .framer-QER0v .framer-1o2mynm, .framer-QER0v .framer-1p77clc, .framer-QER0v .framer-16tvpod, .framer-QER0v .framer-i2gsxa, .framer-QER0v .framer-1teyp0w, .framer-QER0v .framer-edsrmq, .framer-QER0v .framer-ovpji0, .framer-QER0v .framer-1qx5lcc, .framer-QER0v .framer-1dokb1c, .framer-QER0v .framer-s9ylnw, .framer-QER0v .framer-vu6357, .framer-QER0v .framer-1goxw8x, .framer-QER0v .framer-gu38rx, .framer-QER0v .framer-wxsg8h, .framer-QER0v .framer-26c6wb, .framer-QER0v .framer-jpqeo0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QER0v .framer-1njoaor { flex: none; height: 22px; overflow: hidden; position: relative; width: 344px; }\",\".framer-QER0v .framer-1asx49u { flex: none; height: 15px; overflow: hidden; position: relative; width: 344px; }\",\".framer-QER0v .framer-1o6chzs { flex: none; height: 50px; overflow: hidden; position: relative; width: 344px; }\",\".framer-QER0v .framer-ycwpyu { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(123, 106, 134, 0.08) 0%, rgba(29, 25, 32, 0) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 10px; position: relative; width: min-content; }\",\".framer-QER0v .framer-pc5po5-container { flex: none; height: 556px; position: relative; width: 859px; }\",\".framer-QER0v .framer-10so3vr { 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-QER0v .framer-1xkfxdo { --border-bottom-width: 0px; --border-color: var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, #eaedf1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 150px 0px 150px 0px; position: relative; width: 95%; }\",\".framer-QER0v .framer-17r159g { flex: none; height: 166px; overflow: hidden; position: relative; width: 920px; }\",\".framer-QER0v .framer-e8phdg { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-1ldwgpf { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: min-content; z-index: 2; }\",\".framer-QER0v .framer-dl87x5, .framer-QER0v .framer-9e5bdn, .framer-QER0v .framer-18ercv7, .framer-QER0v .framer-u6pjmz { align-content: center; align-items: center; background-color: rgba(143, 153, 168, 0.15); border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 3px; position: relative; width: min-content; }\",\".framer-QER0v .framer-1p6wzlz, .framer-QER0v .framer-1giom6v, .framer-QER0v .framer-2cnm1q, .framer-QER0v .framer-d2kzrw { --border-bottom-width: 1px; --border-color: #e4e7ec; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 5px 15px 5px 15px; position: relative; width: min-content; }\",\".framer-QER0v .framer-6k4ucv, .framer-QER0v .framer-kov0ug, .framer-QER0v .framer-14cm6ym, .framer-QER0v .framer-hv83n6, .framer-QER0v .framer-18q6qo1, .framer-QER0v .framer-1j5lk80, .framer-QER0v .framer-npp9xd { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-QER0v .framer-vhigyb, .framer-QER0v .framer-1kzataq, .framer-QER0v .framer-1kx8vnx, .framer-QER0v .framer-1zi630, .framer-QER0v .framer-1fql7al, .framer-QER0v .framer-151rayu { --framer-paragraph-spacing: 0px; flex: none; height: 20px; position: relative; white-space: pre; width: auto; }\",\".framer-QER0v .framer-1bhlxh8, .framer-QER0v .framer-jfaw7z { flex: none; height: 2200px; overflow: visible; position: relative; width: 103px; }\",\".framer-QER0v .framer-10bpqkf { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 335px; overflow: visible; position: absolute; right: -527px; top: 1821px; width: 636px; z-index: 2; }\",\".framer-QER0v .framer-v6jak9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; left: -580px; overflow: hidden; padding: 0px; position: absolute; top: 1877px; width: min-content; z-index: 0; }\",\".framer-QER0v .framer-tbair5, .framer-QER0v .framer-13eu850, .framer-QER0v .framer-1hnzh3r, .framer-QER0v .framer-1ugv08g, .framer-QER0v .framer-ksx38z, .framer-QER0v .framer-1m7jzn2, .framer-QER0v .framer-sjojo2, .framer-QER0v .framer-me7kzg, .framer-QER0v .framer-1wlqrmw { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 404px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-x33www { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: absolute; right: -523px; top: 1398px; width: min-content; z-index: 1; }\",\".framer-QER0v .framer-17j673n { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 4px 6px -2px rgba(28, 40, 64, 0.04), 0px 2px 3px -2px rgba(28, 40, 64, 0.10000000149011612); flex: none; height: 387px; left: -584px; overflow: hidden; position: absolute; top: 1303px; width: 681px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-QER0v .framer-2c1jz-container, .framer-QER0v .framer-1awj6og-container, .framer-QER0v .framer-1820gdt-container, .framer-QER0v .framer-1cn3iwe-container { flex: none; height: 76%; left: 413px; position: absolute; top: calc(53.22997416020674% - 76.48578811369508% / 2); width: 30%; }\",\".framer-QER0v .framer-5m4k4w, .framer-QER0v .framer-hrmvx0, .framer-QER0v .framer-zodxw8, .framer-QER0v .framer-12leaii { flex: none; height: 334px; left: 408px; position: absolute; top: calc(52.71317829457367% - 334px / 2); width: 218px; }\",\".framer-QER0v .framer-4r8er8, .framer-QER0v .framer-1isc2tt, .framer-QER0v .framer-1nuh1tf, .framer-QER0v .framer-h100lf { flex: none; height: 90%; left: 5px; overflow: visible; position: absolute; top: calc(47.54521963824291% - 89.66408268733849% / 2); width: 42%; }\",\".framer-QER0v .framer-wrcy5i-container, .framer-QER0v .framer-104gjdz-container, .framer-QER0v .framer-ep4m8z-container, .framer-QER0v .framer-un63lz-container { flex: none; height: 297px; left: 134px; position: absolute; top: calc(48.41498559077812% - 297px / 2); width: 149px; }\",\".framer-QER0v .framer-7xx3re, .framer-QER0v .framer-16rh4lh, .framer-QER0v .framer-klpudb, .framer-QER0v .framer-j9cbxx { flex: none; height: 76px; position: absolute; right: -1px; top: 65px; width: 81px; }\",\".framer-QER0v .framer-1h54nbv, .framer-QER0v .framer-1qow2bp, .framer-QER0v .framer-77yxr3, .framer-QER0v .framer-1ygroui { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: 7%; justify-content: center; left: 53%; overflow: visible; padding: 5px 10px 5px 10px; position: absolute; top: 52px; transform: translateX(-50%); width: min-content; }\",\".framer-QER0v .framer-edtb06, .framer-QER0v .framer-y3c4i, .framer-QER0v .framer-iq7se2, .framer-QER0v .framer-8sqc4o, .framer-QER0v .framer-1k4i49j, .framer-QER0v .framer-1l60cik, .framer-QER0v .framer-322hhb, .framer-QER0v .framer-10pbj1w, .framer-QER0v .framer-4k1874, .framer-QER0v .framer-1f4as11, .framer-QER0v .framer-2g5x40, .framer-QER0v .framer-1crbxc2, .framer-QER0v .framer-11f52u6, .framer-QER0v .framer-1lfsbyy, .framer-QER0v .framer-iadblf, .framer-QER0v .framer-fmf7zf, .framer-QER0v .framer-17r6ard, .framer-QER0v .framer-155m0lf, .framer-QER0v .framer-1qqux59, .framer-QER0v .framer-35vnmj, .framer-QER0v .framer-1oai8m0, .framer-QER0v .framer-1hmuv5p, .framer-QER0v .framer-y4ld7o, .framer-QER0v .framer-1gqlldn, .framer-QER0v .framer-1batafh, .framer-QER0v .framer-1qcx4g0, .framer-QER0v .framer-fiihx2, .framer-QER0v .framer-8bwkm8 { flex: none; height: 75%; position: relative; width: 12px; }\",\".framer-QER0v .framer-qm82d5, .framer-QER0v .framer-9mjbrz, .framer-QER0v .framer-58n5mt, .framer-QER0v .framer-gwb93f, .framer-QER0v .framer-j7ax3m, .framer-QER0v .framer-1qi073t, .framer-QER0v .framer-16sv28p, .framer-QER0v .framer-adaxk1 { --framer-paragraph-spacing: 0px; flex: none; height: 100%; position: relative; white-space: pre-wrap; width: 84px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-f6a4th, .framer-QER0v .framer-ryfij4, .framer-QER0v .framer-10x9mnv, .framer-QER0v .framer-15a1kfo { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: 7%; justify-content: center; left: 46px; overflow: visible; padding: 5px 10px 5px 10px; position: absolute; top: 95px; width: min-content; }\",\".framer-QER0v .framer-vpb4uq, .framer-QER0v .framer-zyk428, .framer-QER0v .framer-12sdmik, .framer-QER0v .framer-yzv31q { flex: none; height: 75%; position: relative; width: 14px; }\",\".framer-QER0v .framer-1qec5gw, .framer-QER0v .framer-12v19lu, .framer-QER0v .framer-jc7hvm, .framer-QER0v .framer-113gptm { --framer-paragraph-spacing: 0px; flex: none; height: 100%; position: relative; white-space: pre-wrap; width: 111px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-ivn0om, .framer-QER0v .framer-1afy6h3, .framer-QER0v .framer-1ago3e5, .framer-QER0v .framer-1lg1ql9 { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: 7%; justify-content: center; left: 58px; overflow: visible; padding: 5px 10px 5px 10px; position: absolute; top: 136px; width: min-content; }\",\".framer-QER0v .framer-19h9g7n, .framer-QER0v .framer-wk0dox, .framer-QER0v .framer-1fq8wxb, .framer-QER0v .framer-2u246y { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; bottom: 142px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: 7%; justify-content: center; left: 33px; overflow: visible; padding: 5px 10px 5px 10px; position: absolute; width: min-content; }\",\".framer-QER0v .framer-1vo9gz7, .framer-QER0v .framer-mle549, .framer-QER0v .framer-1gbbbx3, .framer-QER0v .framer-143cdou { --framer-paragraph-spacing: 0px; flex: none; height: 100%; position: relative; white-space: pre-wrap; width: 145px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-rn561y, .framer-QER0v .framer-1308ob0, .framer-QER0v .framer-e5kp9x, .framer-QER0v .framer-19amnzm { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; bottom: 97px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: 7%; justify-content: center; left: 54%; overflow: visible; padding: 5px 10px 5px 10px; position: absolute; transform: translateX(-50%); width: min-content; }\",\".framer-QER0v .framer-17p878w, .framer-QER0v .framer-12nlcmx, .framer-QER0v .framer-dvnjtr, .framer-QER0v .framer-1apk9kw { --framer-paragraph-spacing: 0px; flex: none; height: 100%; position: relative; white-space: pre-wrap; width: 71px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-10k7tyb, .framer-QER0v .framer-1400em8, .framer-QER0v .framer-x7vwyf, .framer-QER0v .framer-n0jrms { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; bottom: 59px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: 7%; justify-content: center; left: 35px; overflow: visible; padding: 5px 10px 5px 10px; position: absolute; width: min-content; }\",\".framer-QER0v .framer-nnpi6b, .framer-QER0v .framer-1uz5aqh, .framer-QER0v .framer-8is4tk, .framer-QER0v .framer-1mr2zkq, .framer-QER0v .framer-sxwm2l, .framer-QER0v .framer-1qeu0jw, .framer-QER0v .framer-lu5bo2, .framer-QER0v .framer-1kc9z3f { --framer-paragraph-spacing: 0px; flex: none; height: 100%; position: relative; white-space: pre-wrap; width: 73px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-115i02g, .framer-QER0v .framer-1ox1lq5, .framer-QER0v .framer-19oag9h, .framer-QER0v .framer-1ixjoj3 { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; bottom: 21px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: 7%; justify-content: center; left: 66px; overflow: visible; padding: 5px 10px 5px 10px; position: absolute; width: min-content; }\",\".framer-QER0v .framer-1alfavb, .framer-QER0v .framer-dzdwuj, .framer-QER0v .framer-x5swys, .framer-QER0v .framer-1j7p5sp { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: 7%; justify-content: center; left: 12px; overflow: visible; padding: 5px 10px 5px 10px; position: absolute; top: 11px; width: min-content; }\",\".framer-QER0v .framer-1u9f4ue, .framer-QER0v .framer-23mf1q, .framer-QER0v .framer-1txrom4, .framer-QER0v .framer-1309qzc { --framer-paragraph-spacing: 0px; flex: none; height: 100%; position: relative; white-space: pre-wrap; width: 128px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-km2yu9, .framer-QER0v .framer-15ydphw, .framer-QER0v .framer-1iuhutr, .framer-QER0v .framer-11v7790 { flex: none; height: 32%; left: calc(51.68869309838475% - 18.79588839941263% / 2); overflow: hidden; position: absolute; top: calc(47.28682170542638% - 32.299741602067186% / 2); width: 19%; }\",\".framer-QER0v .framer-1vvkm4i, .framer-QER0v .framer-1v7ct95, .framer-QER0v .framer-42qitm, .framer-QER0v .framer-1w7y4xn { background-color: #f3f5f7; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-QER0v .framer-h775hz, .framer-QER0v .framer-1syeh63, .framer-QER0v .framer-1xqadtm, .framer-QER0v .framer-vtioft { background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 86%; left: calc(49.21875000000002% - 88.28125% / 2); position: absolute; top: calc(48.80000000000002% - 86.4% / 2); width: 88%; }\",\".framer-QER0v .framer-h281yk { aspect-ratio: 0.7555555555555555 / 1; flex: none; height: 72%; left: 52%; position: absolute; top: 47%; transform: translate(-50%, -50%); width: var(--framer-aspect-ratio-supported, 68px); }\",\".framer-QER0v .framer-1hxfl25 { --border-bottom-width: 2px; --border-color: #dfe1e5; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; background-color: #f4f5f6; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 10px; left: -225px; position: absolute; top: 282px; width: 10px; z-index: 3; }\",\".framer-QER0v .framer-1awgj0s { --border-bottom-width: 2px; --border-color: #dfe1e5; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; background-color: #f4f5f6; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 10px; left: 283px; position: absolute; top: 753px; width: 10px; z-index: 3; }\",\".framer-QER0v .framer-4i2e4p { --border-bottom-width: 2px; --border-color: #dfe1e5; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; background-color: #f4f5f6; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 10px; left: -241px; position: absolute; top: 1299px; width: 10px; z-index: 3; }\",\".framer-QER0v .framer-1l7d47b { --border-bottom-width: 2px; --border-color: #dfe1e5; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; background-color: #f4f5f6; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 10px; left: 310px; position: absolute; top: 1818px; width: 10px; z-index: 3; }\",\".framer-QER0v .framer-8d7q81 { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 4px 6px -2px rgba(28, 40, 64, 0.04), 0px 2px 3px -2px rgba(28, 40, 64, 0.10000000149011612); flex: none; height: 387px; overflow: hidden; position: absolute; right: -597px; top: 743px; width: 750px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-QER0v .framer-22xsh5, .framer-QER0v .framer-1x9f2v1, .framer-QER0v .framer-kgb9lu { bottom: 0px; flex: none; left: 0px; position: absolute; right: -4px; top: 0px; }\",\".framer-QER0v .framer-b9g4p0, .framer-QER0v .framer-ujjv95, .framer-QER0v .framer-1ow8cam, .framer-QER0v .framer-zteiic { flex: none; height: 367px; left: 0px; position: absolute; top: 20px; width: 737px; }\",\".framer-QER0v .framer-1srvx1j, .framer-QER0v .framer-1i97myk, .framer-QER0v .framer-1ei37ma, .framer-QER0v .framer-f61cu9 { background: linear-gradient(180.00000006262127deg, rgba(255, 255, 255, 0.47) 21.777862310409546%, rgba(255, 255, 255, 1) 82.572340965271%); flex: none; height: 135px; left: 0px; overflow: hidden; position: absolute; top: 252px; width: 737px; }\",\".framer-QER0v .framer-1p2ecgj, .framer-QER0v .framer-1afh6d7, .framer-QER0v .framer-nproe, .framer-QER0v .framer-1e7r2o5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 80px; transform: translateX(-50%); width: min-content; }\",\".framer-QER0v .framer-bkm3u9, .framer-QER0v .framer-86wsoy, .framer-QER0v .framer-uj9s43, .framer-QER0v .framer-mbpf1y, .framer-QER0v .framer-1n2hvcm, .framer-QER0v .framer-glzwku, .framer-QER0v .framer-32a7c, .framer-QER0v .framer-1mg9tjx, .framer-QER0v .framer-17t8rc6, .framer-QER0v .framer-1pctvtd, .framer-QER0v .framer-1f76byv, .framer-QER0v .framer-16l21r1 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.10000000149011612); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QER0v .framer-7xepjf, .framer-QER0v .framer-11yne81, .framer-QER0v .framer-1gtw1vc, .framer-QER0v .framer-16mwanq, .framer-QER0v .framer-1xm9mtt, .framer-QER0v .framer-1h5svqg, .framer-QER0v .framer-g5a18y, .framer-QER0v .framer-gsf6em, .framer-QER0v .framer-g5p1tz, .framer-QER0v .framer-t9v65r, .framer-QER0v .framer-qytw8v, .framer-QER0v .framer-t74o5s { flex: none; height: 40px; position: relative; width: 45px; }\",\".framer-QER0v .framer-1ax64yg, .framer-QER0v .framer-1k0c42n, .framer-QER0v .framer-1nmd0tg, .framer-QER0v .framer-bw80nb, .framer-QER0v .framer-1gajxvy, .framer-QER0v .framer-1nnlj4f, .framer-QER0v .framer-1nwj0fs, .framer-QER0v .framer-lpjuaa, .framer-QER0v .framer-1j850ak, .framer-QER0v .framer-1aer1kg, .framer-QER0v .framer-k1h0bl, .framer-QER0v .framer-1fr7bz1 { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-right-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 13px 12px 13px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-QER0v .framer-1ds5dr6, .framer-QER0v .framer-1wfjupd, .framer-QER0v .framer-1wpfiz2, .framer-QER0v .framer-duvyzq { --border-bottom-width: 0.5638486742973328px; --border-color: #f2f2f2; --border-left-width: 0.5638486742973328px; --border-right-width: 0.5638486742973328px; --border-style: solid; --border-top-width: 0.5638486742973328px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 268px; box-shadow: 0px 0px 0px 0.5826436281204224px rgba(0, 61, 61, 0.04), 0px 0.5826436281204224px 0.5826436281204224px -0.2913218140602112px rgba(0, 31, 31, 0.07999999821186066), 0px 1.747930884361267px 1.747930884361267px -0.8739654421806335px rgba(0, 61, 61, 0.03999999910593033), 0px 3.495861768722534px 3.495861768722534px -1.747930884361267px rgba(0, 61, 61, 0.03999999910593033), 0px 6.991723537445068px 6.991723537445068px -3.495861768722534px rgba(0, 61, 61, 0.03999999910593033); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 30%; overflow: hidden; padding: 9px 12px 9px 12px; position: absolute; transform: translateX(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-QER0v .framer-mkp7t9, .framer-QER0v .framer-13smrun, .framer-QER0v .framer-1bueuzv, .framer-QER0v .framer-h1fsz3 { --border-bottom-width: 0.5638486742973328px; --border-color: #f2f2f2; --border-left-width: 0.5638486742973328px; --border-right-width: 0.5638486742973328px; --border-style: solid; --border-top-width: 0.5638486742973328px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 125px; box-shadow: 0px 0px 0px 0.5826436281204224px rgba(0, 61, 61, 0.04), 0px 0.5826436281204224px 0.5826436281204224px -0.2913218140602112px rgba(0, 31, 31, 0.07999999821186066), 0px 1.747930884361267px 1.747930884361267px -0.8739654421806335px rgba(0, 61, 61, 0.03999999910593033), 0px 3.495861768722534px 3.495861768722534px -1.747930884361267px rgba(0, 61, 61, 0.03999999910593033), 0px 6.991723537445068px 6.991723537445068px -3.495861768722534px rgba(0, 61, 61, 0.03999999910593033); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 41%; overflow: hidden; padding: 9px 12px 9px 12px; position: absolute; transform: translateX(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-QER0v .framer-ik3z9q, .framer-QER0v .framer-1ns6gwv, .framer-QER0v .framer-1j72e86, .framer-QER0v .framer-1ibmllf { --border-bottom-width: 0.5638486742973328px; --border-color: #f2f2f2; --border-left-width: 0.5638486742973328px; --border-right-width: 0.5638486742973328px; --border-style: solid; --border-top-width: 0.5638486742973328px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 163px; box-shadow: 0px 0px 0px 0.5826436281204224px rgba(0, 61, 61, 0.04), 0px 0.5826436281204224px 0.5826436281204224px -0.2913218140602112px rgba(0, 31, 31, 0.07999999821186066), 0px 1.747930884361267px 1.747930884361267px -0.8739654421806335px rgba(0, 61, 61, 0.03999999910593033), 0px 3.495861768722534px 3.495861768722534px -1.747930884361267px rgba(0, 61, 61, 0.03999999910593033), 0px 6.991723537445068px 6.991723537445068px -3.495861768722534px rgba(0, 61, 61, 0.03999999910593033); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 84%; overflow: hidden; padding: 9px 12px 9px 12px; position: absolute; transform: translateX(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-QER0v .framer-12j8ad9, .framer-QER0v .framer-1gqramb, .framer-QER0v .framer-ikj69d, .framer-QER0v .framer-1o3j7wk { --border-bottom-width: 0.5638486742973328px; --border-color: #f2f2f2; --border-left-width: 0.5638486742973328px; --border-right-width: 0.5638486742973328px; --border-style: solid; --border-top-width: 0.5638486742973328px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 180px; box-shadow: 0px 0px 0px 0.5826436281204224px rgba(0, 61, 61, 0.04), 0px 0.5826436281204224px 0.5826436281204224px -0.2913218140602112px rgba(0, 31, 31, 0.07999999821186066), 0px 1.747930884361267px 1.747930884361267px -0.8739654421806335px rgba(0, 61, 61, 0.03999999910593033), 0px 3.495861768722534px 3.495861768722534px -1.747930884361267px rgba(0, 61, 61, 0.03999999910593033), 0px 6.991723537445068px 6.991723537445068px -3.495861768722534px rgba(0, 61, 61, 0.03999999910593033); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 62%; overflow: hidden; padding: 9px 12px 9px 12px; position: absolute; transform: translateX(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-QER0v .framer-5t4qo8, .framer-QER0v .framer-3oi1k8, .framer-QER0v .framer-952lnm, .framer-QER0v .framer-dfx3ic { --border-bottom-width: 0.5638486742973328px; --border-color: #f2f2f2; --border-left-width: 0.5638486742973328px; --border-right-width: 0.5638486742973328px; --border-style: solid; --border-top-width: 0.5638486742973328px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 96px; box-shadow: 0px 0px 0px 0.5826436281204224px rgba(0, 61, 61, 0.04), 0px 0.5826436281204224px 0.5826436281204224px -0.2913218140602112px rgba(0, 31, 31, 0.07999999821186066), 0px 1.747930884361267px 1.747930884361267px -0.8739654421806335px rgba(0, 61, 61, 0.03999999910593033), 0px 3.495861768722534px 3.495861768722534px -1.747930884361267px rgba(0, 61, 61, 0.03999999910593033), 0px 6.991723537445068px 6.991723537445068px -3.495861768722534px rgba(0, 61, 61, 0.03999999910593033); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 12%; overflow: hidden; padding: 9px 12px 9px 12px; position: absolute; transform: translateX(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-QER0v .framer-zsckge { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; left: -581px; overflow: hidden; padding: 0px; position: absolute; top: 832px; width: min-content; z-index: 1; }\",\".framer-QER0v .framer-qy3q2d, .framer-QER0v .framer-15li2c2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 3px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 4px; }\",\".framer-QER0v .framer-1mzpztz, .framer-QER0v .framer-oqnpuq { background-color: #bbddff; flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-QER0v .framer-29x392, .framer-QER0v .framer-1wmr4wo { background-color: #cceeff; flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-QER0v .framer-1ke1w4k { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.923728813559322 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 4px 6px -2px rgba(28, 40, 64, 0.04), 0px 2px 3px -2px rgba(28, 40, 64, 0.10000000149011612); flex: none; height: var(--framer-aspect-ratio-supported, 354px); left: -602px; overflow: hidden; position: absolute; top: 274px; width: 681px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-QER0v .framer-1xls72y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: absolute; right: -525px; top: 363px; width: min-content; z-index: 1; }\",\".framer-QER0v .framer-nsgil6-container, .framer-QER0v .framer-1vm69ch-container, .framer-QER0v .framer-1p1fmut-container, .framer-QER0v .framer-1vf60b1-container, .framer-QER0v .framer-shas01-container, .framer-QER0v .framer-1f8s3ym-container, .framer-QER0v .framer-yr4i0l-container, .framer-QER0v .framer-1aib7tx-container, .framer-QER0v .framer-1wrwumw-container, .framer-QER0v .framer-gl2iff-container, .framer-QER0v .framer-kywto-container, .framer-QER0v .framer-1fhtcan-container { flex: none; height: 36px; position: relative; width: auto; }\",\".framer-QER0v .framer-1e9odft-container, .framer-QER0v .framer-1wb1kyq-container { flex: none; height: auto; left: -237px; position: absolute; top: -16px; width: auto; }\",\".framer-QER0v .framer-1suq4kt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; min-height: 2050px; overflow: hidden; padding: 0px; position: relative; width: 1498px; }\",\".framer-QER0v .framer-jdmxhv, .framer-QER0v .framer-4vsy7 { 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: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-QER0v .framer-1nuu8gf, .framer-QER0v .framer-5gpge2, .framer-QER0v .framer-1jfksjn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-QER0v .framer-pvbumk { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 4px 6px -2px rgba(28, 40, 64, 0.04), 0px 2px 3px -2px rgba(28, 40, 64, 0.10000000149011612); flex: none; height: 358px; overflow: hidden; position: relative; width: 681px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-QER0v .framer-1qxxn33 { 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; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-QER0v .framer-1dbbr8s { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 4px 6px -2px rgba(28, 40, 64, 0.04), 0px 2px 3px -2px rgba(28, 40, 64, 0.10000000149011612); flex: none; height: 387px; overflow: hidden; position: relative; width: 736px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-QER0v .framer-13g9ix6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 566px; min-width: 679px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-QER0v .framer-13zo5sl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-QER0v .framer-1qc1l4j, .framer-QER0v .framer-8000vu { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 4px 6px -2px rgba(28, 40, 64, 0.04), 0px 2px 3px -2px rgba(28, 40, 64, 0.10000000149011612); flex: none; height: 387px; overflow: hidden; position: relative; width: 679px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-QER0v .framer-ar210x, .framer-QER0v .framer-bf8y3n, .framer-QER0v .framer-106e4g4 { aspect-ratio: 0.7555555555555555 / 1; flex: none; height: 72%; left: 52%; position: absolute; top: 47%; transform: translate(-50%, -50%); width: var(--framer-aspect-ratio-supported, 151px); }\",\".framer-QER0v .framer-1wzwztl, .framer-QER0v .framer-zdn1yj, .framer-QER0v .framer-1uwatrh { 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-QER0v .framer-1r4mljf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: min-content; z-index: 0; }\",\".framer-QER0v .framer-6o4kt0, .framer-QER0v .framer-1vxeqr { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 335px; overflow: visible; position: relative; width: 628px; z-index: 2; }\",\".framer-QER0v .framer-1dje0hp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QER0v .framer-dp169s { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 371px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-1lqmfgh { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 4px 6px -2px rgba(28, 40, 64, 0.04), 0px 2px 3px -2px rgba(28, 40, 64, 0.10000000149011612); flex: none; height: 366px; overflow: hidden; position: relative; width: 681px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-QER0v .framer-1020jzv { 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; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 371px; }\",\".framer-QER0v .framer-2dmzx3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-QER0v .framer-ezi6px { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 376px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-pwlshp { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 4px 6px -2px rgba(28, 40, 64, 0.04), 0px 2px 3px -2px rgba(28, 40, 64, 0.10000000149011612); flex: none; height: 387px; overflow: hidden; position: relative; width: 719px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-QER0v .framer-1qxxu81 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-QER0v .framer-g7335b { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 315px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-iigyw6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 0; }\",\".framer-QER0v .framer-8sd3qz { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 374px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-ra5dbu { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 335px; left: -15px; overflow: visible; position: absolute; top: 1754px; width: 628px; z-index: 2; }\",\".framer-QER0v .framer-rqsjkk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; left: -416px; overflow: hidden; padding: 0px; position: absolute; top: 1875px; width: min-content; z-index: 0; }\",\".framer-QER0v .framer-1wzar0t { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 331px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-155bow8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; left: 201px; overflow: hidden; padding: 0px; position: absolute; top: 1355px; width: min-content; z-index: 1; }\",\".framer-QER0v .framer-m5wfgo { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 4px 6px -2px rgba(28, 40, 64, 0.04), 0px 2px 3px -2px rgba(28, 40, 64, 0.10000000149011612); flex: none; height: 387px; left: -518px; overflow: hidden; position: absolute; top: 1264px; width: 681px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-QER0v .framer-2nw8rv { --border-bottom-width: 2px; --border-color: #dfe1e5; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; background-color: #f4f5f6; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 10px; left: -226px; position: absolute; top: 291px; width: 10px; z-index: 3; }\",\".framer-QER0v .framer-1c7bwq3 { --border-bottom-width: 2px; --border-color: #dfe1e5; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; background-color: #f4f5f6; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 10px; left: 282px; position: absolute; top: 768px; width: 10px; z-index: 3; }\",\".framer-QER0v .framer-mcqdi2 { --border-bottom-width: 2px; --border-color: #dfe1e5; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; background-color: #f4f5f6; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 10px; left: -241px; position: absolute; top: 1318px; width: 10px; z-index: 3; }\",\".framer-QER0v .framer-1u450ql { --border-bottom-width: 2px; --border-color: #dfe1e5; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; background-color: #f4f5f6; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 10px; left: 310px; position: absolute; top: 1802px; width: 10px; z-index: 3; }\",\".framer-QER0v .framer-1639p0e { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 4px 6px -2px rgba(28, 40, 64, 0.04), 0px 2px 3px -2px rgba(28, 40, 64, 0.10000000149011612); flex: none; height: 387px; overflow: hidden; position: absolute; right: -523px; top: 714px; width: 738px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-QER0v .framer-15gfc8a { bottom: 0px; flex: none; left: 0px; position: absolute; right: -8px; top: 0px; }\",\".framer-QER0v .framer-1s21ssw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; left: -416px; overflow: hidden; padding: 0px; position: absolute; top: 794px; width: min-content; z-index: 1; }\",\".framer-QER0v .framer-15wkgz3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 306px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-1wp4b4o { --border-bottom-width: 1px; --border-color: #edeff3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 4px 6px -2px rgba(28, 40, 64, 0.04), 0px 2px 3px -2px rgba(28, 40, 64, 0.10000000149011612); flex: none; height: 358px; left: -518px; overflow: hidden; position: absolute; top: 241px; width: 681px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-QER0v .framer-rdm983 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: absolute; right: -413px; top: 303px; width: min-content; z-index: 1; }\",\".framer-QER0v .framer-r87kjl { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 312px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-1uolsxp { --border-bottom-width: 1px; --border-color: var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, #eaedf1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #fafafb; 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-QER0v .framer-xy0wog { --border-bottom-width: 0px; --border-color: var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, #eaedf1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1400px; overflow: hidden; padding: 0px; position: relative; width: 95%; }\",\".framer-QER0v .framer-1hnilpb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 60px; position: relative; width: min-content; }\",\".framer-QER0v .framer-1bl8t8e { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 677px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-ks80di { --border-bottom-width: 0px; --border-color: var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, #eaedf1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 402px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-QER0v .framer-1k9sita, .framer-QER0v .framer-3qfef1, .framer-QER0v .framer-pcq866 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 150px; }\",\".framer-QER0v .framer-3fdtyl { flex: none; height: 60px; position: relative; width: 55px; }\",\".framer-QER0v .framer-y8urc2, .framer-QER0v .framer-38uu4x, .framer-QER0v .framer-1e69nk5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 20px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-QER0v .framer-n09gh4, .framer-QER0v .framer-11e3utz { background-color: var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, #eaedf1); flex: none; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-QER0v .framer-1qedu3b { flex: none; height: 60px; position: relative; width: 44px; }\",\".framer-QER0v .framer-w0ovak { flex: none; height: 60px; position: relative; width: 61px; }\",\".framer-QER0v .framer-1ja1jvi { --framer-paragraph-spacing: 0px; flex: none; height: 20px; position: relative; white-space: pre-wrap; width: 27px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-1l8j37j { --border-bottom-width: 1px; --border-color: var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, #eaedf1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QER0v .framer-1b98zhr { --border-bottom-width: 0px; --border-color: var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, #eaedf1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; 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; max-width: 1400px; overflow: hidden; padding: 0px; position: relative; width: 95%; }\",\".framer-QER0v .framer-1up1fmh { 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: center; overflow: hidden; padding: 120px 0px 180px 60px; position: relative; width: min-content; z-index: 2; }\",\".framer-QER0v .framer-90y4ef { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 660px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-QER0v .framer-ne40hy { flex: none; height: 100px; overflow: hidden; position: relative; width: 399px; }\",\".framer-QER0v .framer-1l6qhhp { display: grid; flex: none; gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(2, 200px); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-QER0v .framer-svqjke, .framer-QER0v .framer-a99mdd, .framer-QER0v .framer-yfqzis { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-QER0v .framer-p9pbeq, .framer-QER0v .framer-hhfr1c, .framer-QER0v .framer-1f30ll0, .framer-QER0v .framer-lctqyn { background-color: #8f99a8; flex: none; height: 40px; overflow: hidden; position: relative; width: 1px; }\",\".framer-QER0v .framer-1y26nr4, .framer-QER0v .framer-a3zbs6, .framer-QER0v .framer-p1qmon, .framer-QER0v .framer-hff0fd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-QER0v .framer-1b101dn, .framer-QER0v .framer-kqg3ly, .framer-QER0v .framer-lc7wm2, .framer-QER0v .framer-17awvw2 { --framer-paragraph-spacing: 0px; flex: none; height: 22px; position: relative; white-space: pre; width: auto; }\",\".framer-QER0v .framer-hp9dc4 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-QER0v .framer-1h22yr5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 74px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-QER0v .framer-1hcusmx { --framer-paragraph-spacing: 0px; flex: none; height: 39px; position: relative; white-space: pre; width: auto; }\",\".framer-QER0v .framer-1gkw4yu { bottom: 0px; flex: none; height: 80%; left: calc(50.00000000000002% - 100% / 2); position: absolute; width: 100%; z-index: 0; }\",\".framer-QER0v .framer-s4647h, .framer-QER0v .framer-1ceul42 { align-content: center; align-items: center; background-color: #fafafb; 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-QER0v .framer-1xbp4dt { --border-bottom-width: 0px; --border-color: var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, #eaedf1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 95%; }\",\".framer-QER0v .framer-1n663lq { --border-bottom-width: 1px; --border-color: var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, #eaedf1); --border-left-width: 0px; --border-right-width: 0px; --border-style: dashed; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 60px 0px 60px; position: relative; width: 1px; }\",\".framer-QER0v .framer-1sfi2yl { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 373px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-9igmie, .framer-QER0v .framer-1nskbzy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-QER0v .framer-riqs0c { --border-bottom-width: 1px; --border-color: var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, #eaedf1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-QER0v .framer-s3preo { flex: none; height: 338px; position: relative; width: 580px; }\",\".framer-QER0v .framer-bowsh9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 920px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-1q1t3r6 { background-color: #ffffff; flex: none; height: 20px; overflow: hidden; position: relative; width: 198px; }\",\".framer-QER0v .framer-1dhp0bi { --border-bottom-width: 0px; --border-color: var(--token-ccf5e067-0b94-4a8c-b6b6-d60daeb1a7ea, #eaedf1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: hidden; padding: 100px 0px 100px 60px; position: relative; width: 95%; will-change: var(--framer-will-change-override, transform); }\",\".framer-QER0v .framer-1xadjhu-container { flex: none; height: 510px; position: absolute; right: -129px; top: -38px; width: 510px; z-index: 1; }\",\".framer-QER0v .framer-ph1dpe { 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: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-QER0v .framer-gogiz8 { --framer-paragraph-spacing: 0px; flex: none; height: 49px; position: relative; white-space: pre-wrap; width: 388px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-osr9vf { --framer-paragraph-spacing: 0px; flex: none; height: 52px; position: relative; white-space: pre-wrap; width: 454px; word-break: break-word; word-wrap: break-word; }\",\".framer-QER0v .framer-1885krj { flex: none; height: 20px; overflow: hidden; position: relative; width: 353px; }\",\".framer-QER0v .framer-18hmv2l { background-color: #ffffff; flex: none; height: 86px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QER0v.framer-72rtr7, .framer-QER0v .framer-1r33qgr, .framer-QER0v .framer-1g1g3zn, .framer-QER0v .framer-zz6wrb, .framer-QER0v .framer-1rwaj00, .framer-QER0v .framer-3sw4uh, .framer-QER0v .framer-1d6ce4i, .framer-QER0v .framer-b4tukn, .framer-QER0v .framer-1qmu2z3, .framer-QER0v .framer-1tfxbex, .framer-QER0v .framer-1xuaz76, .framer-QER0v .framer-19xybet, .framer-QER0v .framer-8nsbyf, .framer-QER0v .framer-bdmmk0, .framer-QER0v .framer-598o2u, .framer-QER0v .framer-188c6h8, .framer-QER0v .framer-ycwpyu, .framer-QER0v .framer-10so3vr, .framer-QER0v .framer-1xkfxdo, .framer-QER0v .framer-1ldwgpf, .framer-QER0v .framer-dl87x5, .framer-QER0v .framer-1p6wzlz, .framer-QER0v .framer-9e5bdn, .framer-QER0v .framer-1giom6v, .framer-QER0v .framer-18ercv7, .framer-QER0v .framer-2cnm1q, .framer-QER0v .framer-u6pjmz, .framer-QER0v .framer-d2kzrw, .framer-QER0v .framer-v6jak9, .framer-QER0v .framer-x33www, .framer-QER0v .framer-1h54nbv, .framer-QER0v .framer-f6a4th, .framer-QER0v .framer-ivn0om, .framer-QER0v .framer-19h9g7n, .framer-QER0v .framer-rn561y, .framer-QER0v .framer-10k7tyb, .framer-QER0v .framer-115i02g, .framer-QER0v .framer-1alfavb, .framer-QER0v .framer-1p2ecgj, .framer-QER0v .framer-bkm3u9, .framer-QER0v .framer-1ax64yg, .framer-QER0v .framer-86wsoy, .framer-QER0v .framer-1k0c42n, .framer-QER0v .framer-uj9s43, .framer-QER0v .framer-1nmd0tg, .framer-QER0v .framer-1ds5dr6, .framer-QER0v .framer-mkp7t9, .framer-QER0v .framer-ik3z9q, .framer-QER0v .framer-12j8ad9, .framer-QER0v .framer-5t4qo8, .framer-QER0v .framer-zsckge, .framer-QER0v .framer-qy3q2d, .framer-QER0v .framer-1xls72y, .framer-QER0v .framer-1suq4kt, .framer-QER0v .framer-jdmxhv, .framer-QER0v .framer-1nuu8gf, .framer-QER0v .framer-1qxxn33, .framer-QER0v .framer-5gpge2, .framer-QER0v .framer-1afh6d7, .framer-QER0v .framer-mbpf1y, .framer-QER0v .framer-bw80nb, .framer-QER0v .framer-1n2hvcm, .framer-QER0v .framer-1gajxvy, .framer-QER0v .framer-glzwku, .framer-QER0v .framer-1nnlj4f, .framer-QER0v .framer-1wfjupd, .framer-QER0v .framer-13smrun, .framer-QER0v .framer-1ns6gwv, .framer-QER0v .framer-1gqramb, .framer-QER0v .framer-3oi1k8, .framer-QER0v .framer-13g9ix6, .framer-QER0v .framer-13zo5sl, .framer-QER0v .framer-1qow2bp, .framer-QER0v .framer-ryfij4, .framer-QER0v .framer-1afy6h3, .framer-QER0v .framer-wk0dox, .framer-QER0v .framer-1308ob0, .framer-QER0v .framer-1400em8, .framer-QER0v .framer-1ox1lq5, .framer-QER0v .framer-dzdwuj, .framer-QER0v .framer-1wzwztl, .framer-QER0v .framer-1r4mljf, .framer-QER0v .framer-1dje0hp, .framer-QER0v .framer-4vsy7, .framer-QER0v .framer-1jfksjn, .framer-QER0v .framer-1020jzv, .framer-QER0v .framer-2dmzx3, .framer-QER0v .framer-nproe, .framer-QER0v .framer-32a7c, .framer-QER0v .framer-1nwj0fs, .framer-QER0v .framer-1mg9tjx, .framer-QER0v .framer-lpjuaa, .framer-QER0v .framer-17t8rc6, .framer-QER0v .framer-1j850ak, .framer-QER0v .framer-1wpfiz2, .framer-QER0v .framer-1bueuzv, .framer-QER0v .framer-1j72e86, .framer-QER0v .framer-ikj69d, .framer-QER0v .framer-952lnm, .framer-QER0v .framer-zdn1yj, .framer-QER0v .framer-1qxxu81, .framer-QER0v .framer-77yxr3, .framer-QER0v .framer-10x9mnv, .framer-QER0v .framer-1ago3e5, .framer-QER0v .framer-1fq8wxb, .framer-QER0v .framer-e5kp9x, .framer-QER0v .framer-x7vwyf, .framer-QER0v .framer-19oag9h, .framer-QER0v .framer-x5swys, .framer-QER0v .framer-1uwatrh, .framer-QER0v .framer-iigyw6, .framer-QER0v .framer-rqsjkk, .framer-QER0v .framer-155bow8, .framer-QER0v .framer-1ygroui, .framer-QER0v .framer-15a1kfo, .framer-QER0v .framer-1lg1ql9, .framer-QER0v .framer-2u246y, .framer-QER0v .framer-19amnzm, .framer-QER0v .framer-n0jrms, .framer-QER0v .framer-1ixjoj3, .framer-QER0v .framer-1j7p5sp, .framer-QER0v .framer-1e7r2o5, .framer-QER0v .framer-1pctvtd, .framer-QER0v .framer-1aer1kg, .framer-QER0v .framer-1f76byv, .framer-QER0v .framer-k1h0bl, .framer-QER0v .framer-16l21r1, .framer-QER0v .framer-1fr7bz1, .framer-QER0v .framer-duvyzq, .framer-QER0v .framer-h1fsz3, .framer-QER0v .framer-1ibmllf, .framer-QER0v .framer-1o3j7wk, .framer-QER0v .framer-dfx3ic, .framer-QER0v .framer-1s21ssw, .framer-QER0v .framer-15li2c2, .framer-QER0v .framer-rdm983, .framer-QER0v .framer-1uolsxp, .framer-QER0v .framer-1hnilpb, .framer-QER0v .framer-ks80di, .framer-QER0v .framer-1k9sita, .framer-QER0v .framer-y8urc2, .framer-QER0v .framer-3qfef1, .framer-QER0v .framer-38uu4x, .framer-QER0v .framer-pcq866, .framer-QER0v .framer-1e69nk5, .framer-QER0v .framer-1l8j37j, .framer-QER0v .framer-1b98zhr, .framer-QER0v .framer-1up1fmh, .framer-QER0v .framer-svqjke, .framer-QER0v .framer-1y26nr4, .framer-QER0v .framer-a99mdd, .framer-QER0v .framer-a3zbs6, .framer-QER0v .framer-hp9dc4, .framer-QER0v .framer-1h22yr5, .framer-QER0v .framer-yfqzis, .framer-QER0v .framer-p1qmon, .framer-QER0v .framer-s4647h, .framer-QER0v .framer-1xbp4dt, .framer-QER0v .framer-hff0fd, .framer-QER0v .framer-9igmie, .framer-QER0v .framer-riqs0c, .framer-QER0v .framer-1tanxke, .framer-QER0v .framer-1xxx5bd, .framer-QER0v .framer-1ceul42, .framer-QER0v .framer-1dhp0bi, .framer-QER0v .framer-ph1dpe, .framer-QER0v .framer-1nskbzy { gap: 0px; } .framer-QER0v.framer-72rtr7 > *, .framer-QER0v .framer-zz6wrb > *, .framer-QER0v .framer-188c6h8 > *, .framer-QER0v .framer-jdmxhv > *, .framer-QER0v .framer-1qxxn33 > *, .framer-QER0v .framer-13g9ix6 > *, .framer-QER0v .framer-1wzwztl > *, .framer-QER0v .framer-4vsy7 > *, .framer-QER0v .framer-1020jzv > *, .framer-QER0v .framer-zdn1yj > *, .framer-QER0v .framer-1uwatrh > *, .framer-QER0v .framer-1up1fmh > *, .framer-QER0v .framer-1xxx5bd > *, .framer-QER0v .framer-ph1dpe > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-QER0v.framer-72rtr7 > :first-child, .framer-QER0v .framer-zz6wrb > :first-child, .framer-QER0v .framer-b4tukn > :first-child, .framer-QER0v .framer-1xuaz76 > :first-child, .framer-QER0v .framer-8nsbyf > :first-child, .framer-QER0v .framer-188c6h8 > :first-child, .framer-QER0v .framer-ycwpyu > :first-child, .framer-QER0v .framer-1xkfxdo > :first-child, .framer-QER0v .framer-dl87x5 > :first-child, .framer-QER0v .framer-9e5bdn > :first-child, .framer-QER0v .framer-18ercv7 > :first-child, .framer-QER0v .framer-u6pjmz > :first-child, .framer-QER0v .framer-v6jak9 > :first-child, .framer-QER0v .framer-x33www > :first-child, .framer-QER0v .framer-zsckge > :first-child, .framer-QER0v .framer-1xls72y > :first-child, .framer-QER0v .framer-1suq4kt > :first-child, .framer-QER0v .framer-jdmxhv > :first-child, .framer-QER0v .framer-1nuu8gf > :first-child, .framer-QER0v .framer-1qxxn33 > :first-child, .framer-QER0v .framer-5gpge2 > :first-child, .framer-QER0v .framer-13g9ix6 > :first-child, .framer-QER0v .framer-13zo5sl > :first-child, .framer-QER0v .framer-1wzwztl > :first-child, .framer-QER0v .framer-1r4mljf > :first-child, .framer-QER0v .framer-1dje0hp > :first-child, .framer-QER0v .framer-4vsy7 > :first-child, .framer-QER0v .framer-1jfksjn > :first-child, .framer-QER0v .framer-1020jzv > :first-child, .framer-QER0v .framer-2dmzx3 > :first-child, .framer-QER0v .framer-zdn1yj > :first-child, .framer-QER0v .framer-1qxxu81 > :first-child, .framer-QER0v .framer-1uwatrh > :first-child, .framer-QER0v .framer-iigyw6 > :first-child, .framer-QER0v .framer-rqsjkk > :first-child, .framer-QER0v .framer-155bow8 > :first-child, .framer-QER0v .framer-1s21ssw > :first-child, .framer-QER0v .framer-rdm983 > :first-child, .framer-QER0v .framer-1hnilpb > :first-child, .framer-QER0v .framer-1k9sita > :first-child, .framer-QER0v .framer-3qfef1 > :first-child, .framer-QER0v .framer-pcq866 > :first-child, .framer-QER0v .framer-1l8j37j > :first-child, .framer-QER0v .framer-1b98zhr > :first-child, .framer-QER0v .framer-1up1fmh > :first-child, .framer-QER0v .framer-1y26nr4 > :first-child, .framer-QER0v .framer-a3zbs6 > :first-child, .framer-QER0v .framer-1h22yr5 > :first-child, .framer-QER0v .framer-p1qmon > :first-child, .framer-QER0v .framer-hff0fd > :first-child, .framer-QER0v .framer-1xxx5bd > :first-child, .framer-QER0v .framer-1dhp0bi > :first-child, .framer-QER0v .framer-ph1dpe > :first-child { margin-top: 0px; } .framer-QER0v.framer-72rtr7 > :last-child, .framer-QER0v .framer-zz6wrb > :last-child, .framer-QER0v .framer-b4tukn > :last-child, .framer-QER0v .framer-1xuaz76 > :last-child, .framer-QER0v .framer-8nsbyf > :last-child, .framer-QER0v .framer-188c6h8 > :last-child, .framer-QER0v .framer-ycwpyu > :last-child, .framer-QER0v .framer-1xkfxdo > :last-child, .framer-QER0v .framer-dl87x5 > :last-child, .framer-QER0v .framer-9e5bdn > :last-child, .framer-QER0v .framer-18ercv7 > :last-child, .framer-QER0v .framer-u6pjmz > :last-child, .framer-QER0v .framer-v6jak9 > :last-child, .framer-QER0v .framer-x33www > :last-child, .framer-QER0v .framer-zsckge > :last-child, .framer-QER0v .framer-1xls72y > :last-child, .framer-QER0v .framer-1suq4kt > :last-child, .framer-QER0v .framer-jdmxhv > :last-child, .framer-QER0v .framer-1nuu8gf > :last-child, .framer-QER0v .framer-1qxxn33 > :last-child, .framer-QER0v .framer-5gpge2 > :last-child, .framer-QER0v .framer-13g9ix6 > :last-child, .framer-QER0v .framer-13zo5sl > :last-child, .framer-QER0v .framer-1wzwztl > :last-child, .framer-QER0v .framer-1r4mljf > :last-child, .framer-QER0v .framer-1dje0hp > :last-child, .framer-QER0v .framer-4vsy7 > :last-child, .framer-QER0v .framer-1jfksjn > :last-child, .framer-QER0v .framer-1020jzv > :last-child, .framer-QER0v .framer-2dmzx3 > :last-child, .framer-QER0v .framer-zdn1yj > :last-child, .framer-QER0v .framer-1qxxu81 > :last-child, .framer-QER0v .framer-1uwatrh > :last-child, .framer-QER0v .framer-iigyw6 > :last-child, .framer-QER0v .framer-rqsjkk > :last-child, .framer-QER0v .framer-155bow8 > :last-child, .framer-QER0v .framer-1s21ssw > :last-child, .framer-QER0v .framer-rdm983 > :last-child, .framer-QER0v .framer-1hnilpb > :last-child, .framer-QER0v .framer-1k9sita > :last-child, .framer-QER0v .framer-3qfef1 > :last-child, .framer-QER0v .framer-pcq866 > :last-child, .framer-QER0v .framer-1l8j37j > :last-child, .framer-QER0v .framer-1b98zhr > :last-child, .framer-QER0v .framer-1up1fmh > :last-child, .framer-QER0v .framer-1y26nr4 > :last-child, .framer-QER0v .framer-a3zbs6 > :last-child, .framer-QER0v .framer-1h22yr5 > :last-child, .framer-QER0v .framer-p1qmon > :last-child, .framer-QER0v .framer-hff0fd > :last-child, .framer-QER0v .framer-1xxx5bd > :last-child, .framer-QER0v .framer-1dhp0bi > :last-child, .framer-QER0v .framer-ph1dpe > :last-child { margin-bottom: 0px; } .framer-QER0v .framer-1r33qgr > *, .framer-QER0v .framer-1g1g3zn > *, .framer-QER0v .framer-1d6ce4i > *, .framer-QER0v .framer-1tfxbex > *, .framer-QER0v .framer-19xybet > *, .framer-QER0v .framer-bdmmk0 > *, .framer-QER0v .framer-598o2u > *, .framer-QER0v .framer-10so3vr > *, .framer-QER0v .framer-1ldwgpf > *, .framer-QER0v .framer-1ax64yg > *, .framer-QER0v .framer-1k0c42n > *, .framer-QER0v .framer-1nmd0tg > *, .framer-QER0v .framer-1ds5dr6 > *, .framer-QER0v .framer-mkp7t9 > *, .framer-QER0v .framer-ik3z9q > *, .framer-QER0v .framer-12j8ad9 > *, .framer-QER0v .framer-5t4qo8 > *, .framer-QER0v .framer-qy3q2d > *, .framer-QER0v .framer-bw80nb > *, .framer-QER0v .framer-1gajxvy > *, .framer-QER0v .framer-1nnlj4f > *, .framer-QER0v .framer-1wfjupd > *, .framer-QER0v .framer-13smrun > *, .framer-QER0v .framer-1ns6gwv > *, .framer-QER0v .framer-1gqramb > *, .framer-QER0v .framer-3oi1k8 > *, .framer-QER0v .framer-1nwj0fs > *, .framer-QER0v .framer-lpjuaa > *, .framer-QER0v .framer-1j850ak > *, .framer-QER0v .framer-1wpfiz2 > *, .framer-QER0v .framer-1bueuzv > *, .framer-QER0v .framer-1j72e86 > *, .framer-QER0v .framer-ikj69d > *, .framer-QER0v .framer-952lnm > *, .framer-QER0v .framer-1aer1kg > *, .framer-QER0v .framer-k1h0bl > *, .framer-QER0v .framer-1fr7bz1 > *, .framer-QER0v .framer-duvyzq > *, .framer-QER0v .framer-h1fsz3 > *, .framer-QER0v .framer-1ibmllf > *, .framer-QER0v .framer-1o3j7wk > *, .framer-QER0v .framer-dfx3ic > *, .framer-QER0v .framer-15li2c2 > *, .framer-QER0v .framer-1uolsxp > *, .framer-QER0v .framer-ks80di > *, .framer-QER0v .framer-svqjke > *, .framer-QER0v .framer-a99mdd > *, .framer-QER0v .framer-hp9dc4 > *, .framer-QER0v .framer-yfqzis > *, .framer-QER0v .framer-s4647h > *, .framer-QER0v .framer-1xbp4dt > *, .framer-QER0v .framer-9igmie > *, .framer-QER0v .framer-riqs0c > *, .framer-QER0v .framer-1tanxke > *, .framer-QER0v .framer-1ceul42 > *, .framer-QER0v .framer-1nskbzy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QER0v .framer-1r33qgr > :first-child, .framer-QER0v .framer-1g1g3zn > :first-child, .framer-QER0v .framer-1rwaj00 > :first-child, .framer-QER0v .framer-3sw4uh > :first-child, .framer-QER0v .framer-1d6ce4i > :first-child, .framer-QER0v .framer-1qmu2z3 > :first-child, .framer-QER0v .framer-1tfxbex > :first-child, .framer-QER0v .framer-19xybet > :first-child, .framer-QER0v .framer-bdmmk0 > :first-child, .framer-QER0v .framer-598o2u > :first-child, .framer-QER0v .framer-10so3vr > :first-child, .framer-QER0v .framer-1ldwgpf > :first-child, .framer-QER0v .framer-1p6wzlz > :first-child, .framer-QER0v .framer-1giom6v > :first-child, .framer-QER0v .framer-2cnm1q > :first-child, .framer-QER0v .framer-d2kzrw > :first-child, .framer-QER0v .framer-1h54nbv > :first-child, .framer-QER0v .framer-f6a4th > :first-child, .framer-QER0v .framer-ivn0om > :first-child, .framer-QER0v .framer-19h9g7n > :first-child, .framer-QER0v .framer-rn561y > :first-child, .framer-QER0v .framer-10k7tyb > :first-child, .framer-QER0v .framer-115i02g > :first-child, .framer-QER0v .framer-1alfavb > :first-child, .framer-QER0v .framer-1p2ecgj > :first-child, .framer-QER0v .framer-bkm3u9 > :first-child, .framer-QER0v .framer-1ax64yg > :first-child, .framer-QER0v .framer-86wsoy > :first-child, .framer-QER0v .framer-1k0c42n > :first-child, .framer-QER0v .framer-uj9s43 > :first-child, .framer-QER0v .framer-1nmd0tg > :first-child, .framer-QER0v .framer-1ds5dr6 > :first-child, .framer-QER0v .framer-mkp7t9 > :first-child, .framer-QER0v .framer-ik3z9q > :first-child, .framer-QER0v .framer-12j8ad9 > :first-child, .framer-QER0v .framer-5t4qo8 > :first-child, .framer-QER0v .framer-qy3q2d > :first-child, .framer-QER0v .framer-1afh6d7 > :first-child, .framer-QER0v .framer-mbpf1y > :first-child, .framer-QER0v .framer-bw80nb > :first-child, .framer-QER0v .framer-1n2hvcm > :first-child, .framer-QER0v .framer-1gajxvy > :first-child, .framer-QER0v .framer-glzwku > :first-child, .framer-QER0v .framer-1nnlj4f > :first-child, .framer-QER0v .framer-1wfjupd > :first-child, .framer-QER0v .framer-13smrun > :first-child, .framer-QER0v .framer-1ns6gwv > :first-child, .framer-QER0v .framer-1gqramb > :first-child, .framer-QER0v .framer-3oi1k8 > :first-child, .framer-QER0v .framer-1qow2bp > :first-child, .framer-QER0v .framer-ryfij4 > :first-child, .framer-QER0v .framer-1afy6h3 > :first-child, .framer-QER0v .framer-wk0dox > :first-child, .framer-QER0v .framer-1308ob0 > :first-child, .framer-QER0v .framer-1400em8 > :first-child, .framer-QER0v .framer-1ox1lq5 > :first-child, .framer-QER0v .framer-dzdwuj > :first-child, .framer-QER0v .framer-nproe > :first-child, .framer-QER0v .framer-32a7c > :first-child, .framer-QER0v .framer-1nwj0fs > :first-child, .framer-QER0v .framer-1mg9tjx > :first-child, .framer-QER0v .framer-lpjuaa > :first-child, .framer-QER0v .framer-17t8rc6 > :first-child, .framer-QER0v .framer-1j850ak > :first-child, .framer-QER0v .framer-1wpfiz2 > :first-child, .framer-QER0v .framer-1bueuzv > :first-child, .framer-QER0v .framer-1j72e86 > :first-child, .framer-QER0v .framer-ikj69d > :first-child, .framer-QER0v .framer-952lnm > :first-child, .framer-QER0v .framer-77yxr3 > :first-child, .framer-QER0v .framer-10x9mnv > :first-child, .framer-QER0v .framer-1ago3e5 > :first-child, .framer-QER0v .framer-1fq8wxb > :first-child, .framer-QER0v .framer-e5kp9x > :first-child, .framer-QER0v .framer-x7vwyf > :first-child, .framer-QER0v .framer-19oag9h > :first-child, .framer-QER0v .framer-x5swys > :first-child, .framer-QER0v .framer-1ygroui > :first-child, .framer-QER0v .framer-15a1kfo > :first-child, .framer-QER0v .framer-1lg1ql9 > :first-child, .framer-QER0v .framer-2u246y > :first-child, .framer-QER0v .framer-19amnzm > :first-child, .framer-QER0v .framer-n0jrms > :first-child, .framer-QER0v .framer-1ixjoj3 > :first-child, .framer-QER0v .framer-1j7p5sp > :first-child, .framer-QER0v .framer-1e7r2o5 > :first-child, .framer-QER0v .framer-1pctvtd > :first-child, .framer-QER0v .framer-1aer1kg > :first-child, .framer-QER0v .framer-1f76byv > :first-child, .framer-QER0v .framer-k1h0bl > :first-child, .framer-QER0v .framer-16l21r1 > :first-child, .framer-QER0v .framer-1fr7bz1 > :first-child, .framer-QER0v .framer-duvyzq > :first-child, .framer-QER0v .framer-h1fsz3 > :first-child, .framer-QER0v .framer-1ibmllf > :first-child, .framer-QER0v .framer-1o3j7wk > :first-child, .framer-QER0v .framer-dfx3ic > :first-child, .framer-QER0v .framer-15li2c2 > :first-child, .framer-QER0v .framer-1uolsxp > :first-child, .framer-QER0v .framer-ks80di > :first-child, .framer-QER0v .framer-y8urc2 > :first-child, .framer-QER0v .framer-38uu4x > :first-child, .framer-QER0v .framer-1e69nk5 > :first-child, .framer-QER0v .framer-svqjke > :first-child, .framer-QER0v .framer-a99mdd > :first-child, .framer-QER0v .framer-hp9dc4 > :first-child, .framer-QER0v .framer-yfqzis > :first-child, .framer-QER0v .framer-s4647h > :first-child, .framer-QER0v .framer-1xbp4dt > :first-child, .framer-QER0v .framer-9igmie > :first-child, .framer-QER0v .framer-riqs0c > :first-child, .framer-QER0v .framer-1tanxke > :first-child, .framer-QER0v .framer-1ceul42 > :first-child, .framer-QER0v .framer-1nskbzy > :first-child { margin-left: 0px; } .framer-QER0v .framer-1r33qgr > :last-child, .framer-QER0v .framer-1g1g3zn > :last-child, .framer-QER0v .framer-1rwaj00 > :last-child, .framer-QER0v .framer-3sw4uh > :last-child, .framer-QER0v .framer-1d6ce4i > :last-child, .framer-QER0v .framer-1qmu2z3 > :last-child, .framer-QER0v .framer-1tfxbex > :last-child, .framer-QER0v .framer-19xybet > :last-child, .framer-QER0v .framer-bdmmk0 > :last-child, .framer-QER0v .framer-598o2u > :last-child, .framer-QER0v .framer-10so3vr > :last-child, .framer-QER0v .framer-1ldwgpf > :last-child, .framer-QER0v .framer-1p6wzlz > :last-child, .framer-QER0v .framer-1giom6v > :last-child, .framer-QER0v .framer-2cnm1q > :last-child, .framer-QER0v .framer-d2kzrw > :last-child, .framer-QER0v .framer-1h54nbv > :last-child, .framer-QER0v .framer-f6a4th > :last-child, .framer-QER0v .framer-ivn0om > :last-child, .framer-QER0v .framer-19h9g7n > :last-child, .framer-QER0v .framer-rn561y > :last-child, .framer-QER0v .framer-10k7tyb > :last-child, .framer-QER0v .framer-115i02g > :last-child, .framer-QER0v .framer-1alfavb > :last-child, .framer-QER0v .framer-1p2ecgj > :last-child, .framer-QER0v .framer-bkm3u9 > :last-child, .framer-QER0v .framer-1ax64yg > :last-child, .framer-QER0v .framer-86wsoy > :last-child, .framer-QER0v .framer-1k0c42n > :last-child, .framer-QER0v .framer-uj9s43 > :last-child, .framer-QER0v .framer-1nmd0tg > :last-child, .framer-QER0v .framer-1ds5dr6 > :last-child, .framer-QER0v .framer-mkp7t9 > :last-child, .framer-QER0v .framer-ik3z9q > :last-child, .framer-QER0v .framer-12j8ad9 > :last-child, .framer-QER0v .framer-5t4qo8 > :last-child, .framer-QER0v .framer-qy3q2d > :last-child, .framer-QER0v .framer-1afh6d7 > :last-child, .framer-QER0v .framer-mbpf1y > :last-child, .framer-QER0v .framer-bw80nb > :last-child, .framer-QER0v .framer-1n2hvcm > :last-child, .framer-QER0v .framer-1gajxvy > :last-child, .framer-QER0v .framer-glzwku > :last-child, .framer-QER0v .framer-1nnlj4f > :last-child, .framer-QER0v .framer-1wfjupd > :last-child, .framer-QER0v .framer-13smrun > :last-child, .framer-QER0v .framer-1ns6gwv > :last-child, .framer-QER0v .framer-1gqramb > :last-child, .framer-QER0v .framer-3oi1k8 > :last-child, .framer-QER0v .framer-1qow2bp > :last-child, .framer-QER0v .framer-ryfij4 > :last-child, .framer-QER0v .framer-1afy6h3 > :last-child, .framer-QER0v .framer-wk0dox > :last-child, .framer-QER0v .framer-1308ob0 > :last-child, .framer-QER0v .framer-1400em8 > :last-child, .framer-QER0v .framer-1ox1lq5 > :last-child, .framer-QER0v .framer-dzdwuj > :last-child, .framer-QER0v .framer-nproe > :last-child, .framer-QER0v .framer-32a7c > :last-child, .framer-QER0v .framer-1nwj0fs > :last-child, .framer-QER0v .framer-1mg9tjx > :last-child, .framer-QER0v .framer-lpjuaa > :last-child, .framer-QER0v .framer-17t8rc6 > :last-child, .framer-QER0v .framer-1j850ak > :last-child, .framer-QER0v .framer-1wpfiz2 > :last-child, .framer-QER0v .framer-1bueuzv > :last-child, .framer-QER0v .framer-1j72e86 > :last-child, .framer-QER0v .framer-ikj69d > :last-child, .framer-QER0v .framer-952lnm > :last-child, .framer-QER0v .framer-77yxr3 > :last-child, .framer-QER0v .framer-10x9mnv > :last-child, .framer-QER0v .framer-1ago3e5 > :last-child, .framer-QER0v .framer-1fq8wxb > :last-child, .framer-QER0v .framer-e5kp9x > :last-child, .framer-QER0v .framer-x7vwyf > :last-child, .framer-QER0v .framer-19oag9h > :last-child, .framer-QER0v .framer-x5swys > :last-child, .framer-QER0v .framer-1ygroui > :last-child, .framer-QER0v .framer-15a1kfo > :last-child, .framer-QER0v .framer-1lg1ql9 > :last-child, .framer-QER0v .framer-2u246y > :last-child, .framer-QER0v .framer-19amnzm > :last-child, .framer-QER0v .framer-n0jrms > :last-child, .framer-QER0v .framer-1ixjoj3 > :last-child, .framer-QER0v .framer-1j7p5sp > :last-child, .framer-QER0v .framer-1e7r2o5 > :last-child, .framer-QER0v .framer-1pctvtd > :last-child, .framer-QER0v .framer-1aer1kg > :last-child, .framer-QER0v .framer-1f76byv > :last-child, .framer-QER0v .framer-k1h0bl > :last-child, .framer-QER0v .framer-16l21r1 > :last-child, .framer-QER0v .framer-1fr7bz1 > :last-child, .framer-QER0v .framer-duvyzq > :last-child, .framer-QER0v .framer-h1fsz3 > :last-child, .framer-QER0v .framer-1ibmllf > :last-child, .framer-QER0v .framer-1o3j7wk > :last-child, .framer-QER0v .framer-dfx3ic > :last-child, .framer-QER0v .framer-15li2c2 > :last-child, .framer-QER0v .framer-1uolsxp > :last-child, .framer-QER0v .framer-ks80di > :last-child, .framer-QER0v .framer-y8urc2 > :last-child, .framer-QER0v .framer-38uu4x > :last-child, .framer-QER0v .framer-1e69nk5 > :last-child, .framer-QER0v .framer-svqjke > :last-child, .framer-QER0v .framer-a99mdd > :last-child, .framer-QER0v .framer-hp9dc4 > :last-child, .framer-QER0v .framer-yfqzis > :last-child, .framer-QER0v .framer-s4647h > :last-child, .framer-QER0v .framer-1xbp4dt > :last-child, .framer-QER0v .framer-9igmie > :last-child, .framer-QER0v .framer-riqs0c > :last-child, .framer-QER0v .framer-1tanxke > :last-child, .framer-QER0v .framer-1ceul42 > :last-child, .framer-QER0v .framer-1nskbzy > :last-child { margin-right: 0px; } .framer-QER0v .framer-1rwaj00 > *, .framer-QER0v .framer-bkm3u9 > *, .framer-QER0v .framer-86wsoy > *, .framer-QER0v .framer-uj9s43 > *, .framer-QER0v .framer-mbpf1y > *, .framer-QER0v .framer-1n2hvcm > *, .framer-QER0v .framer-glzwku > *, .framer-QER0v .framer-32a7c > *, .framer-QER0v .framer-1mg9tjx > *, .framer-QER0v .framer-17t8rc6 > *, .framer-QER0v .framer-1pctvtd > *, .framer-QER0v .framer-1f76byv > *, .framer-QER0v .framer-16l21r1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-QER0v .framer-3sw4uh > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-QER0v .framer-b4tukn > *, .framer-QER0v .framer-1xuaz76 > *, .framer-QER0v .framer-ycwpyu > *, .framer-QER0v .framer-1xkfxdo > *, .framer-QER0v .framer-dl87x5 > *, .framer-QER0v .framer-9e5bdn > *, .framer-QER0v .framer-18ercv7 > *, .framer-QER0v .framer-u6pjmz > *, .framer-QER0v .framer-1k9sita > *, .framer-QER0v .framer-3qfef1 > *, .framer-QER0v .framer-pcq866 > *, .framer-QER0v .framer-1l8j37j > *, .framer-QER0v .framer-1b98zhr > *, .framer-QER0v .framer-1y26nr4 > *, .framer-QER0v .framer-a3zbs6 > *, .framer-QER0v .framer-1h22yr5 > *, .framer-QER0v .framer-p1qmon > *, .framer-QER0v .framer-hff0fd > *, .framer-QER0v .framer-1dhp0bi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QER0v .framer-1qmu2z3 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-QER0v .framer-8nsbyf > *, .framer-QER0v .framer-1suq4kt > *, .framer-QER0v .framer-1dje0hp > *, .framer-QER0v .framer-1hnilpb > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-QER0v .framer-1p6wzlz > *, .framer-QER0v .framer-1giom6v > *, .framer-QER0v .framer-2cnm1q > *, .framer-QER0v .framer-d2kzrw > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-QER0v .framer-v6jak9 > *, .framer-QER0v .framer-1r4mljf > *, .framer-QER0v .framer-rqsjkk > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-QER0v .framer-x33www > *, .framer-QER0v .framer-zsckge > *, .framer-QER0v .framer-1xls72y > *, .framer-QER0v .framer-13zo5sl > *, .framer-QER0v .framer-155bow8 > *, .framer-QER0v .framer-1s21ssw > *, .framer-QER0v .framer-rdm983 > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-QER0v .framer-1h54nbv > *, .framer-QER0v .framer-f6a4th > *, .framer-QER0v .framer-ivn0om > *, .framer-QER0v .framer-19h9g7n > *, .framer-QER0v .framer-rn561y > *, .framer-QER0v .framer-10k7tyb > *, .framer-QER0v .framer-115i02g > *, .framer-QER0v .framer-1alfavb > *, .framer-QER0v .framer-1qow2bp > *, .framer-QER0v .framer-ryfij4 > *, .framer-QER0v .framer-1afy6h3 > *, .framer-QER0v .framer-wk0dox > *, .framer-QER0v .framer-1308ob0 > *, .framer-QER0v .framer-1400em8 > *, .framer-QER0v .framer-1ox1lq5 > *, .framer-QER0v .framer-dzdwuj > *, .framer-QER0v .framer-77yxr3 > *, .framer-QER0v .framer-10x9mnv > *, .framer-QER0v .framer-1ago3e5 > *, .framer-QER0v .framer-1fq8wxb > *, .framer-QER0v .framer-e5kp9x > *, .framer-QER0v .framer-x7vwyf > *, .framer-QER0v .framer-19oag9h > *, .framer-QER0v .framer-x5swys > *, .framer-QER0v .framer-1ygroui > *, .framer-QER0v .framer-15a1kfo > *, .framer-QER0v .framer-1lg1ql9 > *, .framer-QER0v .framer-2u246y > *, .framer-QER0v .framer-19amnzm > *, .framer-QER0v .framer-n0jrms > *, .framer-QER0v .framer-1ixjoj3 > *, .framer-QER0v .framer-1j7p5sp > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-QER0v .framer-1p2ecgj > *, .framer-QER0v .framer-1afh6d7 > *, .framer-QER0v .framer-nproe > *, .framer-QER0v .framer-1e7r2o5 > * { margin: 0px; margin-left: calc(19px / 2); margin-right: calc(19px / 2); } .framer-QER0v .framer-1nuu8gf > *, .framer-QER0v .framer-5gpge2 > *, .framer-QER0v .framer-1jfksjn > *, .framer-QER0v .framer-2dmzx3 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-QER0v .framer-1qxxu81 > *, .framer-QER0v .framer-iigyw6 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-QER0v .framer-y8urc2 > *, .framer-QER0v .framer-38uu4x > *, .framer-QER0v .framer-1e69nk5 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",'.framer-QER0v[data-border=\"true\"]::after, .framer-QER0v [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: 1000px) and (max-width: 1439px) { .framer-QER0v.framer-72rtr7 { width: 1000px; } .framer-QER0v .framer-188c6h8 { padding: 100px 30px 100px 30px; } .framer-QER0v .framer-ycwpyu { gap: 0px; height: 556px; max-width: 100%; width: 835px; } .framer-QER0v .framer-pc5po5-container { height: 100%; width: 100%; } .framer-QER0v .framer-1xkfxdo { max-width: unset; padding: 100px 0px 100px 0px; } .framer-QER0v .framer-17r159g { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; padding: 0px; width: min-content; } .framer-QER0v .framer-e8phdg { left: unset; max-width: 100%; position: relative; right: unset; top: unset; width: 920px; } .framer-QER0v .framer-1ldwgpf { bottom: unset; left: unset; position: relative; transform: unset; } .framer-QER0v .framer-rqsjkk, .framer-QER0v .framer-155bow8 { gap: 14px; } .framer-QER0v .framer-1wlqrmw { width: 315px; } .framer-QER0v .framer-106e4g4 { width: var(--framer-aspect-ratio-supported, 68px); } .framer-QER0v .framer-1bl8t8e { width: 436px; } .framer-QER0v .framer-ks80di { height: 300px; } .framer-QER0v .framer-1k9sita, .framer-QER0v .framer-3qfef1, .framer-QER0v .framer-pcq866 { width: 100px; } .framer-QER0v .framer-3fdtyl { aspect-ratio: 0.9166666666666666 / 1; height: var(--framer-aspect-ratio-supported, 40px); width: 37px; } .framer-QER0v .framer-1qedu3b { aspect-ratio: 0.7333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 40px); width: 29px; } .framer-QER0v .framer-w0ovak { aspect-ratio: 1 / 1; height: 40px; width: var(--framer-aspect-ratio-supported, 40px); } .framer-QER0v .framer-1up1fmh { padding: 80px 0px 120px 60px; } .framer-QER0v .framer-90y4ef { width: 523px; } .framer-QER0v .framer-1xa6tyh-container, .framer-QER0v .framer-12mmfyi-container { order: 0; } .framer-QER0v .framer-1b101dn, .framer-QER0v .framer-kqg3ly { order: 1; } .framer-QER0v .framer-1hcusmx { height: 25px; } .framer-QER0v .framer-1gkw4yu { height: 70%; } .framer-QER0v .framer-1sfi2yl { width: 305px; } .framer-QER0v .framer-s3preo { aspect-ratio: 1.7206703910614525 / 1; height: var(--framer-aspect-ratio-supported, 244px); width: 420px; } .framer-QER0v .framer-1xxx5bd { background-color: unset; } .framer-QER0v .framer-bowsh9 { max-width: 100%; } .framer-QER0v .framer-gogiz8, .framer-QER0v .framer-osr9vf { height: auto; white-space: pre; width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QER0v .framer-ycwpyu, .framer-QER0v .framer-17r159g, .framer-QER0v .framer-rqsjkk, .framer-QER0v .framer-155bow8 { gap: 0px; } .framer-QER0v .framer-ycwpyu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-QER0v .framer-ycwpyu > :first-child, .framer-QER0v .framer-17r159g > :first-child, .framer-QER0v .framer-rqsjkk > :first-child, .framer-QER0v .framer-155bow8 > :first-child { margin-top: 0px; } .framer-QER0v .framer-ycwpyu > :last-child, .framer-QER0v .framer-17r159g > :last-child, .framer-QER0v .framer-rqsjkk > :last-child, .framer-QER0v .framer-155bow8 > :last-child { margin-bottom: 0px; } .framer-QER0v .framer-17r159g > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QER0v .framer-rqsjkk > *, .framer-QER0v .framer-155bow8 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }}\",\"@media (min-width: 600px) and (max-width: 999px) { .framer-QER0v.framer-72rtr7 { width: 600px; } .framer-QER0v .framer-ebc0fu-container { height: auto; left: 50%; top: 0px; transform: translateX(-50%); width: 98%; } .framer-QER0v .framer-1q3r9q { height: 18px; } .framer-QER0v .framer-b4tukn { bottom: -35px; } .framer-QER0v .framer-1qmu2z3 { flex: 1 0 0px; height: 1px; order: 0; } .framer-QER0v .framer-71zyhy-container { height: 100px; width: 100px; } .framer-QER0v .framer-bdmmk0 { max-width: 100%; } .framer-QER0v .framer-1qz3mzu { height: 43px; } .framer-QER0v .framer-1fs3ilv { height: 43px; top: 42px; } .framer-QER0v .framer-am9bu0 { height: 43px; top: 81px; } .framer-QER0v .framer-c21f9s { height: 43px; top: 116px; } .framer-QER0v .framer-1wto5ic { width: 570px; } .framer-QER0v .framer-188c6h8 { padding: 100px 30px 100px 30px; } .framer-QER0v .framer-ycwpyu { gap: 0px; height: 428px; max-width: 100%; width: 680px; } .framer-QER0v .framer-pc5po5-container { height: 100%; width: 100%; } .framer-QER0v .framer-1xkfxdo, .framer-QER0v .framer-1xbp4dt { padding: 100px 0px 100px 0px; } .framer-QER0v .framer-17r159g { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; padding: 0px; width: min-content; } .framer-QER0v .framer-e8phdg { left: unset; max-width: 95%; position: relative; right: unset; top: unset; width: 542px; } .framer-QER0v .framer-1ldwgpf { bottom: unset; flex-wrap: wrap; left: unset; position: relative; transform: unset; } .framer-QER0v .framer-1suq4kt { min-height: unset; width: 684px; } .framer-QER0v .framer-1nuu8gf, .framer-QER0v .framer-5gpge2 { order: 1; } .framer-QER0v .framer-pvbumk, .framer-QER0v .framer-1dbbr8s, .framer-QER0v .framer-1qc1l4j, .framer-QER0v .framer-6o4kt0 { order: 0; } .framer-QER0v .framer-13g9ix6 { min-height: unset; min-width: unset; } .framer-QER0v .framer-13zo5sl, .framer-QER0v .framer-1r4mljf { gap: 14px; order: 1; } .framer-QER0v .framer-sjojo2 { width: 315px; } .framer-QER0v .framer-ar210x { width: var(--framer-aspect-ratio-supported, 68px); } .framer-QER0v .framer-xy0wog { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-QER0v .framer-1hnilpb { padding: 60px 0px 60px 30px; } .framer-QER0v .framer-1bl8t8e { width: 436px; } .framer-QER0v .framer-ks80di { --border-bottom-width: 1px; --border-left-width: 0px; --border-right-width: 0px; --border-top-width: 1px; flex-direction: column; height: 300px; width: 100%; } .framer-QER0v .framer-1k9sita, .framer-QER0v .framer-3qfef1, .framer-QER0v .framer-pcq866 { flex: 1 0 0px; height: 1px; width: 100px; } .framer-QER0v .framer-3fdtyl { aspect-ratio: 0.9166666666666666 / 1; height: var(--framer-aspect-ratio-supported, 40px); width: 37px; } .framer-QER0v .framer-n09gh4, .framer-QER0v .framer-11e3utz { height: 1px; width: 100%; } .framer-QER0v .framer-1qedu3b { height: 40px; } .framer-QER0v .framer-w0ovak { aspect-ratio: 1 / 1; height: 40px; width: var(--framer-aspect-ratio-supported, 40px); } .framer-QER0v .framer-1up1fmh { padding: 80px 30px 120px 30px; } .framer-QER0v .framer-90y4ef { width: 523px; } .framer-QER0v .framer-1hcusmx { height: 25px; } .framer-QER0v .framer-1gkw4yu { height: 50%; } .framer-QER0v .framer-1n663lq { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 50px; justify-content: flex-start; padding: 0px 30px 0px 30px; } .framer-QER0v .framer-1sfi2yl { width: 305px; } .framer-QER0v .framer-riqs0c { width: 100%; } .framer-QER0v .framer-s3preo { aspect-ratio: 1.7159763313609468 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 338px); max-width: 400px; width: 1px; } .framer-QER0v .framer-1xxx5bd { background-color: unset; } .framer-QER0v .framer-bowsh9 { max-width: 95%; width: 542px; } .framer-QER0v .framer-1akgvui-container { max-width: 90%; } .framer-QER0v .framer-1dhp0bi { padding: 100px 0px 100px 30px; } .framer-QER0v .framer-1xadjhu-container { height: 399px; top: 73px; width: 399px; } .framer-QER0v .framer-ph1dpe { z-index: 2; } .framer-QER0v .framer-gogiz8, .framer-QER0v .framer-osr9vf { height: auto; white-space: pre; width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QER0v .framer-ycwpyu, .framer-QER0v .framer-17r159g, .framer-QER0v .framer-13zo5sl, .framer-QER0v .framer-1r4mljf, .framer-QER0v .framer-xy0wog, .framer-QER0v .framer-ks80di, .framer-QER0v .framer-1n663lq { gap: 0px; } .framer-QER0v .framer-ycwpyu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-QER0v .framer-ycwpyu > :first-child, .framer-QER0v .framer-17r159g > :first-child, .framer-QER0v .framer-13zo5sl > :first-child, .framer-QER0v .framer-1r4mljf > :first-child, .framer-QER0v .framer-ks80di > :first-child, .framer-QER0v .framer-1n663lq > :first-child { margin-top: 0px; } .framer-QER0v .framer-ycwpyu > :last-child, .framer-QER0v .framer-17r159g > :last-child, .framer-QER0v .framer-13zo5sl > :last-child, .framer-QER0v .framer-1r4mljf > :last-child, .framer-QER0v .framer-ks80di > :last-child, .framer-QER0v .framer-1n663lq > :last-child { margin-bottom: 0px; } .framer-QER0v .framer-17r159g > *, .framer-QER0v .framer-ks80di > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QER0v .framer-13zo5sl > *, .framer-QER0v .framer-1r4mljf > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-QER0v .framer-xy0wog > *, .framer-QER0v .framer-xy0wog > :first-child, .framer-QER0v .framer-xy0wog > :last-child { margin: 0px; } .framer-QER0v .framer-1n663lq > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}\",\"@media (max-width: 599px) { .framer-QER0v.framer-72rtr7 { width: 390px; } .framer-QER0v .framer-ebc0fu-container { height: auto; left: 50%; transform: translateX(-50%); } .framer-QER0v .framer-1g1g3zn, .framer-QER0v .framer-19xybet, .framer-QER0v .framer-598o2u, .framer-QER0v .framer-10so3vr, .framer-QER0v .framer-1uolsxp, .framer-QER0v .framer-s4647h, .framer-QER0v .framer-1tanxke, .framer-QER0v .framer-1ceul42 { flex-direction: column; } .framer-QER0v .framer-zz6wrb { height: 844px; } .framer-QER0v .framer-x2x848 { height: auto; width: 100%; } .framer-QER0v .framer-zuszqj, .framer-QER0v .framer-1bl8t8e, .framer-QER0v .framer-90y4ef, .framer-QER0v .framer-riqs0c { width: 100%; } .framer-QER0v .framer-1q3r9q { height: 18px; } .framer-QER0v .framer-nco99y { height: 150px; } .framer-QER0v .framer-1qmu2z3 { flex: 1 0 0px; height: 1px; order: 0; } .framer-QER0v .framer-bdmmk0 { max-width: 100%; } .framer-QER0v .framer-1qz3mzu { height: 25%; } .framer-QER0v .framer-1fs3ilv { height: 25%; top: 30px; } .framer-QER0v .framer-am9bu0 { height: 25%; top: 60px; } .framer-QER0v .framer-c21f9s { height: 26%; top: 92px; } .framer-QER0v .framer-1wto5ic { width: 371px; } .framer-QER0v .framer-188c6h8 { padding: 100px 30px 100px 30px; } .framer-QER0v .framer-16vhjmy { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-QER0v .framer-ycwpyu { gap: 0px; height: 220px; max-width: 100%; width: 310px; } .framer-QER0v .framer-pc5po5-container { height: 100%; width: 100%; } .framer-QER0v .framer-1xkfxdo, .framer-QER0v .framer-1xbp4dt { padding: 100px 0px 100px 0px; } .framer-QER0v .framer-17r159g { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; padding: 0px; width: min-content; } .framer-QER0v .framer-e8phdg { left: unset; max-width: 95%; position: relative; right: unset; top: unset; width: 542px; } .framer-QER0v .framer-1ldwgpf { bottom: unset; flex-wrap: wrap; left: unset; position: relative; transform: unset; } .framer-QER0v .framer-1jfksjn, .framer-QER0v .framer-2dmzx3, .framer-QER0v .framer-1qxxu81, .framer-QER0v .framer-iigyw6 { order: 1; } .framer-QER0v .framer-1lqmfgh, .framer-QER0v .framer-pwlshp, .framer-QER0v .framer-8000vu, .framer-QER0v .framer-1vxeqr { order: 0; } .framer-QER0v .framer-bf8y3n { width: var(--framer-aspect-ratio-supported, 68px); } .framer-QER0v .framer-xy0wog { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-QER0v .framer-1hnilpb { padding: 60px 0px 60px 30px; width: 100%; } .framer-QER0v .framer-ks80di { --border-bottom-width: 1px; --border-left-width: 0px; --border-right-width: 0px; --border-top-width: 1px; flex-direction: column; height: 300px; width: 100%; } .framer-QER0v .framer-1k9sita, .framer-QER0v .framer-3qfef1, .framer-QER0v .framer-pcq866 { flex: 1 0 0px; height: 1px; width: 100px; } .framer-QER0v .framer-3fdtyl { aspect-ratio: 0.9166666666666666 / 1; height: var(--framer-aspect-ratio-supported, 40px); width: 37px; } .framer-QER0v .framer-n09gh4, .framer-QER0v .framer-11e3utz { height: 1px; width: 100%; } .framer-QER0v .framer-1qedu3b { aspect-ratio: 0.7333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 40px); width: 29px; } .framer-QER0v .framer-w0ovak { aspect-ratio: 1 / 1; height: 40px; width: var(--framer-aspect-ratio-supported, 40px); } .framer-QER0v .framer-1up1fmh { padding: 80px 30px 120px 30px; width: 100%; } .framer-QER0v .framer-ne40hy { height: 50px; } .framer-QER0v .framer-1l6qhhp { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; } .framer-QER0v .framer-svqjke, .framer-QER0v .framer-a99mdd, .framer-QER0v .framer-yfqzis { align-self: stretch; height: min-content; width: auto; } .framer-QER0v .framer-hp9dc4 { align-self: unset; } .framer-QER0v .framer-1hcusmx { height: 25px; } .framer-QER0v .framer-1gkw4yu { height: 40%; } .framer-QER0v .framer-1n663lq { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 50px; justify-content: flex-start; padding: 0px 30px 0px 30px; } .framer-QER0v .framer-1sfi2yl { width: 305px; } .framer-QER0v .framer-s3preo { aspect-ratio: 1.5761421319796953 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 197px); width: 1px; } .framer-QER0v .framer-1xxx5bd { background-color: unset; } .framer-QER0v .framer-bowsh9 { max-width: 95%; width: 542px; } .framer-QER0v .framer-1akgvui-container { max-width: 90%; } .framer-QER0v .framer-1dhp0bi { padding: 100px 0px 100px 30px; } .framer-QER0v .framer-1xadjhu-container { height: 399px; top: 73px; width: 399px; } .framer-QER0v .framer-ph1dpe { z-index: 2; } .framer-QER0v .framer-gogiz8, .framer-QER0v .framer-osr9vf { height: auto; white-space: pre; width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QER0v .framer-1g1g3zn, .framer-QER0v .framer-19xybet, .framer-QER0v .framer-598o2u, .framer-QER0v .framer-ycwpyu, .framer-QER0v .framer-10so3vr, .framer-QER0v .framer-17r159g, .framer-QER0v .framer-1uolsxp, .framer-QER0v .framer-xy0wog, .framer-QER0v .framer-ks80di, .framer-QER0v .framer-1l6qhhp, .framer-QER0v .framer-s4647h, .framer-QER0v .framer-1n663lq, .framer-QER0v .framer-1tanxke, .framer-QER0v .framer-1ceul42 { gap: 0px; } .framer-QER0v .framer-1g1g3zn > *, .framer-QER0v .framer-19xybet > *, .framer-QER0v .framer-598o2u > *, .framer-QER0v .framer-10so3vr > *, .framer-QER0v .framer-17r159g > *, .framer-QER0v .framer-1uolsxp > *, .framer-QER0v .framer-ks80di > *, .framer-QER0v .framer-s4647h > *, .framer-QER0v .framer-1tanxke > *, .framer-QER0v .framer-1ceul42 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QER0v .framer-1g1g3zn > :first-child, .framer-QER0v .framer-19xybet > :first-child, .framer-QER0v .framer-598o2u > :first-child, .framer-QER0v .framer-ycwpyu > :first-child, .framer-QER0v .framer-10so3vr > :first-child, .framer-QER0v .framer-17r159g > :first-child, .framer-QER0v .framer-1uolsxp > :first-child, .framer-QER0v .framer-ks80di > :first-child, .framer-QER0v .framer-1l6qhhp > :first-child, .framer-QER0v .framer-s4647h > :first-child, .framer-QER0v .framer-1n663lq > :first-child, .framer-QER0v .framer-1tanxke > :first-child, .framer-QER0v .framer-1ceul42 > :first-child { margin-top: 0px; } .framer-QER0v .framer-1g1g3zn > :last-child, .framer-QER0v .framer-19xybet > :last-child, .framer-QER0v .framer-598o2u > :last-child, .framer-QER0v .framer-ycwpyu > :last-child, .framer-QER0v .framer-10so3vr > :last-child, .framer-QER0v .framer-17r159g > :last-child, .framer-QER0v .framer-1uolsxp > :last-child, .framer-QER0v .framer-ks80di > :last-child, .framer-QER0v .framer-1l6qhhp > :last-child, .framer-QER0v .framer-s4647h > :last-child, .framer-QER0v .framer-1n663lq > :last-child, .framer-QER0v .framer-1tanxke > :last-child, .framer-QER0v .framer-1ceul42 > :last-child { margin-bottom: 0px; } .framer-QER0v .framer-ycwpyu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-QER0v .framer-xy0wog > *, .framer-QER0v .framer-xy0wog > :first-child, .framer-QER0v .framer-xy0wog > :last-child { margin: 0px; } .framer-QER0v .framer-1l6qhhp > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-QER0v .framer-1n663lq > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10246.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"C1LBoBDxd\":{\"layout\":[\"fixed\",\"auto\"]},\"AXwHhOdIX\":{\"layout\":[\"fixed\",\"auto\"]},\"OFyMZHFxL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"kzaIpUCLM\":{\"pattern\":\":kzaIpUCLM\",\"name\":\"trigger1\"},\"MevVSiW87\":{\"pattern\":\":MevVSiW87\",\"name\":\"trigger2\"},\"kvW9Ku937\":{\"pattern\":\":kvW9Ku937\",\"name\":\"trigger3\"},\"QaXaDAwZV\":{\"pattern\":\":QaXaDAwZV\",\"name\":\"trigger4\"},\"d9hKI_IeC\":{\"pattern\":\":d9hKI_IeC\",\"name\":\"review\"},\"Yt4QX2LZ4\":{\"pattern\":\":Yt4QX2LZ4\",\"name\":\"stats\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-QER0v\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:10246.5,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavigationFonts,...ButtonFonts,...WaveFonts,...TalkingMicFonts,...LogosFonts,...YouTubeFonts,...RightSvgWiresFonts,...LeftSvgWiresFonts,...AnimatedPathsFonts,...CounterFonts,...SupportTabsFonts,...GlobeFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1440\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"kzaIpUCLM\\\":{\\\"pattern\\\":\\\":kzaIpUCLM\\\",\\\"name\\\":\\\"trigger1\\\"},\\\"MevVSiW87\\\":{\\\"pattern\\\":\\\":MevVSiW87\\\",\\\"name\\\":\\\"trigger2\\\"},\\\"kvW9Ku937\\\":{\\\"pattern\\\":\\\":kvW9Ku937\\\",\\\"name\\\":\\\"trigger3\\\"},\\\"QaXaDAwZV\\\":{\\\"pattern\\\":\\\":QaXaDAwZV\\\",\\\"name\\\":\\\"trigger4\\\"},\\\"d9hKI_IeC\\\":{\\\"pattern\\\":\\\":d9hKI_IeC\\\",\\\"name\\\":\\\"review\\\"},\\\"Yt4QX2LZ4\\\":{\\\"pattern\\\":\\\":Yt4QX2LZ4\\\",\\\"name\\\":\\\"stats\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C1LBoBDxd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AXwHhOdIX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OFyMZHFxL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"10246.5\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["CounterStyles", "Counter", "props", "start", "end", "speed", "gapSize", "prefixText", "suffixText", "prefixFont", "suffixFont", "prefixColor", "suffixColor", "loop", "decimalSeparatorType", "textSize", "selectedFont", "textColor", "startOnViewport", "restartOnViewport", "incrementType", "count", "setCount", "ye", "isVisible", "setIsVisible", "containerRef", "pe", "ue", "observer", "entries", "entry", "updateCount", "increment", "prevCount", "nextCount", "intervalId", "formatNumber", "number", "u", "motion", "p", "addPropertyControls", "ControlType", "t", "e", "r", "n", "s", "a", "o", "h", "u", "f", "c", "l", "p", "m", "i", "window", "phenomenon_default", "a", "o", "t", "i", "f", "r", "l", "c", "n", "A", "g", "v", "s", "d", "u", "m", "x", "U", "e", "D", "_", "y", "phenomenon_default", "Globe", "props", "background", "baseColor", "glowColor", "isDraggable", "dragOptions", "speed", "theta", "phi", "dark", "diffuse", "maxSamples", "mapBrightness", "markerSize", "markerArray", "markerColor", "scale", "alignment", "maxWidth", "offset", "offsetX", "offsetY", "stiffness", "damping", "mass", "canvasRef", "pe", "pointerInteracting", "pointerInteractionMovement", "isCanvas", "RenderTarget", "r", "useSpring", "fadeMask", "ue", "phiValue", "width", "onResize", "window", "baseConvert", "convertRGB", "glowConvert", "markerConvert", "globe", "D", "marker", "state", "p", "flexStyles", "e", "delta", "dp", "dpOffset", "dpDrag", "addPropertyControls", "ControlType", "color", "Color", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "dfFMIHtv7", "GvbP600LY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapd34usq", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "Framerp1rpat8Pu", "withCSS", "p1rpat8Pu_default", "addPropertyControls", "ControlType", "addFonts", "TabButtonFonts", "getFonts", "p1rpat8Pu_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "GvbP600LYr9yn8j", "args", "GvbP600LY1rk2rsg", "GvbP600LYdwldj3", "GvbP600LYv1rtsy", "GvbP600LYetd4td", "onTapetd4td", "onTap1rk2rsg", "onTapv1rtsy", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "SVG", "css", "FramerRaLKdC813", "withCSS", "RaLKdC813_default", "addPropertyControls", "ControlType", "addFonts", "t", "n", "o", "s", "c", "e", "l", "r", "fastFloor", "a", "i", "f", "createNoise3D", "t", "n", "buildPermutationTable", "o", "i", "s", "l", "r", "a", "f", "u", "m", "w", "c", "y", "fastFloor", "A", "F", "b", "e", "p", "D", "d", "h", "M", "N", "P", "T", "q", "x", "U", "g", "j", "k", "v", "z", "B", "C", "E", "G", "H", "I", "J", "K", "L", "O", "Q", "R", "buildPermutationTable", "t", "o", "s", "n", "c", "Wave", "props", "canvasRef", "pe", "ue", "link", "canvas", "ctx", "noise3D", "createNoise3D", "animationFrameId", "resizeCanvas", "window", "hsl", "h", "s", "l", "a", "animate", "time", "xCount", "yCount", "iXCount", "iYCount", "grad", "hueA", "hueB", "j", "tj", "c", "i", "t", "n", "x", "y", "p", "NavigationFonts", "getFonts", "WrTc8FKb5_default", "ButtonFonts", "adkc3k666_default", "WaveFonts", "Wave", "TalkingMicFonts", "TalkingMic", "LogosFonts", "uzQIahnZt_default", "MotionDivWithFX", "withFX", "motion", "YouTubeFonts", "Youtube", "RightSvgWiresFonts", "RightSvgWires", "LeftSvgWiresFonts", "LeftSvgWires", "AnimatedPathsFonts", "AnimatedPaths", "CounterFonts", "Counter", "SupportTabsFonts", "RaLKdC813_default", "GlobeFonts", "Globe", "FooterFonts", "bzMsVK8wq_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "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", "isDisplayed", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "elementId5", "ref6", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "Image2", "getLoadingLazyAtYPosition", "RichText2", "x", "SVG", "ResolveLinks", "resolvedLinks", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
