{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.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/5pwH39u3cOA0q17Io6w8/IMnRB6WO0LxXHMVSR2AS/RVsI6X98s.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.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 (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Globe from\"https://framerusercontent.com/modules/xFhv3ETdRBLjJusGaZ1P/d9ZONLqTB9uCj5kbWKll/Globe.js\";import Button from\"#framer/local/canvasComponent/jHzyOF96c/jHzyOF96c.js\";import NavigationV3,*as NavigationV3Info from\"#framer/local/canvasComponent/kABDMUC8g/kABDMUC8g.js\";import SubNavAbout from\"#framer/local/canvasComponent/s04IiVmco/s04IiVmco.js\";import TestimonialCustomerStory from\"#framer/local/canvasComponent/uAQjOVSdk/uAQjOVSdk.js\";import MastheadTertiaryPages from\"#framer/local/canvasComponent/wo8h0U10P/wo8h0U10P.js\";import FooterV2 from\"#framer/local/codeFile/ry2ilVy/FooterV2.js\";import{withNavClass}from\"#framer/local/codeFile/Va22eXn/OverridesNav.js\";import*as sharedStyle1 from\"#framer/local/css/dUg5HNnEh/dUg5HNnEh.js\";import*as sharedStyle from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle2 from\"#framer/local/css/yiSRStBrc/yiSRStBrc.js\";import metadataProvider from\"#framer/local/webPageMetadata/RVsI6X98s/RVsI6X98s.js\";const NavigationV3Fonts=getFonts(NavigationV3);const NavigationV3WithNavClass1cn0dtsWithMappedReactProps9zght=withMappedReactProps(withCodeBoundaryForOverrides(NavigationV3,{nodeId:\"q7_kEcvSU\",override:withNavClass,scopeId:\"RVsI6X98s\"}),NavigationV3Info);const MotionDivWithNavClass3aqgm6=withCodeBoundaryForOverrides(motion.div,{nodeId:\"d7na7urf5\",override:withNavClass,scopeId:\"RVsI6X98s\"});const SubNavAboutFonts=getFonts(SubNavAbout);const MastheadTertiaryPagesFonts=getFonts(MastheadTertiaryPages);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const TestimonialCustomerStoryFonts=getFonts(TestimonialCustomerStory);const YouTubeFonts=getFonts(YouTube);const GlobeFonts=getFonts(Globe);const ButtonFonts=getFonts(Button);const FooterV2Fonts=getFonts(FooterV2);const breakpoints={A_2efABlJ:\"(min-width: 950px) and (max-width: 1099px)\",CASsis15F:\"(min-width: 1100px) and (max-width: 1439px)\",I3cYdK9tT:\"(min-width: 1440px)\",jfGF5vlXA:\"(max-width: 809px)\",YII0Kjxu9:\"(min-width: 810px) and (max-width: 949px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-XiBNR\";const variantClassNames={A_2efABlJ:\"framer-v-p7te60\",CASsis15F:\"framer-v-1x2gyla\",I3cYdK9tT:\"framer-v-1tpzw0m\",jfGF5vlXA:\"framer-v-hqmgcj\",YII0Kjxu9:\"framer-v-1bf0b47\"};const transition1={delay:0,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 1440\":\"I3cYdK9tT\",\"Phone 390\":\"jfGF5vlXA\",\"Tablet 1100\":\"CASsis15F\",\"Tablet 810\":\"YII0Kjxu9\",\"Tablet 950\":\"A_2efABlJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"I3cYdK9tT\"};};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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const AASbSEYM_3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"Kqi0LcHyM\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"YII0Kjxu9\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"YII0Kjxu9\",\"jfGF5vlXA\",\"A_2efABlJ\"].includes(baseVariant))return false;return true;};const elementId1=useRouteElementId(\"lA9FfS841\");const ref2=React.useRef(null);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"I3cYdK9tT\",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-1tpzw0m\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(MotionDivWithNavClass3aqgm6,{className:\"framer-3aqgm6\",\"data-framer-name\":\"*NAVIGATION*\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A_2efABlJ:{y:undefined},CASsis15F:{y:undefined},jfGF5vlXA:{y:undefined},YII0Kjxu9:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cn0dts-container\",nodeId:\"q7_kEcvSU\",rendersWithMotion:true,scopeId:\"RVsI6X98s\",children:/*#__PURE__*/_jsx(NavigationV3WithNavClass1cn0dtsWithMappedReactProps9zght,{height:\"100%\",id:\"q7_kEcvSU\",layoutId:\"q7_kEcvSU\",style:{height:\"100%\",width:\"100%\"},V9roEbMg8:\"rgb(255, 255, 255)\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g62g7-container\",nodeId:\"Q5SWaVGtB\",scopeId:\"RVsI6X98s\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jfGF5vlXA:{variant:\"SaS6Ju0ii\"},YII0Kjxu9:{variant:\"SaS6Ju0ii\"}},children:/*#__PURE__*/_jsx(SubNavAbout,{height:\"100%\",id:\"Q5SWaVGtB\",layoutId:\"Q5SWaVGtB\",style:{width:\"100%\"},variant:\"jRDmDuWid\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oe39p4\",\"data-framer-name\":\"CONTENT\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A_2efABlJ:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:undefined},CASsis15F:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:undefined},jfGF5vlXA:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:undefined},YII0Kjxu9:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:212,width:`calc((${componentViewport?.width||\"100vw\"} - 80px) * 0.7)`,y:(componentViewport?.y||0)+0+165+100+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2qzeks-container\",nodeId:\"QyalgH1zj\",scopeId:\"RVsI6X98s\",children:/*#__PURE__*/_jsx(MastheadTertiaryPages,{height:\"100%\",id:\"QyalgH1zj\",layoutId:\"QyalgH1zj\",LwXLVwVD2:\"About us\",style:{width:\"100%\"},tFz4dggPD:\"We're on a mission to help professional designers earn a living doing work they take pride in.\",uKKl8NHyZ:\"The world\u2019s destination\\nfor design.\",variant:\"kZG9c8ii4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dtfrwu\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A_2efABlJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2483,intrinsicWidth:4095,pixelHeight:3585,pixelWidth:4780,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg 4780w\"}},CASsis15F:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2483,intrinsicWidth:4095,pixelHeight:3585,pixelWidth:4780,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg 4780w\"}},jfGF5vlXA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2483,intrinsicWidth:4095,pixelHeight:3585,pixelWidth:4780,sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,src:\"https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg 4780w\"}},YII0Kjxu9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2483,intrinsicWidth:4095,pixelHeight:3585,pixelWidth:4780,sizes:`min(${componentViewport?.width||\"100vw\"} - 64px, 1200px)`,src:\"https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg 4780w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2483,intrinsicWidth:4095,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+165+100+293),pixelHeight:3585,pixelWidth:4780,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/l7zkKnvYVjJN3GMpaepXk4PFoiY.jpg 4780w\"},className:\"framer-16ep3vi\",\"data-framer-name\":\"Masthead Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mlsokg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wvvexk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5oe7pc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A_2efABlJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Over 1 trillion pixels shared. What are you working on?\"})})},jfGF5vlXA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Over 1 trillion pixels shared. What are you working on?\"})})},YII0Kjxu9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Over 1 trillion pixels shared. What are you working on?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:[\"Over trillions pixels showcased.\",/*#__PURE__*/_jsx(\"br\",{}),\"What are you working on?\"]})}),className:\"framer-1ctf19j\",\"data-framer-name\":\"Join the 1,041+ Academy graduates and land your dream design role at companies like;\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kgsitp\",\"data-styles-preset\":\"dUg5HNnEh\",style:{\"--framer-text-alignment\":\"left\"},children:\"Hundreds of millions of people look for design inspiration and feedback on Dribbble. We help players like you share small screenshots (shots) to show off your current projects, boost your portfolio, and love what you do\u2014no matter what kind of creative professional you are.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kgsitp\",\"data-styles-preset\":\"dUg5HNnEh\",style:{\"--framer-text-alignment\":\"left\"},children:\"Founded in 2009, we are a bootstrapped and profitable company helping design talent share, grow, and get hired by over tens of thousands of today\u2019s most innovative brands around the world.\"})]}),className:\"framer-7qajn7\",\"data-framer-name\":\"Join the 1,041+ Academy graduates and land your dream design role at companies like;\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1joi07y\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01vbmEtU2FucyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Mona-Sans SemiBold\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-42a81652-176d-43c8-8374-e0fa593a8005, rgb(110, 109, 122))\"},children:\"AS SEEN ON\"})}),className:\"framer-18he3p6\",\"data-framer-appear-id\":\"18he3p6\",\"data-framer-name\":\"DRIBBBLE PRO\",fonts:[\"CUSTOM;Mona-Sans SemiBold\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1btspxw\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ivbat3\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:42,intrinsicWidth:295,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xml:space=\"preserve\" width=\"295\" height=\"42\"><rect width=\"100%\" height=\"100%\" fill=\"none\"/><path d=\"M259.5 5.5c0-2.9.9-3.9 2.4-3.9s2.7.6 4.1 3.9l8.5 19.3V37c0 2.9-1.2 3.7-4.5 4.1v.8h15.7v-.8c-3.4-.4-4.5-1.3-4.5-4.1V24.8l8.2-18.6c1.6-3.6 3.2-4.4 5.6-4.8V.6h-11.5v.8c3.9.4 5.3 1.5 4.2 4.1L280.5 22l-7.4-16.9c-1-2.3-.4-3 3.9-3.6V.7h-24.7v.8c3.9.6 5.1 1.3 5.1 4.1v22.6L239.3.7h-8.9v.8c2.9.4 3.8 1.3 3.8 4.1v31.5c0 2.9-.8 3.9-1.8 3.9-.9 0-1.4-.4-2.7-3.9L216.3.5h-.8l-12.9 35c-1.4 3.9-3.6 5.2-5.8 5.7v.8h11.8v-.8c-4.1-.4-5.4-2-4.5-4.6l2.9-8h12.2l2.8 7.5c1.2 3.4.5 4.4-3 5v.8h22.4v-.8c-3.9-.6-5.1-1.3-5.1-4.1V8.8L258.2 42h1.3V5.5zM101.6 21.2c0-12.8 6.1-19.5 13.2-19.5 4.2 0 6.9.9 8.5 2.6 1.2 1.2 2.1 2.9 3.1 5.6h.8V1.3C123.1.5 119.4 0 115.7 0 105 0 93.9 6.9 93.9 21.2S105 42.4 115 42.4c4.4 0 8.3-.7 12-1.8l1.2-8.1-.7-.2c-.9 1.7-2 3.2-3.2 4.5-2.6 2.6-6.1 4-9.6 4-6.8-.1-13.1-6.6-13.1-19.6zm88.7 1.2c-.9 0-2.1-.1-3.3-.3v-20h3.3c5.5 0 7.9 2.9 7.9 10.1 0 7.3-2.5 10.2-7.9 10.2zM61.8.6v9.9h.8c1.2-6.3 3.7-8.3 7.9-8.3h2V37c0 2.9-1.2 3.7-4.5 4.1v.8h15.7v-.8c-3.4-.4-4.5-1.3-4.5-4.1V2.1h2c4.2 0 6.7 2 7.9 8.3h.8V.5H61.8zM49.3 42.4c6.8 0 14-3.9 14-11.9 0-4.7-2.5-8.6-6.9-11l-7.8-4.3c-4.1-2.3-5.3-4.4-5.3-7.4 0-3.4 2.5-6.1 7.2-6.1 2.3 0 4 .6 5.4 1.9 1.2 1.2 2.4 3.2 3.5 6.8h.7V1.3C57.3.5 54.4 0 51 0c-6.7 0-11.7 4.2-11.7 11.3 0 4.5 2.5 8.6 6.6 11l7.2 4c4.1 2.3 5.4 4.5 5.4 7.8 0 3.9-4 6.7-8.4 6.7-2.9 0-5.3-1-7-2.7-1.1-1.1-2.3-2.8-3.1-5h4.7v-.8c-1.3-.3-2.1-.5-3.2-3.1L32.3 7.3h-.8l-9 21.4c-1.2 2.9-2 3.4-3.4 3.6v.8h8v-.8c-2.9-.3-3.7-1.7-3-3.5l1.4-3.4h8.1l1.8 4.2c.8 1.9-.4 2.4-3.3 2.6v.8h6.4v7.9c3.2.9 7.3 1.5 10.8 1.5zm101.6-.4 11.9-33.1.9 28.2c.1 2.8-1 3.6-4.4 4v.8h32.8v-.8c-3.9-.6-5.1-1.3-5.1-4.1V23.7c1.3.2 2.6.3 3.6.3 7.9 0 14.7-2.9 14.7-11.7 0-8.8-6.8-11.7-14.7-11.7h-14.1v.8c2.9.4 3.8 1.3 3.8 4.1V37c0 2.9-1.2 4.1-4.5 4.1h-.1c-3.5 0-5-1.3-5.1-4l-1.2-31.5c-.1-2.9.9-3.8 4-4.2V.6h-9.7l-10.6 29.7L142.5.6h-10.4v.8c3.1.4 4.1 1.4 4 4.2L135 35.8c-.1 3-1.7 4.8-4.6 5.3v.8h11v-.8c-2.8-.4-4.4-2.2-4.3-5.3l.9-27.5 12.1 33.6.8.1zM119 33.3c5.3 0 12.1-4.7 12.1-12.1 0-7.3-6.7-12.1-12.1-12.1-5.3 0-12.1 4.7-12.1 12.1 0 7.3 6.7 12.1 12.1 12.1zm0-22.5c3.4 0 5.7 2.8 5.7 10.4 0 7.7-2.4 10.4-5.7 10.4-3.4 0-5.7-2.8-5.7-10.4 0-7.7 2.3-10.4 5.7-10.4zm99.7 16.1h-11.1l5.5-15.2 5.6 15.2zM33.1 23.8h-6.8l3.4-8.3 3.4 8.3zm-13 2.1h.8V13.5h-.8c-1.3 4.4-2.6 5.4-5 5.4h-4.6V2.1h7.3c4.2 0 6.7 2 7.9 8.3h.8V.5H0v.8c2.9.4 3.8 1.3 3.8 4.1v31.5c0 2.9-.9 3.7-3.8 4.1v.8h15.6V41c-3.9-.6-5.1-1.3-5.1-4.1V20.4h4.6c2.3.1 3.7 1.1 5 5.5z\" class=\"currentLayer\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bf5gm6\",\"data-framer-name\":\"Page-1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:155,svg:'<svg width=\"155\" height=\"23\" viewBox=\"0 0 155 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.2436 7.73333H43.6282V0.399994H29.2436V7.73333Z\" fill=\"black\"/>\\n<path d=\"M0.5 0.399994V7.73333H7.67949V22.4H14.859V7.73333H22.0641V0.399994H0.5Z\" fill=\"black\"/>\\n<path d=\"M22.0641 22.4H43.6282V15.0667H29.2436V7.73332H22.0641V22.4Z\" fill=\"black\"/>\\n<path d=\"M61.9615 5.93846H51.3974V8.98974H54.9359V18.5538H58.4231V8.98974H61.9615V5.93846Z\" fill=\"black\"/>\\n<path d=\"M65.9359 8.88718C63.4487 8.88718 61.6025 10.5538 61.6025 13.8359C61.6025 16.7333 63.1666 18.759 66.0128 18.759C67.5 18.759 68.7051 18.3744 69.859 17.682L68.6282 15.6051C67.6795 16.0923 67.0128 16.2718 66.1666 16.2718C65.2949 16.2718 64.6795 15.8103 64.5513 14.759H70.1154C70.141 14.6051 70.141 14.4 70.141 14.1179C70.1666 10.6051 68.5513 8.88718 65.9359 8.88718ZM64.6025 12.7333C64.7051 11.7846 65.1154 11.2974 65.859 11.2974C66.8077 11.2974 67.141 11.7846 67.2948 12.7333H64.6025Z\" fill=\"black\"/>\\n<path d=\"M76.3205 16.1179C75.4487 16.1179 74.9872 15.3487 74.9872 13.8359C74.9872 12.3487 75.3974 11.5026 76.2436 11.5026C76.9359 11.5026 77.2436 11.8872 77.7051 12.7333L79.9359 11.041C79.1154 9.70769 78.0897 8.88718 76.2949 8.88718C73.2692 8.88718 71.782 10.8872 71.782 13.7846C71.782 16.9641 73.4487 18.7333 76.2179 18.7333C77.8846 18.7333 78.9102 18.0923 80.0128 16.4769L77.9615 14.8615C77.3461 15.7846 76.9359 16.1179 76.3205 16.1179Z\" fill=\"black\"/>\\n<path d=\"M87.5 8.88717C86.3718 8.88717 85.7051 9.27178 85.1154 9.70768V5.42563L81.8589 6.73332V18.5795H85.1154V13.1692C85.1154 11.9897 85.5256 11.6564 86.2179 11.6564C86.8846 11.6564 87.2948 11.9897 87.2948 13.1949V18.5795H90.5513V12.7846C90.5513 10.2974 89.5513 8.88717 87.5 8.88717Z\" fill=\"black\"/>\\n<path d=\"M98.3718 15.7077C96.859 15.7077 96.2436 14.1692 96.2436 12.2462C96.2436 10.2462 96.8846 8.78462 98.3461 8.78462C99.5 8.78462 99.9359 9.52821 100.372 10.7077L103.551 9.45129C102.679 7.06667 101.449 5.73334 98.3461 5.73334C94.9615 5.73334 92.5769 8.19487 92.5769 12.2462C92.5769 15.9897 94.5769 18.759 98.3205 18.759C101.32 18.759 102.731 17.1436 103.577 15.5026L100.628 13.9385C99.9359 15.118 99.4743 15.7077 98.3718 15.7077Z\" fill=\"black\"/>\\n<path d=\"M108.808 9.78461V9.0923H105.551V18.5538H108.808V13.4C108.808 12.2462 109.295 11.8615 110.09 11.8615C110.731 11.8615 111.192 12.1949 111.603 12.6564L112.372 9.29743C111.987 9.06667 111.526 8.88718 110.833 8.88718C109.987 8.88718 109.346 9.24615 108.808 9.78461Z\" fill=\"black\"/>\\n<path d=\"M119.32 14.5026C119.32 15.682 118.91 16.0154 118.244 16.0154C117.577 16.0154 117.167 15.682 117.167 14.4769V9.0923H113.91V14.8872C113.91 17.3744 114.91 18.759 116.987 18.759C118.09 18.759 118.782 18.3744 119.346 17.9385V18.5795H122.603V9.11794H119.346V14.5026\" fill=\"black\"/>\\n<path d=\"M130.577 8.88718C129.449 8.88718 128.782 9.27179 128.192 9.70769V9.06667H124.936V18.5282H128.192V13.1179C128.192 11.9385 128.603 11.6051 129.295 11.6051C129.962 11.6051 130.372 11.9385 130.372 13.1436V18.5282H133.628V12.7333C133.628 10.2974 132.654 8.88718 130.577 8.88718Z\" fill=\"black\"/>\\n<path d=\"M140.09 16.1179C139.218 16.1179 138.756 15.3487 138.756 13.8359C138.756 12.3487 139.167 11.5026 139.987 11.5026C140.679 11.5026 140.987 11.8872 141.449 12.7333L143.679 11.041C142.859 9.70769 141.833 8.88718 140.038 8.88718C137.013 8.88718 135.526 10.8872 135.526 13.7846C135.526 16.9641 137.192 18.7333 139.962 18.7333C141.628 18.7333 142.654 18.0923 143.756 16.4769L141.705 14.8615C141.141 15.7846 140.705 16.1179 140.09 16.1179Z\" fill=\"black\"/>\\n<path d=\"M151.269 8.88717C150.141 8.88717 149.474 9.27178 148.885 9.70768V5.42563L145.628 6.73332V18.5795H148.885V13.1692C148.885 11.9897 149.295 11.6564 149.987 11.6564C150.654 11.6564 151.064 11.9897 151.064 13.1949V18.5795H154.32V12.7846C154.346 10.2974 153.346 8.88717 151.269 8.88717Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-6i3dlc hidden-1bf0b47\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:185,svg:'<svg width=\"185\" height=\"25\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.8 2.9c0-2-1.9-2.5-3.4-2.5v.3c.9 0 1.6.3 1.6 1 0 .4-.3 1-1.2 1-.7 0-2.2-.4-3.3-.8C6.2 1.4 5 1 4 1 2 1 .6 2.5.6 4.2c0 1.5 1.1 2 1.5 2.2l.1-.2c-.2-.2-.5-.4-.5-1 0-.4.4-1.1 1.4-1.1.9 0 2.1.4 3.7.9 1.4.4 2.9.7 3.7.8v3.1L9 10.2v.1l1.5 1.3v4.3c-.8.5-1.7.6-2.5.6-1.5 0-2.8-.4-3.9-1.6l4.1-2V6l-5 2.2C3.6 6.9 4.7 6 5.8 5.4l-.1-.3c-3 .8-5.7 3.6-5.7 7 0 4 3.3 7 7 7 4 0 6.6-3.2 6.6-6.5h-.2c-.6 1.3-1.5 2.5-2.6 3.1v-4.1l1.6-1.3v-.1l-1.6-1.3V5.8c1.5 0 3-1 3-2.9zm-8.7 11-1.2.6c-.7-.9-1.1-2.1-1.1-3.8 0-.7 0-1.5.2-2.1l2.1-.9v6.2zm10.6 2.3-1.3 1 .2.2.6-.5 2.2 2 3-2-.1-.2-.8.5-1-1V9.4l.8-.6 1.7 1.4v6.1c0 3.8-.8 4.4-2.5 5v.3c2.8.1 5.4-.8 5.4-5.7V9.3l.9-.7-.2-.2-.8.6-2.5-2.1L18.5 9V.8h-.2l-3.5 2.4v.2c.4.2 1 .4 1 1.5l-.1 11.3zM34 15.1 31.5 17 29 15v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.6l-1 .8.2.2.9-.7 3.4 2.5 4.5-3.6-.1-.4zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zM53.1 2c0-.3-.1-.6-.2-.9h-.2c-.3.8-.7 1.2-1.7 1.2-.9 0-1.5-.5-1.9-.9l-2.9 3.3.2.2 1-.9c.6.5 1.1.9 2.5 1v8.3L44 3.2c-.5-.8-1.2-1.9-2.6-1.9-1.6 0-3 1.4-2.8 3.6h.3c.1-.6.4-1.3 1.1-1.3.5 0 1 .5 1.3 1v3.3c-1.8 0-3 .8-3 2.3 0 .8.4 2 1.6 2.3v-.2c-.2-.2-.3-.4-.3-.7 0-.5.4-.9 1.1-.9h.5v4.2c-2.1 0-3.8 1.2-3.8 3.2 0 1.9 1.6 2.8 3.4 2.7v-.2c-1.1-.1-1.6-.6-1.6-1.3 0-.9.6-1.3 1.4-1.3.8 0 1.5.5 2 1.1l2.9-3.2-.2-.2-.7.8c-1.1-1-1.7-1.3-3-1.5V5l8 14h.6V5c1.5-.1 2.9-1.3 2.9-3zm7.3 13.1L57.9 17l-2.5-2v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.6l-1 .8.2.2.9-.7 3.4 2.5 4.5-3.6-.1-.4zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zM76.7 8l-.7.5-1.9-1.6-2.2 2 .9.9v7.5l-2.4-1.5V9.6l.8-.5-2.3-2.2-2.2 2 .9.9V17l-.3.2-2.1-1.5v-6c0-1.4-.7-1.8-1.5-2.3-.7-.5-1.1-.8-1.1-1.5 0-.6.6-.9.9-1.1v-.2c-.8 0-2.9.8-2.9 2.7 0 1 .5 1.4 1 1.9s1 .9 1 1.8v5.8l-1.1.8.2.2 1-.8 2.3 2 2.5-1.7 2.8 1.7 5.3-3.1V9.2l1.3-1-.2-.2zm18.6-5.5-1 .9-2.2-2-3.3 2.4V1.6h-.3l.1 16.2c-.3 0-1.2-.2-1.9-.4l-.2-13.5c0-1-.7-2.4-2.5-2.4s-3 1.4-3 2.8h.3c.1-.6.4-1.1 1-1.1s1.1.4 1.1 1.7v3.9c-1.8.1-2.9 1.1-2.9 2.4 0 .8.4 2 1.6 2V13c-.4-.2-.5-.5-.5-.7 0-.6.5-.8 1.3-.8h.4v6.2c-1.5.5-2.1 1.6-2.1 2.8 0 1.7 1.3 2.9 3.3 2.9 1.4 0 2.6-.2 3.8-.5 1-.2 2.3-.5 2.9-.5.8 0 1.1.4 1.1.9 0 .7-.3 1-.7 1.1v.2c1.6-.3 2.6-1.3 2.6-2.8 0-1.5-1.5-2.4-3.1-2.4-.8 0-2.5.3-3.7.5-1.4.3-2.8.5-3.2.5-.7 0-1.5-.3-1.5-1.3 0-.8.7-1.5 2.4-1.5.9 0 2 .1 3.1.4 1.2.3 2.3.6 3.3.6 1.5 0 2.8-.5 2.8-2.6V3.7l1.2-1-.2-.2zm-4.1 6.1c-.3.3-.7.6-1.2.6s-1-.3-1.2-.6V4.2l1-.7 1.4 1.3v3.8zm0 3c-.2-.2-.7-.5-1.2-.5s-1 .3-1.2.5V9c.2.2.7.5 1.2.5s1-.3 1.2-.5v2.6zm0 4.7c0 .8-.5 1.6-1.6 1.6h-.8V12c.2-.2.7-.5 1.2-.5s.9.3 1.2.5v4.3zm13.7-7.1-3.2-2.3-4.9 2.8v6.5l-1 .8.1.2.8-.6 3.2 2.4 5-3V9.2zm-5.4 6.3V8.3l2.5 1.8v7.1l-2.5-1.7zm14.9-8.4h-.2c-.3.2-.6.4-.9.4-.4 0-.9-.2-1.1-.5h-.2l-1.7 1.9-1.7-1.9-3 2 .1.2.8-.5 1 1.1v6.3l-1.3 1 .2.2.6-.5 2.4 2 3.1-2.1-.1-.2-.9.5-1.2-1V9c.5.5 1.1 1 1.8 1 1.4.1 2.2-1.3 2.3-2.9zm12 9.6L123 19l-4.6-7 3.3-5.1h.2c.4.4 1 .8 1.7.8s1.2-.4 1.5-.8h.2c-.1 2-1.5 3.2-2.5 3.2s-1.5-.5-2.1-.8l-.3.5 5 7.4 1-.6v.1zm-11-.5-1.3 1 .2.2.6-.5 2.2 2 3-2-.2-.2-.8.5-1-1V.8h-.1l-3.6 2.4v.2c.4.2 1 .3 1 1.5v11.3zM143 2.9c0-2-1.9-2.5-3.4-2.5v.3c.9 0 1.6.3 1.6 1 0 .4-.3 1-1.2 1-.7 0-2.2-.4-3.3-.8-1.3-.4-2.5-.8-3.5-.8-2 0-3.4 1.5-3.4 3.2 0 1.5 1.1 2 1.5 2.2l.1-.2c-.3-.2-.6-.4-.6-1 0-.4.4-1.1 1.4-1.1.9 0 2.1.4 3.7.9 1.4.4 2.9.7 3.7.8V9l-1.5 1.3v.1l1.5 1.3V16c-.8.5-1.7.6-2.5.6-1.5 0-2.8-.4-3.9-1.6l4.1-2V6l-5 2.2c.5-1.3 1.6-2.2 2.6-2.9l-.1-.2c-3 .8-5.7 3.5-5.7 6.9 0 4 3.3 7 7 7 4 0 6.6-3.2 6.6-6.5h-.2c-.6 1.3-1.5 2.5-2.6 3.1v-4.1l1.6-1.3v-.1L140 8.8v-3c1.5 0 3-1 3-2.9zm-8.7 11-1.2.6c-.7-.9-1.1-2.1-1.1-3.8 0-.7.1-1.5.3-2.1l2.1-.9-.1 6.2zm12.2-12h-.1l-2 1.7v.1l1.7 1.9h.2l2-1.7v-.1l-1.8-1.9zm3 14.8-.8.5-1-1V9.3l1-.7-.2-.2-.7.6-1.8-2.1-2.9 2 .2.3.7-.5.9 1.1v6.5l-1.3 1 .1.2.7-.5 2.2 2 3-2-.1-.3zm16.7-.1-.7.5-1.1-1V9.3l1-.8-.2-.2-.8.7-2.3-2.1-3 2.1-2.3-2.1L154 9l-1.8-2.1-2.9 2 .1.3.7-.5 1 1.1v6.5l-.8.8 2.3 1.9 2.2-2-.9-.9V9.3l.9-.6 1.5 1.4v6l-.8.8 2.3 1.9 2.2-2-.9-.9V9.3l.8-.5 1.6 1.4v6l-.7.7 2.3 2.1 3.1-2.1v-.3zm8.7-1.5-2.5 1.9-2.5-2v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.8l3.5 2.5 4.5-3.6-.1-.3zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zm14.1-.9-1.9-1.5c1.3-1.1 1.8-2.6 1.8-3.6v-.6h-.2c-.2.5-.6 1-1.4 1-.8 0-1.3-.4-1.8-1L176 9.3v3.6l1.7 1.3c-1.7 1.5-2 2.5-2 3.3 0 1 .5 1.7 1.3 2l.1-.2c-.2-.2-.4-.3-.4-.8 0-.3.4-.8 1.2-.8 1 0 1.6.7 1.9 1l4.3-2.6v-3.6h-.1zm-1.1-3c-.7 1.2-2.2 2.4-3.1 3l-1.1-.9V8.1c.4 1 1.5 1.8 2.6 1.8.7 0 1.1-.1 1.6-.4zm-1.7 8c-.5-1.1-1.7-1.9-2.9-1.9-.3 0-1.1 0-1.9.5.5-.8 1.8-2.2 3.5-3.2l1.2 1 .1 3.6z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-b31n5l\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:125,svg:'<svg width=\"125\" height=\"25\" viewBox=\"0 0 125 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M105.375 3.875V21.125H113.875C116.25 21.125 117.625 20.75 118.625 19.875C119.875 18.75 120.5 16.75 120.5 12.5C120.5 8.25 119.875 6.25 118.625 5.125C117.625 4.25 116.25 3.875 113.875 3.875H105.375ZM117 12.5C117 16.25 116.75 17.125 116 17.625C115.5 18 114.875 18.125 113.625 18.125H108.875V6.75H113.625C114.875 6.75 115.5 6.75 116 7.25C116.75 7.875 117 8.75 117 12.5ZM124.875 24.938H99.937V0H124.875V24.938ZM79.563 6.75V3.875H94.313V9.375H91.187V6.75H85.187V10.875H89.937V13.625H85.187V18.25H91.313V15.25H94.437V21.125H79.564V18.25H81.938V6.75H79.563ZM66.188 16.625C66.188 18.5 66.312 19.875 66.562 21H69.938C69.812 20.125 69.688 18.5 69.688 16.375C69.562 13.875 68.812 13.5 67.062 13.125C69.062 12.75 69.938 11.875 69.938 8.75C69.938 6.25 69.562 5.25 68.812 4.625C68.312 4.125 67.438 3.875 66.062 3.875H55.562V21.125H59.062V14.375H63.938C64.938 14.375 65.312 14.5 65.688 14.75C66.064 15 66.188 15.375 66.188 16.625ZM59.062 11.625V6.875H64.688C65.438 6.875 65.688 7 65.812 7.125C66.062 7.375 66.312 7.75 66.312 9.25C66.312 10.75 66.062 11.25 65.812 11.5C65.688 11.625 65.438 11.75 64.688 11.75L59.062 11.625ZM74.938 24.938H49.938V0H74.875V24.938H74.938ZM43.438 18.25V21.125H31.562V18.25H35.812V6.75H31.562V3.875H43.437V6.75H39.187V18.25H43.438ZM23.375 3.875H20.125L17.75 17.5L15 4.875C14.875 4 14.5 3.875 13.75 3.875H12C11.25 3.875 10.875 4.125 10.75 4.875L8 17.5L5.625 3.875H2.125L5.5 20.25C5.625 21 5.875 21.125 6.75 21.125H9.125C9.875 21.125 10.125 21 10.375 20.25L13 8.375L15.625 20.25C15.75 21 16 21.125 16.875 21.125H19.125C19.875 21.125 20.25 21 20.375 20.25L23.375 3.875ZM25.125 24.938H0.125V0H25.063V24.938H25.125Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-bms9il hidden-1bf0b47 hidden-hqmgcj hidden-p7te60\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j8mx3g\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bu0g0i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-cdjxt8\",\"data-styles-preset\":\"yiSRStBrc\",style:{\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"2009\"})}),className:\"framer-12ivoro\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01vbmEtU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Mona-Sans Regular\", sans-serif',\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"founded\"})}),className:\"framer-i1sblq\",fonts:[\"CUSTOM;Mona-Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mkd75q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-cdjxt8\",\"data-styles-preset\":\"yiSRStBrc\",style:{\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"100%\"})}),className:\"framer-1quqnt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01vbmEtU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Mona-Sans Regular\", sans-serif',\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"remote\"})}),className:\"framer-1y8pf8j\",fonts:[\"CUSTOM;Mona-Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o9g5nr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-cdjxt8\",\"data-styles-preset\":\"yiSRStBrc\",style:{\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"17\"})}),className:\"framer-1ieftqh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01vbmEtU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Mona-Sans Regular\", sans-serif',\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"humans\"})}),className:\"framer-znkzs0\",fonts:[\"CUSTOM;Mona-Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1lgv3um-container\",id:\"1lgv3um\",nodeId:\"RCGYgrfvs\",scopeId:\"RVsI6X98s\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A_2efABlJ:{variant:\"IWMqynM0K\"},jfGF5vlXA:{variant:\"IWMqynM0K\"},YII0Kjxu9:{variant:\"IWMqynM0K\"}},children:/*#__PURE__*/_jsx(TestimonialCustomerStory,{AASbSEYM_:AASbSEYM_3bnx0g({overlay}),Gp9FttQh7:\"Watch Frank's story\",height:\"100%\",hFd7JhoS7:\"Dribbble\u2019s importance for me and my team is that it\u2019s a central place to showcase our work as a Design Team, as individual designers as well.\u201D\",id:\"RCGYgrfvs\",iSXG16slP:true,layoutId:\"RCGYgrfvs\",style:{width:\"100%\"},v822_HqhW:\"Design Director @ Google\",V9wfpgbhU:\"Frank Yoo \u2014 \",variant:\"U_sY4cTcL\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-t3vq9g\"),\"data-framer-portal-id\":\"1lgv3um\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"ZtxGETdzN\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-ec1l4e-container\"),\"data-framer-portal-id\":\"1lgv3um\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YMaHpaxOz\",rendersWithMotion:true,scopeId:\"RVsI6X98s\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"YMaHpaxOz\",isMixedBorderRadius:false,isRed:false,layoutId:\"YMaHpaxOz\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/_Tn7rmEkaBI\",width:\"100%\"})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mfwcdv\",\"data-framer-name\":\"Section\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Get to know us\"})}),className:\"framer-13m4726\",\"data-framer-name\":\"Join the 1,041+ Academy graduates and land your dream design role at companies like;\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kgsitp\",\"data-styles-preset\":\"dUg5HNnEh\",children:\"Dribbble is a 100% remote team. We believe that creative collaboration can happen anywhere and want our team to work where they feel most comfortable and inspired.\"})}),className:\"framer-fud6n9\",\"data-framer-name\":\"Join the 1,041+ Academy graduates and land your dream design role at companies like;\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xqhew4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A_2efABlJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2326,intrinsicWidth:2390,pixelHeight:4048,pixelWidth:5394,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/EeABHnPX1S5YmPXzpuE8vFYxh0.jpg?scale-down-to=1024\"}},CASsis15F:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2326,intrinsicWidth:2390,pixelHeight:4048,pixelWidth:5394,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/EeABHnPX1S5YmPXzpuE8vFYxh0.jpg?scale-down-to=1024\"}},jfGF5vlXA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2326,intrinsicWidth:2390,pixelHeight:4048,pixelWidth:5394,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/EeABHnPX1S5YmPXzpuE8vFYxh0.jpg?scale-down-to=1024\"}},YII0Kjxu9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2326,intrinsicWidth:2390,pixelHeight:4048,pixelWidth:5394,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/EeABHnPX1S5YmPXzpuE8vFYxh0.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2326,intrinsicWidth:2390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+165+100+1033+100+1227.8+0+253.8+40+0),pixelHeight:4048,pixelWidth:5394,positionX:\"right\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/EeABHnPX1S5YmPXzpuE8vFYxh0.jpg?scale-down-to=1024\"},className:\"framer-1dwjuin\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A_2efABlJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2326,intrinsicWidth:2390,pixelHeight:460,pixelWidth:493,positionX:\"right\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/4j9245ap2TNwSEcaVceSAcisOAE.jpg\"}},CASsis15F:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2326,intrinsicWidth:2390,pixelHeight:460,pixelWidth:493,positionX:\"right\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/4j9245ap2TNwSEcaVceSAcisOAE.jpg\"}},jfGF5vlXA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2326,intrinsicWidth:2390,pixelHeight:460,pixelWidth:493,positionX:\"right\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/4j9245ap2TNwSEcaVceSAcisOAE.jpg\"}},YII0Kjxu9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2326,intrinsicWidth:2390,pixelHeight:460,pixelWidth:493,positionX:\"right\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/4j9245ap2TNwSEcaVceSAcisOAE.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2326,intrinsicWidth:2390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+165+100+1033+100+1227.8+0+253.8+40+0),pixelHeight:460,pixelWidth:493,positionX:\"right\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/4j9245ap2TNwSEcaVceSAcisOAE.jpg\"},className:\"framer-1cb6xl3\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A_2efABlJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:656,pixelHeight:3088,pixelWidth:2316,src:\"https://framerusercontent.com/images/KlX2oH7xdxoIcX97rZkfRdqrMc.jpg?scale-down-to=1024\"}},CASsis15F:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:656,pixelHeight:3088,pixelWidth:2316,src:\"https://framerusercontent.com/images/KlX2oH7xdxoIcX97rZkfRdqrMc.jpg?scale-down-to=1024\"}},jfGF5vlXA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:656,pixelHeight:3088,pixelWidth:2316,src:\"https://framerusercontent.com/images/KlX2oH7xdxoIcX97rZkfRdqrMc.jpg?scale-down-to=1024\"}},YII0Kjxu9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:656,pixelHeight:3088,pixelWidth:2316,src:\"https://framerusercontent.com/images/KlX2oH7xdxoIcX97rZkfRdqrMc.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:656,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+165+100+1033+100+1227.8+0+253.8+40+452),pixelHeight:3088,pixelWidth:2316,src:\"https://framerusercontent.com/images/KlX2oH7xdxoIcX97rZkfRdqrMc.jpg?scale-down-to=1024\"},className:\"framer-zwuh3c\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A_2efABlJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:656,pixelHeight:4032,pixelWidth:3024,src:\"https://framerusercontent.com/images/e07TkbOvslAUcgl6fkzKlo8Jyw.jpg?scale-down-to=1024\"}},CASsis15F:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:656,pixelHeight:4032,pixelWidth:3024,src:\"https://framerusercontent.com/images/e07TkbOvslAUcgl6fkzKlo8Jyw.jpg?scale-down-to=1024\"}},jfGF5vlXA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:656,pixelHeight:4032,pixelWidth:3024,src:\"https://framerusercontent.com/images/e07TkbOvslAUcgl6fkzKlo8Jyw.jpg?scale-down-to=1024\"}},YII0Kjxu9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:656,pixelHeight:4032,pixelWidth:3024,src:\"https://framerusercontent.com/images/e07TkbOvslAUcgl6fkzKlo8Jyw.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:656,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+165+100+1033+100+1227.8+0+253.8+40+452),pixelHeight:4032,pixelWidth:3024,src:\"https://framerusercontent.com/images/e07TkbOvslAUcgl6fkzKlo8Jyw.jpg?scale-down-to=1024\"},className:\"framer-lumw4a\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A_2efABlJ:{background:{alt:\"\",fit:\"fill\",pixelHeight:649,pixelWidth:628,src:\"https://framerusercontent.com/images/FdScFKndOGP4bSOehPpWhVmfS8w.jpg\"}},CASsis15F:{background:{alt:\"\",fit:\"fill\",pixelHeight:649,pixelWidth:628,src:\"https://framerusercontent.com/images/FdScFKndOGP4bSOehPpWhVmfS8w.jpg\"}},jfGF5vlXA:{background:{alt:\"\",fit:\"fill\",pixelHeight:649,pixelWidth:628,src:\"https://framerusercontent.com/images/FdScFKndOGP4bSOehPpWhVmfS8w.jpg\"}},YII0Kjxu9:{background:{alt:\"\",fit:\"fill\",pixelHeight:649,pixelWidth:628,src:\"https://framerusercontent.com/images/FdScFKndOGP4bSOehPpWhVmfS8w.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+165+100+1033+100+1227.8+0+253.8+40+1285),pixelHeight:649,pixelWidth:628,src:\"https://framerusercontent.com/images/FdScFKndOGP4bSOehPpWhVmfS8w.jpg\"},className:\"framer-l6b1xw\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ggxlm7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A_2efABlJ:{background:{alt:\"\",fit:\"fill\",pixelHeight:611,pixelWidth:837,positionX:\"right\",positionY:\"center\",src:\"https://framerusercontent.com/images/3HE2Jnb3R5v5mRfC7E1UoxCrxRM.jpg\"}},CASsis15F:{background:{alt:\"\",fit:\"fill\",pixelHeight:611,pixelWidth:837,src:\"https://framerusercontent.com/images/3HE2Jnb3R5v5mRfC7E1UoxCrxRM.jpg\"}},jfGF5vlXA:{background:{alt:\"\",fit:\"fill\",pixelHeight:611,pixelWidth:837,positionX:\"right\",positionY:\"center\",src:\"https://framerusercontent.com/images/3HE2Jnb3R5v5mRfC7E1UoxCrxRM.jpg\"}},YII0Kjxu9:{background:{alt:\"\",fit:\"fill\",pixelHeight:611,pixelWidth:837,positionX:\"right\",positionY:\"center\",src:\"https://framerusercontent.com/images/3HE2Jnb3R5v5mRfC7E1UoxCrxRM.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+165+100+1033+100+1227.8+0+253.8+40+1285+0+0),pixelHeight:611,pixelWidth:837,src:\"https://framerusercontent.com/images/3HE2Jnb3R5v5mRfC7E1UoxCrxRM.jpg\"},className:\"framer-86unss\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A_2efABlJ:{background:{alt:\"\",fit:\"fill\",pixelHeight:403,pixelWidth:422,positionX:\"right\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/C4E9Ty3R7NW6cc5NHeCvBdaHT3M.jpg\"}},CASsis15F:{background:{alt:\"\",fit:\"fill\",pixelHeight:403,pixelWidth:422,positionX:\"left\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/C4E9Ty3R7NW6cc5NHeCvBdaHT3M.jpg\"}},jfGF5vlXA:{background:{alt:\"\",fit:\"fill\",pixelHeight:403,pixelWidth:422,positionX:\"right\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/C4E9Ty3R7NW6cc5NHeCvBdaHT3M.jpg\"}},YII0Kjxu9:{background:{alt:\"\",fit:\"fill\",pixelHeight:403,pixelWidth:422,positionX:\"right\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/C4E9Ty3R7NW6cc5NHeCvBdaHT3M.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+165+100+1033+100+1227.8+0+253.8+40+1285+0+419),pixelHeight:403,pixelWidth:422,positionX:\"left\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/C4E9Ty3R7NW6cc5NHeCvBdaHT3M.jpg\"},className:\"framer-p1cbiw\"})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mjxgg5\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-en031i\",\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mqpga6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LdRsTSNNm\",scopeId:\"RVsI6X98s\",children:/*#__PURE__*/_jsx(Globe,{alignment:\"center\",background:\"rgb(255, 255, 255)\",baseColor:\"rgb(255, 255, 255)\",dark:0,diffuse:0,dragOptions:{damping:40,mass:1,stiffness:200},glowColor:\"rgb(255, 255, 255)\",height:\"100%\",id:\"LdRsTSNNm\",isDraggable:true,layoutId:\"LdRsTSNNm\",mapBrightness:12,markerArray:[{latitude:43.6532,longitude:-79.3832},{latitude:45.4215,longitude:-75.6972},{latitude:49.2827,longitude:-123.1207},{latitude:48.4284,longitude:-123.3656},{latitude:34.0489,longitude:-111.0937},{latitude:36.7783,longitude:-119.4179},{latitude:45.5019,longitude:-73.5674},{latitude:46.7296,longitude:-94.6859},{latitude:48.7787,longitude:-123.7079},{latitude:51.049999,longitude:-114.066666},{latitude:30.2672,longitude:-97.7431},{latitude:39.7392,longitude:-104.9903}],markerColor:\"rgb(254, 173, 230)\",markerSize:.08,maxSamples:2e4,maxWidth:800,offset:{offsetX:0,offsetY:500},phi:.02,scale:1,speed:.8,style:{height:\"100%\",width:\"100%\"},theta:.4,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ia9wqn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Join our team\"})}),className:\"framer-153t8rv\",\"data-framer-name\":\"Join the 1,041+ Academy graduates and land your dream design role at companies like;\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kgsitp\",\"data-styles-preset\":\"dUg5HNnEh\",style:{\"--framer-text-alignment\":\"center\"},children:\"Since we are a 100% distributed team, you can work from anywhere. No need to move for a job. We are proud of a culture of communication, collaboration, trust and kindness.\"})}),className:\"framer-r386jy\",\"data-framer-name\":\"Join the 1,041+ Academy graduates and land your dream design role at companies like;\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Muq0TqUj5\"},implicitPathVariables:undefined},{href:{webPageId:\"Muq0TqUj5\"},implicitPathVariables:undefined},{href:{webPageId:\"Muq0TqUj5\"},implicitPathVariables:undefined},{href:{webPageId:\"Muq0TqUj5\"},implicitPathVariables:undefined},{href:{webPageId:\"Muq0TqUj5\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A_2efABlJ:{y:undefined},CASsis15F:{y:undefined},jfGF5vlXA:{y:undefined},YII0Kjxu9:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+165+100+1033+100+3774.6000000000004+0+389+32+253.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x0k9tv-container\",nodeId:\"YADiXklPs\",scopeId:\"RVsI6X98s\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A_2efABlJ:{qy4VKjDB5:resolvedLinks[4]},CASsis15F:{qy4VKjDB5:resolvedLinks[1]},jfGF5vlXA:{qy4VKjDB5:resolvedLinks[3]},YII0Kjxu9:{qy4VKjDB5:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{aOCYaHfLN:false,beTeoO7e6:false,bZVzcvAMI:false,cgtmrK1_Q:\"rgb(255, 255, 255)\",fAGIbP3qk:false,height:\"100%\",id:\"YADiXklPs\",IXJV26FKd:\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(6, 3, 24))\",layoutId:\"YADiXklPs\",n5zXdqlOk:15,Om6UbZdF7:\"View current openings\",qy4VKjDB5:resolvedLinks[0],UrtBmFggk:false,variant:\"IhilNdC7m\",width:\"100%\"})})})})})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1369e7x\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r17u3w-container\",isAuthoredByUser:true,nodeId:\"fBFDt4dhI\",scopeId:\"RVsI6X98s\",children:/*#__PURE__*/_jsx(FooterV2,{height:\"100%\",id:\"fBFDt4dhI\",layoutId:\"fBFDt4dhI\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XiBNR.framer-1m0p5l4, .framer-XiBNR .framer-1m0p5l4 { display: block; }\",\".framer-XiBNR.framer-1tpzw0m { 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-XiBNR .framer-3aqgm6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-XiBNR .framer-1cn0dts-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; z-index: 1; }\",\".framer-XiBNR .framer-1g62g7-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-XiBNR .framer-1oe39p4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-XiBNR .framer-2qzeks-container { flex: none; height: auto; position: relative; width: 70%; }\",\".framer-XiBNR .framer-dtfrwu { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-XiBNR .framer-16ep3vi { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 700px; max-width: 1200px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-XiBNR .framer-mlsokg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-XiBNR .framer-wvvexk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XiBNR .framer-5oe7pc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-XiBNR .framer-1ctf19j, .framer-XiBNR .framer-7qajn7, .framer-XiBNR .framer-13m4726, .framer-XiBNR .framer-153t8rv { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XiBNR .framer-1joi07y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-XiBNR .framer-18he3p6 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-XiBNR .framer-1btspxw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XiBNR .framer-1ivbat3 { aspect-ratio: 7.023809523809524 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); position: relative; width: 135px; }\",\".framer-XiBNR .framer-bf5gm6 { aspect-ratio: 6.739130434782608 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 144px; }\",\".framer-XiBNR .framer-6i3dlc { aspect-ratio: 7.4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 185px; }\",\".framer-XiBNR .framer-b31n5l { aspect-ratio: 5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 115px; }\",\".framer-XiBNR .framer-bms9il { align-self: stretch; background-color: var(--token-48a71414-ffeb-485f-9214-89692b0cc5ae, #e7e7e9); flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-XiBNR .framer-1j8mx3g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XiBNR .framer-1bu0g0i, .framer-XiBNR .framer-mkd75q, .framer-XiBNR .framer-1o9g5nr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XiBNR .framer-12ivoro, .framer-XiBNR .framer-i1sblq, .framer-XiBNR .framer-1quqnt, .framer-XiBNR .framer-1y8pf8j, .framer-XiBNR .framer-1ieftqh, .framer-XiBNR .framer-znkzs0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XiBNR .framer-1lgv3um-container, .framer-XiBNR .framer-r17u3w-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-XiBNR.framer-t3vq9g { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-XiBNR.framer-ec1l4e-container { aspect-ratio: 1.7787810383747178 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 607px); left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 1080px; z-index: 10; }\",\".framer-XiBNR .framer-1mfwcdv { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XiBNR .framer-fud6n9, .framer-XiBNR .framer-r386jy { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-XiBNR .framer-1xqhew4 { display: grid; flex: none; gap: 28px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(1px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-XiBNR .framer-1dwjuin, .framer-XiBNR .framer-1cb6xl3 { align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 424px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-XiBNR .framer-zwuh3c, .framer-XiBNR .framer-lumw4a { align-self: start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 805px; justify-self: start; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-XiBNR .framer-l6b1xw { align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 827px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-XiBNR .framer-1ggxlm7 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 1fr; }\",\".framer-XiBNR .framer-86unss { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 409px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 586px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XiBNR .framer-p1cbiw { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: 409px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 586px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XiBNR .framer-mjxgg5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XiBNR .framer-en031i { flex: none; height: 365px; overflow: hidden; position: relative; width: 500px; }\",\".framer-XiBNR .framer-1mqpga6-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 500px); left: 0px; position: absolute; right: 0px; top: -138px; }\",\".framer-XiBNR .framer-ia9wqn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-XiBNR .framer-x0k9tv-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-XiBNR .framer-1369e7x { 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: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XiBNR.framer-1tpzw0m, .framer-XiBNR .framer-3aqgm6, .framer-XiBNR .framer-1oe39p4, .framer-XiBNR .framer-mlsokg, .framer-XiBNR .framer-wvvexk, .framer-XiBNR .framer-5oe7pc, .framer-XiBNR .framer-1joi07y, .framer-XiBNR .framer-1btspxw, .framer-XiBNR .framer-1j8mx3g, .framer-XiBNR .framer-1bu0g0i, .framer-XiBNR .framer-mkd75q, .framer-XiBNR .framer-1o9g5nr, .framer-XiBNR .framer-1mfwcdv, .framer-XiBNR .framer-1dwjuin, .framer-XiBNR .framer-1cb6xl3, .framer-XiBNR .framer-l6b1xw, .framer-XiBNR .framer-1ggxlm7, .framer-XiBNR .framer-86unss, .framer-XiBNR .framer-p1cbiw, .framer-XiBNR .framer-mjxgg5, .framer-XiBNR .framer-ia9wqn, .framer-XiBNR .framer-1369e7x { gap: 0px; } .framer-XiBNR.framer-1tpzw0m > *, .framer-XiBNR .framer-1369e7x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XiBNR.framer-1tpzw0m > :first-child, .framer-XiBNR .framer-1oe39p4 > :first-child, .framer-XiBNR .framer-mlsokg > :first-child, .framer-XiBNR .framer-5oe7pc > :first-child, .framer-XiBNR .framer-1joi07y > :first-child, .framer-XiBNR .framer-1j8mx3g > :first-child, .framer-XiBNR .framer-1bu0g0i > :first-child, .framer-XiBNR .framer-mkd75q > :first-child, .framer-XiBNR .framer-1o9g5nr > :first-child, .framer-XiBNR .framer-1mfwcdv > :first-child, .framer-XiBNR .framer-l6b1xw > :first-child, .framer-XiBNR .framer-1ggxlm7 > :first-child, .framer-XiBNR .framer-mjxgg5 > :first-child, .framer-XiBNR .framer-ia9wqn > :first-child, .framer-XiBNR .framer-1369e7x > :first-child { margin-top: 0px; } .framer-XiBNR.framer-1tpzw0m > :last-child, .framer-XiBNR .framer-1oe39p4 > :last-child, .framer-XiBNR .framer-mlsokg > :last-child, .framer-XiBNR .framer-5oe7pc > :last-child, .framer-XiBNR .framer-1joi07y > :last-child, .framer-XiBNR .framer-1j8mx3g > :last-child, .framer-XiBNR .framer-1bu0g0i > :last-child, .framer-XiBNR .framer-mkd75q > :last-child, .framer-XiBNR .framer-1o9g5nr > :last-child, .framer-XiBNR .framer-1mfwcdv > :last-child, .framer-XiBNR .framer-l6b1xw > :last-child, .framer-XiBNR .framer-1ggxlm7 > :last-child, .framer-XiBNR .framer-mjxgg5 > :last-child, .framer-XiBNR .framer-ia9wqn > :last-child, .framer-XiBNR .framer-1369e7x > :last-child { margin-bottom: 0px; } .framer-XiBNR .framer-3aqgm6 > *, .framer-XiBNR .framer-1dwjuin > *, .framer-XiBNR .framer-1cb6xl3 > *, .framer-XiBNR .framer-86unss > *, .framer-XiBNR .framer-p1cbiw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-XiBNR .framer-3aqgm6 > :first-child, .framer-XiBNR .framer-wvvexk > :first-child, .framer-XiBNR .framer-1btspxw > :first-child, .framer-XiBNR .framer-1dwjuin > :first-child, .framer-XiBNR .framer-1cb6xl3 > :first-child, .framer-XiBNR .framer-86unss > :first-child, .framer-XiBNR .framer-p1cbiw > :first-child { margin-left: 0px; } .framer-XiBNR .framer-3aqgm6 > :last-child, .framer-XiBNR .framer-wvvexk > :last-child, .framer-XiBNR .framer-1btspxw > :last-child, .framer-XiBNR .framer-1dwjuin > :last-child, .framer-XiBNR .framer-1cb6xl3 > :last-child, .framer-XiBNR .framer-86unss > :last-child, .framer-XiBNR .framer-p1cbiw > :last-child { margin-right: 0px; } .framer-XiBNR .framer-1oe39p4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-XiBNR .framer-mlsokg > * { margin: 0px; margin-bottom: calc(140px / 2); margin-top: calc(140px / 2); } .framer-XiBNR .framer-wvvexk > * { margin: 0px; margin-left: calc(72px / 2); margin-right: calc(72px / 2); } .framer-XiBNR .framer-5oe7pc > *, .framer-XiBNR .framer-1joi07y > *, .framer-XiBNR .framer-1mfwcdv > *, .framer-XiBNR .framer-mjxgg5 > *, .framer-XiBNR .framer-ia9wqn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-XiBNR .framer-1btspxw > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-XiBNR .framer-1j8mx3g > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-XiBNR .framer-1bu0g0i > *, .framer-XiBNR .framer-mkd75q > *, .framer-XiBNR .framer-1o9g5nr > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-XiBNR .framer-l6b1xw > *, .framer-XiBNR .framer-1ggxlm7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,\"@media (min-width: 1100px) and (max-width: 1439px) { .framer-XiBNR.framer-1tpzw0m { width: 1100px; } .framer-XiBNR .framer-2qzeks-container, .framer-XiBNR .framer-fud6n9 { width: 100%; } .framer-XiBNR .framer-16ep3vi { height: 620px; } .framer-XiBNR .framer-5oe7pc { flex: 0.9 0 0px; } .framer-XiBNR .framer-1btspxw { flex-wrap: wrap; gap: unset; justify-content: space-between; } .framer-XiBNR .framer-r386jy { width: 80%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XiBNR .framer-1btspxw { gap: 0px; } .framer-XiBNR .framer-1btspxw > *, .framer-XiBNR .framer-1btspxw > :first-child, .framer-XiBNR .framer-1btspxw > :last-child { margin: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 949px) { .framer-XiBNR.framer-1tpzw0m { width: 810px; } .framer-XiBNR .framer-1oe39p4 { padding: 80px 32px 80px 32px; } .framer-XiBNR .framer-2qzeks-container, .framer-XiBNR .framer-fud6n9, .framer-XiBNR .framer-r386jy { width: 100%; } .framer-XiBNR .framer-16ep3vi { height: 450px; } .framer-XiBNR .framer-5oe7pc { flex: 0.9 0 0px; } .framer-XiBNR .framer-1btspxw { flex-wrap: wrap; gap: 32px; } .framer-XiBNR .framer-1dwjuin, .framer-XiBNR .framer-1cb6xl3 { height: 351px; } .framer-XiBNR .framer-zwuh3c, .framer-XiBNR .framer-lumw4a { height: 540px; } .framer-XiBNR .framer-l6b1xw { height: 740px; } .framer-XiBNR .framer-86unss, .framer-XiBNR .framer-p1cbiw { height: 526px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XiBNR .framer-1btspxw { gap: 0px; } .framer-XiBNR .framer-1btspxw > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-XiBNR .framer-1btspxw > :first-child { margin-left: 0px; } .framer-XiBNR .framer-1btspxw > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-XiBNR.framer-1tpzw0m { width: 390px; } .framer-XiBNR .framer-1oe39p4 { padding: 80px 24px 80px 24px; } .framer-XiBNR .framer-2qzeks-container, .framer-XiBNR .framer-fud6n9, .framer-XiBNR .framer-r386jy { width: 100%; } .framer-XiBNR .framer-16ep3vi { height: 220px; } .framer-XiBNR .framer-mlsokg { gap: 120px; overflow: visible; padding: 40px 0px 0px 0px; } .framer-XiBNR .framer-wvvexk { flex-direction: column; } .framer-XiBNR .framer-5oe7pc { flex: none; width: 100%; } .framer-XiBNR .framer-1btspxw { flex-wrap: wrap; gap: 32px; } .framer-XiBNR .framer-1j8mx3g { flex-direction: row; justify-content: flex-start; width: 100%; } .framer-XiBNR .framer-1xqhew4 { grid-template-columns: repeat(1, minmax(1px, 1fr)); padding: 24px 0px 0px 0px; } .framer-XiBNR .framer-1dwjuin, .framer-XiBNR .framer-1cb6xl3 { height: 351px; } .framer-XiBNR .framer-zwuh3c, .framer-XiBNR .framer-lumw4a { height: 520px; } .framer-XiBNR .framer-l6b1xw { height: 570px; } .framer-XiBNR .framer-86unss, .framer-XiBNR .framer-p1cbiw { height: 526px; } .framer-XiBNR .framer-mjxgg5, .framer-XiBNR .framer-en031i { overflow: visible; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XiBNR .framer-mlsokg, .framer-XiBNR .framer-wvvexk, .framer-XiBNR .framer-1btspxw, .framer-XiBNR .framer-1j8mx3g { gap: 0px; } .framer-XiBNR .framer-mlsokg > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-XiBNR .framer-mlsokg > :first-child, .framer-XiBNR .framer-wvvexk > :first-child { margin-top: 0px; } .framer-XiBNR .framer-mlsokg > :last-child, .framer-XiBNR .framer-wvvexk > :last-child { margin-bottom: 0px; } .framer-XiBNR .framer-wvvexk > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-XiBNR .framer-1btspxw > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-XiBNR .framer-1btspxw > :first-child, .framer-XiBNR .framer-1j8mx3g > :first-child { margin-left: 0px; } .framer-XiBNR .framer-1btspxw > :last-child, .framer-XiBNR .framer-1j8mx3g > :last-child { margin-right: 0px; } .framer-XiBNR .framer-1j8mx3g > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } }}\",\"@media (min-width: 950px) and (max-width: 1099px) { .framer-XiBNR.framer-1tpzw0m { width: 950px; } .framer-XiBNR .framer-2qzeks-container, .framer-XiBNR .framer-fud6n9, .framer-XiBNR .framer-r386jy { width: 100%; } .framer-XiBNR .framer-16ep3vi { height: 450px; } .framer-XiBNR .framer-5oe7pc { flex: 0.9 0 0px; } .framer-XiBNR .framer-1btspxw { flex-wrap: wrap; gap: 32px; } .framer-XiBNR .framer-1dwjuin, .framer-XiBNR .framer-1cb6xl3 { height: 351px; } .framer-XiBNR .framer-zwuh3c, .framer-XiBNR .framer-lumw4a { height: 540px; } .framer-XiBNR .framer-l6b1xw { height: 740px; } .framer-XiBNR .framer-86unss, .framer-XiBNR .framer-p1cbiw { height: 526px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XiBNR .framer-1btspxw { gap: 0px; } .framer-XiBNR .framer-1btspxw > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-XiBNR .framer-1btspxw > :first-child { margin-left: 0px; } .framer-XiBNR .framer-1btspxw > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6193\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CASsis15F\":{\"layout\":[\"fixed\",\"auto\"]},\"YII0Kjxu9\":{\"layout\":[\"fixed\",\"auto\"]},\"jfGF5vlXA\":{\"layout\":[\"fixed\",\"auto\"]},\"A_2efABlJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Kqi0LcHyM\":{\"pattern\":\":Kqi0LcHyM\",\"name\":\"body\"},\"lA9FfS841\":{\"pattern\":\":lA9FfS841\",\"name\":\"get-to-know\"}}\n * @framerResponsiveScreen\n */const FramerRVsI6X98s=withCSS(Component,css,\"framer-XiBNR\");export default FramerRVsI6X98s;FramerRVsI6X98s.displayName=\"About\";FramerRVsI6X98s.defaultProps={height:6193,width:1440};addFonts(FramerRVsI6X98s,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Mona-Sans SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/wPf01vg4hdT4QqPeAqWo0ZAi7k.woff2\"},{family:\"Mona-Sans Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/eTV1TIK1tbVI9tQPE5TpxxykyU.woff2\"}]},...NavigationV3Fonts,...SubNavAboutFonts,...MastheadTertiaryPagesFonts,...TestimonialCustomerStoryFonts,...YouTubeFonts,...GlobeFonts,...ButtonFonts,...FooterV2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRVsI6X98s\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CASsis15F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YII0Kjxu9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jfGF5vlXA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"A_2efABlJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"Kqi0LcHyM\\\":{\\\"pattern\\\":\\\":Kqi0LcHyM\\\",\\\"name\\\":\\\"body\\\"},\\\"lA9FfS841\\\":{\\\"pattern\\\":\\\":lA9FfS841\\\",\\\"name\\\":\\\"get-to-know\\\"}}\",\"framerIntrinsicHeight\":\"6193\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "t", "e", "s", "n", "r", "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", "NavigationV3Fonts", "getFonts", "kABDMUC8g_default", "NavigationV3WithNavClass1cn0dtsWithMappedReactProps9zght", "withMappedReactProps", "withCodeBoundaryForOverrides", "withNavClass", "kABDMUC8g_exports", "MotionDivWithNavClass3aqgm6", "motion", "SubNavAboutFonts", "s04IiVmco_default", "MastheadTertiaryPagesFonts", "wo8h0U10P_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText", "TestimonialCustomerStoryFonts", "uAQjOVSdk_default", "YouTubeFonts", "Youtube", "GlobeFonts", "Globe", "ButtonFonts", "jHzyOF96c_default", "FooterV2Fonts", "FooterV2", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transformTemplate1", "_", "t", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "AASbSEYM_3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "elementId1", "ref2", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "Image2", "getLoadingLazyAtYPosition", "SVG", "l", "AnimatePresence", "Ga", "ResolveLinks", "resolvedLinks", "css", "FramerRVsI6X98s", "withCSS", "RVsI6X98s_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
