{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/iH9xn0JjA95gtAvlyJ94/ERVl7dwTjlEsib5vWKuH/w8WDIr3N8.js", "ssg:https://framerusercontent.com/modules/jKosDr5OORwnt4ikb4Vz/67eMOm9YSvp2Jb2lUpQw/BaseForm.js", "ssg:https://framerusercontent.com/modules/uDWgqWGIjWwE79oizfsr/8uSN2cppuWS87CMm1Kq8/B0MZIcvi_.js", "ssg:https://framerusercontent.com/modules/mZqSgbIbmoe217skhb0z/33oUDGgWleqKd8XXpCvK/xVnLVyQ5a.js", "ssg:https://framerusercontent.com/modules/wUDJs06lkAj91ky5mdN6/yMpl0ultcrhi4BkKj19q/egY0E7yn0.js", "ssg:https://framerusercontent.com/modules/7isb8bE3UUTB70KmvEgT/zmyWE0OSwUdGiOAfIOUd/JRZk1Lea_.js", "ssg:https://framerusercontent.com/modules/zeZEEC6oNyR2fS68vvWw/Cg51y3ZsF36OKDanb7pj/kFhm9OmOY.js", "ssg:https://framerusercontent.com/modules/6i6pRoXOlYwMA2xkSeJg/QSkCj74MgTl9PJOQ1fVf/scvfQSE67.js", "ssg:https://framerusercontent.com/modules/4emwYekuGZ7rQDN4dPLZ/wgqqIY2gFTofYb0kpAlo/MuFCnMOOk.js", "ssg:https://framerusercontent.com/modules/cUCWaSHMOUlwQqOkdSXM/eC0ok6XEreqTGqLjy9lb/Mlj4XvgF_.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{isFunction as t,isCubicBezier as i,noopReturn as e,defaults as s,isEasingGenerator as a,isEasingList as n,interpolate as r}from\"@motionone/utils\";import{cubicBezier as h,steps as o}from\"@motionone/easing\";const l={ease:h(.25,.1,.25,1),\"ease-in\":h(.42,0,1,1),\"ease-in-out\":h(.42,0,.58,1),\"ease-out\":h(0,0,.58,1)};const u=/\\((.*?)\\)/;function getEasingFunction(s){if(t(s))return s;if(i(s))return h(...s);if(l[s])return l[s];if(s.startsWith(\"steps\")){const t=u.exec(s);if(t){const i=t[1].split(\",\");return o(parseFloat(i[0]),i[1].trim())}}return e}class Animation{constructor(t,i=[0,1],{easing:h,duration:o=s.duration,delay:l=s.delay,endDelay:u=s.endDelay,repeat:m=s.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=e;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));h=h||s.easing;if(a(h)){const t=h.createAnimation(i);h=t.easing;i=t.keyframes||i;o=t.duration||o}this.repeat=m;this.easing=n(h)?e:getEasingFunction(h);this.updateDuration(o);const d=r(i,c,n(h)?h.map(getEasingFunction):e);this.tick=i=>{var e;l=l;let s=0;s=void 0!==this.pauseTime?this.pauseTime:(i-this.startTime)*this.rate;this.t=s;s/=1e3;s=Math.max(s-l,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(s=this.totalDuration);const a=s/this.duration;let n=Math.floor(a);let r=a%1;!r&&a>=1&&(r=1);1===r&&n--;const h=n%2;(\"reverse\"===p||\"alternate\"===p&&h||\"alternate-reverse\"===p&&!h)&&(r=1-r);const o=s>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(o));t(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||s>=this.totalDuration+u);if(c){this.playState=\"finished\";null===(e=this.resolve)||void 0===e?void 0:e.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t,noopReturn as s}from\"@motionone/utils\";const n=5;function calcGeneratorVelocity(t,s,r){const a=Math.max(s-n,0);return e(r-t(a),s-a)}const r={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=r.stiffness,t=r.damping,s=r.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=r.stiffness,damping:s=r.damping,mass:n=r.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/n)/1e3;const l=calcDampingRatio(e,s,n);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const a=10;const o=1e4;function pregenerateKeyframes(e,t=s){let n;let r=a;let c=e(0);const i=[t(c.current)];while(!c.done&&r<o){c=e(r);i.push(t(c.done?c.target:c.current));void 0===n&&c.hasReachedTarget&&(n=r);r+=a}const h=r-a;1===i.length&&i.push(c.current);return{keyframes:i,duration:h/1e3,overshootDuration:(null!==n&&void 0!==n?n:h)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (e1877f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"UWix2f7SF\",\"QVrqdsLC5\",\"rXLoxsKOx\"];const serializationHash=\"framer-m0YX6\";const variantClassNames={QVrqdsLC5:\"framer-v-1nvxmo2\",rXLoxsKOx:\"framer-v-1fbkpxr\",UWix2f7SF:\"framer-v-1g6j0k5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"UWix2f7SF\",\"Variant 2\":\"QVrqdsLC5\",\"Variant 3\":\"rXLoxsKOx\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"UWix2f7SF\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UWix2f7SF\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearf382t5=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),2e3);});useOnVariantChange(baseVariant,{default:onAppearf382t5});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1g6j0k5\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UWix2f7SF\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({QVrqdsLC5:{\"data-framer-name\":\"Variant 2\"},rXLoxsKOx:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2wxu30\",layoutDependency:layoutDependency,layoutId:\"iH6qaAX8aVA0e_C16r\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(134, 54, 248) 2%, rgb(240, 32, 179) 35%, rgb(248, 71, 94) 67%, rgb(255, 148, 33) 100%)\"},children:\"Production\"})})}),className:\"framer-1nwb0r\",\"data-framer-name\":\"Where Innovation Meets Production\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"iH6qaAX8aY0lYTZesV\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(134, 54, 248) 2%, rgb(240, 32, 179) 35%, rgb(248, 71, 94) 67%, rgb(255, 148, 33) 100%)\"},children:\"Gaming\"})})}),className:\"framer-b0w6u0\",\"data-framer-name\":\"Where Innovation Meets Production\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"iH6qaAX8aPkaYMawx9\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(134, 54, 248) 2%, rgb(240, 32, 179) 35%, rgb(248, 71, 94) 67%, rgb(255, 148, 33) 100%)\"},children:\"Technology\"})})}),className:\"framer-rzupb1\",\"data-framer-name\":\"Where Innovation Meets Production\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"iH6qaAX8akdOQ5eYNH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-m0YX6.framer-jfdysp, .framer-m0YX6 .framer-jfdysp { display: block; }\",\".framer-m0YX6.framer-1g6j0k5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 47px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 248px; }\",\".framer-m0YX6 .framer-2wxu30 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 204%; width: min-content; z-index: 1; }\",\".framer-m0YX6 .framer-1nwb0r, .framer-m0YX6 .framer-b0w6u0, .framer-m0YX6 .framer-rzupb1 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-m0YX6.framer-1g6j0k5, .framer-m0YX6 .framer-2wxu30 { gap: 0px; } .framer-m0YX6.framer-1g6j0k5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-m0YX6.framer-1g6j0k5 > :first-child { margin-left: 0px; } .framer-m0YX6.framer-1g6j0k5 > :last-child { margin-right: 0px; } .framer-m0YX6 .framer-2wxu30 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-m0YX6 .framer-2wxu30 > :first-child { margin-top: 0px; } .framer-m0YX6 .framer-2wxu30 > :last-child { margin-bottom: 0px; } }\",\".framer-m0YX6.framer-v-1nvxmo2 .framer-2wxu30 { top: 40%; }\",\".framer-m0YX6.framer-v-1fbkpxr .framer-2wxu30 { top: -115%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 47\n * @framerIntrinsicWidth 248\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"QVrqdsLC5\":{\"layout\":[\"fixed\",\"fixed\"]},\"rXLoxsKOx\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerw8WDIr3N8=withCSS(Component,css,\"framer-m0YX6\");export default Framerw8WDIr3N8;Framerw8WDIr3N8.displayName=\"Mobile view text\";Framerw8WDIr3N8.defaultProps={height:47,width:248};addPropertyControls(Framerw8WDIr3N8,{variant:{options:[\"UWix2f7SF\",\"QVrqdsLC5\",\"rXLoxsKOx\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerw8WDIr3N8,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerw8WDIr3N8\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"248\",\"framerIntrinsicHeight\":\"47\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QVrqdsLC5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rXLoxsKOx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./w8WDIr3N8.map", "/*\nMIT License\nCopyright \u00A9 Joel Whitaker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nThe Software is provided \"as is\", without warranty of any kind, express or\nimplied, including but not limited to the warranties of merchantability,\nfitness for a particular purpose and noninfringement. In no event shall the\nauthors or copyright holders be liable for any claim, damages or other\nliability, whether in an action of contract, tort or otherwise, arising from,\nout of or in connection with the Software or the use or other dealings in the\nSoftware.\n*/ import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";var FieldType;(function(FieldType){FieldType[\"Text\"]=\"text\";FieldType[\"Number\"]=\"number\";FieldType[\"Email\"]=\"email\";FieldType[\"Url\"]=\"url\";FieldType[\"Tel\"]=\"tel\";FieldType[\"TextArea\"]=\"textarea\";FieldType[\"Select\"]=\"select\";FieldType[\"Checkbox\"]=\"checkbox\";FieldType[\"Radio\"]=\"radio\";FieldType[\"Time\"]=\"time\";FieldType[\"Week\"]=\"week\";FieldType[\"Month\"]=\"month\";FieldType[\"Date\"]=\"date\";FieldType[\"DateTimeLocal\"]=\"datetime-local\";FieldType[\"Password\"]=\"password\";FieldType[\"Hidden\"]=\"hidden\";})(FieldType||(FieldType={}));function isExternalURL(url){try{return!!new URL(url);}catch{}try{return!!new URL(`https://${url}`);}catch{}return false;}function hasMinMaxStep(type){return[FieldType.Time,FieldType.Week,FieldType.Number,FieldType.Date,FieldType.DateTimeLocal,].includes(type);}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */ const VERSION=\"v1\";/**\n * BASEFORM\n * By Joel Whitaker (Alphi.dev)\n * Based on INPUT by Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ const BaseForm=withCSS(function BaseForm({url,method,contentType,redirectAs,link,inputs,button,styles,extraHeaders,style,onSubmit}){const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[getFocus,setFocus]=useState(null);const{paddingPerSide:labelPaddingPerSide,paddingTop:labelPaddingTop,paddingRight:labelPaddingRight,paddingBottom:labelPaddingBottom,paddingLeft:labelPaddingLeft,padding:labelPadding,borderRadius:labelBorderRadius,borderObject:labelBorderObject,shadowObject:labelShadowObject}=styles.label;const{paddingPerSide:inputPaddingPerSide,paddingTop:inputPaddingTop,paddingRight:inputPaddingRight,paddingBottom:inputPaddingBottom,paddingLeft:inputPaddingLeft,padding:inputPadding,borderRadius:inputBorderRadius,borderObject:inputBorderObject,focusObject:inputFocusObject,shadowObject:inputShadowObject}=styles.input;const{paddingPerSide:buttonPaddingPerSide,paddingTop:buttonPaddingTop,paddingRight:buttonPaddingRight,paddingBottom:buttonPaddingBottom,paddingLeft:buttonPaddingLeft,padding:buttonPadding,borderRadius:buttonBorderRadius,borderObject:buttonBorderObject,shadowObject:buttonShadowObject}=styles.button;const labelPaddingValue=labelPaddingPerSide?`${labelPaddingTop}px ${labelPaddingRight}px ${labelPaddingBottom}px ${labelPaddingLeft}px`:`${labelPadding}px ${labelPadding}px ${labelPadding}px ${labelPadding}px`;const inputPaddingValue=inputPaddingPerSide?`${inputPaddingTop}px ${inputPaddingRight}px ${inputPaddingBottom}px ${inputPaddingLeft}px`:`${inputPadding}px ${inputPadding}px ${inputPadding}px ${inputPadding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${buttonPaddingTop}px ${buttonPaddingRight}px ${buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${buttonPadding}px ${buttonPadding}px ${buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */ setLoading(false);setFocus(null);if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(isExternalURL(link)){setError(true);formControls.start(\"error\");return false;}}return;};const handleChange=useCallback(event=>{setError(false);},[]);const handleFocus=useCallback((event,input)=>{setFocus(input.name);},[]);const handleBlur=useCallback(event=>{setFocus(null);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);setError(false);const headers=new Headers;if(extraHeaders){for(const[key,value]of Object.entries(extraHeaders)){headers.append(key,value);}}let requestOptions={method:method,headers:headers};if(method===\"get\"){// Add form fields to URL for GET requests\nconst urlSearchParams=new URLSearchParams;for(const[name,value1]of new FormData(event.target)){urlSearchParams.append(name,value1.toString());}const queryString=urlSearchParams.toString();url+=queryString?`?${queryString}`:\"\";}else{headers.append(\"Content-Type\",contentType);if(contentType===\"application/json\"){headers.append(\"accept\",\"application/json\");}const formData=new FormData(event.target);if(contentType===\"application/x-www-form-urlencoded\"){const urlSearchParams1=new URLSearchParams;for(const[name1,value2]of formData){urlSearchParams1.append(name1,value2.toString());}requestOptions[\"body\"]=urlSearchParams1.toString();}else if(contentType===\"application/json\"){const bodyObject={};for(const[name2,value3]of formData){bodyObject[name2]=value3;}requestOptions[\"body\"]=JSON.stringify(bodyObject);}}fetch(url,requestOptions).then(response=>{const statusCode=response.status;const contentType=response.headers.get(\"content-type\");if(contentType&&contentType.includes(\"application/json\")){return response.json().then(data=>({statusCode,data}));}else if(contentType&&contentType.includes(\"text/plain\")){return response.text().then(data=>({statusCode,data}));}else{throw new Error(\"Unsupported response type\");}}).then(({statusCode,data})=>{if(statusCode>=200&&statusCode<300){// Reset state\nsetLoading(false);event.target.reset();// Handle success\nonSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}else{// Handle errors\nlet errorMessage=\"An error occurred submitting the form\";throw new Error(errorMessage);}}).catch(error=>{console.error(error);setError(true);setLoading(false);formControls.start(\"error\");});},[onSubmit,isLoading]);// Animation\nconst formControls=useAnimationControls();// Label Box Shadow Styles\nconst labelShadowStyles=styles.label.shadowObject?`${labelShadowObject.shadowX}px ${labelShadowObject.shadowY}px ${labelShadowObject.shadowBlur}px ${labelShadowObject.shadowColor}`:null;const labelBorderStyles=styles.label.borderObject?`inset 0 0 0 ${labelBorderObject.borderWidth}px ${labelBorderObject.borderColor}`:null;// Input Box Shadow Styles\nconst inputFocusStylesFrom=styles.input.focusObject?`inset 0 0 0 ${inputFocusObject.focusWidthFrom}px ${inputFocusObject.focusColor}`:null;const inputFocusStylesTo=styles.input.focusObject?`inset 0 0 0 ${inputFocusObject.focusWidthTo}px ${inputFocusObject.focusColor}`:null;const inputShadowStyles=styles.input.shadowObject?`${inputShadowObject.shadowX}px ${inputShadowObject.shadowY}px ${inputShadowObject.shadowBlur}px ${inputShadowObject.shadowColor}`:null;const inputBorderStyles=styles.input.borderObject?`inset 0 0 0 ${inputBorderObject.borderWidth}px ${inputBorderObject.borderColor}`:null;// Button Box Shadow Styles\nconst buttonShadowStyles=styles.button.shadowObject?`${buttonShadowObject.shadowX}px ${buttonShadowObject.shadowY}px ${buttonShadowObject.shadowBlur}px ${buttonShadowObject.shadowColor}`:null;const buttonBorderStyles=styles.button.borderObject?`inset 0 0 0 ${buttonBorderObject.borderWidth}px ${buttonBorderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},focused:{boxShadow:dynamicBoxShadow(inputFocusStylesTo,inputShadowStyles,inputBorderStyles)}};const label=input=>{if(!input.label){return null;}return /*#__PURE__*/ _jsxs(\"label\",{htmlFor:input.name,style:{marginBottom:\"0.375rem\",alignSelf:\"flex-start\",padding:labelPaddingValue,borderRadius:labelBorderRadius,fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color,boxShadow:dynamicBoxShadow(labelShadowStyles,labelBorderStyles)},children:[input.label,requiredFlag(input.required)]});};const getInputSpan=input=>{return input.gridColumn>styles.form.columns?styles.form.columns:input.gridColumn;};const getButtonSpan=()=>{const totalSpan=inputs.reduce((sum,input)=>sum+Number(input.gridColumn),0);const shouldBeInline=totalSpan===styles.form.columns-1;return shouldBeInline?1:styles.form.columns;};const baseInput=input=>{return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/ _jsx(motion.input,{name:input.name,type:input.type,defaultValue:input.value,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3},min:input.min,max:input.max,step:input.step})]});};const textareaInput=input=>{return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/ _jsx(motion.textarea,{name:input.name,defaultValue:input.value,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3}})]});};const optionsHMTL=options=>{return options.map(option=>{return /*#__PURE__*/ _jsx(\"option\",{value:option.value,children:option.text});});};const selectInput=input=>{let options=[];if(input.placeholder){options.push({text:input.placeholder,value:\"\"});}options=options.concat(input.options);return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/ _jsxs(\"div\",{style:{position:\"relative\",display:\"inline-block\"},children:[/*#__PURE__*/ _jsx(\"div\",{style:{...selectChevron,borderColor:`${styles.input.color} transparent transparent transparent`}}),/*#__PURE__*/ _jsx(motion.select,{name:input.name,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3},disabled:isLoading,children:optionsHMTL(options)})]})]});};function checkboxInput(input){return /*#__PURE__*/ _jsx(\"div\",{style:{gridColumn:`span ${getInputSpan(input)}`},children:/*#__PURE__*/ _jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color},children:[/*#__PURE__*/ _jsx(motion.input,{name:input.name,type:\"checkbox\",value:input.value||\"on\",required:input.required,style:{margin:\"0px 8px 0px 4px\"}}),input.label]})});}function radioInput(input){return /*#__PURE__*/ _jsx(\"div\",{style:{gridColumn:`span ${getInputSpan(input)}`},children:/*#__PURE__*/ _jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color},children:[/*#__PURE__*/ _jsx(motion.input,{name:input.name,type:\"radio\",value:input.value||\"on\",required:input.required,style:{margin:\"0px 8px 0px 4px\"}}),input.label]})});}const inputsHTML=inputs.map(input=>{let inputElement=null;if(input.type===FieldType.Select){inputElement=selectInput(input);}else if(input.type===FieldType.TextArea){inputElement=textareaInput(input);}else if(input.type===FieldType.Checkbox){inputElement=checkboxInput(input);}else if(input.type===FieldType.Radio){inputElement=radioInput(input);}else{inputElement=baseInput(input);}return inputElement;});return /*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":styles.input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/ _jsxs(\"form\",{style:{width:\"100%\",display:\"grid\",gridTemplateColumns:styles.form.columns>1&&getButtonSpan()===1?\"1fr auto\":`repeat(${styles.form.columns}, 1fr)`,gap:`${styles.form.rowGap}px ${styles.form.columnGap}px`,background:styles.form.fill},onSubmit:handleSubmit,method:\"POST\",children:[inputsHTML,/*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",gridColumn:`span ${getButtonSpan()}`},children:[!button.shouldAppear&&isLoading&&/*#__PURE__*/ _jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:buttonPaddingPerSide,paddingTop:buttonPaddingTop,paddingRight:buttonPaddingRight,padding:buttonPadding,color:styles.input.color}),button.shouldAppear&&/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",display:\"flex\",flexDirection:\"column\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:{height:\"100%\",display:\"flex\",position:\"relative\",alignSelf:styles.button.align},children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:\"100%\",height:\"100%\",cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:buttonBorderRadius,fontWeight:styles.button.fontWeight,fontSize:16,...styles.button.font,background:styles.button.fill,color:styles.button.color,zIndex:1,boxShadow:dynamicBoxShadow(buttonShadowStyles,buttonBorderStyles)}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius:buttonBorderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:styles.button.color,background:styles.button.fill,boxShadow:dynamicBoxShadow(buttonShadowStyles,buttonBorderStyles)},children:/*#__PURE__*/ _jsx(Spinner,{color:styles.button.color})})]})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`,]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.inputPaddingPerSide?props.inputPaddingRight:props.inputPadding}:{};return /*#__PURE__*/ _jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/ _jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};addPropertyControls(BaseForm,{url:{title:\"Url\",type:ControlType.String},method:{type:ControlType.Enum,defaultValue:\"post\",options:[\"get\",\"post\",\"put\",\"patch\",\"delete\"],optionTitles:[\"Get\",\"Post\",\"Put\",\"Patch\",\"Delete\"]},contentType:{type:ControlType.Enum,defaultValue:\"application/json\",options:[\"application/json\",\"application/x-www-form-urlencoded\"],optionTitles:[\"json\",\"x-www-form-urlencoded\"],hidden:props=>props.method===\"get\"},inputs:{title:\"Inputs\",type:ControlType.Array,control:{type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String},name:{title:\"Name\",type:ControlType.String},placeholder:{title:\"Placeholder\",type:ControlType.String,hidden:props=>props.type===\"checkbox\"},type:{type:ControlType.Enum,options:Object.values(FieldType),optionTitles:Object.keys(FieldType)},options:{type:ControlType.Array,title:\"Options\",control:{type:ControlType.Object,title:\"Option\",controls:{text:{type:ControlType.String,title:\"Text\"},value:{type:ControlType.String,title:\"Value\"}}},hidden:props=>props.type!==\"select\"},min:{type:ControlType.String,hidden:props=>!hasMinMaxStep(props.type)},max:{type:ControlType.String,hidden:props=>!hasMinMaxStep(props.type)},step:{type:ControlType.Number,hidden:props=>!hasMinMaxStep(props.type)},value:{type:ControlType.String},required:{type:ControlType.Boolean},gridColumn:{title:\"Grid Col\",type:ControlType.Enum,defaultValue:1,displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"1\",\"2\",\"3\"],optionTitles:[\"1\",\"2\",\"3\"]}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Submit\"}}},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},styles:{type:ControlType.Object,controls:{form:{type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#fff\"},columns:{title:\"Columns\",type:ControlType.Enum,options:[\"1\",\"2\",\"3\"],displaySegmentedControl:true},rowGap:{title:\"Row gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},columnGap:{title:\"Col Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8}}},label:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"transparent\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},input:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:12,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},align:{title:\"Align\",type:ControlType.Enum,segmentedControlDirection:\"vertical\",options:[\"flex-start\",\"center\",\"flex-end\",\"stretch\",],optionTitles:[\"Start\",\"Center\",\"End\",\"Stretch\"],defaultValue:\"stretch\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}}}}});const defaultStyle={WebkitAppearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};const selectChevron={position:\"absolute\",top:\"50%\",right:\"12px\",transform:\"translateY(-50%)\",width:\"0\",height:\"0\",borderStyle:\"solid\",borderWidth:\"5px 5px 0 5px\",pointerEvents:\"none\"};function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}function requiredFlag(isRequired){if(isRequired){return /*#__PURE__*/ _jsx(\"span\",{children:\"*\"});}return null;}BaseForm.defaultProps={url:\"\",styles:{form:{columns:1,rowGap:8,columnGap:8},label:{color:\"#000\"},input:{borderObject:{borderColor:\"#ccc\"}},button:{}},inputs:[{name:\"name\",label:\"Name\",placeholder:\"Jane\",type:FieldType.Text,required:false},{name:\"email\",label:\"Email\",placeholder:\"jane@example.com\",type:FieldType.Email,required:false},{name:\"service\",label:\"Service\",placeholder:\"- select -\",type:FieldType.Select,required:false,options:[]},{name:\"message\",label:\"Message\",placeholder:\"\",type:FieldType.TextArea,required:false},{name:\"terms\",label:\"I accept the terms & conditions\",type:FieldType.Checkbox,required:false},]};export default BaseForm;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BaseForm\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"300\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BaseForm.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"zX7U6SUJb\",\"eEKe_ysWs\",\"dw65wsECR\"];const serializationHash=\"framer-Sz2j4\";const variantClassNames={dw65wsECR:\"framer-v-1s568cu\",eEKe_ysWs:\"framer-v-1qvkd5p\",zX7U6SUJb:\"framer-v-4enl5o\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"Variant 1\":\"zX7U6SUJb\",\"Variant 2\":\"eEKe_ysWs\",\"Variant 3\":\"dw65wsECR\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"zX7U6SUJb\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zX7U6SUJb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearf382t5=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),2e3);});useOnVariantChange(baseVariant,{default:onAppearf382t5});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-4enl5o\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"zX7U6SUJb\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({dw65wsECR:{\"data-framer-name\":\"Variant 3\"},eEKe_ysWs:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uej2a9\",layoutDependency:layoutDependency,layoutId:\"dltbKdosQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(134, 54, 248) 2%, rgb(240, 32, 179) 35%, rgb(248, 71, 94) 67%, rgb(255, 148, 33) 100%)\"},children:\"Production\"})})}),className:\"framer-uzasuv\",\"data-framer-name\":\"Where Innovation Meets Production\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"r3pRuY3An\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(134, 54, 248) 2%, rgb(240, 32, 179) 35%, rgb(248, 71, 94) 67%, rgb(255, 148, 33) 100%)\"},children:\"Gaming\"})})}),className:\"framer-153me88\",\"data-framer-name\":\"Where Innovation Meets Production\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"oum35KnJ8\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(134, 54, 248) 2%, rgb(240, 32, 179) 35%, rgb(248, 71, 94) 67%, rgb(255, 148, 33) 100%)\"},children:\"Technology\"})})}),className:\"framer-9g9y3o\",\"data-framer-name\":\"Where Innovation Meets Production\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"Hl7L3KCUC\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Sz2j4.framer-1o6ck3r, .framer-Sz2j4 .framer-1o6ck3r { display: block; }\",\".framer-Sz2j4.framer-4enl5o { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 78px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 412px; }\",\".framer-Sz2j4 .framer-uej2a9 { align-content: flex-start; align-items: flex-start; bottom: -105px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 105px; width: min-content; z-index: 1; }\",\".framer-Sz2j4 .framer-uzasuv { flex: none; height: 88px; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Sz2j4 .framer-153me88, .framer-Sz2j4 .framer-9g9y3o { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Sz2j4.framer-4enl5o, .framer-Sz2j4 .framer-uej2a9 { gap: 0px; } .framer-Sz2j4.framer-4enl5o > *, .framer-Sz2j4 .framer-uej2a9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Sz2j4.framer-4enl5o > :first-child, .framer-Sz2j4 .framer-uej2a9 > :first-child { margin-top: 0px; } .framer-Sz2j4.framer-4enl5o > :last-child, .framer-Sz2j4 .framer-uej2a9 > :last-child { margin-bottom: 0px; } }\",\".framer-Sz2j4.framer-v-1qvkd5p.framer-4enl5o { justify-content: center; }\",\".framer-Sz2j4.framer-v-1qvkd5p .framer-uej2a9 { bottom: 0px; top: 0px; }\",\".framer-Sz2j4.framer-v-1s568cu.framer-4enl5o { height: min-content; justify-content: flex-end; min-height: 78px; }\",\".framer-Sz2j4.framer-v-1s568cu .framer-uej2a9 { bottom: 113px; top: -113px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 78\n * @framerIntrinsicWidth 412\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"eEKe_ysWs\":{\"layout\":[\"fixed\",\"fixed\"]},\"dw65wsECR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerB0MZIcvi_=withCSS(Component,css,\"framer-Sz2j4\");export default FramerB0MZIcvi_;FramerB0MZIcvi_.displayName=\"Hero Text\";FramerB0MZIcvi_.defaultProps={height:78,width:412};addPropertyControls(FramerB0MZIcvi_,{variant:{options:[\"zX7U6SUJb\",\"eEKe_ysWs\",\"dw65wsECR\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerB0MZIcvi_,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerB0MZIcvi_\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"412\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"78\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eEKe_ysWs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dw65wsECR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./B0MZIcvi_.map", "// Generated by Framer (e1877f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"ujBLQGHR1\",\"Km3RTCcX4\",\"tysxE8MoN\",\"INhTkpzvz\"];const serializationHash=\"framer-oupfI\";const variantClassNames={INhTkpzvz:\"framer-v-erygc7\",Km3RTCcX4:\"framer-v-151a0hj\",tysxE8MoN:\"framer-v-i3sm2k\",ujBLQGHR1:\"framer-v-136celx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"ujBLQGHR1\",\"Variant 2\":\"Km3RTCcX4\",\"Variant 3\":\"tysxE8MoN\",\"Variant 4\":\"INhTkpzvz\"};const getProps=({height,id,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,pTgegn3Xm:tap!==null&&tap!==void 0?tap:props.pTgegn3Xm,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ujBLQGHR1\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,pTgegn3Xm,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ujBLQGHR1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1yuy12b=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(pTgegn3Xm){const res=await pTgegn3Xm(...args);if(res===false)return false;}});const onMouseEnter1vtmq5b=activeVariantCallback(async(...args)=>{setVariant(\"tysxE8MoN\");});const onMouseEnter1tuxx3l=activeVariantCallback(async(...args)=>{setVariant(\"INhTkpzvz\");});const onMouseLeavegklyq6=activeVariantCallback(async(...args)=>{setVariant(\"ujBLQGHR1\");});const onMouseLeaveuq4zja=activeVariantCallback(async(...args)=>{setVariant(\"Km3RTCcX4\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Km3RTCcX4\",\"INhTkpzvz\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Km3RTCcX4\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"tysxE8MoN\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"INhTkpzvz\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-136celx\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ujBLQGHR1\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEnter1vtmq5b,onTap:onTap1yuy12b,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({INhTkpzvz:{\"data-framer-name\":\"Variant 4\",onMouseEnter:undefined,onMouseLeave:onMouseLeaveuq4zja},Km3RTCcX4:{\"data-framer-name\":\"Variant 2\",onMouseEnter:onMouseEnter1tuxx3l},tysxE8MoN:{\"data-framer-name\":\"Variant 3\",onMouseLeave:onMouseLeavegklyq6}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-24orcy\",\"data-framer-name\":\"vuesax/linear/arrow-right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"onOpNLEyX\",svg:'<svg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"64\" rx=\"32\" transform=\"matrix(-1 0 0 1 64 0)\" fill=\"white\"/>\\n<rect x=\"-0.5\" y=\"0.5\" width=\"63\" height=\"63\" rx=\"31.5\" transform=\"matrix(-1 0 0 1 63 0)\" stroke=\"#585958\" stroke-opacity=\"0.3\"/>\\n<path d=\"M28.7601 23.9067L20.6668 32.0001L28.7601 40.0934\" stroke=\"#585958\" stroke-width=\"2.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M43.3333 32H20.8933\" stroke=\"#585958\" stroke-width=\"2.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mm6alg\",\"data-border\":true,\"data-framer-name\":\"vuesax/linear/arrow-right\",layoutDependency:layoutDependency,layoutId:\"LY9FjR1Sk\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(88, 89, 88, 0.3)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kuhsck\",\"data-framer-name\":\"vuesax/linear/arrow-right\",fill:\"rgb(88, 89, 88)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"wripCwKE4\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.2399 7.90674L27.3332 16.0001L19.2399 24.0934\" stroke=\"#585958\" stroke-width=\"2.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.66667 16H27.1067\" stroke=\"#585958\" stroke-width=\"2.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1bxrx1l\",\"data-framer-name\":\"vuesax/linear/arrow-right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"xcWkwJU4t\",svg:'<svg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"64\" rx=\"32\" transform=\"matrix(-1 0 0 1 64 0)\" fill=\"#7D09E8\"/>\\n<path d=\"M28.7601 23.9067L20.6668 32.0001L28.7601 40.0934\" stroke=\"white\" stroke-width=\"2.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M43.3333 32H20.8933\" stroke=\"white\" stroke-width=\"2.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1krj7z7\",\"data-framer-name\":\"vuesax/linear/arrow-right\",layoutDependency:layoutDependency,layoutId:\"O8U1pAlE6\",style:{backgroundColor:\"rgb(124, 9, 231)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ryljjm\",\"data-framer-name\":\"vuesax/linear/arrow-right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"tAH3ZWT8y\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.2399 7.90674L27.3332 16.0001L19.2399 24.0934\" stroke=\"white\" stroke-width=\"2.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.66666 16H27.1067\" stroke=\"white\" stroke-width=\"2.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oupfI.framer-8ubms0, .framer-oupfI .framer-8ubms0 { display: block; }\",\".framer-oupfI.framer-136celx { cursor: pointer; height: 64px; overflow: hidden; position: relative; width: 64px; }\",\".framer-oupfI .framer-24orcy { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-oupfI .framer-1mm6alg, .framer-oupfI .framer-1krj7z7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 16px; position: absolute; top: 0px; width: min-content; }\",\".framer-oupfI .framer-1kuhsck, .framer-oupfI .framer-ryljjm { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-oupfI .framer-1bxrx1l { flex: none; height: 64px; left: 0px; position: absolute; top: 0px; width: 64px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oupfI .framer-1mm6alg, .framer-oupfI .framer-1krj7z7 { gap: 0px; } .framer-oupfI .framer-1mm6alg > *, .framer-oupfI .framer-1krj7z7 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-oupfI .framer-1mm6alg > :first-child, .framer-oupfI .framer-1krj7z7 > :first-child { margin-left: 0px; } .framer-oupfI .framer-1mm6alg > :last-child, .framer-oupfI .framer-1krj7z7 > :last-child { margin-right: 0px; } }\",'.framer-oupfI[data-border=\"true\"]::after, .framer-oupfI [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Km3RTCcX4\":{\"layout\":[\"fixed\",\"fixed\"]},\"tysxE8MoN\":{\"layout\":[\"fixed\",\"fixed\"]},\"INhTkpzvz\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"pTgegn3Xm\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxVnLVyQ5a=withCSS(Component,css,\"framer-oupfI\");export default FramerxVnLVyQ5a;FramerxVnLVyQ5a.displayName=\"Arrows\";FramerxVnLVyQ5a.defaultProps={height:64,width:64};addPropertyControls(FramerxVnLVyQ5a,{variant:{options:[\"ujBLQGHR1\",\"Km3RTCcX4\",\"tysxE8MoN\",\"INhTkpzvz\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},pTgegn3Xm:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerxVnLVyQ5a,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxVnLVyQ5a\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"pTgegn3Xm\\\":\\\"tap\\\"}\",\"framerIntrinsicWidth\":\"64\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"64\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Km3RTCcX4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tysxE8MoN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"INhTkpzvz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xVnLVyQ5a.map", "// Generated by Framer (92b2253)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Arrows from\"https://framerusercontent.com/modules/mZqSgbIbmoe217skhb0z/33oUDGgWleqKd8XXpCvK/xVnLVyQ5a.js\";const RichTextWithFX=withFX(RichText);const ArrowsFonts=getFonts(Arrows);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"mFgx9_YJz\",\"AMz2MNZb8\",\"sp2_Rpphe\",\"Stm5VcmFI\",\"bANIwf0Lg\",\"CZvrxoYs2\",\"IM5PICq1s\",\"uJuRNiui1\",\"mFLND2O6S\"];const serializationHash=\"framer-VcjKY\";const variantClassNames={AMz2MNZb8:\"framer-v-1qvogpq\",bANIwf0Lg:\"framer-v-1qqqr7a\",CZvrxoYs2:\"framer-v-m7ec8\",IM5PICq1s:\"framer-v-1cchx8w\",mFgx9_YJz:\"framer-v-14ncid5\",mFLND2O6S:\"framer-v-16qjmcj\",sp2_Rpphe:\"framer-v-qtg5vr\",Stm5VcmFI:\"framer-v-vmghps\",uJuRNiui1:\"framer-v-8wk0d7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition2={damping:150,delay:.2,mass:6,stiffness:410,type:\"spring\"};const transition3={damping:150,delay:.4,mass:6,stiffness:410,type:\"spring\"};const transition4={damping:150,delay:.6,mass:6,stiffness:410,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-200,y:0};const transition5={damping:150,delay:.8,mass:8,stiffness:410,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:200,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition6={damping:150,delay:1,mass:6,stiffness:410,type:\"spring\"};const transition7={damping:150,delay:1.2,mass:6,stiffness:410,type:\"spring\"};const transition8={damping:150,delay:1.4,mass:6,stiffness:410,type:\"spring\"};const transition9={damping:150,delay:1.6,mass:6,stiffness:410,type:\"spring\"};const transition10={damping:150,delay:1.1,mass:6,stiffness:410,type:\"spring\"};const transition11={damping:150,delay:1.3,mass:6,stiffness:410,type:\"spring\"};const transition12={damping:150,delay:1.5,mass:6,stiffness:410,type:\"spring\"};const transition13={damping:150,delay:1.7,mass:6,stiffness:410,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"mFgx9_YJz\",\"Variant 2\":\"AMz2MNZb8\",\"Variant 3\":\"sp2_Rpphe\",\"Variant 5\":\"bANIwf0Lg\",\"Variant 6\":\"CZvrxoYs2\",\"Variant 7\":\"uJuRNiui1\",\"Variant 8\":\"mFLND2O6S\",Variant:\"IM5PICq1s\"};const getProps=({height,id,impactAndInnovation,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,IdXn8nSgg:impactAndInnovation!==null&&impactAndInnovation!==void 0?impactAndInnovation:props.IdXn8nSgg,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"mFgx9_YJz\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,IdXn8nSgg,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mFgx9_YJz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const pTgegn3Xm1bq85vz=activeVariantCallback(async(...args)=>{setVariant(\"sp2_Rpphe\");});const pTgegn3Xmcroy64=activeVariantCallback(async(...args)=>{setVariant(\"mFgx9_YJz\");});const pTgegn3Xmcrzazy=activeVariantCallback(async(...args)=>{setVariant(\"AMz2MNZb8\");});const pTgegn3Xm1sxs0bf=activeVariantCallback(async(...args)=>{setVariant(\"CZvrxoYs2\");});const pTgegn3Xm1wvp0hk=activeVariantCallback(async(...args)=>{setVariant(\"Stm5VcmFI\");});const pTgegn3Xm3iff0e=activeVariantCallback(async(...args)=>{setVariant(\"bANIwf0Lg\");});const pTgegn3Xm18vfk0o=activeVariantCallback(async(...args)=>{setVariant(\"mFLND2O6S\");});const pTgegn3Xmkfflxf=activeVariantCallback(async(...args)=>{setVariant(\"IM5PICq1s\");});const pTgegn3Xmzgys56=activeVariantCallback(async(...args)=>{setVariant(\"uJuRNiui1\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"AMz2MNZb8\",\"sp2_Rpphe\",\"bANIwf0Lg\",\"CZvrxoYs2\",\"uJuRNiui1\",\"mFLND2O6S\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"AMz2MNZb8\",\"bANIwf0Lg\",\"uJuRNiui1\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"sp2_Rpphe\",\"CZvrxoYs2\",\"mFLND2O6S\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"bANIwf0Lg\",\"uJuRNiui1\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"CZvrxoYs2\",\"mFLND2O6S\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"AMz2MNZb8\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"sp2_Rpphe\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-14ncid5\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"mFgx9_YJz\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({AMz2MNZb8:{\"data-framer-name\":\"Variant 2\"},bANIwf0Lg:{\"data-framer-name\":\"Variant 5\"},CZvrxoYs2:{\"data-framer-name\":\"Variant 6\"},IM5PICq1s:{\"data-framer-name\":undefined},mFLND2O6S:{\"data-framer-name\":\"Variant 8\"},sp2_Rpphe:{\"data-framer-name\":\"Variant 3\"},Stm5VcmFI:{\"data-framer-name\":undefined},uJuRNiui1:{\"data-framer-name\":\"Variant 7\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tr2pai\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"z0WjOB1aQ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2kbzuj\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"lxaiTkzLZ\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(109, 5, 226) 0%, rgb(255, 0, 65) 75%, rgb(255, 137, 0) 100%)\"},children:\"IMPACT & INNOVATION\"})})}),className:\"framer-1wg1egg\",\"data-framer-name\":\"SOCIAL IMPACT & INNOVATION\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"J5dzhaxim\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2xfnxx\",\"data-framer-name\":\"Sub Text\",layoutDependency:layoutDependency,layoutId:\"FNgYrboSd\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 10, 10))\"},children:\"Breaking Boundaries, Forging Change:\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(10, 10, 10))\"},children:\"Innovation for a Better World\"})]}),className:\"framer-1leg0gz\",\"data-framer-name\":\"Breaking Barriers, Building Change: Innovation for a Better World\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"jaXWO8jhQ\",style:{\"--extracted-2gxw0f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(10, 10, 10)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IM5PICq1s:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 10, 10))\"},children:\"Breaking Boundaries, Forging Change:\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(10, 10, 10))\"},children:\"Innovation for a Better World\"})]})},mFLND2O6S:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 10, 10))\"},children:\"Breaking Boundaries, Forging Change:\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(10, 10, 10))\"},children:\"Innovation for a Better World\"})]})},uJuRNiui1:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 10, 10))\"},children:\"Breaking Boundaries, Forging Change:\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(10, 10, 10))\"},children:\"Innovation for a Better World\"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"Experience the synergy of immersive entertainment, cutting-edge technology, and inspired design as they unite to create real-world impact. Discover how we're transforming concepts into revolutionary solutions.\"})}),className:\"framer-r4izjb\",\"data-framer-name\":\"Witness the power of immersive entertainment, cutting-edge tech, and inspired design converge to deliver real-world impact. See how we're turning ideas into groundbreaking solutions.\",fonts:[\"GF;Outfit-300\"],layoutDependency:layoutDependency,layoutId:\"OZZAgFw5s\",style:{\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IM5PICq1s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"Experience the synergy of immersive entertainment, cutting-edge technology, and inspired design as they unite to create real-world impact. Discover how we're transforming concepts into revolutionary solutions.\"})})},mFLND2O6S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"Experience the synergy of immersive entertainment, cutting-edge technology, and inspired design as they unite to create real-world impact. Discover how we're transforming concepts into revolutionary solutions.\"})})},uJuRNiui1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"Experience the synergy of immersive entertainment, cutting-edge technology, and inspired design as they unite to create real-world impact. Discover how we're transforming concepts into revolutionary solutions.\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:IdXn8nSgg,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1noky3k\",\"data-framer-name\":\"Frame 1618873666\",layoutDependency:layoutDependency,layoutId:\"Ic2gLrseA\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"64px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h692dx-container\",layoutDependency:layoutDependency,layoutId:\"c83hzHYoJ-container\",children:/*#__PURE__*/_jsx(Arrows,{height:\"100%\",id:\"c83hzHYoJ\",layoutId:\"c83hzHYoJ\",pTgegn3Xm:pTgegn3Xm1bq85vz,style:{height:\"100%\",width:\"100%\"},variant:\"ujBLQGHR1\",width:\"100%\",...addPropertyOverrides({AMz2MNZb8:{pTgegn3Xm:pTgegn3Xmcroy64},bANIwf0Lg:{pTgegn3Xm:pTgegn3Xm1wvp0hk},CZvrxoYs2:{pTgegn3Xm:pTgegn3Xm3iff0e},IM5PICq1s:{pTgegn3Xm:pTgegn3Xm18vfk0o},mFLND2O6S:{pTgegn3Xm:pTgegn3Xmzgys56},sp2_Rpphe:{pTgegn3Xm:pTgegn3Xmcrzazy},Stm5VcmFI:{pTgegn3Xm:pTgegn3Xm1sxs0bf},uJuRNiui1:{pTgegn3Xm:pTgegn3Xmkfflxf}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"64px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xfbymm-container\",layoutDependency:layoutDependency,layoutId:\"as8o3GFcf-container\",children:/*#__PURE__*/_jsx(Arrows,{height:\"100%\",id:\"as8o3GFcf\",layoutId:\"as8o3GFcf\",pTgegn3Xm:pTgegn3Xmcrzazy,style:{height:\"100%\",width:\"100%\"},variant:\"Km3RTCcX4\",width:\"100%\",...addPropertyOverrides({AMz2MNZb8:{pTgegn3Xm:pTgegn3Xm1bq85vz},bANIwf0Lg:{pTgegn3Xm:pTgegn3Xm1sxs0bf},CZvrxoYs2:{pTgegn3Xm:pTgegn3Xm1wvp0hk},IM5PICq1s:{pTgegn3Xm:pTgegn3Xmzgys56},mFLND2O6S:{pTgegn3Xm:pTgegn3Xmkfflxf},sp2_Rpphe:{pTgegn3Xm:pTgegn3Xmcroy64},Stm5VcmFI:{pTgegn3Xm:pTgegn3Xm3iff0e},uJuRNiui1:{pTgegn3Xm:pTgegn3Xm18vfk0o}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a53uf0\",\"data-framer-name\":\"Inner section of Impact section\",layoutDependency:layoutDependency,layoutId:\"iS5EU8rKa\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y4e940\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"Oc4ZykJ92\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-dbqd5p\",\"data-framer-name\":\"Main img\",layoutDependency:layoutDependency,layoutId:\"pskhTnfjl\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2269,pixelWidth:2280,positionX:\"center\",positionY:\"top\",sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 200px) * 0.7)`,src:\"https://framerusercontent.com/images/zJP5l8rvvqkD0umLYIzqsZTveYk.jpg\",srcSet:\"https://framerusercontent.com/images/zJP5l8rvvqkD0umLYIzqsZTveYk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zJP5l8rvvqkD0umLYIzqsZTveYk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zJP5l8rvvqkD0umLYIzqsZTveYk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zJP5l8rvvqkD0umLYIzqsZTveYk.jpg 2280w\"},className:\"framer-1ht618e\",\"data-framer-name\":\"Rectangle 18\",layoutDependency:layoutDependency,layoutId:\"FwYIbQwvL\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({AMz2MNZb8:{background:{alt:\"\",fit:\"fill\",pixelHeight:4e3,pixelWidth:4e3,positionX:\"center\",positionY:\"top\",sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 200px) * 0.7)`,src:\"https://framerusercontent.com/images/nKSUUs5dcbKdsT7ItpJ1EjoYQc.jpg\",srcSet:\"https://framerusercontent.com/images/nKSUUs5dcbKdsT7ItpJ1EjoYQc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nKSUUs5dcbKdsT7ItpJ1EjoYQc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nKSUUs5dcbKdsT7ItpJ1EjoYQc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nKSUUs5dcbKdsT7ItpJ1EjoYQc.jpg 4000w\"}},bANIwf0Lg:{background:{alt:\"\",fit:\"fill\",pixelHeight:4560,pixelWidth:3648,positionX:\"center\",positionY:\"top\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 160px)`,src:\"https://framerusercontent.com/images/L7wCuqMYcMPzJggHSun0KoF4ywA.jpg\",srcSet:\"https://framerusercontent.com/images/L7wCuqMYcMPzJggHSun0KoF4ywA.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/L7wCuqMYcMPzJggHSun0KoF4ywA.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/L7wCuqMYcMPzJggHSun0KoF4ywA.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/L7wCuqMYcMPzJggHSun0KoF4ywA.jpg 3648w\"}},CZvrxoYs2:{background:{alt:\"\",fit:\"fill\",pixelHeight:3240,pixelWidth:5760,positionX:\"center\",positionY:\"top\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 160px)`,src:\"https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg\",srcSet:\"https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg 5760w\"}},IM5PICq1s:{background:{alt:\"\",fit:\"fill\",pixelHeight:2269,pixelWidth:2280,positionX:\"center\",positionY:\"top\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/zJP5l8rvvqkD0umLYIzqsZTveYk.jpg\",srcSet:\"https://framerusercontent.com/images/zJP5l8rvvqkD0umLYIzqsZTveYk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zJP5l8rvvqkD0umLYIzqsZTveYk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zJP5l8rvvqkD0umLYIzqsZTveYk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zJP5l8rvvqkD0umLYIzqsZTveYk.jpg 2280w\"}},mFLND2O6S:{background:{alt:\"\",fit:\"fill\",pixelHeight:3240,pixelWidth:5760,positionX:\"center\",positionY:\"top\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg\",srcSet:\"https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg 5760w\"}},sp2_Rpphe:{background:{alt:\"\",fit:\"fill\",pixelHeight:3240,pixelWidth:5760,positionX:\"center\",positionY:\"top\",sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 200px) * 0.7)`,src:\"https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg\",srcSet:\"https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/EEJkVYtLV35t3hVCUioK48M7os.jpg 5760w\"}},Stm5VcmFI:{background:{alt:\"\",fit:\"fill\",pixelHeight:2269,pixelWidth:2280,positionX:\"center\",positionY:\"top\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 160px)`,src:\"https://framerusercontent.com/images/zJP5l8rvvqkD0umLYIzqsZTveYk.jpg\",srcSet:\"https://framerusercontent.com/images/zJP5l8rvvqkD0umLYIzqsZTveYk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zJP5l8rvvqkD0umLYIzqsZTveYk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zJP5l8rvvqkD0umLYIzqsZTveYk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zJP5l8rvvqkD0umLYIzqsZTveYk.jpg 2280w\"}},uJuRNiui1:{background:{alt:\"\",fit:\"fill\",pixelHeight:4560,pixelWidth:3648,positionX:\"center\",positionY:\"top\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/L7wCuqMYcMPzJggHSun0KoF4ywA.jpg\",srcSet:\"https://framerusercontent.com/images/L7wCuqMYcMPzJggHSun0KoF4ywA.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/L7wCuqMYcMPzJggHSun0KoF4ywA.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/L7wCuqMYcMPzJggHSun0KoF4ywA.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/L7wCuqMYcMPzJggHSun0KoF4ywA.jpg 3648w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v65tbu\",layoutDependency:layoutDependency,layoutId:\"zg2cWatPp\",style:{background:\"linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Battle For Revolution Series\"})}),className:\"framer-stuzka\",\"data-framer-name\":\"Battle For Revolution Series\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"qXSoswVYt\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AMz2MNZb8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Impact in App and Website Development\"})})},bANIwf0Lg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Impact in App and Website Development\"})})},CZvrxoYs2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Impactful Content Production\"})})},IM5PICq1s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Battle For Revolution Series\"})})},mFLND2O6S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Impactful Content Production\"})})},sp2_Rpphe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Impactful Content Production\"})})},uJuRNiui1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Impact in App and Website Development\"})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1jqsjag\",\"data-framer-name\":\"Sub img\",layoutDependency:layoutDependency,layoutId:\"Rd5foqcY9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tknmll\",\"data-framer-name\":\"Team img\",layoutDependency:layoutDependency,layoutId:\"dGovJpXQn\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 200px) * 0.3 - 24px, 1px)`,src:\"https://framerusercontent.com/images/hJGza9ui47FpeJV4a3JW2csgcpk.jpg\",srcSet:\"https://framerusercontent.com/images/hJGza9ui47FpeJV4a3JW2csgcpk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hJGza9ui47FpeJV4a3JW2csgcpk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hJGza9ui47FpeJV4a3JW2csgcpk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hJGza9ui47FpeJV4a3JW2csgcpk.jpg 4032w\"},className:\"framer-166mmgz\",\"data-framer-name\":\"Rectangle 19\",layoutDependency:layoutDependency,layoutId:\"OVlsfyvxB\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({bANIwf0Lg:{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 160px)`,src:\"https://framerusercontent.com/images/kS0nBwB7pKnWC3vlQzLBRwPVKYA.jpg\",srcSet:\"https://framerusercontent.com/images/kS0nBwB7pKnWC3vlQzLBRwPVKYA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kS0nBwB7pKnWC3vlQzLBRwPVKYA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kS0nBwB7pKnWC3vlQzLBRwPVKYA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kS0nBwB7pKnWC3vlQzLBRwPVKYA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/kS0nBwB7pKnWC3vlQzLBRwPVKYA.jpg 7952w\"}},CZvrxoYs2:{background:{alt:\"\",fit:\"fill\",pixelHeight:6e3,pixelWidth:9e3,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 160px)`,src:\"https://framerusercontent.com/images/BnH86VAywc9L0Ay7SqyyG1y038.jpg\",srcSet:\"https://framerusercontent.com/images/BnH86VAywc9L0Ay7SqyyG1y038.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BnH86VAywc9L0Ay7SqyyG1y038.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BnH86VAywc9L0Ay7SqyyG1y038.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BnH86VAywc9L0Ay7SqyyG1y038.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/BnH86VAywc9L0Ay7SqyyG1y038.jpg 9000w\"}},IM5PICq1s:{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/hJGza9ui47FpeJV4a3JW2csgcpk.jpg\",srcSet:\"https://framerusercontent.com/images/hJGza9ui47FpeJV4a3JW2csgcpk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hJGza9ui47FpeJV4a3JW2csgcpk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hJGza9ui47FpeJV4a3JW2csgcpk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hJGza9ui47FpeJV4a3JW2csgcpk.jpg 4032w\"}},mFLND2O6S:{background:{alt:\"\",fit:\"fill\",pixelHeight:6e3,pixelWidth:9e3,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/BnH86VAywc9L0Ay7SqyyG1y038.jpg\",srcSet:\"https://framerusercontent.com/images/BnH86VAywc9L0Ay7SqyyG1y038.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BnH86VAywc9L0Ay7SqyyG1y038.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BnH86VAywc9L0Ay7SqyyG1y038.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BnH86VAywc9L0Ay7SqyyG1y038.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/BnH86VAywc9L0Ay7SqyyG1y038.jpg 9000w\"}},Stm5VcmFI:{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 160px)`,src:\"https://framerusercontent.com/images/hJGza9ui47FpeJV4a3JW2csgcpk.jpg\",srcSet:\"https://framerusercontent.com/images/hJGza9ui47FpeJV4a3JW2csgcpk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hJGza9ui47FpeJV4a3JW2csgcpk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hJGza9ui47FpeJV4a3JW2csgcpk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hJGza9ui47FpeJV4a3JW2csgcpk.jpg 4032w\"}},uJuRNiui1:{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/kS0nBwB7pKnWC3vlQzLBRwPVKYA.jpg\",srcSet:\"https://framerusercontent.com/images/kS0nBwB7pKnWC3vlQzLBRwPVKYA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kS0nBwB7pKnWC3vlQzLBRwPVKYA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kS0nBwB7pKnWC3vlQzLBRwPVKYA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kS0nBwB7pKnWC3vlQzLBRwPVKYA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/kS0nBwB7pKnWC3vlQzLBRwPVKYA.jpg 7952w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r92imw\",layoutDependency:layoutDependency,layoutId:\"bOmBSwiyE\",style:{background:\"linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Our Team\"})}),className:\"framer-1c58aug\",\"data-framer-name\":\"Our Team\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"VCbAF4uMs\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IM5PICq1s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Our Team\"})})},mFLND2O6S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Our Team\"})})},uJuRNiui1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Our Team\"})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8yvd7y\",\"data-framer-name\":\"Brand img\",layoutDependency:layoutDependency,layoutId:\"yuhEnLeeh\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"389px\",src:\"https://framerusercontent.com/images/aYwKcRdkmTX2C9MedciwdyJZBfg.png\",srcSet:\"https://framerusercontent.com/images/aYwKcRdkmTX2C9MedciwdyJZBfg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aYwKcRdkmTX2C9MedciwdyJZBfg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aYwKcRdkmTX2C9MedciwdyJZBfg.png 1556w\"},className:\"framer-odwy2i\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"CqfYCIUKh\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17hdnlx\",\"data-border\":true,\"data-framer-name\":\"iPhone 11 Pro Max - 3\",layoutDependency:layoutDependency,layoutId:\"Sz3s2FGdu\",style:{\"--border-bottom-width\":\"0.4761904776096344px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"0.4761904776096344px\",\"--border-right-width\":\"0.4761904776096344px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4761904776096344px\",backdropFilter:\"blur(5px)\",background:\"radial-gradient(100% 100% at 0% 0%, rgba(0, 0, 0, 0.4000000059604645) 0%, rgba(0, 0, 0, 0) 100%)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"inset -1.1904761791229248px -1.1904761791229248px 59.52381134033203px 0px rgba(0, 0, 0, 0.019999999552965164)\",WebkitBackdropFilter:\"blur(5px)\"}}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 200px) * 0.3 - 24px, 1px) * 0.8)`,src:\"https://framerusercontent.com/images/0GXvdb3yN6TFfBZAmLbvn7srk.png\",srcSet:\"https://framerusercontent.com/images/0GXvdb3yN6TFfBZAmLbvn7srk.png?scale-down-to=512 512w,https://framerusercontent.com/images/0GXvdb3yN6TFfBZAmLbvn7srk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0GXvdb3yN6TFfBZAmLbvn7srk.png 1116w\"},className:\"framer-oxw2s\",\"data-framer-name\":\"GG LOGO  2\",layoutDependency:layoutDependency,layoutId:\"csEcyp0lL\",transformTemplate:transformTemplate1,...addPropertyOverrides({IM5PICq1s:{background:{alt:\"\",fit:\"fill\",sizes:\"0.8px\",src:\"https://framerusercontent.com/images/0GXvdb3yN6TFfBZAmLbvn7srk.png\",srcSet:\"https://framerusercontent.com/images/0GXvdb3yN6TFfBZAmLbvn7srk.png?scale-down-to=512 512w,https://framerusercontent.com/images/0GXvdb3yN6TFfBZAmLbvn7srk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0GXvdb3yN6TFfBZAmLbvn7srk.png 1116w\"}},Stm5VcmFI:{background:{alt:\"\",fit:\"fill\",sizes:\"0.5px\",src:\"https://framerusercontent.com/images/0GXvdb3yN6TFfBZAmLbvn7srk.png\",srcSet:\"https://framerusercontent.com/images/0GXvdb3yN6TFfBZAmLbvn7srk.png?scale-down-to=512 512w,https://framerusercontent.com/images/0GXvdb3yN6TFfBZAmLbvn7srk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0GXvdb3yN6TFfBZAmLbvn7srk.png 1116w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png\",srcSet:\"https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png?scale-down-to=512 512w,https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png 4036w\"},className:\"framer-gaxzdq\",\"data-framer-name\":\"GG TEC LOGO WHITE_ 4\",layoutDependency:layoutDependency,layoutId:\"axvKVb3ka\",transformTemplate:transformTemplate1,...addPropertyOverrides({AMz2MNZb8:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 200px) * 0.3 - 24px, 1px) * 0.9)`,src:\"https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png\",srcSet:\"https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png?scale-down-to=512 512w,https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png 4036w\"}},bANIwf0Lg:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"0.7px\",src:\"https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png\",srcSet:\"https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png?scale-down-to=512 512w,https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png 4036w\"}},uJuRNiui1:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"0.9px\",src:\"https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png\",srcSet:\"https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png?scale-down-to=512 512w,https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HKxUGrmafIPbmISzaAzyAhd14EI.png 4036w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png\",srcSet:\"https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png?scale-down-to=512 512w,https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png 2952w\"},className:\"framer-146p8ke\",\"data-framer-name\":\"gg studio logo white_\",layoutDependency:layoutDependency,layoutId:\"ZuiQALmd9\",transformTemplate:transformTemplate1,...addPropertyOverrides({CZvrxoYs2:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"0.4px\",src:\"https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png\",srcSet:\"https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png?scale-down-to=512 512w,https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png 2952w\"}},mFLND2O6S:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"0.65px\",src:\"https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png\",srcSet:\"https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png?scale-down-to=512 512w,https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png 2952w\"}},sp2_Rpphe:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 200px) * 0.3 - 24px, 1px) * 0.65)`,src:\"https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png\",srcSet:\"https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png?scale-down-to=512 512w,https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RnOCluaEDVagRIKjgfmDkMGHPrg.png 2952w\"}}},baseVariant,gestureVariant)})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hvvm7x\",\"data-framer-name\":\"Info Text\",layoutDependency:layoutDependency,layoutId:\"LRF6Ro0JZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ynd3ih\",\"data-framer-name\":\"Left info\",layoutDependency:layoutDependency,layoutId:\"EDtx8BgVC\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 10, 10))\"},children:\"Battle For Revolution Series\"})}),className:\"framer-1mxsj89\",\"data-framer-name\":\"Battle For Revolution Series\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"JO509AEwx\",style:{\"--extracted-r6o4lv\":\"rgb(10, 10, 10)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IM5PICq1s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 10, 10))\"},children:\"Battle For Revolution Series\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"Experience the transformative impact of Glazer Games as we revolutionize the esports landscape with the Battle for Revolution Series. Every match not only fuels competitive play but also contributes to initiatives for underprivileged youth, blending competition with compassion.\"})}),className:\"framer-12jl7ti\",\"data-framer-name\":\"Glazer Games' Battle for Revolution Series unites gamers in competitive play while funding initiatives for underprivileged youth. Every match makes a difference, blending competition with compassion.\",fonts:[\"GF;Outfit-300\"],layoutDependency:layoutDependency,layoutId:\"nSTkpGfaW\",style:{\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IM5PICq1s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"Experience the transformative impact of Glazer Games as we revolutionize the esports landscape with the Battle for Revolution Series. Every match not only fuels competitive play but also contributes to initiatives for underprivileged youth, blending competition with compassion.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"The Battle for Revolution, a BGMI (Battlegrounds Mobile India) esports tournament hosted by Glazer Games, pits top mobile gamers against each other in a thrilling battle royale format, pushing them to strategize, outplay, and emerge victorious.\"})}),className:\"framer-6mk8uj\",\"data-framer-name\":\"The Battle for Revolution is a BGMI (Battlegrounds Mobile India) esports tournament hosted by Glazer Games. It pits top mobile gamers against each other in a battle royale format, pushing them to strategize, outplay, and ultimately claim victory.\",fonts:[\"GF;Outfit-300\"],layoutDependency:layoutDependency,layoutId:\"IqY3sKI6D\",style:{\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IM5PICq1s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"The Battle for Revolution, a BGMI (Battlegrounds Mobile India) esports tournament hosted by Glazer Games, pits top mobile gamers against each other in a thrilling battle royale format, pushing them to strategize, outplay, and emerge victorious.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Boosting the BGMI Ecosystem:\"}),\" Our tournament cultivates India's esports scene by providing a platform for aspiring players to showcase their skills and compete for a substantial prize pool, fostering growth and innovation within the community.\"]})}),className:\"framer-lzsz0l\",\"data-framer-name\":\"Boosting the BGMI Ecosystem: The tournament helps to cultivate India's BGMI esports scene by providing a platform for aspiring players to showcase their skills and compete for a substantial prize pool.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"nl33UwZLF\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IM5PICq1s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Boosting the BGMI Ecosystem:\"}),\" Our tournament cultivates India's esports scene by providing a platform for aspiring players to showcase their skills and compete for a substantial prize pool, fostering growth and innovation within the community.\"]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t0amn9\",\"data-framer-name\":\"Right info\",layoutDependency:layoutDependency,layoutId:\"bCyniunVa\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Fostering a Community:\"}),\" The Battle for Revolution unites gaming enthusiasts, fostering a sense of community and shared passion for the game, creating bonds and connections that transcend virtual realms.\"]})}),className:\"framer-mzkvf4\",\"data-framer-name\":\"Fostering a Community: Battle for Revolution brings together BGMI enthusiasts, fostering a sense of community and shared passion for the game.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"ySBKpAUPR\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IM5PICq1s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Fostering a Community:\"}),\" The Battle for Revolution unites gaming enthusiasts, fostering a sense of community and shared passion for the game, creating bonds and connections that transcend virtual realms.\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Highlighting Innovation:\"}),\"  Leveraging esports and gaming latest features and competitive format, the tournament showcases the innovative potential of mobile gaming, pushing the boundaries of what's possible in esports.\"]})}),className:\"framer-w3p0s8\",\"data-framer-name\":\"Highlighting Innovation: By leveraging BGMI's latest features and competitive format, the tournament showcases the innovative potential of mobile gaming.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"GMeTepwIu\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IM5PICq1s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Highlighting Innovation:\"}),\"  Leveraging esports and gaming latest features and competitive format, the tournament showcases the innovative potential of mobile gaming, pushing the boundaries of what's possible in esports.\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Unveiling Talent: \"}),\" Serving as a platform for identifying and nurturing rising stars within the Indian Esports scene, the event provides opportunities for talented players to shine and reach new heights in their esports journey.\"]})}),className:\"framer-oviosl\",\"data-framer-name\":\"Unveiling Talent: The event serves as a platform for identifying and nurturing rising stars within the Indian BGMI scene.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"VhgGD7ngj\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IM5PICq1s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Unveiling Talent: \"}),\" Serving as a platform for identifying and nurturing rising stars within the Indian Esports scene, the event provides opportunities for talented players to shine and reach new heights in their esports journey.\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Entertainment and Inspiration: \"}),\"With high-octane gameplay and intense competition, the tournament captivates viewers, inspiring them to hone their skills and potentially embark on their own esports adventures.\"]})}),className:\"framer-15hpz8\",\"data-framer-name\":\"Entertainment and Inspiration: The tournament offers viewers high-octane gameplay, inspiring them to hone their skills and potentially join the competitive scene.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"IXx89cGrU\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IM5PICq1s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Entertainment and Inspiration: \"}),\"With high-octane gameplay and intense competition, the tournament captivates viewers, inspiring them to hone their skills and potentially embark on their own esports adventures.\"]})})}},baseVariant,gestureVariant)})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qmbzaq\",\"data-framer-name\":\"Frame 1618873672\",layoutDependency:layoutDependency,layoutId:\"hrXC2JVqZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-84ujx0\",\"data-framer-name\":\"Frame 1618873671\",layoutDependency:layoutDependency,layoutId:\"xcDcLXPod\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 10, 10))\"},children:\"Impact in App and Website Development\"})}),className:\"framer-yjvkoh\",\"data-framer-name\":\"Impact in App and Website Development\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"npe0Eh_2U\",style:{\"--extracted-r6o4lv\":\"rgb(10, 10, 10)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({uJuRNiui1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 10, 10))\"},children:\"Impact in App and Website Development\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"Glazer Tech's app and website projects enhance engagement and productivity with intuitive design and seamless functionality. Their platforms set new industry standards and offer unmatched online experiences.\"})}),className:\"framer-5nyk7q\",\"data-framer-name\":\"Glazer Tech's app and website projects enhance engagement and productivity with intuitive design and seamless functionality. Their platforms set new industry standards and offer unmatched online experiences.\",fonts:[\"GF;Outfit-300\"],layoutDependency:layoutDependency,layoutId:\"K4Yfyod3a\",style:{\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({uJuRNiui1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"Glazer Tech's app and website projects enhance engagement and productivity with intuitive design and seamless functionality. Their platforms set new industry standards and offer unmatched online experiences.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"This empowers businesses to thrive in a competitive digital landscape. By delivering tailored solutions and advanced technology integrations, Glazer Tech equips clients with the best tools for growth and efficiency, driving success in the evolving digital world.\"})}),className:\"framer-9my64b\",\"data-framer-name\":\"This empowers businesses to thrive in a competitive digital landscape. By delivering tailored solutions and advanced technology integrations, Glazer Tech equips clients with the best tools for growth and efficiency, driving success in the evolving digital world.\",fonts:[\"GF;Outfit-300\"],layoutDependency:layoutDependency,layoutId:\"wSJdozyPW\",style:{\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({uJuRNiui1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"This empowers businesses to thrive in a competitive digital landscape. By delivering tailored solutions and advanced technology integrations, Glazer Tech equips clients with the best tools for growth and efficiency, driving success in the evolving digital world.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Enhanced User Experience:\"}),\" Through meticulous design and user-centric features, Glazer Tech ensures that every interaction is smooth, intuitive, and enjoyable, leading to higher user satisfaction and retention.\"]})}),className:\"framer-bklfie\",\"data-framer-name\":\"Enhanced User Experience: Through meticulous design and user-centric features, Glazer Tech ensures that every interaction is smooth, intuitive, and enjoyable, leading to higher user satisfaction and retention.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"Cuwx9ulWc\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({uJuRNiui1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Enhanced User Experience:\"}),\" Through meticulous design and user-centric features, Glazer Tech ensures that every interaction is smooth, intuitive, and enjoyable, leading to higher user satisfaction and retention.\"]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y8ydqe\",\"data-framer-name\":\"Frame 1618873670\",layoutDependency:layoutDependency,layoutId:\"ubiLcmZ4y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Custom Solutions:\"}),\" Tailoring platforms to the specific needs of each business, Glazer Tech provides bespoke solutions that address unique challenges and opportunities, fostering business growth and efficiency.\"]})}),className:\"framer-1mak4b2\",\"data-framer-name\":\"Custom Solutions: Tailoring platforms to the specific needs of each business, Glazer Tech provides bespoke solutions that address unique challenges and opportunities, fostering business growth and efficiency.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"b_M50k_EV\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({uJuRNiui1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Custom Solutions:\"}),\" Tailoring platforms to the specific needs of each business, Glazer Tech provides bespoke solutions that address unique challenges and opportunities, fostering business growth and efficiency.\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Cutting-Edge Technology:\"}),\" By integrating the latest technologies and trends, Glazer Tech keeps businesses ahead of the curve, ensuring their digital presence is modern, robust, and scalable.\"]})}),className:\"framer-tsfx56\",\"data-framer-name\":\"Cutting-Edge Technology: By integrating the latest technologies and trends, Glazer Tech keeps businesses ahead of the curve, ensuring their digital presence is modern, robust, and scalable.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"yWIvVM_zf\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({uJuRNiui1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Cutting-Edge Technology:\"}),\" By integrating the latest technologies and trends, Glazer Tech keeps businesses ahead of the curve, ensuring their digital presence is modern, robust, and scalable.\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Improved Accessibility: \"}),\"Prioritizing inclusivity, Glazer Tech develops apps and websites that are accessible to all users, regardless of their abilities, broadening the reach and impact of businesses.\"]})}),className:\"framer-oggxt\",\"data-framer-name\":\"Improved Accessibility: Prioritizing inclusivity, Glazer Tech develops apps and websites that are accessible to all users, regardless of their abilities, broadening the reach and impact of businesses.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"XtodwtH_t\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({uJuRNiui1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Improved Accessibility: \"}),\"Prioritizing inclusivity, Glazer Tech develops apps and websites that are accessible to all users, regardless of their abilities, broadening the reach and impact of businesses.\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Increased Digital Engagement:\"}),\" With features that encourage interaction and engagement, Glazer Tech helps businesses build stronger connections with their customers, enhancing loyalty and driving conversions.\"]})}),className:\"framer-18ecop1\",\"data-framer-name\":\"Increased Digital Engagement: With features that encourage interaction and engagement, Glazer Tech helps businesses build stronger connections with their customers, enhancing loyalty and driving conversions.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"vKKbsifb9\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({uJuRNiui1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Increased Digital Engagement:\"}),\" With features that encourage interaction and engagement, Glazer Tech helps businesses build stronger connections with their customers, enhancing loyalty and driving conversions.\"]})})}},baseVariant,gestureVariant)})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13fl2za\",\"data-framer-name\":\"Frame 1618873672\",layoutDependency:layoutDependency,layoutId:\"FKMmBgYJu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1etwfld\",\"data-framer-name\":\"Frame 1618873671\",layoutDependency:layoutDependency,layoutId:\"pmjYrIuVt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 10, 10))\"},children:\"Impactful Content Production\"})}),className:\"framer-1g8kxpy\",\"data-framer-name\":\"Impact in App and Website Development\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"mPAkmiPhG\",style:{\"--extracted-r6o4lv\":\"rgb(10, 10, 10)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mFLND2O6S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 10, 10))\"},children:\"Impactful Content Production\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"Glazer Studio transcends mere content creation. We weave impactful narratives that spark conversations, reshape perspectives, and drive social change. This isn't just about entertainment; it's about empowerment. \"})}),className:\"framer-3i2n7e\",\"data-framer-name\":\"Glazer Studio transcends mere content creation. We weave impactful narratives that spark conversations, reshape perspectives, and drive social change. This isn't just about entertainment; it's about empowerment.\",fonts:[\"GF;Outfit-300\"],layoutDependency:layoutDependency,layoutId:\"RIMxtHeXX\",style:{\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mFLND2O6S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"Glazer Studio transcends mere content creation. We weave impactful narratives that spark conversations, reshape perspectives, and drive social change. This isn't just about entertainment; it's about empowerment. \"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"We achieve this by fusing innovation with storytelling. Fresh formats, amplifying unheard voices, and pushing narrative boundaries are all part of our approach. The result? Content that compels action and leaves a lasting impression.\"})}),className:\"framer-168w9tt\",\"data-framer-name\":\"We achieve this by fusing innovation with storytelling. Fresh formats, amplifying unheard voices, and pushing narrative boundaries are all part of our approach. The result? Content that compels action and leaves a lasting impression.\",fonts:[\"GF;Outfit-300\"],layoutDependency:layoutDependency,layoutId:\"tfmnuJ8Sg\",style:{\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mFLND2O6S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"We achieve this by fusing innovation with storytelling. Fresh formats, amplifying unheard voices, and pushing narrative boundaries are all part of our approach. The result? Content that compels action and leaves a lasting impression.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Captivating Change:\"}),\" We craft innovative stories with powerful visuals that spark conversations, ignite action on critical issues, and leave a lasting impact, forever changing the conversation.\"]})}),className:\"framer-1omtdv4\",\"data-framer-name\":\"Captivating Change: We craft innovative stories with powerful visuals that spark conversations, ignite action on critical issues, and leave a lasting impact, forever changing the conversation.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"u7JBpsPjC\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mFLND2O6S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Captivating Change:\"}),\" We craft innovative stories with powerful visuals that spark conversations, ignite action on critical issues, and leave a lasting impact, forever changing the conversation.\"]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iwko4k\",\"data-framer-name\":\"Frame 1618873670\",layoutDependency:layoutDependency,layoutId:\"ju4ObOzwp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Narrative Nudges: \"}),\"We amplify unheard voices and challenge perspectives, reshaping how we see the world, fostering empathy, and dismantling stereotypes.\"]})}),className:\"framer-pgmesn\",\"data-framer-name\":\"Narrative Nudges: We amplify unheard voices and challenge perspectives, reshaping how we see the world, fostering empathy, and dismantling stereotypes.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"yW7reXaD7\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mFLND2O6S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Narrative Nudges: \"}),\"We amplify unheard voices and challenge perspectives, reshaping how we see the world, fostering empathy, and dismantling stereotypes.\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Empowered Action:\"}),\" Our stories inspire viewers to get involved, turn awareness into action, connect with changemakers, and become champions for positive change themselves.\"]})}),className:\"framer-17mot6z\",\"data-framer-name\":\"Empowered Action: Our stories inspire viewers to get involved, turn awareness into action, connect with changemakers, and become champions for positive change themselves.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"y5y4QCFSV\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mFLND2O6S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Empowered Action:\"}),\" Our stories inspire viewers to get involved, turn awareness into action, connect with changemakers, and become champions for positive change themselves.\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Platform for Change:\"}),\" We partner with marginalized communities, giving them a voice, driving social progress through shared narratives, empowering them to advocate for themselves, and creating space for genuine transformation.\"]})}),className:\"framer-g7gvpx\",\"data-framer-name\":\"Platform for Change: We partner with marginalized communities, giving them a voice, driving social progress through shared narratives, empowering them to advocate for themselves, and creating space for genuine transformation.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"zMNEstVdW\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mFLND2O6S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Platform for Change:\"}),\" We partner with marginalized communities, giving them a voice, driving social progress through shared narratives, empowering them to advocate for themselves, and creating space for genuine transformation.\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Storytelling Evolution: \"}),\"We constantly push boundaries with new formats and technologies, keeping audiences engaged, reaching them in impactful ways, delivering our message with maximum freshness, and pioneering the future of impactful storytelling.\"]})}),className:\"framer-2drr59\",\"data-framer-name\":\"Storytelling Evolution: We constantly push boundaries with new formats and technologies, keeping audiences engaged, reaching them in impactful ways, delivering our message with maximum freshness, and pioneering the future of impactful storytelling.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"g8w8RvFFD\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mFLND2O6S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Storytelling Evolution: \"}),\"We constantly push boundaries with new formats and technologies, keeping audiences engaged, reaching them in impactful ways, delivering our message with maximum freshness, and pioneering the future of impactful storytelling.\"]})})}},baseVariant,gestureVariant)})]})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16klwp8\",\"data-framer-name\":\"Frame 1618873672\",layoutDependency:layoutDependency,layoutId:\"VsC3AL1Ll\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k398ss\",\"data-framer-name\":\"Frame 1618873671\",layoutDependency:layoutDependency,layoutId:\"kXXplOKzK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 10, 10))\"},children:\"Impact in App and Website Development\"})}),className:\"framer-u01u7v\",\"data-framer-name\":\"Impact in App and Website Development\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"LGnn9XTMk\",style:{\"--extracted-r6o4lv\":\"rgb(10, 10, 10)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"Witness the transformative power of Glazer Tec as your technology partner, specialising in blockchain, AI & ML, and robotics. Our advanced integrations in deep technology revolutionise app and website development, setting new standards in engagement and productivity.\"})}),className:\"framer-1mb575z\",\"data-framer-name\":\"Glazer Tech's app and website projects enhance engagement and productivity with intuitive design and seamless functionality. Their platforms set new industry standards and offer unmatched online experiences.\",fonts:[\"GF;Outfit-300\"],layoutDependency:layoutDependency,layoutId:\"UDB5GNGth\",style:{\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"At Glazer Tech, we craft platforms that empower businesses to thrive in the competitive digital landscape. Our tailored solutions and cutting-edge technology integrations equip clients with the tools they need for growth and efficiency in today's evolving digital world.\"})}),className:\"framer-p2lbui\",\"data-framer-name\":\"This empowers businesses to thrive in a competitive digital landscape. By delivering tailored solutions and advanced technology integrations, Glazer Tech equips clients with the best tools for growth and efficiency, driving success in the evolving digital world.\",fonts:[\"GF;Outfit-300\"],layoutDependency:layoutDependency,layoutId:\"xImVHytuC\",style:{\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Enhanced User Experience:\"}),\" With meticulous design and user-centric features, we ensure smooth, intuitive interactions that drive higher user satisfaction and retention.\"]})}),className:\"framer-1j48xp3\",\"data-framer-name\":\"Enhanced User Experience: Through meticulous design and user-centric features, Glazer Tech ensures that every interaction is smooth, intuitive, and enjoyable, leading to higher user satisfaction and retention.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"njCGWGemW\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13y4tkz\",\"data-framer-name\":\"Frame 1618873670\",layoutDependency:layoutDependency,layoutId:\"PAAM31RNf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Custom Solutions:\"}),\" Tailoring platforms to each business's unique needs, we provide bespoke solutions that foster growth and efficiency.\"]})}),className:\"framer-1da8z5r\",\"data-framer-name\":\"Custom Solutions: Tailoring platforms to the specific needs of each business, Glazer Tech provides bespoke solutions that address unique challenges and opportunities, fostering business growth and efficiency.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"DP1nflzvA\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Cutting-Edge Technology:\"}),\" By integrating the latest technologies and trends, we keep businesses ahead of the curve, ensuring modern, robust, and scalable digital presence.\"]})}),className:\"framer-xeq9j3\",\"data-framer-name\":\"Cutting-Edge Technology: By integrating the latest technologies and trends, Glazer Tech keeps businesses ahead of the curve, ensuring their digital presence is modern, robust, and scalable.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"ruMUAe4RE\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Improved Accessibility: \"}),\"Prioritising inclusivity, our developments are accessible to all users, broadening businesses' reach and impact.\"]})}),className:\"framer-1sjpes5\",\"data-framer-name\":\"Improved Accessibility: Prioritizing inclusivity, Glazer Tech develops apps and websites that are accessible to all users, regardless of their abilities, broadening the reach and impact of businesses.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"UdPX6y8t3\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Increased Digital Engagement:\"}),\" Our features encourage interaction and engagement, helping businesses build stronger connections with customers, enhancing loyalty, and driving conversions.\"]})}),className:\"framer-1egafwe\",\"data-framer-name\":\"Increased Digital Engagement: With features that encourage interaction and engagement, Glazer Tech helps businesses build stronger connections with their customers, enhancing loyalty and driving conversions.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"aoubX1CV_\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-onejsl\",\"data-framer-name\":\"Frame 1618873672\",layoutDependency:layoutDependency,layoutId:\"S8cAhXhp9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vlrhgk\",\"data-framer-name\":\"Frame 1618873671\",layoutDependency:layoutDependency,layoutId:\"iGoaezhbC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 10, 10))\"},children:\"Impactful Content Production\"})}),className:\"framer-alm9a0\",\"data-framer-name\":\"Impact in App and Website Development\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"lf4kwSyMi\",style:{\"--extracted-r6o4lv\":\"rgb(10, 10, 10)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"At Glazer Studio, content production transcends traditional boundaries. We craft narratives that ignite conversations, reshape perspectives, and drive societal change, empowering communities along the way.\"})}),className:\"framer-kpy54t\",\"data-framer-name\":\"Glazer Studio transcends mere content creation. We weave impactful narratives that spark conversations, reshape perspectives, and drive social change. This isn't just about entertainment; it's about empowerment.\",fonts:[\"GF;Outfit-300\"],layoutDependency:layoutDependency,layoutId:\"jNshRRj3Q\",style:{\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:\"By blending innovation with storytelling, we pioneer fresh formats, amplify unheard voices, and push narrative boundaries. The result? Compelling content that compels action and leaves a lasting impression.\"})}),className:\"framer-lncvrn\",\"data-framer-name\":\"We achieve this by fusing innovation with storytelling. Fresh formats, amplifying unheard voices, and pushing narrative boundaries are all part of our approach. The result? Content that compels action and leaves a lasting impression.\",fonts:[\"GF;Outfit-300\"],layoutDependency:layoutDependency,layoutId:\"UDGf4HO4T\",style:{\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Captivating Change:\"}),\" Our innovative stories and powerful visuals spark conversations, incite action on crucial issues, and drive enduring impact, fundamentally altering societal discourse.\"]})}),className:\"framer-xrpr9a\",\"data-framer-name\":\"Captivating Change: We craft innovative stories with powerful visuals that spark conversations, ignite action on critical issues, and leave a lasting impact, forever changing the conversation.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"g95QTuVUk\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1btkf2a\",\"data-framer-name\":\"Frame 1618873670\",layoutDependency:layoutDependency,layoutId:\"kMSb5R5NJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Narrative Nudges: \"}),\"By amplifying marginalised voices and challenging conventional perspectives, we foster empathy, dismantle stereotypes, and reshape societal narratives.\"]})}),className:\"framer-1ehxf2f\",\"data-framer-name\":\"Narrative Nudges: We amplify unheard voices and challenge perspectives, reshaping how we see the world, fostering empathy, and dismantling stereotypes.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"Zn5i_nddN\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Empowered Action:\"}),\" Our stories inspire viewers to engage, turning awareness into tangible action, connecting with changemakers, and championing positive change themselves.\"]})}),className:\"framer-xdiigs\",\"data-framer-name\":\"Empowered Action: Our stories inspire viewers to get involved, turn awareness into action, connect with changemakers, and become champions for positive change themselves.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"A4bkPCxPB\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Platform for Change:\"}),\" Partnering with marginalised communities, we provide a platform for their voices, driving social progress through shared narratives, empowering advocacy, and fostering genuine transformation.\"]})}),className:\"framer-15r62tz\",\"data-framer-name\":\"Platform for Change: We partner with marginalized communities, giving them a voice, driving social progress through shared narratives, empowering them to advocate for themselves, and creating space for genuine transformation.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"dhd70Y5rT\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 89, 88))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(10, 10, 10))\"},children:\"Storytelling Evolution: \"}),\"Constantly pushing boundaries with innovative formats and technologies, we engage audiences in impactful ways, delivering our message with freshness and pioneering the future of impactful storytelling.\"]})}),className:\"framer-1ckg259\",\"data-framer-name\":\"Storytelling Evolution: We constantly push boundaries with new formats and technologies, keeping audiences engaged, reaching them in impactful ways, delivering our message with maximum freshness, and pioneering the future of impactful storytelling.\",fonts:[\"GF;Outfit-300\",\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"SN21eJHCJ\",style:{\"--extracted-1w3ko1f\":\"rgb(10, 10, 10)\",\"--extracted-r6o4lv\":\"rgb(88, 89, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VcjKY.framer-n4155t, .framer-VcjKY .framer-n4155t { display: block; }\",\".framer-VcjKY.framer-14ncid5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 100px 80px 100px; position: relative; width: 1440px; }\",\".framer-VcjKY .framer-tr2pai { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VcjKY .framer-2kbzuj, .framer-VcjKY .framer-1jqsjag { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-VcjKY .framer-1wg1egg, .framer-VcjKY .framer-1leg0gz, .framer-VcjKY .framer-r4izjb, .framer-VcjKY .framer-1mxsj89, .framer-VcjKY .framer-12jl7ti, .framer-VcjKY .framer-6mk8uj, .framer-VcjKY .framer-lzsz0l, .framer-VcjKY .framer-mzkvf4, .framer-VcjKY .framer-w3p0s8, .framer-VcjKY .framer-oviosl, .framer-VcjKY .framer-15hpz8, .framer-VcjKY .framer-yjvkoh, .framer-VcjKY .framer-5nyk7q, .framer-VcjKY .framer-9my64b, .framer-VcjKY .framer-bklfie, .framer-VcjKY .framer-1mak4b2, .framer-VcjKY .framer-tsfx56, .framer-VcjKY .framer-oggxt, .framer-VcjKY .framer-18ecop1, .framer-VcjKY .framer-1g8kxpy, .framer-VcjKY .framer-3i2n7e, .framer-VcjKY .framer-168w9tt, .framer-VcjKY .framer-1omtdv4, .framer-VcjKY .framer-pgmesn, .framer-VcjKY .framer-17mot6z, .framer-VcjKY .framer-g7gvpx, .framer-VcjKY .framer-2drr59, .framer-VcjKY .framer-u01u7v, .framer-VcjKY .framer-1mb575z, .framer-VcjKY .framer-p2lbui, .framer-VcjKY .framer-1j48xp3, .framer-VcjKY .framer-1da8z5r, .framer-VcjKY .framer-xeq9j3, .framer-VcjKY .framer-1sjpes5, .framer-VcjKY .framer-1egafwe, .framer-VcjKY .framer-alm9a0, .framer-VcjKY .framer-kpy54t, .framer-VcjKY .framer-lncvrn, .framer-VcjKY .framer-xrpr9a, .framer-VcjKY .framer-1ehxf2f, .framer-VcjKY .framer-xdiigs, .framer-VcjKY .framer-15r62tz, .framer-VcjKY .framer-1ckg259 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-VcjKY .framer-2xfnxx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VcjKY .framer-1noky3k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-VcjKY .framer-h692dx-container, .framer-VcjKY .framer-1xfbymm-container { flex: none; height: 64px; position: relative; width: 64px; }\",\".framer-VcjKY .framer-1a53uf0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VcjKY .framer-1y4e940 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VcjKY .framer-dbqd5p { flex: none; height: 500px; overflow: hidden; position: relative; width: 70%; will-change: var(--framer-will-change-override, transform); }\",\".framer-VcjKY .framer-1ht618e, .framer-VcjKY .framer-166mmgz { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-VcjKY .framer-1v65tbu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 32px; position: absolute; top: 0px; width: 100%; }\",\".framer-VcjKY .framer-stuzka { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-VcjKY .framer-tknmll { flex: none; height: 326px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-VcjKY .framer-1r92imw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 24px; position: absolute; top: 247px; width: 100%; }\",\".framer-VcjKY .framer-1c58aug { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-VcjKY .framer-8yvd7y { flex: none; height: 150px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-VcjKY .framer-odwy2i { flex: none; height: 219px; left: calc(52.284946236559136% - 389px / 2); position: absolute; top: calc(53% - 219px / 2); width: 389px; }\",\".framer-VcjKY .framer-17hdnlx { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-VcjKY .framer-oxw2s { aspect-ratio: 3.1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); left: 50%; position: absolute; top: 50%; width: 80%; }\",\".framer-VcjKY .framer-gaxzdq { aspect-ratio: 6.30379638671875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 50%; position: absolute; top: 50%; width: 90%; }\",\".framer-VcjKY .framer-146p8ke { aspect-ratio: 2.633526393345424 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 76px); left: 50%; position: absolute; top: 50%; width: 65%; }\",\".framer-VcjKY .framer-hvvm7x, .framer-VcjKY .framer-qmbzaq, .framer-VcjKY .framer-13fl2za, .framer-VcjKY .framer-16klwp8, .framer-VcjKY .framer-onejsl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VcjKY .framer-1ynd3ih, .framer-VcjKY .framer-1t0amn9, .framer-VcjKY .framer-84ujx0, .framer-VcjKY .framer-y8ydqe, .framer-VcjKY .framer-1etwfld, .framer-VcjKY .framer-1iwko4k, .framer-VcjKY .framer-1k398ss, .framer-VcjKY .framer-13y4tkz, .framer-VcjKY .framer-vlrhgk, .framer-VcjKY .framer-1btkf2a { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VcjKY.framer-14ncid5, .framer-VcjKY .framer-tr2pai, .framer-VcjKY .framer-2kbzuj, .framer-VcjKY .framer-2xfnxx, .framer-VcjKY .framer-1noky3k, .framer-VcjKY .framer-1a53uf0, .framer-VcjKY .framer-1y4e940, .framer-VcjKY .framer-1v65tbu, .framer-VcjKY .framer-1jqsjag, .framer-VcjKY .framer-1r92imw, .framer-VcjKY .framer-hvvm7x, .framer-VcjKY .framer-1ynd3ih, .framer-VcjKY .framer-1t0amn9, .framer-VcjKY .framer-qmbzaq, .framer-VcjKY .framer-84ujx0, .framer-VcjKY .framer-y8ydqe, .framer-VcjKY .framer-13fl2za, .framer-VcjKY .framer-1etwfld, .framer-VcjKY .framer-1iwko4k, .framer-VcjKY .framer-16klwp8, .framer-VcjKY .framer-1k398ss, .framer-VcjKY .framer-13y4tkz, .framer-VcjKY .framer-onejsl, .framer-VcjKY .framer-vlrhgk, .framer-VcjKY .framer-1btkf2a { gap: 0px; } .framer-VcjKY.framer-14ncid5 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-VcjKY.framer-14ncid5 > :first-child, .framer-VcjKY .framer-2kbzuj > :first-child, .framer-VcjKY .framer-2xfnxx > :first-child, .framer-VcjKY .framer-1a53uf0 > :first-child, .framer-VcjKY .framer-1jqsjag > :first-child, .framer-VcjKY .framer-1ynd3ih > :first-child, .framer-VcjKY .framer-1t0amn9 > :first-child, .framer-VcjKY .framer-84ujx0 > :first-child, .framer-VcjKY .framer-y8ydqe > :first-child, .framer-VcjKY .framer-1etwfld > :first-child, .framer-VcjKY .framer-1iwko4k > :first-child, .framer-VcjKY .framer-1k398ss > :first-child, .framer-VcjKY .framer-13y4tkz > :first-child, .framer-VcjKY .framer-vlrhgk > :first-child, .framer-VcjKY .framer-1btkf2a > :first-child { margin-top: 0px; } .framer-VcjKY.framer-14ncid5 > :last-child, .framer-VcjKY .framer-2kbzuj > :last-child, .framer-VcjKY .framer-2xfnxx > :last-child, .framer-VcjKY .framer-1a53uf0 > :last-child, .framer-VcjKY .framer-1jqsjag > :last-child, .framer-VcjKY .framer-1ynd3ih > :last-child, .framer-VcjKY .framer-1t0amn9 > :last-child, .framer-VcjKY .framer-84ujx0 > :last-child, .framer-VcjKY .framer-y8ydqe > :last-child, .framer-VcjKY .framer-1etwfld > :last-child, .framer-VcjKY .framer-1iwko4k > :last-child, .framer-VcjKY .framer-1k398ss > :last-child, .framer-VcjKY .framer-13y4tkz > :last-child, .framer-VcjKY .framer-vlrhgk > :last-child, .framer-VcjKY .framer-1btkf2a > :last-child { margin-bottom: 0px; } .framer-VcjKY .framer-tr2pai > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-VcjKY .framer-tr2pai > :first-child, .framer-VcjKY .framer-1noky3k > :first-child, .framer-VcjKY .framer-1y4e940 > :first-child, .framer-VcjKY .framer-1v65tbu > :first-child, .framer-VcjKY .framer-1r92imw > :first-child, .framer-VcjKY .framer-hvvm7x > :first-child, .framer-VcjKY .framer-qmbzaq > :first-child, .framer-VcjKY .framer-13fl2za > :first-child, .framer-VcjKY .framer-16klwp8 > :first-child, .framer-VcjKY .framer-onejsl > :first-child { margin-left: 0px; } .framer-VcjKY .framer-tr2pai > :last-child, .framer-VcjKY .framer-1noky3k > :last-child, .framer-VcjKY .framer-1y4e940 > :last-child, .framer-VcjKY .framer-1v65tbu > :last-child, .framer-VcjKY .framer-1r92imw > :last-child, .framer-VcjKY .framer-hvvm7x > :last-child, .framer-VcjKY .framer-qmbzaq > :last-child, .framer-VcjKY .framer-13fl2za > :last-child, .framer-VcjKY .framer-16klwp8 > :last-child, .framer-VcjKY .framer-onejsl > :last-child { margin-right: 0px; } .framer-VcjKY .framer-2kbzuj > *, .framer-VcjKY .framer-1jqsjag > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VcjKY .framer-2xfnxx > *, .framer-VcjKY .framer-1ynd3ih > *, .framer-VcjKY .framer-1t0amn9 > *, .framer-VcjKY .framer-84ujx0 > *, .framer-VcjKY .framer-y8ydqe > *, .framer-VcjKY .framer-1etwfld > *, .framer-VcjKY .framer-1iwko4k > *, .framer-VcjKY .framer-1k398ss > *, .framer-VcjKY .framer-13y4tkz > *, .framer-VcjKY .framer-vlrhgk > *, .framer-VcjKY .framer-1btkf2a > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-VcjKY .framer-1noky3k > *, .framer-VcjKY .framer-1y4e940 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-VcjKY .framer-1a53uf0 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-VcjKY .framer-1v65tbu > *, .framer-VcjKY .framer-1r92imw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-VcjKY .framer-hvvm7x > *, .framer-VcjKY .framer-qmbzaq > *, .framer-VcjKY .framer-13fl2za > *, .framer-VcjKY .framer-16klwp8 > *, .framer-VcjKY .framer-onejsl > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",\".framer-VcjKY.framer-v-1qvogpq .framer-gaxzdq { height: var(--framer-aspect-ratio-supported, 50px); }\",\".framer-VcjKY.framer-v-qtg5vr .framer-146p8ke { height: var(--framer-aspect-ratio-supported, 86px); }\",\".framer-VcjKY.framer-v-vmghps.framer-14ncid5, .framer-VcjKY.framer-v-1qqqr7a.framer-14ncid5, .framer-VcjKY.framer-v-m7ec8.framer-14ncid5 { padding: 80px; width: 810px; }\",\".framer-VcjKY.framer-v-vmghps .framer-1y4e940, .framer-VcjKY.framer-v-1qqqr7a .framer-1y4e940, .framer-VcjKY.framer-v-m7ec8 .framer-1y4e940, .framer-VcjKY.framer-v-1cchx8w .framer-1y4e940, .framer-VcjKY.framer-v-8wk0d7 .framer-1y4e940, .framer-VcjKY.framer-v-16qjmcj .framer-1y4e940 { flex-direction: column; }\",\".framer-VcjKY.framer-v-vmghps .framer-dbqd5p, .framer-VcjKY.framer-v-1qqqr7a .framer-dbqd5p, .framer-VcjKY.framer-v-m7ec8 .framer-dbqd5p, .framer-VcjKY.framer-v-1cchx8w .framer-dbqd5p, .framer-VcjKY.framer-v-8wk0d7 .framer-dbqd5p, .framer-VcjKY.framer-v-16qjmcj .framer-dbqd5p { width: 100%; }\",\".framer-VcjKY.framer-v-vmghps .framer-1jqsjag, .framer-VcjKY.framer-v-1qqqr7a .framer-1jqsjag, .framer-VcjKY.framer-v-m7ec8 .framer-1jqsjag, .framer-VcjKY.framer-v-1cchx8w .framer-2kbzuj, .framer-VcjKY.framer-v-1cchx8w .framer-1jqsjag, .framer-VcjKY.framer-v-1cchx8w .framer-1ynd3ih, .framer-VcjKY.framer-v-1cchx8w .framer-1t0amn9, .framer-VcjKY.framer-v-8wk0d7 .framer-2kbzuj, .framer-VcjKY.framer-v-8wk0d7 .framer-1jqsjag, .framer-VcjKY.framer-v-8wk0d7 .framer-84ujx0, .framer-VcjKY.framer-v-8wk0d7 .framer-y8ydqe, .framer-VcjKY.framer-v-16qjmcj .framer-2kbzuj, .framer-VcjKY.framer-v-16qjmcj .framer-1jqsjag, .framer-VcjKY.framer-v-16qjmcj .framer-1etwfld, .framer-VcjKY.framer-v-16qjmcj .framer-1iwko4k { flex: none; width: 100%; }\",\".framer-VcjKY.framer-v-vmghps .framer-oxw2s { height: 65%; width: var(--framer-aspect-ratio-supported, 302px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VcjKY.framer-v-vmghps .framer-1y4e940 { gap: 0px; } .framer-VcjKY.framer-v-vmghps .framer-1y4e940 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VcjKY.framer-v-vmghps .framer-1y4e940 > :first-child { margin-top: 0px; } .framer-VcjKY.framer-v-vmghps .framer-1y4e940 > :last-child { margin-bottom: 0px; } }\",\".framer-VcjKY.framer-v-1qqqr7a .framer-gaxzdq { height: 50%; width: var(--framer-aspect-ratio-supported, 473px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VcjKY.framer-v-1qqqr7a .framer-1y4e940 { gap: 0px; } .framer-VcjKY.framer-v-1qqqr7a .framer-1y4e940 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VcjKY.framer-v-1qqqr7a .framer-1y4e940 > :first-child { margin-top: 0px; } .framer-VcjKY.framer-v-1qqqr7a .framer-1y4e940 > :last-child { margin-bottom: 0px; } }\",\".framer-VcjKY.framer-v-m7ec8 .framer-146p8ke { height: 70%; width: var(--framer-aspect-ratio-supported, 277px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VcjKY.framer-v-m7ec8 .framer-1y4e940 { gap: 0px; } .framer-VcjKY.framer-v-m7ec8 .framer-1y4e940 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VcjKY.framer-v-m7ec8 .framer-1y4e940 > :first-child { margin-top: 0px; } .framer-VcjKY.framer-v-m7ec8 .framer-1y4e940 > :last-child { margin-bottom: 0px; } }\",\".framer-VcjKY.framer-v-1cchx8w.framer-14ncid5 { gap: 40px; padding: 48px 20px 48px 20px; width: 320px; }\",\".framer-VcjKY.framer-v-1cchx8w .framer-tr2pai, .framer-VcjKY.framer-v-8wk0d7 .framer-tr2pai, .framer-VcjKY.framer-v-16qjmcj .framer-tr2pai { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-VcjKY.framer-v-1cchx8w .framer-oxw2s { height: 48%; width: var(--framer-aspect-ratio-supported, 223px); }\",\".framer-VcjKY.framer-v-1cchx8w .framer-hvvm7x, .framer-VcjKY.framer-v-8wk0d7 .framer-qmbzaq, .framer-VcjKY.framer-v-16qjmcj .framer-13fl2za { flex-direction: column; gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VcjKY.framer-v-1cchx8w.framer-14ncid5, .framer-VcjKY.framer-v-1cchx8w .framer-tr2pai, .framer-VcjKY.framer-v-1cchx8w .framer-1y4e940, .framer-VcjKY.framer-v-1cchx8w .framer-hvvm7x { gap: 0px; } .framer-VcjKY.framer-v-1cchx8w.framer-14ncid5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-VcjKY.framer-v-1cchx8w.framer-14ncid5 > :first-child, .framer-VcjKY.framer-v-1cchx8w .framer-tr2pai > :first-child, .framer-VcjKY.framer-v-1cchx8w .framer-1y4e940 > :first-child, .framer-VcjKY.framer-v-1cchx8w .framer-hvvm7x > :first-child { margin-top: 0px; } .framer-VcjKY.framer-v-1cchx8w.framer-14ncid5 > :last-child, .framer-VcjKY.framer-v-1cchx8w .framer-tr2pai > :last-child, .framer-VcjKY.framer-v-1cchx8w .framer-1y4e940 > :last-child, .framer-VcjKY.framer-v-1cchx8w .framer-hvvm7x > :last-child { margin-bottom: 0px; } .framer-VcjKY.framer-v-1cchx8w .framer-tr2pai > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-VcjKY.framer-v-1cchx8w .framer-1y4e940 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VcjKY.framer-v-1cchx8w .framer-hvvm7x > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-VcjKY.framer-v-8wk0d7.framer-14ncid5, .framer-VcjKY.framer-v-16qjmcj.framer-14ncid5 { gap: 40px; padding: 80px 20px 80px 20px; width: 320px; }\",\".framer-VcjKY.framer-v-8wk0d7 .framer-gaxzdq { height: 24%; width: var(--framer-aspect-ratio-supported, 227px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VcjKY.framer-v-8wk0d7.framer-14ncid5, .framer-VcjKY.framer-v-8wk0d7 .framer-tr2pai, .framer-VcjKY.framer-v-8wk0d7 .framer-1y4e940, .framer-VcjKY.framer-v-8wk0d7 .framer-qmbzaq { gap: 0px; } .framer-VcjKY.framer-v-8wk0d7.framer-14ncid5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-VcjKY.framer-v-8wk0d7.framer-14ncid5 > :first-child, .framer-VcjKY.framer-v-8wk0d7 .framer-tr2pai > :first-child, .framer-VcjKY.framer-v-8wk0d7 .framer-1y4e940 > :first-child, .framer-VcjKY.framer-v-8wk0d7 .framer-qmbzaq > :first-child { margin-top: 0px; } .framer-VcjKY.framer-v-8wk0d7.framer-14ncid5 > :last-child, .framer-VcjKY.framer-v-8wk0d7 .framer-tr2pai > :last-child, .framer-VcjKY.framer-v-8wk0d7 .framer-1y4e940 > :last-child, .framer-VcjKY.framer-v-8wk0d7 .framer-qmbzaq > :last-child { margin-bottom: 0px; } .framer-VcjKY.framer-v-8wk0d7 .framer-tr2pai > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-VcjKY.framer-v-8wk0d7 .framer-1y4e940 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VcjKY.framer-v-8wk0d7 .framer-qmbzaq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-VcjKY.framer-v-16qjmcj .framer-146p8ke { height: 50%; width: var(--framer-aspect-ratio-supported, 198px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VcjKY.framer-v-16qjmcj.framer-14ncid5, .framer-VcjKY.framer-v-16qjmcj .framer-tr2pai, .framer-VcjKY.framer-v-16qjmcj .framer-1y4e940, .framer-VcjKY.framer-v-16qjmcj .framer-13fl2za { gap: 0px; } .framer-VcjKY.framer-v-16qjmcj.framer-14ncid5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-VcjKY.framer-v-16qjmcj.framer-14ncid5 > :first-child, .framer-VcjKY.framer-v-16qjmcj .framer-tr2pai > :first-child, .framer-VcjKY.framer-v-16qjmcj .framer-1y4e940 > :first-child, .framer-VcjKY.framer-v-16qjmcj .framer-13fl2za > :first-child { margin-top: 0px; } .framer-VcjKY.framer-v-16qjmcj.framer-14ncid5 > :last-child, .framer-VcjKY.framer-v-16qjmcj .framer-tr2pai > :last-child, .framer-VcjKY.framer-v-16qjmcj .framer-1y4e940 > :last-child, .framer-VcjKY.framer-v-16qjmcj .framer-13fl2za > :last-child { margin-bottom: 0px; } .framer-VcjKY.framer-v-16qjmcj .framer-tr2pai > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-VcjKY.framer-v-16qjmcj .framer-1y4e940 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VcjKY.framer-v-16qjmcj .framer-13fl2za > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",'.framer-VcjKY[data-border=\"true\"]::after, .framer-VcjKY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1349.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AMz2MNZb8\":{\"layout\":[\"fixed\",\"auto\"]},\"sp2_Rpphe\":{\"layout\":[\"fixed\",\"auto\"]},\"Stm5VcmFI\":{\"layout\":[\"fixed\",\"auto\"]},\"bANIwf0Lg\":{\"layout\":[\"fixed\",\"auto\"]},\"CZvrxoYs2\":{\"layout\":[\"fixed\",\"auto\"]},\"IM5PICq1s\":{\"layout\":[\"fixed\",\"auto\"]},\"uJuRNiui1\":{\"layout\":[\"fixed\",\"auto\"]},\"mFLND2O6S\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"IdXn8nSgg\":\"impactAndInnovation\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameregY0E7yn0=withCSS(Component,css,\"framer-VcjKY\");export default FrameregY0E7yn0;FrameregY0E7yn0.displayName=\"Impact section\";FrameregY0E7yn0.defaultProps={height:1349.5,width:1440};addPropertyControls(FrameregY0E7yn0,{variant:{options:[\"mFgx9_YJz\",\"AMz2MNZb8\",\"sp2_Rpphe\",\"Stm5VcmFI\",\"bANIwf0Lg\",\"CZvrxoYs2\",\"IM5PICq1s\",\"uJuRNiui1\",\"mFLND2O6S\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant\",\"Variant 5\",\"Variant 6\",\"Variant\",\"Variant 7\",\"Variant 8\"],title:\"Variant\",type:ControlType.Enum},IdXn8nSgg:{title:\"impact and innovation\",type:ControlType.ScrollSectionRef}});addFonts(FrameregY0E7yn0,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4S-EiAou6Y.woff2\",weight:\"300\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\",weight:\"400\"}]},...ArrowsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameregY0E7yn0\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"IdXn8nSgg\\\":\\\"impactAndInnovation\\\"}\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1349.5\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AMz2MNZb8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sp2_Rpphe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Stm5VcmFI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bANIwf0Lg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CZvrxoYs2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IM5PICq1s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uJuRNiui1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mFLND2O6S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./egY0E7yn0.map", "// Generated by Framer (92b2253)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"jZIMCrYmt\",\"O0OkaaIQd\",\"aPMnwxRwp\",\"M7k_HsH5e\",\"Nv6waCbSo\",\"rpkfpPPuo\",\"dCypWvsXh\",\"tj40V5qKR\",\"Bdlat2FBe\",\"zCZpgOmY_\",\"UJ4FlIK6A\",\"m4OIlQgLm\",\"drUUkWYsO\",\"ir55JwXyh\"];const serializationHash=\"framer-PdGZT\";const variantClassNames={aPMnwxRwp:\"framer-v-2xcy8q\",Bdlat2FBe:\"framer-v-2jsb7b\",dCypWvsXh:\"framer-v-ldc7k2\",drUUkWYsO:\"framer-v-gftgc7\",ir55JwXyh:\"framer-v-zehco9\",jZIMCrYmt:\"framer-v-1ww60qv\",m4OIlQgLm:\"framer-v-3v8ewa\",M7k_HsH5e:\"framer-v-a4nvka\",Nv6waCbSo:\"framer-v-1x46zk\",O0OkaaIQd:\"framer-v-175budp\",rpkfpPPuo:\"framer-v-9tynw0\",tj40V5qKR:\"framer-v-139qula\",UJ4FlIK6A:\"framer-v-13fmfqw\",zCZpgOmY_:\"framer-v-1342xgv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const inertia={bounceDamping:50,bounceStiffness:150,delay:0,type:\"inertia\"};const preventDefault=e=>e.preventDefault();const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"jZIMCrYmt\",\"Variant 10\":\"zCZpgOmY_\",\"Variant 11\":\"UJ4FlIK6A\",\"Variant 12\":\"m4OIlQgLm\",\"Variant 13\":\"drUUkWYsO\",\"Variant 14\":\"ir55JwXyh\",\"Variant 2\":\"O0OkaaIQd\",\"Variant 3\":\"aPMnwxRwp\",\"Variant 4\":\"M7k_HsH5e\",\"Variant 5\":\"Nv6waCbSo\",\"Variant 6\":\"rpkfpPPuo\",\"Variant 7\":\"dCypWvsXh\",\"Variant 8\":\"tj40V5qKR\",\"Variant 9\":\"Bdlat2FBe\"};const getProps=({aboutUs,brand,career,contactUs,height,home,id,impactAndInnovations,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,in9tca2Ho:aboutUs!==null&&aboutUs!==void 0?aboutUs:props.in9tca2Ho,KLCZmKLF1:impactAndInnovations!==null&&impactAndInnovations!==void 0?impactAndInnovations:props.KLCZmKLF1,kUDoxcJWD:contactUs!==null&&contactUs!==void 0?contactUs:props.kUDoxcJWD,Mghla32qn:brand!==null&&brand!==void 0?brand:props.Mghla32qn,oKmvDcggD:home!==null&&home!==void 0?home:props.oKmvDcggD,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"jZIMCrYmt\",Z0xW9JTT_:career!==null&&career!==void 0?career:props.Z0xW9JTT_};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,oKmvDcggD,in9tca2Ho,Mghla32qn,KLCZmKLF1,Z0xW9JTT_,kUDoxcJWD,vLYn9RQve,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jZIMCrYmt\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1mmyc27=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(vLYn9RQve){const res=await vLYn9RQve(...args);if(res===false)return false;}});const onTap484dqx=activeVariantCallback(async(...args)=>{setVariant(\"O0OkaaIQd\");});const onTap14tex2e=activeVariantCallback(async(...args)=>{setVariant(\"M7k_HsH5e\");});const onTaphgpj3u=activeVariantCallback(async(...args)=>{setVariant(\"rpkfpPPuo\");});const onTapetd5on=activeVariantCallback(async(...args)=>{setVariant(\"Bdlat2FBe\");});const onTap1lgn1p0=activeVariantCallback(async(...args)=>{setVariant(\"zCZpgOmY_\");});const onTaply7poo=activeVariantCallback(async(...args)=>{setVariant(\"UJ4FlIK6A\");});const onTapjxec5j=activeVariantCallback(async(...args)=>{setVariant(\"aPMnwxRwp\");});const onTap1igqurp=activeVariantCallback(async(...args)=>{setVariant(\"Nv6waCbSo\");});const onTap1dlht2u=activeVariantCallback(async(...args)=>{setVariant(\"dCypWvsXh\");});const onTap1qvu6ov=activeVariantCallback(async(...args)=>{setVariant(\"m4OIlQgLm\");});const onTap131tnth=activeVariantCallback(async(...args)=>{setVariant(\"drUUkWYsO\");});const onTap1kkm6ks=activeVariantCallback(async(...args)=>{setVariant(\"ir55JwXyh\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"O0OkaaIQd\",\"M7k_HsH5e\",\"rpkfpPPuo\",\"Bdlat2FBe\",\"zCZpgOmY_\",\"UJ4FlIK6A\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"aPMnwxRwp\",\"Nv6waCbSo\",\"dCypWvsXh\",\"m4OIlQgLm\",\"drUUkWYsO\",\"ir55JwXyh\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"O0OkaaIQd\",\"M7k_HsH5e\",\"rpkfpPPuo\",\"Bdlat2FBe\",\"zCZpgOmY_\",\"UJ4FlIK6A\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ww60qv\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"jZIMCrYmt\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{aPMnwxRwp:{backgroundColor:\"rgb(0, 0, 0)\"},Bdlat2FBe:{backgroundColor:\"rgb(0, 0, 0)\"},dCypWvsXh:{backgroundColor:\"rgb(0, 0, 0)\"},drUUkWYsO:{backgroundColor:\"rgb(0, 0, 0)\"},ir55JwXyh:{backgroundColor:\"rgb(0, 0, 0)\"},m4OIlQgLm:{backgroundColor:\"rgb(0, 0, 0)\"},Nv6waCbSo:{backgroundColor:\"rgb(0, 0, 0)\"},tj40V5qKR:{backgroundColor:\"rgb(0, 0, 0)\"},UJ4FlIK6A:{backgroundColor:\"rgb(0, 0, 0)\"},zCZpgOmY_:{backgroundColor:\"rgb(0, 0, 0)\"}},...addPropertyOverrides({aPMnwxRwp:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,\"data-framer-name\":\"Variant 3\",\"data-highlight\":true,drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,onTap:onTap1mmyc27},Bdlat2FBe:{\"data-framer-name\":\"Variant 9\"},dCypWvsXh:{\"data-framer-name\":\"Variant 7\"},drUUkWYsO:{\"data-framer-name\":\"Variant 13\"},ir55JwXyh:{\"data-framer-name\":\"Variant 14\"},m4OIlQgLm:{\"data-framer-name\":\"Variant 12\"},M7k_HsH5e:{\"data-framer-name\":\"Variant 4\"},Nv6waCbSo:{\"data-framer-name\":\"Variant 5\"},O0OkaaIQd:{\"data-framer-name\":\"Variant 2\"},rpkfpPPuo:{\"data-framer-name\":\"Variant 6\"},tj40V5qKR:{\"data-framer-name\":\"Variant 8\"},UJ4FlIK6A:{\"data-framer-name\":\"Variant 11\"},zCZpgOmY_:{\"data-framer-name\":\"Variant 10\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o2dcxf\",\"data-framer-name\":\"Frame 98\",layoutDependency:layoutDependency,layoutId:\"QNKtvzLjR\",children:[/*#__PURE__*/_jsx(Link,{href:oKmvDcggD,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-r4c12d framer-3xu7fz\",layoutDependency:layoutDependency,layoutId:\"QdEr0alYs\",...addPropertyOverrides({aPMnwxRwp:{\"data-highlight\":true,onTap:onTap484dqx},dCypWvsXh:{\"data-highlight\":true,onTap:onTaphgpj3u},drUUkWYsO:{\"data-highlight\":true,onTap:onTap1lgn1p0},ir55JwXyh:{\"data-highlight\":true,onTap:onTaply7poo},m4OIlQgLm:{\"data-highlight\":true,onTap:onTapetd5on},Nv6waCbSo:{\"data-highlight\":true,onTap:onTap14tex2e}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Home\"})}),className:\"framer-93stcy\",\"data-framer-name\":\"Home\",fonts:[\"GF;Outfit-500\"],layoutDependency:layoutDependency,layoutId:\"q1wXbCuw6\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:in9tca2Ho,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-10gcdp framer-3xu7fz\",layoutDependency:layoutDependency,layoutId:\"lMyLb07v2\",...addPropertyOverrides({aPMnwxRwp:{\"data-highlight\":true,onTap:onTap484dqx},dCypWvsXh:{\"data-highlight\":true,onTap:onTaphgpj3u},drUUkWYsO:{\"data-highlight\":true,onTap:onTap1lgn1p0},ir55JwXyh:{\"data-highlight\":true,onTap:onTaply7poo},m4OIlQgLm:{\"data-highlight\":true,onTap:onTapetd5on},Nv6waCbSo:{\"data-highlight\":true,onTap:onTap14tex2e}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"About Us\"})}),className:\"framer-15id4ih\",\"data-framer-name\":\"About Us\",fonts:[\"GF;Outfit-500\"],layoutDependency:layoutDependency,layoutId:\"yl3si6_yE\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:Mghla32qn,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1oollrs framer-3xu7fz\",layoutDependency:layoutDependency,layoutId:\"sKtFse71r\",...addPropertyOverrides({aPMnwxRwp:{\"data-highlight\":true,onTap:onTap484dqx},dCypWvsXh:{\"data-highlight\":true,onTap:onTaphgpj3u},drUUkWYsO:{\"data-highlight\":true,onTap:onTap1lgn1p0},ir55JwXyh:{\"data-highlight\":true,onTap:onTaply7poo},m4OIlQgLm:{\"data-highlight\":true,onTap:onTapetd5on},Nv6waCbSo:{\"data-highlight\":true,onTap:onTap14tex2e}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Domains\"})}),className:\"framer-mcy566\",\"data-framer-name\":\"Brands\",fonts:[\"GF;Outfit-500\"],layoutDependency:layoutDependency,layoutId:\"Ft6IyEtWF\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z8alzf\",\"data-framer-name\":\"Hamburger\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jEiV5yB3n\",onTap:onTap484dqx,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({dCypWvsXh:{onTap:onTaphgpj3u},drUUkWYsO:{onTap:onTap1lgn1p0},ir55JwXyh:{onTap:onTaply7poo},m4OIlQgLm:{onTap:onTapetd5on},Nv6waCbSo:{onTap:onTap14tex2e}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-14sui7m\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"bkj0wQamu\",style:{backgroundColor:\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(232, 84, 66))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8d6cl\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"E8lV_vWTJ\",style:{backgroundColor:\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(232, 84, 66))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:45}})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uck0bo\",layoutDependency:layoutDependency,layoutId:\"XvraC5jf5\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"80px\",src:\"https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png\",srcSet:\"https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png?scale-down-to=512 512w,https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png 3600w\"},className:\"framer-13q8idt\",\"data-framer-name\":\"gg labs logo white_\",layoutDependency:layoutDependency,layoutId:\"YODL2hN0T\"})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18dtw0\",\"data-framer-name\":\"Hamburger\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"VwjwoVlns\",onTap:onTapjxec5j,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({Bdlat2FBe:{onTap:onTap1qvu6ov},M7k_HsH5e:{onTap:onTap1igqurp},rpkfpPPuo:{onTap:onTap1dlht2u},UJ4FlIK6A:{onTap:onTap1kkm6ks},zCZpgOmY_:{onTap:onTap131tnth}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tbqr1z\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"wgjdvw1iM\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9wu55f\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"xRxqIw8Nc\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v98olo\",\"data-framer-name\":\"Frame 99\",layoutDependency:layoutDependency,layoutId:\"DZ7IV90pj\",children:[/*#__PURE__*/_jsx(Link,{href:Z0xW9JTT_,openInNewTab:true,...addPropertyOverrides({drUUkWYsO:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-cwwyst framer-3xu7fz\",layoutDependency:layoutDependency,layoutId:\"ikjS5X7YZ\",...addPropertyOverrides({aPMnwxRwp:{\"data-highlight\":true,onTap:onTap484dqx},dCypWvsXh:{\"data-highlight\":true,onTap:onTaphgpj3u},drUUkWYsO:{\"data-highlight\":true,onTap:onTap1lgn1p0},ir55JwXyh:{\"data-highlight\":true,onTap:onTaply7poo},m4OIlQgLm:{\"data-highlight\":true,onTap:onTapetd5on},Nv6waCbSo:{\"data-highlight\":true,onTap:onTap14tex2e}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Careers\"})}),className:\"framer-ormcki\",\"data-framer-name\":\"Careers\",fonts:[\"GF;Outfit-500\"],layoutDependency:layoutDependency,layoutId:\"Oe9hn8J3e\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:KLCZmKLF1,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1497t6g framer-3xu7fz\",layoutDependency:layoutDependency,layoutId:\"AHVfHP5qV\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Impact & Innovation\"})}),className:\"framer-1hrtpz6\",\"data-framer-name\":\"Impact & Innovation\",fonts:[\"GF;Outfit-500\"],layoutDependency:layoutDependency,layoutId:\"G9_2ZBVTy\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:kUDoxcJWD,smoothScroll:true,...addPropertyOverrides({drUUkWYsO:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-16dqmm framer-3xu7fz\",layoutDependency:layoutDependency,layoutId:\"ZQR43ywHC\",...addPropertyOverrides({aPMnwxRwp:{\"data-highlight\":true,onTap:onTap484dqx},dCypWvsXh:{\"data-highlight\":true,onTap:onTaphgpj3u},drUUkWYsO:{\"data-highlight\":true,onTap:onTap1lgn1p0},ir55JwXyh:{\"data-highlight\":true,onTap:onTaply7poo},m4OIlQgLm:{\"data-highlight\":true,onTap:onTapetd5on},Nv6waCbSo:{\"data-highlight\":true,onTap:onTap14tex2e}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Contact Us\"})}),className:\"framer-1jai8la\",\"data-framer-name\":\"Contact Us\",fonts:[\"GF;Outfit-500\"],layoutDependency:layoutDependency,layoutId:\"N9HkG4c09\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PdGZT.framer-3xu7fz, .framer-PdGZT .framer-3xu7fz { display: block; }\",\".framer-PdGZT.framer-1ww60qv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 100px 16px 100px; position: relative; width: 1387px; }\",\".framer-PdGZT .framer-1o2dcxf, .framer-PdGZT .framer-v98olo { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-PdGZT .framer-r4c12d, .framer-PdGZT .framer-10gcdp, .framer-PdGZT .framer-1oollrs, .framer-PdGZT .framer-cwwyst, .framer-PdGZT .framer-1497t6g, .framer-PdGZT .framer-16dqmm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-PdGZT .framer-93stcy, .framer-PdGZT .framer-mcy566, .framer-PdGZT .framer-ormcki, .framer-PdGZT .framer-1hrtpz6, .framer-PdGZT .framer-1jai8la { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PdGZT .framer-15id4ih { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-PdGZT .framer-z8alzf { cursor: pointer; flex: none; height: 32px; overflow: hidden; position: absolute; right: 0px; top: -88px; width: 32px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-PdGZT .framer-14sui7m, .framer-PdGZT .framer-8d6cl { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PdGZT .framer-uck0bo { flex: none; height: 80px; overflow: visible; position: relative; width: 80px; }\",\".framer-PdGZT .framer-13q8idt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-PdGZT .framer-18dtw0 { cursor: pointer; flex: none; height: 32px; overflow: hidden; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PdGZT .framer-1tbqr1z { flex: none; height: 2px; left: calc(50.00000000000002% - 15px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 15px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PdGZT .framer-9wu55f { flex: none; height: 2px; left: calc(50.00000000000002% - 15px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 15px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PdGZT.framer-1ww60qv, .framer-PdGZT .framer-r4c12d, .framer-PdGZT .framer-10gcdp, .framer-PdGZT .framer-1oollrs, .framer-PdGZT .framer-cwwyst, .framer-PdGZT .framer-1497t6g, .framer-PdGZT .framer-16dqmm { gap: 0px; } .framer-PdGZT.framer-1ww60qv > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-PdGZT.framer-1ww60qv > :first-child, .framer-PdGZT .framer-r4c12d > :first-child, .framer-PdGZT .framer-10gcdp > :first-child, .framer-PdGZT .framer-1oollrs > :first-child, .framer-PdGZT .framer-cwwyst > :first-child, .framer-PdGZT .framer-1497t6g > :first-child, .framer-PdGZT .framer-16dqmm > :first-child { margin-left: 0px; } .framer-PdGZT.framer-1ww60qv > :last-child, .framer-PdGZT .framer-r4c12d > :last-child, .framer-PdGZT .framer-10gcdp > :last-child, .framer-PdGZT .framer-1oollrs > :last-child, .framer-PdGZT .framer-cwwyst > :last-child, .framer-PdGZT .framer-1497t6g > :last-child, .framer-PdGZT .framer-16dqmm > :last-child { margin-right: 0px; } .framer-PdGZT .framer-r4c12d > *, .framer-PdGZT .framer-10gcdp > *, .framer-PdGZT .framer-1oollrs > *, .framer-PdGZT .framer-cwwyst > *, .framer-PdGZT .framer-1497t6g > *, .framer-PdGZT .framer-16dqmm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-PdGZT.framer-v-175budp.framer-1ww60qv, .framer-PdGZT.framer-v-2jsb7b.framer-1ww60qv { gap: unset; justify-content: space-between; width: 1200px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PdGZT.framer-v-175budp.framer-1ww60qv { gap: 0px; } .framer-PdGZT.framer-v-175budp.framer-1ww60qv > *, .framer-PdGZT.framer-v-175budp.framer-1ww60qv > :first-child, .framer-PdGZT.framer-v-175budp.framer-1ww60qv > :last-child { margin: 0px; } }\",\".framer-PdGZT.framer-v-2xcy8q.framer-1ww60qv { align-content: flex-start; align-items: flex-start; cursor: grab; flex-direction: column; gap: 0px; min-height: calc(var(--framer-viewport-height, 100vh) * 1); width: 1200px; }\",\".framer-PdGZT.framer-v-2xcy8q .framer-1o2dcxf, .framer-PdGZT.framer-v-1x46zk .framer-1o2dcxf, .framer-PdGZT.framer-v-ldc7k2 .framer-1o2dcxf, .framer-PdGZT.framer-v-3v8ewa .framer-1o2dcxf, .framer-PdGZT.framer-v-gftgc7 .framer-1o2dcxf, .framer-PdGZT.framer-v-zehco9 .framer-1o2dcxf { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; order: 1; width: 100%; }\",\".framer-PdGZT.framer-v-2xcy8q .framer-r4c12d, .framer-PdGZT.framer-v-1x46zk .framer-r4c12d, .framer-PdGZT.framer-v-ldc7k2 .framer-r4c12d, .framer-PdGZT.framer-v-3v8ewa .framer-r4c12d, .framer-PdGZT.framer-v-gftgc7 .framer-r4c12d, .framer-PdGZT.framer-v-zehco9 .framer-r4c12d { cursor: pointer; order: 1; }\",\".framer-PdGZT.framer-v-2xcy8q .framer-10gcdp, .framer-PdGZT.framer-v-1x46zk .framer-10gcdp, .framer-PdGZT.framer-v-ldc7k2 .framer-10gcdp, .framer-PdGZT.framer-v-3v8ewa .framer-10gcdp, .framer-PdGZT.framer-v-gftgc7 .framer-10gcdp, .framer-PdGZT.framer-v-zehco9 .framer-10gcdp { cursor: pointer; order: 2; }\",\".framer-PdGZT.framer-v-2xcy8q .framer-1oollrs, .framer-PdGZT.framer-v-1x46zk .framer-1oollrs, .framer-PdGZT.framer-v-ldc7k2 .framer-1oollrs, .framer-PdGZT.framer-v-3v8ewa .framer-1oollrs, .framer-PdGZT.framer-v-gftgc7 .framer-1oollrs, .framer-PdGZT.framer-v-zehco9 .framer-1oollrs { cursor: pointer; order: 3; }\",\".framer-PdGZT.framer-v-2xcy8q .framer-z8alzf, .framer-PdGZT.framer-v-1x46zk .framer-z8alzf, .framer-PdGZT.framer-v-ldc7k2 .framer-z8alzf, .framer-PdGZT.framer-v-139qula .framer-cwwyst, .framer-PdGZT.framer-v-3v8ewa .framer-z8alzf, .framer-PdGZT.framer-v-gftgc7 .framer-z8alzf, .framer-PdGZT.framer-v-zehco9 .framer-z8alzf { order: 0; }\",\".framer-PdGZT.framer-v-2xcy8q .framer-uck0bo, .framer-PdGZT.framer-v-1x46zk .framer-uck0bo, .framer-PdGZT.framer-v-ldc7k2 .framer-uck0bo, .framer-PdGZT.framer-v-3v8ewa .framer-uck0bo, .framer-PdGZT.framer-v-gftgc7 .framer-uck0bo, .framer-PdGZT.framer-v-zehco9 .framer-uck0bo { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; order: 0; padding: 0px 0px 32px 0px; }\",\".framer-PdGZT.framer-v-2xcy8q .framer-13q8idt, .framer-PdGZT.framer-v-1x46zk .framer-13q8idt, .framer-PdGZT.framer-v-ldc7k2 .framer-13q8idt, .framer-PdGZT.framer-v-3v8ewa .framer-13q8idt, .framer-PdGZT.framer-v-gftgc7 .framer-13q8idt, .framer-PdGZT.framer-v-zehco9 .framer-13q8idt { left: unset; position: relative; right: unset; top: unset; width: 80px; }\",\".framer-PdGZT.framer-v-2xcy8q .framer-v98olo, .framer-PdGZT.framer-v-1x46zk .framer-v98olo, .framer-PdGZT.framer-v-ldc7k2 .framer-v98olo, .framer-PdGZT.framer-v-3v8ewa .framer-v98olo, .framer-PdGZT.framer-v-gftgc7 .framer-v98olo, .framer-PdGZT.framer-v-zehco9 .framer-v98olo { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; order: 3; width: 100%; }\",\".framer-PdGZT.framer-v-2xcy8q .framer-cwwyst, .framer-PdGZT.framer-v-2xcy8q .framer-16dqmm, .framer-PdGZT.framer-v-1x46zk .framer-cwwyst, .framer-PdGZT.framer-v-1x46zk .framer-16dqmm, .framer-PdGZT.framer-v-ldc7k2 .framer-cwwyst, .framer-PdGZT.framer-v-ldc7k2 .framer-16dqmm, .framer-PdGZT.framer-v-3v8ewa .framer-cwwyst, .framer-PdGZT.framer-v-3v8ewa .framer-16dqmm, .framer-PdGZT.framer-v-gftgc7 .framer-cwwyst, .framer-PdGZT.framer-v-gftgc7 .framer-16dqmm, .framer-PdGZT.framer-v-zehco9 .framer-cwwyst, .framer-PdGZT.framer-v-zehco9 .framer-16dqmm { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PdGZT.framer-v-2xcy8q.framer-1ww60qv, .framer-PdGZT.framer-v-2xcy8q .framer-1o2dcxf, .framer-PdGZT.framer-v-2xcy8q .framer-uck0bo, .framer-PdGZT.framer-v-2xcy8q .framer-v98olo { gap: 0px; } .framer-PdGZT.framer-v-2xcy8q.framer-1ww60qv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PdGZT.framer-v-2xcy8q.framer-1ww60qv > :first-child { margin-top: 0px; } .framer-PdGZT.framer-v-2xcy8q.framer-1ww60qv > :last-child { margin-bottom: 0px; } .framer-PdGZT.framer-v-2xcy8q .framer-1o2dcxf > *, .framer-PdGZT.framer-v-2xcy8q .framer-1o2dcxf > :first-child, .framer-PdGZT.framer-v-2xcy8q .framer-1o2dcxf > :last-child, .framer-PdGZT.framer-v-2xcy8q .framer-v98olo > *, .framer-PdGZT.framer-v-2xcy8q .framer-v98olo > :first-child, .framer-PdGZT.framer-v-2xcy8q .framer-v98olo > :last-child { margin: 0px; } .framer-PdGZT.framer-v-2xcy8q .framer-uck0bo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PdGZT.framer-v-2xcy8q .framer-uck0bo > :first-child { margin-left: 0px; } .framer-PdGZT.framer-v-2xcy8q .framer-uck0bo > :last-child { margin-right: 0px; } }\",\".framer-PdGZT.framer-v-a4nvka.framer-1ww60qv, .framer-PdGZT.framer-v-1342xgv.framer-1ww60qv { gap: unset; justify-content: space-between; padding: 16px 80px 16px 80px; width: 810px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PdGZT.framer-v-a4nvka.framer-1ww60qv { gap: 0px; } .framer-PdGZT.framer-v-a4nvka.framer-1ww60qv > *, .framer-PdGZT.framer-v-a4nvka.framer-1ww60qv > :first-child, .framer-PdGZT.framer-v-a4nvka.framer-1ww60qv > :last-child { margin: 0px; } }\",\".framer-PdGZT.framer-v-1x46zk.framer-1ww60qv, .framer-PdGZT.framer-v-gftgc7.framer-1ww60qv { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; min-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 16px 80px 16px 80px; width: 810px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PdGZT.framer-v-1x46zk.framer-1ww60qv, .framer-PdGZT.framer-v-1x46zk .framer-1o2dcxf, .framer-PdGZT.framer-v-1x46zk .framer-uck0bo, .framer-PdGZT.framer-v-1x46zk .framer-v98olo { gap: 0px; } .framer-PdGZT.framer-v-1x46zk.framer-1ww60qv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PdGZT.framer-v-1x46zk.framer-1ww60qv > :first-child { margin-top: 0px; } .framer-PdGZT.framer-v-1x46zk.framer-1ww60qv > :last-child { margin-bottom: 0px; } .framer-PdGZT.framer-v-1x46zk .framer-1o2dcxf > *, .framer-PdGZT.framer-v-1x46zk .framer-1o2dcxf > :first-child, .framer-PdGZT.framer-v-1x46zk .framer-1o2dcxf > :last-child, .framer-PdGZT.framer-v-1x46zk .framer-v98olo > *, .framer-PdGZT.framer-v-1x46zk .framer-v98olo > :first-child, .framer-PdGZT.framer-v-1x46zk .framer-v98olo > :last-child { margin: 0px; } .framer-PdGZT.framer-v-1x46zk .framer-uck0bo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PdGZT.framer-v-1x46zk .framer-uck0bo > :first-child { margin-left: 0px; } .framer-PdGZT.framer-v-1x46zk .framer-uck0bo > :last-child { margin-right: 0px; } }\",\".framer-PdGZT.framer-v-9tynw0.framer-1ww60qv, .framer-PdGZT.framer-v-13fmfqw.framer-1ww60qv { gap: unset; justify-content: space-between; padding: 16px 20px 16px 20px; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PdGZT.framer-v-9tynw0.framer-1ww60qv { gap: 0px; } .framer-PdGZT.framer-v-9tynw0.framer-1ww60qv > *, .framer-PdGZT.framer-v-9tynw0.framer-1ww60qv > :first-child, .framer-PdGZT.framer-v-9tynw0.framer-1ww60qv > :last-child { margin: 0px; } }\",\".framer-PdGZT.framer-v-ldc7k2.framer-1ww60qv, .framer-PdGZT.framer-v-zehco9.framer-1ww60qv { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; min-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 16px 20px 16px 20px; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PdGZT.framer-v-ldc7k2.framer-1ww60qv, .framer-PdGZT.framer-v-ldc7k2 .framer-1o2dcxf, .framer-PdGZT.framer-v-ldc7k2 .framer-uck0bo, .framer-PdGZT.framer-v-ldc7k2 .framer-v98olo { gap: 0px; } .framer-PdGZT.framer-v-ldc7k2.framer-1ww60qv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PdGZT.framer-v-ldc7k2.framer-1ww60qv > :first-child { margin-top: 0px; } .framer-PdGZT.framer-v-ldc7k2.framer-1ww60qv > :last-child { margin-bottom: 0px; } .framer-PdGZT.framer-v-ldc7k2 .framer-1o2dcxf > *, .framer-PdGZT.framer-v-ldc7k2 .framer-1o2dcxf > :first-child, .framer-PdGZT.framer-v-ldc7k2 .framer-1o2dcxf > :last-child, .framer-PdGZT.framer-v-ldc7k2 .framer-v98olo > *, .framer-PdGZT.framer-v-ldc7k2 .framer-v98olo > :first-child, .framer-PdGZT.framer-v-ldc7k2 .framer-v98olo > :last-child { margin: 0px; } .framer-PdGZT.framer-v-ldc7k2 .framer-uck0bo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PdGZT.framer-v-ldc7k2 .framer-uck0bo > :first-child { margin-left: 0px; } .framer-PdGZT.framer-v-ldc7k2 .framer-uck0bo > :last-child { margin-right: 0px; } }\",\".framer-PdGZT.framer-v-139qula .framer-1497t6g { order: 1; }\",\".framer-PdGZT.framer-v-139qula .framer-16dqmm { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PdGZT.framer-v-2jsb7b.framer-1ww60qv { gap: 0px; } .framer-PdGZT.framer-v-2jsb7b.framer-1ww60qv > *, .framer-PdGZT.framer-v-2jsb7b.framer-1ww60qv > :first-child, .framer-PdGZT.framer-v-2jsb7b.framer-1ww60qv > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PdGZT.framer-v-1342xgv.framer-1ww60qv { gap: 0px; } .framer-PdGZT.framer-v-1342xgv.framer-1ww60qv > *, .framer-PdGZT.framer-v-1342xgv.framer-1ww60qv > :first-child, .framer-PdGZT.framer-v-1342xgv.framer-1ww60qv > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PdGZT.framer-v-13fmfqw.framer-1ww60qv { gap: 0px; } .framer-PdGZT.framer-v-13fmfqw.framer-1ww60qv > *, .framer-PdGZT.framer-v-13fmfqw.framer-1ww60qv > :first-child, .framer-PdGZT.framer-v-13fmfqw.framer-1ww60qv > :last-child { margin: 0px; } }\",\".framer-PdGZT.framer-v-3v8ewa.framer-1ww60qv { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; min-height: calc(var(--framer-viewport-height, 100vh) * 1); width: 1200px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PdGZT.framer-v-3v8ewa.framer-1ww60qv, .framer-PdGZT.framer-v-3v8ewa .framer-1o2dcxf, .framer-PdGZT.framer-v-3v8ewa .framer-uck0bo, .framer-PdGZT.framer-v-3v8ewa .framer-v98olo { gap: 0px; } .framer-PdGZT.framer-v-3v8ewa.framer-1ww60qv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PdGZT.framer-v-3v8ewa.framer-1ww60qv > :first-child { margin-top: 0px; } .framer-PdGZT.framer-v-3v8ewa.framer-1ww60qv > :last-child { margin-bottom: 0px; } .framer-PdGZT.framer-v-3v8ewa .framer-1o2dcxf > *, .framer-PdGZT.framer-v-3v8ewa .framer-1o2dcxf > :first-child, .framer-PdGZT.framer-v-3v8ewa .framer-1o2dcxf > :last-child, .framer-PdGZT.framer-v-3v8ewa .framer-v98olo > *, .framer-PdGZT.framer-v-3v8ewa .framer-v98olo > :first-child, .framer-PdGZT.framer-v-3v8ewa .framer-v98olo > :last-child { margin: 0px; } .framer-PdGZT.framer-v-3v8ewa .framer-uck0bo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PdGZT.framer-v-3v8ewa .framer-uck0bo > :first-child { margin-left: 0px; } .framer-PdGZT.framer-v-3v8ewa .framer-uck0bo > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PdGZT.framer-v-gftgc7.framer-1ww60qv, .framer-PdGZT.framer-v-gftgc7 .framer-1o2dcxf, .framer-PdGZT.framer-v-gftgc7 .framer-uck0bo, .framer-PdGZT.framer-v-gftgc7 .framer-v98olo { gap: 0px; } .framer-PdGZT.framer-v-gftgc7.framer-1ww60qv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PdGZT.framer-v-gftgc7.framer-1ww60qv > :first-child { margin-top: 0px; } .framer-PdGZT.framer-v-gftgc7.framer-1ww60qv > :last-child { margin-bottom: 0px; } .framer-PdGZT.framer-v-gftgc7 .framer-1o2dcxf > *, .framer-PdGZT.framer-v-gftgc7 .framer-1o2dcxf > :first-child, .framer-PdGZT.framer-v-gftgc7 .framer-1o2dcxf > :last-child, .framer-PdGZT.framer-v-gftgc7 .framer-v98olo > *, .framer-PdGZT.framer-v-gftgc7 .framer-v98olo > :first-child, .framer-PdGZT.framer-v-gftgc7 .framer-v98olo > :last-child { margin: 0px; } .framer-PdGZT.framer-v-gftgc7 .framer-uck0bo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PdGZT.framer-v-gftgc7 .framer-uck0bo > :first-child { margin-left: 0px; } .framer-PdGZT.framer-v-gftgc7 .framer-uck0bo > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PdGZT.framer-v-zehco9.framer-1ww60qv, .framer-PdGZT.framer-v-zehco9 .framer-1o2dcxf, .framer-PdGZT.framer-v-zehco9 .framer-uck0bo, .framer-PdGZT.framer-v-zehco9 .framer-v98olo { gap: 0px; } .framer-PdGZT.framer-v-zehco9.framer-1ww60qv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PdGZT.framer-v-zehco9.framer-1ww60qv > :first-child { margin-top: 0px; } .framer-PdGZT.framer-v-zehco9.framer-1ww60qv > :last-child { margin-bottom: 0px; } .framer-PdGZT.framer-v-zehco9 .framer-1o2dcxf > *, .framer-PdGZT.framer-v-zehco9 .framer-1o2dcxf > :first-child, .framer-PdGZT.framer-v-zehco9 .framer-1o2dcxf > :last-child, .framer-PdGZT.framer-v-zehco9 .framer-v98olo > *, .framer-PdGZT.framer-v-zehco9 .framer-v98olo > :first-child, .framer-PdGZT.framer-v-zehco9 .framer-v98olo > :last-child { margin: 0px; } .framer-PdGZT.framer-v-zehco9 .framer-uck0bo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PdGZT.framer-v-zehco9 .framer-uck0bo > :first-child { margin-left: 0px; } .framer-PdGZT.framer-v-zehco9 .framer-uck0bo > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 112\n * @framerIntrinsicWidth 1387\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"O0OkaaIQd\":{\"layout\":[\"fixed\",\"auto\"]},\"aPMnwxRwp\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"M7k_HsH5e\":{\"layout\":[\"fixed\",\"auto\"]},\"Nv6waCbSo\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"rpkfpPPuo\":{\"layout\":[\"fixed\",\"auto\"]},\"dCypWvsXh\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"tj40V5qKR\":{\"layout\":[\"fixed\",\"auto\"]},\"Bdlat2FBe\":{\"layout\":[\"fixed\",\"auto\"]},\"zCZpgOmY_\":{\"layout\":[\"fixed\",\"auto\"]},\"UJ4FlIK6A\":{\"layout\":[\"fixed\",\"auto\"]},\"m4OIlQgLm\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"drUUkWYsO\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"ir55JwXyh\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]}}}\n * @framerVariables {\"oKmvDcggD\":\"home\",\"in9tca2Ho\":\"aboutUs\",\"Mghla32qn\":\"brand\",\"KLCZmKLF1\":\"impactAndInnovations\",\"Z0xW9JTT_\":\"career\",\"kUDoxcJWD\":\"contactUs\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJRZk1Lea_=withCSS(Component,css,\"framer-PdGZT\");export default FramerJRZk1Lea_;FramerJRZk1Lea_.displayName=\"Header Copy\";FramerJRZk1Lea_.defaultProps={height:112,width:1387};addPropertyControls(FramerJRZk1Lea_,{variant:{options:[\"jZIMCrYmt\",\"O0OkaaIQd\",\"aPMnwxRwp\",\"M7k_HsH5e\",\"Nv6waCbSo\",\"rpkfpPPuo\",\"dCypWvsXh\",\"tj40V5qKR\",\"Bdlat2FBe\",\"zCZpgOmY_\",\"UJ4FlIK6A\",\"m4OIlQgLm\",\"drUUkWYsO\",\"ir55JwXyh\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\",\"Variant 9\",\"Variant 10\",\"Variant 11\",\"Variant 12\",\"Variant 13\",\"Variant 14\"],title:\"Variant\",type:ControlType.Enum},oKmvDcggD:{title:\"Home\",type:ControlType.Link},in9tca2Ho:{title:\"About Us\",type:ControlType.Link},Mghla32qn:{title:\"Brand\",type:ControlType.Link},KLCZmKLF1:{title:\"Impact and Innovations\",type:ControlType.Link},Z0xW9JTT_:{title:\"Career\",type:ControlType.Link},kUDoxcJWD:{title:\"Contact Us\",type:ControlType.Link}});addFonts(FramerJRZk1Lea_,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJRZk1Lea_\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"oKmvDcggD\\\":\\\"home\\\",\\\"in9tca2Ho\\\":\\\"aboutUs\\\",\\\"Mghla32qn\\\":\\\"brand\\\",\\\"KLCZmKLF1\\\":\\\"impactAndInnovations\\\",\\\"Z0xW9JTT_\\\":\\\"career\\\",\\\"kUDoxcJWD\\\":\\\"contactUs\\\"}\",\"framerIntrinsicWidth\":\"1387\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O0OkaaIQd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aPMnwxRwp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"M7k_HsH5e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nv6waCbSo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"rpkfpPPuo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dCypWvsXh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"tj40V5qKR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Bdlat2FBe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zCZpgOmY_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UJ4FlIK6A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m4OIlQgLm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"drUUkWYsO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"ir55JwXyh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]}}}\",\"framerIntrinsicHeight\":\"112\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JRZk1Lea_.map", "// Generated by Framer (3e30e79)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"jUPLJHnVR\",\"NlotvEhLR\",\"JmevAr6nS\",\"Dj0nI0sHP\",\"f5MdTVXgO\",\"OkYYJlTtQ\",\"kQQv0BnKV\",\"OtwOUqb_e\",\"mOEJ228XZ\",\"hW6mW6tgt\",\"f0XU2NyDI\",\"PQB_2agoo\",\"kSSAq7e0Q\",\"bjPl4SyHk\"];const serializationHash=\"framer-uvJAk\";const variantClassNames={bjPl4SyHk:\"framer-v-qslbw7\",Dj0nI0sHP:\"framer-v-2rrxzg\",f0XU2NyDI:\"framer-v-1gp6y5i\",f5MdTVXgO:\"framer-v-1fo1fcx\",hW6mW6tgt:\"framer-v-39fb3w\",JmevAr6nS:\"framer-v-14iil9y\",jUPLJHnVR:\"framer-v-1tvyizb\",kQQv0BnKV:\"framer-v-15ourwc\",kSSAq7e0Q:\"framer-v-h0rc1w\",mOEJ228XZ:\"framer-v-y66afs\",NlotvEhLR:\"framer-v-wmdhve\",OkYYJlTtQ:\"framer-v-rbakc8\",OtwOUqb_e:\"framer-v-1abiwxf\",PQB_2agoo:\"framer-v-woak56\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"jUPLJHnVR\",\"Variant 10\":\"hW6mW6tgt\",\"Variant 11\":\"f0XU2NyDI\",\"Variant 12\":\"PQB_2agoo\",\"Variant 13\":\"kSSAq7e0Q\",\"Variant 14\":\"bjPl4SyHk\",\"Variant 2\":\"NlotvEhLR\",\"Variant 3\":\"JmevAr6nS\",\"Variant 4\":\"Dj0nI0sHP\",\"Variant 5\":\"f5MdTVXgO\",\"Variant 6\":\"OkYYJlTtQ\",\"Variant 7\":\"kQQv0BnKV\",\"Variant 8\":\"OtwOUqb_e\",\"Variant 9\":\"mOEJ228XZ\"};const getProps=({aboutUs,brand,career,contactUs,height,home,id,impactAndInnovations,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,in9tca2Ho:aboutUs!==null&&aboutUs!==void 0?aboutUs:props.in9tca2Ho,KLCZmKLF1:impactAndInnovations!==null&&impactAndInnovations!==void 0?impactAndInnovations:props.KLCZmKLF1,kUDoxcJWD:contactUs!==null&&contactUs!==void 0?contactUs:props.kUDoxcJWD,Mghla32qn:brand!==null&&brand!==void 0?brand:props.Mghla32qn,oKmvDcggD:home!==null&&home!==void 0?home:props.oKmvDcggD,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"jUPLJHnVR\",Z0xW9JTT_:career!==null&&career!==void 0?career:props.Z0xW9JTT_};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,oKmvDcggD,in9tca2Ho,Mghla32qn,KLCZmKLF1,Z0xW9JTT_,kUDoxcJWD,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jUPLJHnVR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap15hk24k=activeVariantCallback(async(...args)=>{setVariant(\"NlotvEhLR\");});const onTapxkir19=activeVariantCallback(async(...args)=>{setVariant(\"Dj0nI0sHP\");});const onTapik6in0=activeVariantCallback(async(...args)=>{setVariant(\"OkYYJlTtQ\");});const onTap1uwwa93=activeVariantCallback(async(...args)=>{setVariant(\"mOEJ228XZ\");});const onTap1lc8aro=activeVariantCallback(async(...args)=>{setVariant(\"hW6mW6tgt\");});const onTap30cg4a=activeVariantCallback(async(...args)=>{setVariant(\"f0XU2NyDI\");});const onTapm1h8ls=activeVariantCallback(async(...args)=>{setVariant(\"JmevAr6nS\");});const onTapg59fdo=activeVariantCallback(async(...args)=>{setVariant(\"f5MdTVXgO\");});const onTap221bd6=activeVariantCallback(async(...args)=>{setVariant(\"kQQv0BnKV\");});const onTap16ovu7e=activeVariantCallback(async(...args)=>{setVariant(\"PQB_2agoo\");});const onTapvl4ygn=activeVariantCallback(async(...args)=>{setVariant(\"kSSAq7e0Q\");});const onTap1hl9de=activeVariantCallback(async(...args)=>{setVariant(\"bjPl4SyHk\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"NlotvEhLR\",\"Dj0nI0sHP\",\"OkYYJlTtQ\",\"mOEJ228XZ\",\"hW6mW6tgt\",\"f0XU2NyDI\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"JmevAr6nS\",\"f5MdTVXgO\",\"kQQv0BnKV\",\"PQB_2agoo\",\"kSSAq7e0Q\",\"bjPl4SyHk\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"NlotvEhLR\",\"Dj0nI0sHP\",\"OkYYJlTtQ\",\"mOEJ228XZ\",\"hW6mW6tgt\",\"f0XU2NyDI\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1tvyizb\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"jUPLJHnVR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{bjPl4SyHk:{backgroundColor:\"rgb(0, 0, 0)\"},f0XU2NyDI:{backgroundColor:\"rgb(0, 0, 0)\"},f5MdTVXgO:{backgroundColor:\"rgb(0, 0, 0)\"},hW6mW6tgt:{backgroundColor:\"rgb(0, 0, 0)\"},JmevAr6nS:{backgroundColor:\"rgb(0, 0, 0)\"},kQQv0BnKV:{backgroundColor:\"rgb(0, 0, 0)\"},kSSAq7e0Q:{backgroundColor:\"rgb(0, 0, 0)\"},mOEJ228XZ:{backgroundColor:\"rgb(0, 0, 0)\"},OtwOUqb_e:{backgroundColor:\"rgb(0, 0, 0)\"},PQB_2agoo:{backgroundColor:\"rgb(0, 0, 0)\"}},...addPropertyOverrides({bjPl4SyHk:{\"data-framer-name\":\"Variant 14\"},Dj0nI0sHP:{\"data-framer-name\":\"Variant 4\"},f0XU2NyDI:{\"data-framer-name\":\"Variant 11\"},f5MdTVXgO:{\"data-framer-name\":\"Variant 5\"},hW6mW6tgt:{\"data-framer-name\":\"Variant 10\"},JmevAr6nS:{\"data-framer-name\":\"Variant 3\"},kQQv0BnKV:{\"data-framer-name\":\"Variant 7\"},kSSAq7e0Q:{\"data-framer-name\":\"Variant 13\"},mOEJ228XZ:{\"data-framer-name\":\"Variant 9\"},NlotvEhLR:{\"data-framer-name\":\"Variant 2\"},OkYYJlTtQ:{\"data-framer-name\":\"Variant 6\"},OtwOUqb_e:{\"data-framer-name\":\"Variant 8\"},PQB_2agoo:{\"data-framer-name\":\"Variant 12\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7aitei\",\"data-framer-name\":\"Frame 98\",layoutDependency:layoutDependency,layoutId:\"iXL1whO8a\",children:[/*#__PURE__*/_jsx(Link,{href:oKmvDcggD,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1i8p6rp framer-3hhg20\",layoutDependency:layoutDependency,layoutId:\"jyMGZQpwP\",...addPropertyOverrides({bjPl4SyHk:{\"data-highlight\":true,onTap:onTap30cg4a},f5MdTVXgO:{\"data-highlight\":true,onTap:onTapxkir19},JmevAr6nS:{\"data-highlight\":true,onTap:onTap15hk24k},kQQv0BnKV:{\"data-highlight\":true,onTap:onTapik6in0},kSSAq7e0Q:{\"data-highlight\":true,onTap:onTap1lc8aro},PQB_2agoo:{\"data-highlight\":true,onTap:onTap1uwwa93}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Home\"})}),className:\"framer-7h0vcw\",\"data-framer-name\":\"Home\",fonts:[\"GF;Outfit-500\"],layoutDependency:layoutDependency,layoutId:\"pnvxWwtaD\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:in9tca2Ho,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ajfplp framer-3hhg20\",layoutDependency:layoutDependency,layoutId:\"YK8ZyVnUO\",...addPropertyOverrides({bjPl4SyHk:{\"data-highlight\":true,onTap:onTap30cg4a},f5MdTVXgO:{\"data-highlight\":true,onTap:onTapxkir19},JmevAr6nS:{\"data-highlight\":true,onTap:onTap15hk24k},kQQv0BnKV:{\"data-highlight\":true,onTap:onTapik6in0},kSSAq7e0Q:{\"data-highlight\":true,onTap:onTap1lc8aro},PQB_2agoo:{\"data-highlight\":true,onTap:onTap1uwwa93}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"About Us\"})}),className:\"framer-1gmqrbs\",\"data-framer-name\":\"About Us\",fonts:[\"GF;Outfit-500\"],layoutDependency:layoutDependency,layoutId:\"oDk8eQUKi\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:Mghla32qn,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1o77krx framer-3hhg20\",layoutDependency:layoutDependency,layoutId:\"nLyQHkDl8\",...addPropertyOverrides({bjPl4SyHk:{\"data-highlight\":true,onTap:onTap30cg4a},f5MdTVXgO:{\"data-highlight\":true,onTap:onTapxkir19},JmevAr6nS:{\"data-highlight\":true,onTap:onTap15hk24k},kQQv0BnKV:{\"data-highlight\":true,onTap:onTapik6in0},kSSAq7e0Q:{\"data-highlight\":true,onTap:onTap1lc8aro},PQB_2agoo:{\"data-highlight\":true,onTap:onTap1uwwa93}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Domains\"})}),className:\"framer-1lxnd8y\",\"data-framer-name\":\"Brands\",fonts:[\"GF;Outfit-500\"],layoutDependency:layoutDependency,layoutId:\"a_LMwYxiu\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yryino\",\"data-framer-name\":\"Hamburger\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"j2ngvwotZ\",onTap:onTap15hk24k,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({bjPl4SyHk:{onTap:onTap30cg4a},f5MdTVXgO:{onTap:onTapxkir19},kQQv0BnKV:{onTap:onTapik6in0},kSSAq7e0Q:{onTap:onTap1lc8aro},PQB_2agoo:{onTap:onTap1uwwa93}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vpscvl\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"asEEkysB2\",style:{backgroundColor:\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(232, 84, 66))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5phm9n\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"XqVLD9ykO\",style:{backgroundColor:\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(232, 84, 66))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:45}})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-70lprg\",layoutDependency:layoutDependency,layoutId:\"G5sSC9qcN\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"80px\",src:\"https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png\",srcSet:\"https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png?scale-down-to=512 512w,https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png 3600w\"},className:\"framer-k8x2jb\",\"data-framer-name\":\"gg labs logo white_\",layoutDependency:layoutDependency,layoutId:\"mxn42WHZV\"})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cprpls\",\"data-framer-name\":\"Hamburger\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BSxgvSbOs\",onTap:onTapm1h8ls,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({Dj0nI0sHP:{onTap:onTapg59fdo},f0XU2NyDI:{onTap:onTap1hl9de},hW6mW6tgt:{onTap:onTapvl4ygn},mOEJ228XZ:{onTap:onTap16ovu7e},OkYYJlTtQ:{onTap:onTap221bd6}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8eumeu\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"MKsdYOHyY\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t822n0\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"R2JscPQnB\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ut7rk4\",\"data-framer-name\":\"Frame 99\",layoutDependency:layoutDependency,layoutId:\"qbxZuyPi_\",children:[/*#__PURE__*/_jsx(Link,{href:Z0xW9JTT_,openInNewTab:true,...addPropertyOverrides({kSSAq7e0Q:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-whsl9c framer-3hhg20\",layoutDependency:layoutDependency,layoutId:\"I6Dpu70PT\",...addPropertyOverrides({bjPl4SyHk:{\"data-highlight\":true,onTap:onTap30cg4a},f5MdTVXgO:{\"data-highlight\":true,onTap:onTapxkir19},JmevAr6nS:{\"data-highlight\":true,onTap:onTap15hk24k},kQQv0BnKV:{\"data-highlight\":true,onTap:onTapik6in0},kSSAq7e0Q:{\"data-highlight\":true,onTap:onTap1lc8aro},PQB_2agoo:{\"data-highlight\":true,onTap:onTap1uwwa93}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Careers\"})}),className:\"framer-1787yst\",\"data-framer-name\":\"Careers\",fonts:[\"GF;Outfit-500\"],layoutDependency:layoutDependency,layoutId:\"keuqW0tyI\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:KLCZmKLF1,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17hx41o framer-3hhg20\",layoutDependency:layoutDependency,layoutId:\"cuLbm_2L_\",...addPropertyOverrides({bjPl4SyHk:{\"data-highlight\":true,onTap:onTap30cg4a},f5MdTVXgO:{\"data-highlight\":true,onTap:onTapxkir19},JmevAr6nS:{\"data-highlight\":true,onTap:onTap15hk24k},kQQv0BnKV:{\"data-highlight\":true,onTap:onTapik6in0},kSSAq7e0Q:{\"data-highlight\":true,onTap:onTap1lc8aro},PQB_2agoo:{\"data-highlight\":true,onTap:onTap1uwwa93}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Impact & Innovation\"})}),className:\"framer-156qhgf\",\"data-framer-name\":\"Impact & Innovation\",fonts:[\"GF;Outfit-500\"],layoutDependency:layoutDependency,layoutId:\"JkuR4MtlJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:kUDoxcJWD,smoothScroll:true,...addPropertyOverrides({kSSAq7e0Q:{openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1xu6wkx framer-3hhg20\",layoutDependency:layoutDependency,layoutId:\"AKEdxkDNL\",...addPropertyOverrides({bjPl4SyHk:{\"data-highlight\":true,onTap:onTap30cg4a},f5MdTVXgO:{\"data-highlight\":true,onTap:onTapxkir19},JmevAr6nS:{\"data-highlight\":true,onTap:onTap15hk24k},kQQv0BnKV:{\"data-highlight\":true,onTap:onTapik6in0},kSSAq7e0Q:{\"data-highlight\":true,onTap:onTap1lc8aro},PQB_2agoo:{\"data-highlight\":true,onTap:onTap1uwwa93}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Contact Us\"})}),className:\"framer-1cep3g9\",\"data-framer-name\":\"Contact Us\",fonts:[\"GF;Outfit-500\"],layoutDependency:layoutDependency,layoutId:\"fO5RSq4jj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uvJAk.framer-3hhg20, .framer-uvJAk .framer-3hhg20 { display: block; }\",\".framer-uvJAk.framer-1tvyizb { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 100px 16px 100px; position: relative; width: 1387px; }\",\".framer-uvJAk .framer-7aitei { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 48px 0px 0px; position: relative; width: 1px; }\",\".framer-uvJAk .framer-1i8p6rp, .framer-uvJAk .framer-ajfplp, .framer-uvJAk .framer-1o77krx, .framer-uvJAk .framer-whsl9c, .framer-uvJAk .framer-17hx41o, .framer-uvJAk .framer-1xu6wkx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-uvJAk .framer-7h0vcw, .framer-uvJAk .framer-1lxnd8y, .framer-uvJAk .framer-1787yst, .framer-uvJAk .framer-156qhgf, .framer-uvJAk .framer-1cep3g9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-uvJAk .framer-1gmqrbs { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-uvJAk .framer-yryino { cursor: pointer; flex: none; height: 32px; overflow: hidden; position: absolute; right: 0px; top: -88px; width: 32px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-uvJAk .framer-1vpscvl, .framer-uvJAk .framer-5phm9n { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uvJAk .framer-70lprg { flex: none; height: 80px; overflow: visible; position: relative; width: 80px; }\",\".framer-uvJAk .framer-k8x2jb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-uvJAk .framer-1cprpls { cursor: pointer; flex: none; height: 32px; overflow: hidden; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uvJAk .framer-8eumeu { flex: none; height: 2px; left: calc(50.00000000000002% - 15px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 15px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uvJAk .framer-1t822n0 { flex: none; height: 2px; left: calc(50.00000000000002% - 15px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 15px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uvJAk .framer-1ut7rk4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 48px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uvJAk.framer-1tvyizb, .framer-uvJAk .framer-1i8p6rp, .framer-uvJAk .framer-ajfplp, .framer-uvJAk .framer-1o77krx, .framer-uvJAk .framer-whsl9c, .framer-uvJAk .framer-17hx41o, .framer-uvJAk .framer-1xu6wkx { gap: 0px; } .framer-uvJAk.framer-1tvyizb > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-uvJAk.framer-1tvyizb > :first-child, .framer-uvJAk .framer-1i8p6rp > :first-child, .framer-uvJAk .framer-ajfplp > :first-child, .framer-uvJAk .framer-1o77krx > :first-child, .framer-uvJAk .framer-whsl9c > :first-child, .framer-uvJAk .framer-17hx41o > :first-child, .framer-uvJAk .framer-1xu6wkx > :first-child { margin-left: 0px; } .framer-uvJAk.framer-1tvyizb > :last-child, .framer-uvJAk .framer-1i8p6rp > :last-child, .framer-uvJAk .framer-ajfplp > :last-child, .framer-uvJAk .framer-1o77krx > :last-child, .framer-uvJAk .framer-whsl9c > :last-child, .framer-uvJAk .framer-17hx41o > :last-child, .framer-uvJAk .framer-1xu6wkx > :last-child { margin-right: 0px; } .framer-uvJAk .framer-1i8p6rp > *, .framer-uvJAk .framer-ajfplp > *, .framer-uvJAk .framer-1o77krx > *, .framer-uvJAk .framer-whsl9c > *, .framer-uvJAk .framer-17hx41o > *, .framer-uvJAk .framer-1xu6wkx > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-uvJAk.framer-v-wmdhve.framer-1tvyizb, .framer-uvJAk.framer-v-y66afs.framer-1tvyizb { gap: unset; justify-content: space-between; width: 1200px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uvJAk.framer-v-wmdhve.framer-1tvyizb { gap: 0px; } .framer-uvJAk.framer-v-wmdhve.framer-1tvyizb > *, .framer-uvJAk.framer-v-wmdhve.framer-1tvyizb > :first-child, .framer-uvJAk.framer-v-wmdhve.framer-1tvyizb > :last-child { margin: 0px; } }\",\".framer-uvJAk.framer-v-14iil9y.framer-1tvyizb, .framer-uvJAk.framer-v-woak56.framer-1tvyizb { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; min-height: calc(var(--framer-viewport-height, 100vh) * 1); width: 1200px; }\",\".framer-uvJAk.framer-v-14iil9y .framer-7aitei, .framer-uvJAk.framer-v-1fo1fcx .framer-7aitei, .framer-uvJAk.framer-v-15ourwc .framer-7aitei, .framer-uvJAk.framer-v-woak56 .framer-7aitei, .framer-uvJAk.framer-v-h0rc1w .framer-7aitei, .framer-uvJAk.framer-v-qslbw7 .framer-7aitei { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; order: 1; width: 100%; }\",\".framer-uvJAk.framer-v-14iil9y .framer-1i8p6rp, .framer-uvJAk.framer-v-1fo1fcx .framer-1i8p6rp, .framer-uvJAk.framer-v-15ourwc .framer-1i8p6rp, .framer-uvJAk.framer-v-woak56 .framer-1i8p6rp, .framer-uvJAk.framer-v-h0rc1w .framer-1i8p6rp, .framer-uvJAk.framer-v-qslbw7 .framer-1i8p6rp { cursor: pointer; order: 1; }\",\".framer-uvJAk.framer-v-14iil9y .framer-ajfplp, .framer-uvJAk.framer-v-1fo1fcx .framer-ajfplp, .framer-uvJAk.framer-v-15ourwc .framer-ajfplp, .framer-uvJAk.framer-v-woak56 .framer-ajfplp, .framer-uvJAk.framer-v-h0rc1w .framer-ajfplp, .framer-uvJAk.framer-v-qslbw7 .framer-ajfplp { cursor: pointer; order: 2; }\",\".framer-uvJAk.framer-v-14iil9y .framer-1o77krx, .framer-uvJAk.framer-v-1fo1fcx .framer-1o77krx, .framer-uvJAk.framer-v-15ourwc .framer-1o77krx, .framer-uvJAk.framer-v-woak56 .framer-1o77krx, .framer-uvJAk.framer-v-h0rc1w .framer-1o77krx, .framer-uvJAk.framer-v-qslbw7 .framer-1o77krx { cursor: pointer; order: 3; }\",\".framer-uvJAk.framer-v-14iil9y .framer-yryino, .framer-uvJAk.framer-v-1fo1fcx .framer-yryino, .framer-uvJAk.framer-v-15ourwc .framer-yryino, .framer-uvJAk.framer-v-woak56 .framer-yryino, .framer-uvJAk.framer-v-h0rc1w .framer-yryino, .framer-uvJAk.framer-v-qslbw7 .framer-yryino { order: 0; }\",\".framer-uvJAk.framer-v-14iil9y .framer-70lprg, .framer-uvJAk.framer-v-1fo1fcx .framer-70lprg, .framer-uvJAk.framer-v-15ourwc .framer-70lprg, .framer-uvJAk.framer-v-woak56 .framer-70lprg, .framer-uvJAk.framer-v-h0rc1w .framer-70lprg, .framer-uvJAk.framer-v-qslbw7 .framer-70lprg { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; order: 0; padding: 0px 0px 32px 0px; }\",\".framer-uvJAk.framer-v-14iil9y .framer-k8x2jb, .framer-uvJAk.framer-v-1fo1fcx .framer-k8x2jb, .framer-uvJAk.framer-v-15ourwc .framer-k8x2jb, .framer-uvJAk.framer-v-woak56 .framer-k8x2jb, .framer-uvJAk.framer-v-h0rc1w .framer-k8x2jb, .framer-uvJAk.framer-v-qslbw7 .framer-k8x2jb { left: unset; position: relative; right: unset; top: unset; width: 80px; }\",\".framer-uvJAk.framer-v-14iil9y .framer-1ut7rk4, .framer-uvJAk.framer-v-1fo1fcx .framer-1ut7rk4, .framer-uvJAk.framer-v-15ourwc .framer-1ut7rk4, .framer-uvJAk.framer-v-woak56 .framer-1ut7rk4, .framer-uvJAk.framer-v-h0rc1w .framer-1ut7rk4, .framer-uvJAk.framer-v-qslbw7 .framer-1ut7rk4 { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; order: 3; width: 100%; }\",\".framer-uvJAk.framer-v-14iil9y .framer-whsl9c, .framer-uvJAk.framer-v-14iil9y .framer-17hx41o, .framer-uvJAk.framer-v-14iil9y .framer-1xu6wkx, .framer-uvJAk.framer-v-1fo1fcx .framer-whsl9c, .framer-uvJAk.framer-v-1fo1fcx .framer-17hx41o, .framer-uvJAk.framer-v-1fo1fcx .framer-1xu6wkx, .framer-uvJAk.framer-v-15ourwc .framer-whsl9c, .framer-uvJAk.framer-v-15ourwc .framer-17hx41o, .framer-uvJAk.framer-v-15ourwc .framer-1xu6wkx, .framer-uvJAk.framer-v-woak56 .framer-whsl9c, .framer-uvJAk.framer-v-woak56 .framer-17hx41o, .framer-uvJAk.framer-v-woak56 .framer-1xu6wkx, .framer-uvJAk.framer-v-h0rc1w .framer-whsl9c, .framer-uvJAk.framer-v-h0rc1w .framer-17hx41o, .framer-uvJAk.framer-v-h0rc1w .framer-1xu6wkx, .framer-uvJAk.framer-v-qslbw7 .framer-whsl9c, .framer-uvJAk.framer-v-qslbw7 .framer-17hx41o, .framer-uvJAk.framer-v-qslbw7 .framer-1xu6wkx { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uvJAk.framer-v-14iil9y.framer-1tvyizb, .framer-uvJAk.framer-v-14iil9y .framer-7aitei, .framer-uvJAk.framer-v-14iil9y .framer-70lprg, .framer-uvJAk.framer-v-14iil9y .framer-1ut7rk4 { gap: 0px; } .framer-uvJAk.framer-v-14iil9y.framer-1tvyizb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uvJAk.framer-v-14iil9y.framer-1tvyizb > :first-child { margin-top: 0px; } .framer-uvJAk.framer-v-14iil9y.framer-1tvyizb > :last-child { margin-bottom: 0px; } .framer-uvJAk.framer-v-14iil9y .framer-7aitei > *, .framer-uvJAk.framer-v-14iil9y .framer-7aitei > :first-child, .framer-uvJAk.framer-v-14iil9y .framer-7aitei > :last-child, .framer-uvJAk.framer-v-14iil9y .framer-1ut7rk4 > *, .framer-uvJAk.framer-v-14iil9y .framer-1ut7rk4 > :first-child, .framer-uvJAk.framer-v-14iil9y .framer-1ut7rk4 > :last-child { margin: 0px; } .framer-uvJAk.framer-v-14iil9y .framer-70lprg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uvJAk.framer-v-14iil9y .framer-70lprg > :first-child { margin-left: 0px; } .framer-uvJAk.framer-v-14iil9y .framer-70lprg > :last-child { margin-right: 0px; } }\",\".framer-uvJAk.framer-v-2rrxzg.framer-1tvyizb, .framer-uvJAk.framer-v-39fb3w.framer-1tvyizb { gap: unset; justify-content: space-between; padding: 16px 80px 16px 80px; width: 810px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uvJAk.framer-v-2rrxzg.framer-1tvyizb { gap: 0px; } .framer-uvJAk.framer-v-2rrxzg.framer-1tvyizb > *, .framer-uvJAk.framer-v-2rrxzg.framer-1tvyizb > :first-child, .framer-uvJAk.framer-v-2rrxzg.framer-1tvyizb > :last-child { margin: 0px; } }\",\".framer-uvJAk.framer-v-1fo1fcx.framer-1tvyizb, .framer-uvJAk.framer-v-h0rc1w.framer-1tvyizb { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; min-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 16px 80px 16px 80px; width: 810px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uvJAk.framer-v-1fo1fcx.framer-1tvyizb, .framer-uvJAk.framer-v-1fo1fcx .framer-7aitei, .framer-uvJAk.framer-v-1fo1fcx .framer-70lprg, .framer-uvJAk.framer-v-1fo1fcx .framer-1ut7rk4 { gap: 0px; } .framer-uvJAk.framer-v-1fo1fcx.framer-1tvyizb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uvJAk.framer-v-1fo1fcx.framer-1tvyizb > :first-child { margin-top: 0px; } .framer-uvJAk.framer-v-1fo1fcx.framer-1tvyizb > :last-child { margin-bottom: 0px; } .framer-uvJAk.framer-v-1fo1fcx .framer-7aitei > *, .framer-uvJAk.framer-v-1fo1fcx .framer-7aitei > :first-child, .framer-uvJAk.framer-v-1fo1fcx .framer-7aitei > :last-child, .framer-uvJAk.framer-v-1fo1fcx .framer-1ut7rk4 > *, .framer-uvJAk.framer-v-1fo1fcx .framer-1ut7rk4 > :first-child, .framer-uvJAk.framer-v-1fo1fcx .framer-1ut7rk4 > :last-child { margin: 0px; } .framer-uvJAk.framer-v-1fo1fcx .framer-70lprg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uvJAk.framer-v-1fo1fcx .framer-70lprg > :first-child { margin-left: 0px; } .framer-uvJAk.framer-v-1fo1fcx .framer-70lprg > :last-child { margin-right: 0px; } }\",\".framer-uvJAk.framer-v-rbakc8.framer-1tvyizb, .framer-uvJAk.framer-v-1gp6y5i.framer-1tvyizb { gap: unset; justify-content: space-between; padding: 16px 20px 16px 20px; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uvJAk.framer-v-rbakc8.framer-1tvyizb { gap: 0px; } .framer-uvJAk.framer-v-rbakc8.framer-1tvyizb > *, .framer-uvJAk.framer-v-rbakc8.framer-1tvyizb > :first-child, .framer-uvJAk.framer-v-rbakc8.framer-1tvyizb > :last-child { margin: 0px; } }\",\".framer-uvJAk.framer-v-15ourwc.framer-1tvyizb, .framer-uvJAk.framer-v-qslbw7.framer-1tvyizb { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; min-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 16px 20px 16px 20px; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uvJAk.framer-v-15ourwc.framer-1tvyizb, .framer-uvJAk.framer-v-15ourwc .framer-7aitei, .framer-uvJAk.framer-v-15ourwc .framer-70lprg, .framer-uvJAk.framer-v-15ourwc .framer-1ut7rk4 { gap: 0px; } .framer-uvJAk.framer-v-15ourwc.framer-1tvyizb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uvJAk.framer-v-15ourwc.framer-1tvyizb > :first-child { margin-top: 0px; } .framer-uvJAk.framer-v-15ourwc.framer-1tvyizb > :last-child { margin-bottom: 0px; } .framer-uvJAk.framer-v-15ourwc .framer-7aitei > *, .framer-uvJAk.framer-v-15ourwc .framer-7aitei > :first-child, .framer-uvJAk.framer-v-15ourwc .framer-7aitei > :last-child, .framer-uvJAk.framer-v-15ourwc .framer-1ut7rk4 > *, .framer-uvJAk.framer-v-15ourwc .framer-1ut7rk4 > :first-child, .framer-uvJAk.framer-v-15ourwc .framer-1ut7rk4 > :last-child { margin: 0px; } .framer-uvJAk.framer-v-15ourwc .framer-70lprg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uvJAk.framer-v-15ourwc .framer-70lprg > :first-child { margin-left: 0px; } .framer-uvJAk.framer-v-15ourwc .framer-70lprg > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uvJAk.framer-v-y66afs.framer-1tvyizb { gap: 0px; } .framer-uvJAk.framer-v-y66afs.framer-1tvyizb > *, .framer-uvJAk.framer-v-y66afs.framer-1tvyizb > :first-child, .framer-uvJAk.framer-v-y66afs.framer-1tvyizb > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uvJAk.framer-v-39fb3w.framer-1tvyizb { gap: 0px; } .framer-uvJAk.framer-v-39fb3w.framer-1tvyizb > *, .framer-uvJAk.framer-v-39fb3w.framer-1tvyizb > :first-child, .framer-uvJAk.framer-v-39fb3w.framer-1tvyizb > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uvJAk.framer-v-1gp6y5i.framer-1tvyizb { gap: 0px; } .framer-uvJAk.framer-v-1gp6y5i.framer-1tvyizb > *, .framer-uvJAk.framer-v-1gp6y5i.framer-1tvyizb > :first-child, .framer-uvJAk.framer-v-1gp6y5i.framer-1tvyizb > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uvJAk.framer-v-woak56.framer-1tvyizb, .framer-uvJAk.framer-v-woak56 .framer-7aitei, .framer-uvJAk.framer-v-woak56 .framer-70lprg, .framer-uvJAk.framer-v-woak56 .framer-1ut7rk4 { gap: 0px; } .framer-uvJAk.framer-v-woak56.framer-1tvyizb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uvJAk.framer-v-woak56.framer-1tvyizb > :first-child { margin-top: 0px; } .framer-uvJAk.framer-v-woak56.framer-1tvyizb > :last-child { margin-bottom: 0px; } .framer-uvJAk.framer-v-woak56 .framer-7aitei > *, .framer-uvJAk.framer-v-woak56 .framer-7aitei > :first-child, .framer-uvJAk.framer-v-woak56 .framer-7aitei > :last-child, .framer-uvJAk.framer-v-woak56 .framer-1ut7rk4 > *, .framer-uvJAk.framer-v-woak56 .framer-1ut7rk4 > :first-child, .framer-uvJAk.framer-v-woak56 .framer-1ut7rk4 > :last-child { margin: 0px; } .framer-uvJAk.framer-v-woak56 .framer-70lprg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uvJAk.framer-v-woak56 .framer-70lprg > :first-child { margin-left: 0px; } .framer-uvJAk.framer-v-woak56 .framer-70lprg > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uvJAk.framer-v-h0rc1w.framer-1tvyizb, .framer-uvJAk.framer-v-h0rc1w .framer-7aitei, .framer-uvJAk.framer-v-h0rc1w .framer-70lprg, .framer-uvJAk.framer-v-h0rc1w .framer-1ut7rk4 { gap: 0px; } .framer-uvJAk.framer-v-h0rc1w.framer-1tvyizb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uvJAk.framer-v-h0rc1w.framer-1tvyizb > :first-child { margin-top: 0px; } .framer-uvJAk.framer-v-h0rc1w.framer-1tvyizb > :last-child { margin-bottom: 0px; } .framer-uvJAk.framer-v-h0rc1w .framer-7aitei > *, .framer-uvJAk.framer-v-h0rc1w .framer-7aitei > :first-child, .framer-uvJAk.framer-v-h0rc1w .framer-7aitei > :last-child, .framer-uvJAk.framer-v-h0rc1w .framer-1ut7rk4 > *, .framer-uvJAk.framer-v-h0rc1w .framer-1ut7rk4 > :first-child, .framer-uvJAk.framer-v-h0rc1w .framer-1ut7rk4 > :last-child { margin: 0px; } .framer-uvJAk.framer-v-h0rc1w .framer-70lprg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uvJAk.framer-v-h0rc1w .framer-70lprg > :first-child { margin-left: 0px; } .framer-uvJAk.framer-v-h0rc1w .framer-70lprg > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uvJAk.framer-v-qslbw7.framer-1tvyizb, .framer-uvJAk.framer-v-qslbw7 .framer-7aitei, .framer-uvJAk.framer-v-qslbw7 .framer-70lprg, .framer-uvJAk.framer-v-qslbw7 .framer-1ut7rk4 { gap: 0px; } .framer-uvJAk.framer-v-qslbw7.framer-1tvyizb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uvJAk.framer-v-qslbw7.framer-1tvyizb > :first-child { margin-top: 0px; } .framer-uvJAk.framer-v-qslbw7.framer-1tvyizb > :last-child { margin-bottom: 0px; } .framer-uvJAk.framer-v-qslbw7 .framer-7aitei > *, .framer-uvJAk.framer-v-qslbw7 .framer-7aitei > :first-child, .framer-uvJAk.framer-v-qslbw7 .framer-7aitei > :last-child, .framer-uvJAk.framer-v-qslbw7 .framer-1ut7rk4 > *, .framer-uvJAk.framer-v-qslbw7 .framer-1ut7rk4 > :first-child, .framer-uvJAk.framer-v-qslbw7 .framer-1ut7rk4 > :last-child { margin: 0px; } .framer-uvJAk.framer-v-qslbw7 .framer-70lprg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uvJAk.framer-v-qslbw7 .framer-70lprg > :first-child { margin-left: 0px; } .framer-uvJAk.framer-v-qslbw7 .framer-70lprg > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 112\n * @framerIntrinsicWidth 1387\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NlotvEhLR\":{\"layout\":[\"fixed\",\"auto\"]},\"JmevAr6nS\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"Dj0nI0sHP\":{\"layout\":[\"fixed\",\"auto\"]},\"f5MdTVXgO\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"OkYYJlTtQ\":{\"layout\":[\"fixed\",\"auto\"]},\"kQQv0BnKV\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"OtwOUqb_e\":{\"layout\":[\"fixed\",\"auto\"]},\"mOEJ228XZ\":{\"layout\":[\"fixed\",\"auto\"]},\"hW6mW6tgt\":{\"layout\":[\"fixed\",\"auto\"]},\"f0XU2NyDI\":{\"layout\":[\"fixed\",\"auto\"]},\"PQB_2agoo\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"kSSAq7e0Q\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"bjPl4SyHk\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]}}}\n * @framerVariables {\"oKmvDcggD\":\"home\",\"in9tca2Ho\":\"aboutUs\",\"Mghla32qn\":\"brand\",\"KLCZmKLF1\":\"impactAndInnovations\",\"Z0xW9JTT_\":\"career\",\"kUDoxcJWD\":\"contactUs\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkFhm9OmOY=withCSS(Component,css,\"framer-uvJAk\");export default FramerkFhm9OmOY;FramerkFhm9OmOY.displayName=\"Header\";FramerkFhm9OmOY.defaultProps={height:112,width:1387};addPropertyControls(FramerkFhm9OmOY,{variant:{options:[\"jUPLJHnVR\",\"NlotvEhLR\",\"JmevAr6nS\",\"Dj0nI0sHP\",\"f5MdTVXgO\",\"OkYYJlTtQ\",\"kQQv0BnKV\",\"OtwOUqb_e\",\"mOEJ228XZ\",\"hW6mW6tgt\",\"f0XU2NyDI\",\"PQB_2agoo\",\"kSSAq7e0Q\",\"bjPl4SyHk\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\",\"Variant 9\",\"Variant 10\",\"Variant 11\",\"Variant 12\",\"Variant 13\",\"Variant 14\"],title:\"Variant\",type:ControlType.Enum},oKmvDcggD:{title:\"Home\",type:ControlType.Link},in9tca2Ho:{title:\"About Us\",type:ControlType.Link},Mghla32qn:{title:\"Brand\",type:ControlType.Link},KLCZmKLF1:{title:\"Impact and Innovations\",type:ControlType.Link},Z0xW9JTT_:{title:\"Career\",type:ControlType.Link},kUDoxcJWD:{title:\"Contact Us\",type:ControlType.Link}});addFonts(FramerkFhm9OmOY,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkFhm9OmOY\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1387\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NlotvEhLR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JmevAr6nS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"Dj0nI0sHP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f5MdTVXgO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"OkYYJlTtQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kQQv0BnKV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"OtwOUqb_e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mOEJ228XZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hW6mW6tgt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f0XU2NyDI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PQB_2agoo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"kSSAq7e0Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"bjPl4SyHk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerVariables\":\"{\\\"oKmvDcggD\\\":\\\"home\\\",\\\"in9tca2Ho\\\":\\\"aboutUs\\\",\\\"Mghla32qn\\\":\\\"brand\\\",\\\"KLCZmKLF1\\\":\\\"impactAndInnovations\\\",\\\"Z0xW9JTT_\\\":\\\"career\\\",\\\"kUDoxcJWD\\\":\\\"contactUs\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kFhm9OmOY.map", "// Generated by Framer (92b2253)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"hUJgoRDfG\",\"HRpkQxmvR\",\"EWczIAPlB\"];const serializationHash=\"framer-2ATZm\";const variantClassNames={EWczIAPlB:\"framer-v-d7m9xe\",HRpkQxmvR:\"framer-v-qrxztm\",hUJgoRDfG:\"framer-v-1o0bo2b\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:150,delay:0,mass:6,stiffness:410,type:\"spring\"};const transition2={damping:150,delay:.2,mass:6,stiffness:410,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"hUJgoRDfG\",\"Variant 2\":\"HRpkQxmvR\",\"Variant 3\":\"EWczIAPlB\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"hUJgoRDfG\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hUJgoRDfG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear57ugdx=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"HRpkQxmvR\"),2e3);});const onAppear1tq81ck=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"EWczIAPlB\"),2e3);});const onAppearf382t5=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),2e3);});const onTapv3lo84=activeVariantCallback(async(...args)=>{setVariant(\"hUJgoRDfG\");});const onTap1c51fmy=activeVariantCallback(async(...args)=>{setVariant(\"HRpkQxmvR\");});const onTap1oq7hy1=activeVariantCallback(async(...args)=>{setVariant(\"EWczIAPlB\");});useOnVariantChange(baseVariant,{default:onAppear57ugdx,EWczIAPlB:onAppearf382t5,HRpkQxmvR:onAppear1tq81ck});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({HRpkQxmvR:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/1F8BRQGGoWoaaCbzqqLEehytG4k.png\",srcSet:\"https://framerusercontent.com/images/1F8BRQGGoWoaaCbzqqLEehytG4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/1F8BRQGGoWoaaCbzqqLEehytG4k.png 1024w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1o0bo2b\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"hUJgoRDfG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({EWczIAPlB:{\"data-framer-name\":\"Variant 3\",background:{alt:\"\",fit:\"fill\",pixelHeight:2667,pixelWidth:4e3,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/KlXkrszJcf3pcnpiBEFqwdDiMxw.jpg\",srcSet:\"https://framerusercontent.com/images/KlXkrszJcf3pcnpiBEFqwdDiMxw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KlXkrszJcf3pcnpiBEFqwdDiMxw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KlXkrszJcf3pcnpiBEFqwdDiMxw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KlXkrszJcf3pcnpiBEFqwdDiMxw.jpg 4000w\"}},HRpkQxmvR:{\"data-framer-name\":\"Variant 2\",background:{alt:\"\",fit:\"fill\",pixelHeight:3648,pixelWidth:5472,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/eySk8pJlPyuhtdhXTU7FZFdCs0.jpg\",srcSet:\"https://framerusercontent.com/images/eySk8pJlPyuhtdhXTU7FZFdCs0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/eySk8pJlPyuhtdhXTU7FZFdCs0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eySk8pJlPyuhtdhXTU7FZFdCs0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/eySk8pJlPyuhtdhXTU7FZFdCs0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/eySk8pJlPyuhtdhXTU7FZFdCs0.jpg 5472w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1365uog\",\"data-framer-name\":\"Frame 1618873301\",layoutDependency:layoutDependency,layoutId:\"UePyiCGTe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(31deg, rgb(134, 54, 248) 2.26%, rgb(240, 32, 179) 34.84%, rgb(248, 71, 94) 67.42%, rgb(255, 148, 33) 100%)\"},children:\"Games\"})})}),className:\"framer-1j2dwth\",\"data-framer-name\":\"Games\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"nziUxSc2a\",style:{\"--framer-paragraph-spacing\":\"0px\"},variants:{EWczIAPlB:{\"--extracted-r6o4lv\":\"rgb(238, 238, 238)\"},HRpkQxmvR:{\"--extracted-r6o4lv\":\"rgb(238, 238, 238)\"}},verticalAlignment:\"bottom\",withExternalLayout:true,...addPropertyOverrides({EWczIAPlB:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(238, 238, 238))\"},children:\"Games\"})}),fonts:[\"GF;Outfit-300\"],onTap:onTapv3lo84},HRpkQxmvR:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(238, 238, 238))\"},children:\"Games\"})}),fonts:[\"GF;Outfit-300\"],onTap:onTapv3lo84}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r3uihe\",\"data-framer-name\":\"Line 10\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:4,layoutDependency:layoutDependency,layoutId:\"foNznSiG5\",svg:'<svg width=\"4\" height=\"44\" viewBox=\"-1 -1 4 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.75 1L0.749998 41\" stroke=\"#585958\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(238, 238, 238))\"},children:\"Technology\"})}),className:\"framer-cqcy46\",\"data-framer-name\":\"Technology\",\"data-highlight\":true,fonts:[\"GF;Outfit-300\"],layoutDependency:layoutDependency,layoutId:\"GxSrUvd6y\",onTap:onTap1c51fmy,style:{\"--extracted-r6o4lv\":\"rgb(238, 238, 238)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"bottom\",withExternalLayout:true,...addPropertyOverrides({HRpkQxmvR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(31deg, rgb(134, 54, 248) 2.26%, rgb(240, 32, 179) 34.84%, rgb(248, 71, 94) 67.42%, rgb(255, 148, 33) 100%)\"},children:\"Technology\"})})}),fonts:[\"GF;Outfit-600\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6ik3co\",\"data-framer-name\":\"Line 11\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:4,layoutDependency:layoutDependency,layoutId:\"uY_hqNxeR\",svg:'<svg width=\"4\" height=\"44\" viewBox=\"-1 -1 4 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.25 1L1.25 41\" stroke=\"#585958\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(238, 238, 238))\"},children:\"Studio\"})}),className:\"framer-1o6cidx\",\"data-framer-name\":\"Studio\",\"data-highlight\":true,fonts:[\"GF;Outfit-300\"],layoutDependency:layoutDependency,layoutId:\"VjZ04iU2B\",onTap:onTap1oq7hy1,style:{\"--extracted-r6o4lv\":\"rgb(238, 238, 238)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"bottom\",withExternalLayout:true,...addPropertyOverrides({EWczIAPlB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(31deg, rgb(134, 54, 248) 2.26%, rgb(240, 32, 179) 34.84%, rgb(248, 71, 94) 67.42%, rgb(255, 148, 33) 100%)\"},children:\"Studio\"})})}),fonts:[\"GF;Outfit-600\"]}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2ATZm.framer-1rv1tjz, .framer-2ATZm .framer-1rv1tjz { display: block; }\",\".framer-2ATZm.framer-1o0bo2b { height: 610px; position: relative; width: 620px; }\",\".framer-2ATZm .framer-1365uog { align-content: center; align-items: center; bottom: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 0px; overflow: visible; padding: 16px 32px 16px 32px; position: absolute; width: 100%; }\",\".framer-2ATZm .framer-1j2dwth { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2ATZm .framer-1r3uihe, .framer-2ATZm .framer-6ik3co { flex: none; height: 44px; position: relative; width: 4px; }\",\".framer-2ATZm .framer-cqcy46, .framer-2ATZm .framer-1o6cidx { cursor: pointer; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2ATZm.framer-v-qrxztm .framer-1j2dwth, .framer-2ATZm.framer-v-d7m9xe .framer-1j2dwth { cursor: pointer; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 610\n * @framerIntrinsicWidth 620\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"HRpkQxmvR\":{\"layout\":[\"fixed\",\"fixed\"]},\"EWczIAPlB\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerscvfQSE67=withCSS(Component,css,\"framer-2ATZm\");export default FramerscvfQSE67;FramerscvfQSE67.displayName=\"About us modal\";FramerscvfQSE67.defaultProps={height:610,width:620};addPropertyControls(FramerscvfQSE67,{variant:{options:[\"hUJgoRDfG\",\"HRpkQxmvR\",\"EWczIAPlB\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerscvfQSE67,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4S-EiAou6Y.woff2\",weight:\"300\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerscvfQSE67\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HRpkQxmvR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EWczIAPlB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"610\",\"framerIntrinsicWidth\":\"620\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./scvfQSE67.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-TZPIA .framer-styles-preset-108m9k1:not(.rich-text-wrapper), .framer-TZPIA .framer-styles-preset-108m9k1.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #591be5; --framer-link-hover-text-decoration: none; --framer-link-text-color: #d9d9d9; --framer-link-text-decoration: none; }\"];export const className=\"framer-TZPIA\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import MobileViewText from\"https://framerusercontent.com/modules/iH9xn0JjA95gtAvlyJ94/ERVl7dwTjlEsib5vWKuH/w8WDIr3N8.js\";import BaseForm from\"https://framerusercontent.com/modules/jKosDr5OORwnt4ikb4Vz/67eMOm9YSvp2Jb2lUpQw/BaseForm.js\";import HeroText from\"#framer/local/canvasComponent/B0MZIcvi_/B0MZIcvi_.js\";import ImpactSection from\"#framer/local/canvasComponent/egY0E7yn0/egY0E7yn0.js\";import HeaderCopy from\"#framer/local/canvasComponent/JRZk1Lea_/JRZk1Lea_.js\";import Header from\"#framer/local/canvasComponent/kFhm9OmOY/kFhm9OmOY.js\";import AboutUsModal from\"#framer/local/canvasComponent/scvfQSE67/scvfQSE67.js\";import*as sharedStyle from\"#framer/local/css/MuFCnMOOk/MuFCnMOOk.js\";import metadataProvider from\"#framer/local/webPageMetadata/Mlj4XvgF_/Mlj4XvgF_.js\";const TickerFonts=getFonts(Ticker);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const AboutUsModalFonts=getFonts(AboutUsModal);const ImpactSectionFonts=getFonts(ImpactSection);const MotionAWithFX=withFX(motion.a);const BaseFormFonts=getFonts(BaseForm);const HeroTextFonts=getFonts(HeroText);const MobileViewTextFonts=getFonts(MobileViewText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const HeaderCopyFonts=getFonts(HeaderCopy);const ContainerWithFX=withFX(Container);const HeaderFonts=getFonts(Header);const breakpoints={B1Wfm6tex:\"(max-width: 809px)\",l06iQOu9V:\"(min-width: 1200px) and (max-width: 1439px)\",PbvFXs3re:\"(min-width: 1440px)\",V70zw_NVV:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-JhwLG\";const variantClassNames={B1Wfm6tex:\"framer-v-o72yxf\",l06iQOu9V:\"framer-v-1ot76oj\",PbvFXs3re:\"framer-v-1y0ct01\",V70zw_NVV:\"framer-v-1y90e5k\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition1={damping:150,delay:.2,mass:6,stiffness:410,type:\"spring\"};const transition2={damping:150,delay:.4,mass:6,stiffness:410,type:\"spring\"};const transition3={damping:150,delay:.6,mass:6,stiffness:410,type:\"spring\"};const transition4={damping:150,delay:.8,mass:6,stiffness:410,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const transition5={damping:150,delay:.5,mass:6,stiffness:410,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:25};const transition6={damping:150,delay:.3,mass:6,stiffness:410,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const transition7={damping:150,delay:.9,mass:6,stiffness:410,type:\"spring\"};const transition8={damping:150,delay:1.2,mass:6,stiffness:410,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition9={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:150};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{var _document_querySelector,_ref;return(_ref=(_document_querySelector=document.querySelector(\"#template-overlay\"))!==null&&_document_querySelector!==void 0?_document_querySelector:document.querySelector(\"#overlay\"))!==null&&_ref!==void 0?_ref: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 animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation12={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition10={damping:150,delay:1,mass:6,stiffness:410,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const animation16={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const metadata=metadataProvider();const humanReadableVariantMap={\"Small Desktop\":\"l06iQOu9V\",Desktop:\"PbvFXs3re\",Phone:\"B1Wfm6tex\",Tablet:\"V70zw_NVV\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"PbvFXs3re\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-JhwLG`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-JhwLG`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onSubmit3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"BHcsRHnkN\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"wiMJNEe8K\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"Zx0TrAYjb\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"d4UnteTXu\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"rU6qtVFNB\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"zLXqhX3cx\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"GoHL1IWY4\");const ref8=React.useRef(null);const elementId7=useRouteElementId(\"QY0Yp_t2G\");const ref9=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"B1Wfm6tex\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"B1Wfm6tex\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"V70zw_NVV\",\"B1Wfm6tex\"].includes(baseVariant))return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"PbvFXs3re\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1y0ct01\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(0),src:\"https://framerusercontent.com/images/rLojPZbeSNYOlou5lGuVccWRSA.png\"},className:\"framer-1in2p20\",\"data-framer-name\":\"Rectangle 1\",name:\"Rectangle 1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-to399w\",\"data-framer-name\":\"Partners\",id:elementId,name:\"Partners\",ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xpw9t1\",\"data-framer-name\":\"Icons and Text\",name:\"Icons and Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Esteemed Partner\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Esteemed \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Partner\"})]}),className:\"framer-14g1wnp\",\"data-framer-name\":\"Our Esteemed Partner\",fonts:[\"GF;Outfit-600\"],name:\"Our Esteemed Partner\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f6vln0-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:34,height:\"100%\",hoverFactor:1,id:\"fLu5vliNJ\",layoutId:\"fLu5vliNJ\",padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/bYEv063zlJlEc8n8Ni5huICTD5I.png\"},className:\"framer-1bw3bbx\",\"data-framer-name\":\"rooter2@2x\",name:\"rooter2@2x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/wlKeQF8p1Y5OFW1tXwBy2NCYg.png\"},className:\"framer-j2q0f2\",\"data-framer-name\":\"infinix2@2x\",name:\"infinix2@2x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/JcKqLUKARdf6s8GfDSEoP12H1M.png\"},className:\"framer-1chsxz1\",\"data-framer-name\":\"Magicrete_logo@2x\",name:\"Magicrete_logo@2x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/dLQPv44q9yDLbDf030hHMNnTw.png\"},className:\"framer-1vey0zh\",\"data-framer-name\":\"Jio_Games_logo@2x\",name:\"Jio_Games_logo@2x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/KqR00AMPI25XJIDctiDvZOeLLbA.png\"},className:\"framer-q3gkrx\",\"data-framer-name\":\"Evify_Logo@2x\",name:\"Evify_Logo@2x\"})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9rt9nd\",\"data-framer-name\":\"About Us\",id:elementId1,name:\"About Us\",ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a2d2yj\",\"data-framer-name\":\"About Us Data\",name:\"About Us Data\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sn8cmj\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(134, 54, 248) 2%, rgb(240, 32, 179) 35%, rgb(248, 71, 94) 67%, rgb(255, 148, 33) 100%)\"},children:\"ABOUT US\"})})}),className:\"framer-4sb2uh\",\"data-framer-name\":\"ABOUT US\",fonts:[\"GF;Outfit-600\"],name:\"ABOUT US\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tyctq1\",\"data-framer-name\":\"Heading and Sub Text\",name:\"Heading and Sub Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(10, 10, 10)\"},children:\"Glazer labs: \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(10, 10, 10)\"},children:\"Pixels, Passion & Play\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(10, 10, 10)\"},children:\"Glazer labs: \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(10, 10, 10)\"},children:\"Pixels, Passion & Play\"})]}),className:\"framer-1a87s5t\",\"data-framer-name\":\"Glazerverse: Pixels, Passion & Play\",fonts:[\"GF;Outfit-600\"],name:\"Glazerverse: Pixels, Passion & Play\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(88, 89, 88)\"},children:\"We're not just in the business of innovation - we're crafting the future of entertainment. Through Glazer Games, Glazer Tech, and Glazer Studio, we're breaking the mold and setting new standards in gaming, technology, and production\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(88, 89, 88)\"},children:\"We're not just in the business of innovation - we're crafting the future of entertainment. Through Glazer Games, Glazer Tech, and Glazer Studio, we're breaking the mold and setting new standards in gaming, technology, and production\"})}),className:\"framer-ew8ye3\",\"data-framer-name\":\"Glazer Lab, with Glazer Games, Glazer Tech, and Glazer Studio, brings innovation to gaming, technology, and production. We push creative boundaries to shape the future of entertainment.\",fonts:[\"GF;Outfit-300\"],name:\"Glazer Lab, with Glazer Games, Glazer Tech, and Glazer Studio, brings innovation to gaming, technology, and production. We push creative boundaries to shape the future of entertainment.\",verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16lntka\",\"data-framer-name\":\"Buttons\",name:\"Buttons\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":d4UnteTXu\",webPageId:\"Mlj4XvgF_\"},nodeId:\"mSWqHYb4i\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-agbeqf framer-jr994g\",\"data-framer-name\":\"More about us button\",name:\"More about us button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Explore More\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Explore More\"})}),className:\"framer-1esn0gb\",\"data-framer-name\":\"More about us\",fonts:[\"GF;Outfit-600\"],name:\"More about us\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":zLXqhX3cx\",webPageId:\"Mlj4XvgF_\"},nodeId:\"ulb8_Cxz8\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1hfuron framer-jr994g\",\"data-border\":true,\"data-framer-name\":\"Request a callback button\",name:\"Request a callback button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(10, 10, 10)\"},children:\"Request a callback\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(10, 10, 10)\"},children:\"Request a callback\"})}),className:\"framer-cu6kn\",\"data-framer-name\":\"Request a callback\",fonts:[\"GF;Outfit-600\"],name:\"Request a callback\",verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ewsb8q\",\"data-framer-name\":\"Image Carousal\",name:\"Image Carousal\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{width:\"calc(100vw - 40px)\",y:1969.4},V70zw_NVV:{width:\"calc(100vw - 160px)\",y:2115.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:610,width:\"calc((100vw - 200px) / 2)\",y:1316.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n701fb-container\",children:/*#__PURE__*/_jsx(AboutUsModal,{height:\"100%\",id:\"g9GOxm6ps\",layoutId:\"g9GOxm6ps\",style:{height:\"100%\",width:\"100%\"},variant:\"hUJgoRDfG\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k04796\",\"data-framer-name\":\"Brands\",id:elementId2,name:\"Brands\",ref:ref4,children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4084cfb6-aaca-461a-b463-be7c83271fcd, rgb(26, 26, 26))\"},children:\"Wings of Glazer Labs\"})}),className:\"framer-hgajhw\",fonts:[\"GF;Lexend-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nj95qh\",\"data-framer-name\":\"cards\",name:\"cards\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rd335t\",\"data-border\":true,\"data-framer-name\":\"card1\",name:\"card1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p3df7c\",\"data-framer-name\":\"Frame 2127\",name:\"Frame 2127\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2756.2),sizes:\"calc(100vw - 96px)\",src:\"https://framerusercontent.com/images/yFwYEpDt3boN3lgFdliNRVFgh3c.png\",srcSet:\"https://framerusercontent.com/images/yFwYEpDt3boN3lgFdliNRVFgh3c.png?scale-down-to=512 512w,https://framerusercontent.com/images/yFwYEpDt3boN3lgFdliNRVFgh3c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yFwYEpDt3boN3lgFdliNRVFgh3c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yFwYEpDt3boN3lgFdliNRVFgh3c.png 2880w\"}},V70zw_NVV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2946),sizes:\"calc(100vw - 176px)\",src:\"https://framerusercontent.com/images/yFwYEpDt3boN3lgFdliNRVFgh3c.png\",srcSet:\"https://framerusercontent.com/images/yFwYEpDt3boN3lgFdliNRVFgh3c.png?scale-down-to=512 512w,https://framerusercontent.com/images/yFwYEpDt3boN3lgFdliNRVFgh3c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yFwYEpDt3boN3lgFdliNRVFgh3c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yFwYEpDt3boN3lgFdliNRVFgh3c.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2288),sizes:\"calc(max((100vw - 168px) / 3, 1px) - 56px)\",src:\"https://framerusercontent.com/images/yFwYEpDt3boN3lgFdliNRVFgh3c.png\",srcSet:\"https://framerusercontent.com/images/yFwYEpDt3boN3lgFdliNRVFgh3c.png?scale-down-to=512 512w,https://framerusercontent.com/images/yFwYEpDt3boN3lgFdliNRVFgh3c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yFwYEpDt3boN3lgFdliNRVFgh3c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yFwYEpDt3boN3lgFdliNRVFgh3c.png 2880w\"},className:\"framer-1i7r22e\",\"data-framer-name\":\"Rectangle 14\",name:\"Rectangle 14\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(2970.2),positionX:\"center\",positionY:\"center\",sizes:\"141.9172px\",src:\"https://framerusercontent.com/images/P83fvXDolIaFVjwJgxA1WjJjyo.png\",srcSet:\"https://framerusercontent.com/images/P83fvXDolIaFVjwJgxA1WjJjyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/P83fvXDolIaFVjwJgxA1WjJjyo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P83fvXDolIaFVjwJgxA1WjJjyo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/P83fvXDolIaFVjwJgxA1WjJjyo.png 3206w\"}},V70zw_NVV:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(3300),positionX:\"center\",positionY:\"center\",sizes:\"141.9172px\",src:\"https://framerusercontent.com/images/P83fvXDolIaFVjwJgxA1WjJjyo.png\",srcSet:\"https://framerusercontent.com/images/P83fvXDolIaFVjwJgxA1WjJjyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/P83fvXDolIaFVjwJgxA1WjJjyo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P83fvXDolIaFVjwJgxA1WjJjyo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/P83fvXDolIaFVjwJgxA1WjJjyo.png 3206w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(2502),positionX:\"center\",positionY:\"center\",sizes:\"141.9172px\",src:\"https://framerusercontent.com/images/P83fvXDolIaFVjwJgxA1WjJjyo.png\",srcSet:\"https://framerusercontent.com/images/P83fvXDolIaFVjwJgxA1WjJjyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/P83fvXDolIaFVjwJgxA1WjJjyo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P83fvXDolIaFVjwJgxA1WjJjyo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/P83fvXDolIaFVjwJgxA1WjJjyo.png 3206w\"},className:\"framer-1rmj5d2\",\"data-framer-name\":\"GG TEC LOGO BLACK_ 1\",name:\"GG TEC LOGO BLACK_ 1\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uiixje\",\"data-framer-name\":\"Frame 2126\",name:\"Frame 2126\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(88, 89, 88)\"},children:\"With a forward-thinking ideology and advanced technology at hand, businesses can effectively address challenges and spearhead transformative change for a better world.\"})}),className:\"framer-1vswhlj\",\"data-framer-name\":\"Working at Facebook has taught me a lot about how to understand users, solve problems and build great products.\",fonts:[\"GF;Outfit-300\"],name:\"Working at Facebook has taught me a lot about how to understand users, solve problems and build great products.\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g2nj1i\",\"data-framer-name\":\"Frame 1618873665\",name:\"Frame 1618873665\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n6gf2x\",\"data-framer-name\":\"Frame 1618873663\",name:\"Frame 1618873663\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-mozzqm\",\"data-framer-name\":\"mdi:tick\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,name:\"mdi:tick\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.5 5.16656L6.50004 13.1666L2.83337 9.4999L3.77337 8.5599L6.50004 11.2799L13.56 4.22656L14.5 5.16656Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:\"Technology Partner\"})}),className:\"framer-ixfahg\",\"data-framer-name\":\"App Development\",fonts:[\"GF;Outfit-500\"],name:\"App Development\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17styg4\",\"data-framer-name\":\"Frame 1618873663\",name:\"Frame 1618873663\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-obyzna\",\"data-framer-name\":\"mdi:tick\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,name:\"mdi:tick\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.5 5.16656L6.50004 13.1666L2.83337 9.4999L3.77337 8.5599L6.50004 11.2799L13.56 4.22656L14.5 5.16656Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:\"Business Partner\"})}),className:\"framer-1naxxbk\",\"data-framer-name\":\"App Development\",fonts:[\"GF;Outfit-500\"],name:\"App Development\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Link,{href:\"https://www.glazer.technology/\",nodeId:\"wykuwUOLC\",openInNewTab:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-qrwn10 framer-jr994g\",\"data-framer-name\":\"Frame 48\",name:\"Frame 48\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTUwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(124, 9, 231)\"},children:\"Visit site\"})}),className:\"framer-1n8xm5b\",\"data-framer-name\":\"Visit site\",fonts:[\"GF;Lexend-500\"],name:\"Visit site\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14vv1j7\",\"data-framer-name\":\"vuesax/linear/arrow-up\",name:\"vuesax/linear/arrow-up\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12rccmy\",\"data-framer-name\":\"vuesax/linear/arrow-up\",layout:\"position\",name:\"vuesax/linear/arrow-up\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 21\"><path d=\"M 12.025 15.414 L 17.083 10.356 L 12.025 5.298\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(124, 9, 231)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 2.917 10.356 L 16.942 10.356\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(124, 9, 231)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10068506002,withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1potmah\",\"data-border\":true,\"data-framer-name\":\"card1\",name:\"card1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u5tn4a\",\"data-framer-name\":\"Frame 2127\",name:\"Frame 2127\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3304.2),pixelHeight:1554,pixelWidth:2880,sizes:\"calc(100vw - 96px)\",src:\"https://framerusercontent.com/images/jLoAvCyexjxajNFt0BJg7qgoLQ.png\",srcSet:\"https://framerusercontent.com/images/jLoAvCyexjxajNFt0BJg7qgoLQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/jLoAvCyexjxajNFt0BJg7qgoLQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jLoAvCyexjxajNFt0BJg7qgoLQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jLoAvCyexjxajNFt0BJg7qgoLQ.png 2880w\"}},V70zw_NVV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3634),pixelHeight:1554,pixelWidth:2880,sizes:\"calc(100vw - 176px)\",src:\"https://framerusercontent.com/images/jLoAvCyexjxajNFt0BJg7qgoLQ.png\",srcSet:\"https://framerusercontent.com/images/jLoAvCyexjxajNFt0BJg7qgoLQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/jLoAvCyexjxajNFt0BJg7qgoLQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jLoAvCyexjxajNFt0BJg7qgoLQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jLoAvCyexjxajNFt0BJg7qgoLQ.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2288),pixelHeight:1554,pixelWidth:2880,sizes:\"calc(max((100vw - 168px) / 3, 1px) - 56px)\",src:\"https://framerusercontent.com/images/jLoAvCyexjxajNFt0BJg7qgoLQ.png\",srcSet:\"https://framerusercontent.com/images/jLoAvCyexjxajNFt0BJg7qgoLQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/jLoAvCyexjxajNFt0BJg7qgoLQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jLoAvCyexjxajNFt0BJg7qgoLQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jLoAvCyexjxajNFt0BJg7qgoLQ.png 2880w\"},className:\"framer-1nr4s4a\",\"data-framer-name\":\"Rectangle 14\",name:\"Rectangle 14\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(3518.2),positionX:\"center\",positionY:\"center\",sizes:\"80px\",src:\"https://framerusercontent.com/images/loBKnPIsfFDel6eLAsXFVfgVXug.png\",srcSet:\"https://framerusercontent.com/images/loBKnPIsfFDel6eLAsXFVfgVXug.png?scale-down-to=512 512w,https://framerusercontent.com/images/loBKnPIsfFDel6eLAsXFVfgVXug.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/loBKnPIsfFDel6eLAsXFVfgVXug.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/loBKnPIsfFDel6eLAsXFVfgVXug.png 3608w\"}},V70zw_NVV:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(3988),positionX:\"center\",positionY:\"center\",sizes:\"80px\",src:\"https://framerusercontent.com/images/loBKnPIsfFDel6eLAsXFVfgVXug.png\",srcSet:\"https://framerusercontent.com/images/loBKnPIsfFDel6eLAsXFVfgVXug.png?scale-down-to=512 512w,https://framerusercontent.com/images/loBKnPIsfFDel6eLAsXFVfgVXug.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/loBKnPIsfFDel6eLAsXFVfgVXug.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/loBKnPIsfFDel6eLAsXFVfgVXug.png 3608w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(2502),positionX:\"center\",positionY:\"center\",sizes:\"80px\",src:\"https://framerusercontent.com/images/loBKnPIsfFDel6eLAsXFVfgVXug.png\",srcSet:\"https://framerusercontent.com/images/loBKnPIsfFDel6eLAsXFVfgVXug.png?scale-down-to=512 512w,https://framerusercontent.com/images/loBKnPIsfFDel6eLAsXFVfgVXug.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/loBKnPIsfFDel6eLAsXFVfgVXug.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/loBKnPIsfFDel6eLAsXFVfgVXug.png 3608w\"},className:\"framer-oycuqm\",\"data-framer-name\":\"gg logo png\",name:\"gg logo png\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fgrj5v\",\"data-framer-name\":\"Frame 2126\",name:\"Frame 2126\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(88, 89, 88)\"},children:\"Fueled by a passion for gaming, it redefines, hosting exciting tournaments and fostering an inclusive gaming community with unwavering dedication to excellence.\"})}),className:\"framer-d0j1ri\",\"data-framer-name\":\"Working at Facebook has taught me a lot about how to understand users, solve problems and build great products.\",fonts:[\"GF;Outfit-300\"],name:\"Working at Facebook has taught me a lot about how to understand users, solve problems and build great products.\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p9re4e\",\"data-framer-name\":\"Frame 1618873665\",name:\"Frame 1618873665\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ks5hga\",\"data-framer-name\":\"Frame 1618873663\",name:\"Frame 1618873663\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1lmeafk\",\"data-framer-name\":\"mdi:tick\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,name:\"mdi:tick\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.5 5.16656L6.50004 13.1666L2.83337 9.4999L3.77337 8.5599L6.50004 11.2799L13.56 4.22656L14.5 5.16656Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:\"Esports Tournaments\"})}),className:\"framer-6c8pqj\",\"data-framer-name\":\"App Development\",fonts:[\"GF;Outfit-500\"],name:\"App Development\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-70fxhk\",\"data-framer-name\":\"Frame 1618873663\",name:\"Frame 1618873663\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-41i5xs\",\"data-framer-name\":\"mdi:tick\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,name:\"mdi:tick\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.5 5.16656L6.50004 13.1666L2.83337 9.4999L3.77337 8.5599L6.50004 11.2799L13.56 4.22656L14.5 5.16656Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:\"Brand Integrations\"})}),className:\"framer-178ymme\",\"data-framer-name\":\"App Development\",fonts:[\"GF;Outfit-500\"],name:\"App Development\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Link,{href:\"https://www.glazer.games/\",nodeId:\"lAKDERdLx\",openInNewTab:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1rh4eu framer-jr994g\",\"data-framer-name\":\"Frame 48\",name:\"Frame 48\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTUwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(124, 9, 231)\"},children:\"Visit site\"})}),className:\"framer-r1sk5y\",\"data-framer-name\":\"Visit site\",fonts:[\"GF;Lexend-500\"],name:\"Visit site\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4moxix\",\"data-framer-name\":\"vuesax/linear/arrow-up\",name:\"vuesax/linear/arrow-up\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6lorh9\",\"data-framer-name\":\"vuesax/linear/arrow-up\",layout:\"position\",name:\"vuesax/linear/arrow-up\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 21\"><path d=\"M 12.025 15.414 L 17.083 10.356 L 12.025 5.298\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(124, 9, 231)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 2.917 10.356 L 16.942 10.356\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(124, 9, 231)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10068506002,withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n5qjfi\",\"data-border\":true,\"data-framer-name\":\"card1\",name:\"card1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18e3oam\",\"data-framer-name\":\"Frame 2127\",name:\"Frame 2127\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3852.2),pixelHeight:1558,pixelWidth:2880,sizes:\"calc(100vw - 96px)\",src:\"https://framerusercontent.com/images/XOQyyZyyrsi3vM6F24m2ray5zM.png\",srcSet:\"https://framerusercontent.com/images/XOQyyZyyrsi3vM6F24m2ray5zM.png?scale-down-to=512 512w,https://framerusercontent.com/images/XOQyyZyyrsi3vM6F24m2ray5zM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XOQyyZyyrsi3vM6F24m2ray5zM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XOQyyZyyrsi3vM6F24m2ray5zM.png 2880w\"}},V70zw_NVV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4322),pixelHeight:1558,pixelWidth:2880,sizes:\"calc(100vw - 176px)\",src:\"https://framerusercontent.com/images/XOQyyZyyrsi3vM6F24m2ray5zM.png\",srcSet:\"https://framerusercontent.com/images/XOQyyZyyrsi3vM6F24m2ray5zM.png?scale-down-to=512 512w,https://framerusercontent.com/images/XOQyyZyyrsi3vM6F24m2ray5zM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XOQyyZyyrsi3vM6F24m2ray5zM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XOQyyZyyrsi3vM6F24m2ray5zM.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2288),pixelHeight:1558,pixelWidth:2880,sizes:\"calc(max((100vw - 168px) / 3, 1px) - 56px)\",src:\"https://framerusercontent.com/images/XOQyyZyyrsi3vM6F24m2ray5zM.png\",srcSet:\"https://framerusercontent.com/images/XOQyyZyyrsi3vM6F24m2ray5zM.png?scale-down-to=512 512w,https://framerusercontent.com/images/XOQyyZyyrsi3vM6F24m2ray5zM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XOQyyZyyrsi3vM6F24m2ray5zM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XOQyyZyyrsi3vM6F24m2ray5zM.png 2880w\"},className:\"framer-oqmhlw\",\"data-framer-name\":\"Rectangle 14\",name:\"Rectangle 14\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4066.2),positionX:\"center\",positionY:\"center\",sizes:\"71px\",src:\"https://framerusercontent.com/images/BvySvm7yigqTPfYYB23b0yslYI.png\",srcSet:\"https://framerusercontent.com/images/BvySvm7yigqTPfYYB23b0yslYI.png?scale-down-to=512 512w,https://framerusercontent.com/images/BvySvm7yigqTPfYYB23b0yslYI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BvySvm7yigqTPfYYB23b0yslYI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BvySvm7yigqTPfYYB23b0yslYI.png 3176w\"}},V70zw_NVV:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4676),positionX:\"center\",positionY:\"center\",sizes:\"71px\",src:\"https://framerusercontent.com/images/BvySvm7yigqTPfYYB23b0yslYI.png\",srcSet:\"https://framerusercontent.com/images/BvySvm7yigqTPfYYB23b0yslYI.png?scale-down-to=512 512w,https://framerusercontent.com/images/BvySvm7yigqTPfYYB23b0yslYI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BvySvm7yigqTPfYYB23b0yslYI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BvySvm7yigqTPfYYB23b0yslYI.png 3176w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(2502),positionX:\"center\",positionY:\"center\",sizes:\"71px\",src:\"https://framerusercontent.com/images/BvySvm7yigqTPfYYB23b0yslYI.png\",srcSet:\"https://framerusercontent.com/images/BvySvm7yigqTPfYYB23b0yslYI.png?scale-down-to=512 512w,https://framerusercontent.com/images/BvySvm7yigqTPfYYB23b0yslYI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BvySvm7yigqTPfYYB23b0yslYI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BvySvm7yigqTPfYYB23b0yslYI.png 3176w\"},className:\"framer-gxyhvg\",\"data-framer-name\":\"glazer studio logo-Photoroom\",name:\"glazer studio logo-Photoroom\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-165uyrf\",\"data-framer-name\":\"Frame 2126\",name:\"Frame 2126\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(88, 89, 88)\"},children:\"We're revolutionising entertainment with our top-tier creative team, pioneering immersive experiences and shaping the future of storytelling.\"})}),className:\"framer-1xk59c0\",\"data-framer-name\":\"Working at Facebook has taught me a lot about how to understand users, solve problems and build great products.\",fonts:[\"GF;Outfit-300\"],name:\"Working at Facebook has taught me a lot about how to understand users, solve problems and build great products.\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hc86q0\",\"data-framer-name\":\"Frame 1618873665\",name:\"Frame 1618873665\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qpdydw\",\"data-framer-name\":\"Frame 1618873663\",name:\"Frame 1618873663\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1pih380\",\"data-framer-name\":\"mdi:tick\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,name:\"mdi:tick\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.5 5.16656L6.50004 13.1666L2.83337 9.4999L3.77337 8.5599L6.50004 11.2799L13.56 4.22656L14.5 5.16656Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:\"Entertainment\"})}),className:\"framer-1fbanzn\",\"data-framer-name\":\"App Development\",fonts:[\"GF;Outfit-500\"],name:\"App Development\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q7kymv\",\"data-framer-name\":\"Frame 1618873663\",name:\"Frame 1618873663\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19vl1a\",\"data-framer-name\":\"mdi:tick\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,name:\"mdi:tick\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.5 5.16656L6.50004 13.1666L2.83337 9.4999L3.77337 8.5599L6.50004 11.2799L13.56 4.22656L14.5 5.16656Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:\"Brand Building\"})}),className:\"framer-15uix4y\",\"data-framer-name\":\"App Development\",fonts:[\"GF;Outfit-500\"],name:\"App Development\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Link,{href:\"https://glazer.studio/\",nodeId:\"NdZeeluaV\",openInNewTab:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-zbqw36 framer-jr994g\",\"data-framer-name\":\"Frame 48\",name:\"Frame 48\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTUwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(124, 9, 231)\"},children:\"Visit site\"})}),className:\"framer-1etnu1\",\"data-framer-name\":\"Visit site\",fonts:[\"GF;Lexend-500\"],name:\"Visit site\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bad3qo\",\"data-framer-name\":\"vuesax/linear/arrow-up\",name:\"vuesax/linear/arrow-up\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-d9sbp8\",\"data-framer-name\":\"vuesax/linear/arrow-up\",layout:\"position\",name:\"vuesax/linear/arrow-up\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 21\"><path d=\"M 12.025 15.414 L 17.083 10.356 L 12.025 5.298\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(124, 9, 231)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 2.917 10.356 L 16.942 10.356\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(124, 9, 231)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10068506002,withExternalLayout:true})})]})})]})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{y:4396.2},V70zw_NVV:{y:5038}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1349,width:\"100vw\",y:2864,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ydq7gy-container\",id:elementId3,ref:ref5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{variant:\"IM5PICq1s\"},V70zw_NVV:{variant:\"Stm5VcmFI\"}},children:/*#__PURE__*/_jsx(ImpactSection,{height:\"100%\",id:\"d4UnteTXu\",IdXn8nSgg:ref5,layoutId:\"d4UnteTXu\",style:{width:\"100%\"},variant:\"mFgx9_YJz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-552w7o\",\"data-framer-name\":\"Announcement\",id:elementId4,name:\"Announcement\",ref:ref6,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Announcements\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Announcements\"})}),className:\"framer-dxel3j\",\"data-framer-name\":\"Announcements\",fonts:[\"GF;Outfit-600\"],name:\"Announcements\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h78qr9\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-188c033\",\"data-framer-name\":\"Line\",name:\"Line\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vbcpaw\",\"data-framer-name\":\"Line 7\",fill:\"rgb(238, 238, 238)\",intrinsicHeight:3,intrinsicWidth:1242,name:\"Line 7\",svg:'<svg width=\"1242\" height=\"3\" viewBox=\"-1 -1 1242 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"1240\" y2=\"0.5\" stroke=\"#EEEEEE\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13omy2\",\"data-framer-name\":\"Announcement 1\",name:\"Announcement 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12jrcll\",\"data-framer-name\":\"Frame 1618873276\",name:\"Frame 1618873276\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTIwMA==\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-weight\":\"200\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ongoing\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTIwMA==\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"200\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ongoing\"})}),className:\"framer-us9qhh\",\"data-framer-name\":\"Coming soon\",fonts:[\"GF;Outfit-200\"],name:\"Coming soon\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1drfekk\",\"data-framer-name\":\"Frame 1618873266\",name:\"Frame 1618873266\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Battle For Revolution Season 3\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Battle For Revolution Season 3\"})}),className:\"framer-k496vw\",\"data-framer-name\":\"Glazer Labs Announces Expansion into AI-powered Gaming Experiences\",fonts:[\"GF;Outfit-300\"],name:\"Glazer Labs Announces Expansion into AI-powered Gaming Experiences\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xr2afc\",\"data-framer-name\":\"Frame 1618873269\",name:\"Frame 1618873269\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/reel/C7tmibpRYxu/?utm_source=ig_web_copy_link&igsh=MzRlODBiNWFlZA==\",nodeId:\"hfZy08lil\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14mbk20 framer-jr994g\",\"data-border\":true,\"data-framer-name\":\"Frame 1618873267\",name:\"Frame 1618873267\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(252, 103, 54)\"},children:\"View More\"})}),className:\"framer-z5srsu\",\"data-framer-name\":\"Read more\",fonts:[\"GF;Outfit-600\"],name:\"Read more\",verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7l5o2n\",\"data-framer-name\":\"Line\",name:\"Line\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-stswe\",\"data-framer-name\":\"Line 4\",fill:\"rgb(238, 238, 238)\",intrinsicHeight:3,intrinsicWidth:1242,name:\"Line 4\",svg:'<svg width=\"1242\" height=\"3\" viewBox=\"-1 -1 1242 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"1240\" y2=\"0.5\" stroke=\"#EEEEEE\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r8g48y\",\"data-framer-name\":\"Line\",name:\"Line\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xft94u\",\"data-framer-name\":\"Line\",name:\"Line\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:719,intrinsicWidth:853,loading:getLoadingLazyAtYPosition(6208.599999999999),positionX:\"center\",positionY:\"center\",sizes:\"359px\",src:\"https://framerusercontent.com/images/PQTjqqxW2wGiM1UWHsmHETtWWIU.svg\",srcSet:\"https://framerusercontent.com/images/PQTjqqxW2wGiM1UWHsmHETtWWIU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/PQTjqqxW2wGiM1UWHsmHETtWWIU.svg 853w\"}},l06iQOu9V:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:719,intrinsicWidth:853,loading:getLoadingLazyAtYPosition(4211),positionX:\"center\",positionY:\"center\",sizes:\"531px\",src:\"https://framerusercontent.com/images/PQTjqqxW2wGiM1UWHsmHETtWWIU.svg\",srcSet:\"https://framerusercontent.com/images/PQTjqqxW2wGiM1UWHsmHETtWWIU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/PQTjqqxW2wGiM1UWHsmHETtWWIU.svg 853w\"}},V70zw_NVV:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:719,intrinsicWidth:853,loading:getLoadingLazyAtYPosition(6217),positionX:\"center\",positionY:\"center\",sizes:\"531px\",src:\"https://framerusercontent.com/images/PQTjqqxW2wGiM1UWHsmHETtWWIU.svg\",srcSet:\"https://framerusercontent.com/images/PQTjqqxW2wGiM1UWHsmHETtWWIU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/PQTjqqxW2wGiM1UWHsmHETtWWIU.svg 853w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:719,intrinsicWidth:853,loading:getLoadingLazyAtYPosition(4564.5),positionX:\"center\",positionY:\"center\",sizes:\"531px\",src:\"https://framerusercontent.com/images/PQTjqqxW2wGiM1UWHsmHETtWWIU.svg\",srcSet:\"https://framerusercontent.com/images/PQTjqqxW2wGiM1UWHsmHETtWWIU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/PQTjqqxW2wGiM1UWHsmHETtWWIU.svg 853w\"},className:\"framer-qaymxj\",\"data-framer-name\":\"LooperGroup\",name:\"LooperGroup\"})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rs2ohs\",\"data-framer-name\":\"CTA\",id:elementId5,name:\"CTA\",ref:ref7,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m92p7n\",\"data-framer-name\":\"Content Wraper\",name:\"Content Wraper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a0j43b\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ixrgh4\",\"data-framer-name\":\"Frame 1618873443\",name:\"Frame 1618873443\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13dsvap\",\"data-framer-name\":\"Frame 1618873431\",name:\"Frame 1618873431\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\"},children:\"Book a call\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\"},children:\"Book a call\"})}),className:\"framer-1midufq\",\"data-framer-name\":\"Book a call\",fonts:[\"GF;Outfit-600\"],name:\"Book a call\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(101, 101, 101)\"},children:\"Reach out and we will get back to you within 24 hrs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(101, 101, 101)\"},children:\"Reach out and we will get back to you within 24 hrs\"})}),className:\"framer-sgdj0p\",\"data-framer-name\":\"Reach out and we will get back to you within 24 hrs\",fonts:[\"GF;Outfit-300\"],name:\"Reach out and we will get back to you within 24 hrs\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-jlp77w-container\",id:\"jlp77w\",children:[/*#__PURE__*/_jsx(BaseForm,{button:{label:\"Submit\",shouldAppear:true},contentType:\"application/json\",height:\"100%\",id:\"VE68HmS9H\",inputs:[{gridColumn:\"1\",label:\"\",max:\"\",min:\"\",name:\"first_name\",options:[],placeholder:\"First Name\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"1\",label:\"\",max:\"\",min:\"\",name:\"last_name\",options:[],placeholder:\"Last Name\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"email\",options:[],placeholder:\"Email\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"1\",label:\"\",max:\"\",min:\"\",name:\"Brand_name\",options:[],placeholder:\"Enter Your Brand Name\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"1\",label:\"\",max:\"9\",min:\"0\",name:\"Contact_number\",options:[],placeholder:\"Contact Number\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"Requirement\",options:[],placeholder:\"Your Message\",required:true,step:0,type:\"textarea\",value:\"\"}],layoutId:\"VE68HmS9H\",method:\"post\",onSubmit:onSubmit3bnx0g({overlay}),redirectAs:\"overlay\",style:{width:\"100%\"},styles:{button:{align:\"stretch\",borderRadius:8,color:\"rgb(255, 255, 255)\",fill:\"rgb(124, 9, 231)\",font:{fontFamily:'\"Outfit\", \"Outfit Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20},form:{columnGap:16,columns:\"2\",fill:\"rgba(255, 255, 255, 0)\",rowGap:24},input:{borderObject:{borderColor:\"rgba(224, 224, 224, 0.5)\",borderWidth:1},borderRadius:4,color:\"rgb(168, 168, 168)\",fill:\"rgba(224, 224, 224, 0.12)\",focusObject:{focusColor:\"rgb(255, 255, 255)\",focusWidthFrom:0,focusWidthTo:1},font:{fontFamily:'\"Outfit\", \"Outfit Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,placeholderColor:\"rgba(168, 168, 168, 0.4)\"},label:{borderRadius:4,color:\"rgb(255, 255, 255)\",fill:\"rgba(255, 255, 255, 0)\",font:{fontFamily:'\"Syne\", \"Syne Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0}},url:\"https://submit-form.com/1lmWOIRr6\",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:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-fc7064\"),\"data-framer-portal-id\":\"jlp77w\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"LVRaIdc2j\"),/*#__PURE__*/_jsxs(\"div\",{className:cx(scopingClassNames,\"framer-y0vmc0\"),\"data-framer-portal-id\":\"jlp77w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c19be0cf-7acb-4574-998f-5d6eee5dd057, rgb(255, 255, 255))\"},children:\"Thank You for Choosing Us!\"})}),className:\"framer-15pwizr\",exit:animation8,fonts:[\"GF;Syne-600\"],initial:animation10,style:{transformPerspective:1200},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d2690db9-43ae-4949-bd3a-606ab48f5f0e, rgb(212, 212, 221))\"},children:\"Your submission has been received! We're thrilled to collaborate with you in expanding your brand's reach and impact.\"})}),className:\"framer-jotnti\",exit:animation8,fonts:[\"GF;Inter-regular\"],initial:animation10,style:{transformPerspective:1200},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5j5jpr\",onTap:onTap1wnntms({overlay}),transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif'},children:\"Explore More\"})}),className:\"framer-lwct61\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),getContainer())})})]})})})})]})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-znmxst\",\"data-framer-name\":\"Footer\",id:elementId6,name:\"Footer\",ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qgf04u\",\"data-framer-name\":\"Frame 1618873681\",name:\"Frame 1618873681\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8u42dg\",\"data-framer-name\":\"Frame 1618873682\",name:\"Frame 1618873682\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1te8jpj\",\"data-framer-name\":\"Frame 1618873676\",name:\"Frame 1618873676\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6877.599999999999),sizes:\"80px\",src:\"https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png\",srcSet:\"https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png?scale-down-to=512 512w,https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png 3600w\"}},V70zw_NVV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7751),sizes:\"80px\",src:\"https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png\",srcSet:\"https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png?scale-down-to=512 512w,https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png 3600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5515),sizes:\"80px\",src:\"https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png\",srcSet:\"https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png?scale-down-to=512 512w,https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MV0XparxnMbB43uC30csRmzVI.png 3600w\"},className:\"framer-ux0cei\",\"data-framer-name\":\"gg labs logo white_\",name:\"gg labs logo white_\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://maps.app.goo.gl/MXQqwZ9Z1iDpamw1A\",nodeId:\"uLsNbD3x9\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1naefbr\",\"data-styles-preset\":\"vBbTHRTpl\",children:\"6th Floor, Solaris Cube, Maharana Pratap Rd., Vesu, Surat, Gujarat 395007\"})})})}),className:\"framer-1l89brk\",\"data-framer-name\":\"601, Solaris Cube, Vesu, Surat, 32410\",fonts:[\"GF;Montserrat-regular\"],name:\"601, Solaris Cube, Vesu, Surat, 32410\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-131fgl4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mnu3to\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f2v4cn\",\"data-framer-name\":\"Frame 1618873677\",name:\"Frame 1618873677\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(252, 103, 54)\"},children:\"Our Brands\"})}),className:\"framer-16vjjnr\",\"data-framer-name\":\"Our Brands\",fonts:[\"GF;Outfit-600\"],name:\"Our Brands\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.glazer.games\",nodeId:\"vYwm7a_Mw\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Glazer Games\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.glazer.games\",nodeId:\"vYwm7a_Mw\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Glazer Games\"})})})}),className:\"framer-qd1i7l\",\"data-framer-name\":\"Glazer Games\",fonts:[\"GF;Outfit-300\"],name:\"Glazer Games\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.glazer.studio\",nodeId:\"hUw5hwKDW\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Glazer Studio\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.glazer.studio\",nodeId:\"hUw5hwKDW\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Glazer Studio\"})})})}),className:\"framer-q25hw9\",\"data-framer-name\":\"Glazer Studio\",fonts:[\"GF;Outfit-300\"],name:\"Glazer Studio\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.glazer.technology\",nodeId:\"Mb0YOQXIQ\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Glazer Technology\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.glazer.technology\",nodeId:\"Mb0YOQXIQ\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Glazer Technology\"})})})}),className:\"framer-1doy0zm\",\"data-framer-name\":\"Glazer Technology\",fonts:[\"GF;Outfit-300\"],name:\"Glazer Technology\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pn1w13\",\"data-framer-name\":\"Frame 1618873678\",name:\"Frame 1618873678\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(252, 103, 54)\"},children:\"Services\"})}),className:\"framer-4c41m9\",\"data-framer-name\":\"Services\",fonts:[\"GF;Outfit-600\"],name:\"Services\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Tournament planning\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Tournament planning\"})}),className:\"framer-f9ecdx\",\"data-framer-name\":\"Tournament planning\",fonts:[\"GF;Outfit-300\"],name:\"Tournament planning\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"App & Website Development\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"App & Website Development\"})}),className:\"framer-1rkeiqm\",\"data-framer-name\":\"App & Website Development\",fonts:[\"GF;Outfit-300\"],name:\"App & Website Development\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Production\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Production\"})}),className:\"framer-1gdxx7m\",\"data-framer-name\":\"Production\",fonts:[\"GF;Outfit-300\"],name:\"Production\",verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qqa08n\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s0uo3q\",\"data-framer-name\":\"Frame 1618873679\",name:\"Frame 1618873679\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(252, 103, 54)\"},children:\"Company\"})}),className:\"framer-uaiy2z\",\"data-framer-name\":\"Company\",fonts:[\"GF;Outfit-600\"],name:\"Company\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":QY0Yp_t2G\",webPageId:\"Mlj4XvgF_\"},nodeId:\"hpiqkxMGO\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Home\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":QY0Yp_t2G\",webPageId:\"Mlj4XvgF_\"},nodeId:\"hpiqkxMGO\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Home\"})})})}),className:\"framer-1xqqgbz\",\"data-framer-name\":\"Home\",fonts:[\"GF;Outfit-300\"],name:\"Home\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":wiMJNEe8K\",webPageId:\"Mlj4XvgF_\"},nodeId:\"HELKAW6mp\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"About Us\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":wiMJNEe8K\",webPageId:\"Mlj4XvgF_\"},nodeId:\"HELKAW6mp\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"About Us\"})})})}),className:\"framer-tlvs3c\",\"data-framer-name\":\"About Us\",fonts:[\"GF;Outfit-300\"],name:\"About Us\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Zx0TrAYjb\",webPageId:\"Mlj4XvgF_\"},nodeId:\"SIL2HxXj_\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Brands\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Zx0TrAYjb\",webPageId:\"Mlj4XvgF_\"},nodeId:\"SIL2HxXj_\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Brands\"})})})}),className:\"framer-1nvr9rl\",\"data-framer-name\":\"Brands\",fonts:[\"GF;Outfit-300\"],name:\"Brands\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":d4UnteTXu\",webPageId:\"Mlj4XvgF_\"},nodeId:\"X_eIYe1U_\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Impact & Innovation\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":d4UnteTXu\",webPageId:\"Mlj4XvgF_\"},nodeId:\"X_eIYe1U_\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Impact & Innovation\"})})})}),className:\"framer-1a46jmn\",\"data-framer-name\":\"Impact & Innovation\",fonts:[\"GF;Outfit-300\"],name:\"Impact & Innovation\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/glazergames/jobs/\",nodeId:\"EdE_9ud1H\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Career\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/glazergames/jobs/\",nodeId:\"EdE_9ud1H\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Career\"})})})}),className:\"framer-1im0cr9\",\"data-framer-name\":\"Career\",fonts:[\"GF;Outfit-300\"],name:\"Career\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kodbz0\",\"data-framer-name\":\"Frame 1618873680\",name:\"Frame 1618873680\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(252, 103, 54)\"},children:\"Social\"})}),className:\"framer-di58tj\",\"data-framer-name\":\"Social\",fonts:[\"GF;Outfit-600\"],name:\"Social\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/GlazerGames\",nodeId:\"AeVAOEx3L\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"X\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/GlazerGames\",nodeId:\"AeVAOEx3L\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"X\"})})})}),className:\"framer-1jzeyuq\",\"data-framer-name\":\"X\",fonts:[\"GF;Outfit-300\"],name:\"X\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/glazergames/mycompany/verification/\",nodeId:\"ICwtC1NRZ\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Linkedin\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/glazergames/mycompany/verification/\",nodeId:\"ICwtC1NRZ\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Linkedin\"})})})}),className:\"framer-1ashai1\",\"data-framer-name\":\"Linkedin\",fonts:[\"GF;Outfit-300\"],name:\"Linkedin\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/glazer.games/\",nodeId:\"jU5_eHdZb\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Instagram\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/glazer.games/\",nodeId:\"jU5_eHdZb\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Instagram\"})})})}),className:\"framer-1cum5tl\",\"data-framer-name\":\"Instagram\",fonts:[\"GF;Outfit-300\"],name:\"Instagram\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/fxsqbTsN\",nodeId:\"kPKhmr4Ip\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Discord\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/fxsqbTsN\",nodeId:\"kPKhmr4Ip\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-108m9k1\",\"data-styles-preset\":\"MuFCnMOOk\",children:\"Discord\"})})})}),className:\"framer-9f8i0n\",\"data-framer-name\":\"Discord\",fonts:[\"GF;Outfit-300\"],name:\"Discord\",verticalAlignment:\"center\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(252, 103, 54)\"},children:\"\\xa9 2024 Glazerlabs Private limited\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(252, 103, 54)\"},children:\"\\xa9 2024 Glazerlabs Private limited\"})}),className:\"framer-khz71d\",\"data-framer-name\":\"\\xa9 2024 Glazer Lab\",fonts:[\"GF;Outfit-300\"],name:\"\\xa9 2024 Glazer Lab\",verticalAlignment:\"center\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1thdm1\",\"data-framer-name\":\"Hero\",id:elementId7,name:\"Hero\",ref:ref9,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xfyzog\",\"data-framer-name\":\"Hero Data\",name:\"Hero Data\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gqa3ea\",\"data-framer-name\":\"Hero Text\",name:\"Hero Text\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation11,className:\"framer-1vgqxzr\",\"data-framer-appear-id\":\"1vgqxzr\",\"data-framer-name\":\"Heading\",initial:animation12,name:\"Heading\",optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c0gdn2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Where Innovation  \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Where Innovation  \"})}),className:\"framer-1sqcnhd\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8i7fdh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Meets\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Meets\"})}),className:\"framer-laaeag\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,y:663.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14w4nus-container hidden-o72yxf\",children:/*#__PURE__*/_jsx(HeroText,{height:\"100%\",id:\"ePiYCsqzr\",layoutId:\"ePiYCsqzr\",style:{height:\"100%\"},variant:\"zX7U6SUJb\",width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{height:47,width:\"248px\",y:593.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xamat9-container hidden-1y0ct01 hidden-1ot76oj hidden-1y90e5k\",children:/*#__PURE__*/_jsx(MobileViewText,{height:\"100%\",id:\"MubZFBFO0\",layoutId:\"MubZFBFO0\",style:{height:\"100%\",width:\"100%\"},variant:\"UWix2f7SF\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(238, 238, 238)\"},children:\"Welcome to Glazer Labs, where we turn visionary ideas into groundbreaking realities. Our boundless creativity and revolutionary innovations are redefining the future of design, technology, and entertainment.\\xa0\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation13,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(238, 238, 238)\"},children:\"Welcome to Glazer Labs, where we turn visionary ideas into groundbreaking realities. Our boundless creativity and revolutionary innovations are redefining the future of design, technology, and entertainment.\\xa0\"})}),className:\"framer-1h58eh9\",\"data-framer-appear-id\":\"1h58eh9\",\"data-framer-name\":\"We are reinventing the future of design, technology, and entertainment by harnessing our infinite creative potential and revolutionary innovations.\",fonts:[\"GF;Outfit-300\"],initial:animation12,name:\"We are reinventing the future of design, technology, and entertainment by harnessing our infinite creative potential and revolutionary innovations.\",optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation14,className:\"framer-6usxrd\",\"data-framer-appear-id\":\"6usxrd\",\"data-framer-name\":\"Buttons\",initial:animation12,name:\"Buttons\",optimized:true,children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":zLXqhX3cx\",webPageId:\"Mlj4XvgF_\"},nodeId:\"KZ_ptcFpr\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-5t5ugt framer-jr994g\",\"data-framer-name\":\"Get in touch button\",name:\"Get in touch button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get in touch with us\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get in touch with us\"})}),className:\"framer-mltvmm\",\"data-framer-name\":\"Get in touch with us\",fonts:[\"GF;Outfit-500\"],name:\"Get in touch with us\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":wiMJNEe8K\",webPageId:\"Mlj4XvgF_\"},nodeId:\"yJ3sSYZbN\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-ykpqog framer-jr994g\",\"data-framer-name\":\"Know more button\",name:\"Know more button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(10, 10, 10)\"},children:\"Know more\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(10, 10, 10)\"},children:\"Know more\"})}),className:\"framer-p6dpzw\",\"data-framer-name\":\"Know more\",fonts:[\"GF;Outfit-500\"],name:\"Know more\",verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:{hash:\":wiMJNEe8K\",webPageId:\"augiA20Il\"},nodeId:\"JeyXhm6vX\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation15,className:\"framer-1ykeho6 hidden-1y90e5k hidden-o72yxf framer-jr994g\",\"data-framer-appear-id\":\"1ykeho6\",\"data-framer-name\":\"Scroll Down Button\",initial:animation16,name:\"Scroll Down Button\",optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Scroll Down\"})}),className:\"framer-1i6z29e\",\"data-framer-name\":\"Scroll Down\",fonts:[\"GF;Outfit-300\"],name:\"Scroll Down\",style:{rotate:-90},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dae136\",\"data-framer-name\":\"Group 15\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,name:\"Group 15\",svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.9986 8.19855C13.8129 8.19855 13.6349 8.2723 13.5036 8.40358C13.3723 8.53485 13.2986 8.7129 13.2986 8.89855V18.4088L9.59418 14.703C9.46274 14.5715 9.28447 14.4977 9.09858 14.4977C8.9127 14.4977 8.73442 14.5715 8.60298 14.703C8.47154 14.8344 8.3977 15.0127 8.3977 15.1986C8.3977 15.3844 8.47154 15.5627 8.60298 15.6942L13.503 20.5942C13.568 20.6593 13.6453 20.7111 13.7303 20.7464C13.8153 20.7816 13.9065 20.7998 13.9986 20.7998C14.0907 20.7998 14.1818 20.7816 14.2669 20.7464C14.3519 20.7111 14.4292 20.6593 14.4942 20.5942L19.3942 15.6942C19.4593 15.6291 19.5109 15.5518 19.5461 15.4668C19.5813 15.3817 19.5995 15.2906 19.5995 15.1986C19.5995 15.0127 19.5256 14.8344 19.3942 14.703C19.2627 14.5715 19.0845 14.4977 18.8986 14.4977C18.7127 14.4977 18.5344 14.5715 18.403 14.703L14.6986 18.4088V8.89855C14.6986 8.7129 14.6248 8.53485 14.4936 8.40358C14.3623 8.2723 14.1842 8.19855 13.9986 8.19855Z\" fill=\"white\"/>\\n<circle cx=\"14\" cy=\"14.5\" r=\"13.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":QY0Yp_t2G\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":wiMJNEe8K\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":Zx0TrAYjb\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":d4UnteTXu\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":zLXqhX3cx\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":QY0Yp_t2G\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":wiMJNEe8K\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":Zx0TrAYjb\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":d4UnteTXu\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":zLXqhX3cx\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":QY0Yp_t2G\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":wiMJNEe8K\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":Zx0TrAYjb\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":d4UnteTXu\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":zLXqhX3cx\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":QY0Yp_t2G\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":wiMJNEe8K\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":Zx0TrAYjb\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":d4UnteTXu\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":zLXqhX3cx\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation17},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:1,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hwhxhp-container\",layoutScroll:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{in9tca2Ho:resolvedLinks[16],KLCZmKLF1:resolvedLinks[18],kUDoxcJWD:resolvedLinks[19],Mghla32qn:resolvedLinks[17],oKmvDcggD:resolvedLinks[15],variant:\"UJ4FlIK6A\"},l06iQOu9V:{in9tca2Ho:resolvedLinks[6],KLCZmKLF1:resolvedLinks[8],kUDoxcJWD:resolvedLinks[9],Mghla32qn:resolvedLinks[7],oKmvDcggD:resolvedLinks[5],variant:\"Bdlat2FBe\"},V70zw_NVV:{in9tca2Ho:resolvedLinks[11],KLCZmKLF1:resolvedLinks[13],kUDoxcJWD:resolvedLinks[14],Mghla32qn:resolvedLinks[12],oKmvDcggD:resolvedLinks[10],variant:\"zCZpgOmY_\"}},children:/*#__PURE__*/_jsx(HeaderCopy,{height:\"100%\",id:\"UKuB3PHeC\",in9tca2Ho:resolvedLinks[1],KLCZmKLF1:resolvedLinks[3],kUDoxcJWD:resolvedLinks[4],layoutId:\"UKuB3PHeC\",Mghla32qn:resolvedLinks[2],oKmvDcggD:resolvedLinks[0],style:{width:\"100%\"},variant:\"tj40V5qKR\",width:\"100%\",Z0xW9JTT_:\"https://www.linkedin.com/company/glazergames/jobs/\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":QY0Yp_t2G\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":wiMJNEe8K\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":Zx0TrAYjb\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":d4UnteTXu\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":zLXqhX3cx\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":QY0Yp_t2G\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":wiMJNEe8K\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":Zx0TrAYjb\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":d4UnteTXu\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":zLXqhX3cx\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":QY0Yp_t2G\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":wiMJNEe8K\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":Zx0TrAYjb\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":d4UnteTXu\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":zLXqhX3cx\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":QY0Yp_t2G\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":wiMJNEe8K\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":Zx0TrAYjb\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":d4UnteTXu\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined},{href:{hash:\":zLXqhX3cx\",webPageId:\"Mlj4XvgF_\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation17},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18p8hg5-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{B1Wfm6tex:{in9tca2Ho:resolvedLinks1[16],KLCZmKLF1:resolvedLinks1[18],kUDoxcJWD:resolvedLinks1[19],Mghla32qn:resolvedLinks1[17],oKmvDcggD:resolvedLinks1[15],variant:\"OkYYJlTtQ\"},l06iQOu9V:{in9tca2Ho:resolvedLinks1[6],KLCZmKLF1:resolvedLinks1[8],kUDoxcJWD:resolvedLinks1[9],Mghla32qn:resolvedLinks1[7],oKmvDcggD:resolvedLinks1[5],variant:\"NlotvEhLR\"},V70zw_NVV:{in9tca2Ho:resolvedLinks1[11],KLCZmKLF1:resolvedLinks1[13],kUDoxcJWD:resolvedLinks1[14],Mghla32qn:resolvedLinks1[12],oKmvDcggD:resolvedLinks1[10],variant:\"Dj0nI0sHP\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"vAAbG22Xp\",in9tca2Ho:resolvedLinks1[1],KLCZmKLF1:resolvedLinks1[3],kUDoxcJWD:resolvedLinks1[4],layoutId:\"vAAbG22Xp\",Mghla32qn:resolvedLinks1[2],oKmvDcggD:resolvedLinks1[0],style:{width:\"100%\"},variant:\"jUPLJHnVR\",width:\"100%\",Z0xW9JTT_:\"https://www.linkedin.com/company/glazergames/jobs/\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-JhwLG { background: #fbfcfa; }`,\".framer-JhwLG.framer-jr994g, .framer-JhwLG .framer-jr994g { display: block; }\",\".framer-JhwLG.framer-1y0ct01 { align-content: flex-start; align-items: flex-start; background-color: #fbfcfa; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-JhwLG .framer-1in2p20 { flex: none; height: 100vh; position: relative; width: 100%; }\",\".framer-JhwLG .framer-to399w { align-content: center; align-items: center; background: linear-gradient(81.3099999539287deg, #8636f8 2.2600000724196434%, rgba(240, 32, 179, 1) 34.83999967575073%, rgba(248, 71, 94, 1) 67.41999983787537%, rgba(255, 148, 33, 1) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 18px 100px 18px 100px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-1xpw9t1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-14g1wnp, .framer-JhwLG .framer-1esn0gb, .framer-JhwLG .framer-cu6kn, .framer-JhwLG .framer-ixfahg, .framer-JhwLG .framer-1naxxbk, .framer-JhwLG .framer-1n8xm5b, .framer-JhwLG .framer-6c8pqj, .framer-JhwLG .framer-178ymme, .framer-JhwLG .framer-r1sk5y, .framer-JhwLG .framer-1fbanzn, .framer-JhwLG .framer-15uix4y, .framer-JhwLG .framer-1etnu1, .framer-JhwLG .framer-z5srsu, .framer-JhwLG .framer-laaeag, .framer-JhwLG .framer-mltvmm, .framer-JhwLG .framer-p6dpzw, .framer-JhwLG .framer-1i6z29e { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-JhwLG .framer-1f6vln0-container { flex: none; height: 8vh; position: relative; width: 80%; }\",\".framer-JhwLG .framer-1bw3bbx { aspect-ratio: 3.6973688462201286 / 1; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 126px; }\",\".framer-JhwLG .framer-j2q0f2 { aspect-ratio: 4.7105264102711395 / 1; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 160px; }\",\".framer-JhwLG .framer-1chsxz1 { aspect-ratio: 3.4736841987161076 / 1; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 118px; }\",\".framer-JhwLG .framer-1vey0zh { aspect-ratio: 4.052631153779871 / 1; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 138px; }\",\".framer-JhwLG .framer-q3gkrx { aspect-ratio: 4.2894735897288605 / 1; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 146px; }\",\".framer-JhwLG .framer-9rt9nd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 60px 100px 60px 100px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-a2d2yj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 48px 0px 0px; position: relative; width: 50%; }\",\".framer-JhwLG .framer-sn8cmj, .framer-JhwLG .framer-1gqa3ea { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-4sb2uh, .framer-JhwLG .framer-1a87s5t, .framer-JhwLG .framer-ew8ye3, .framer-JhwLG .framer-dxel3j, .framer-JhwLG .framer-k496vw, .framer-JhwLG .framer-1midufq, .framer-JhwLG .framer-sgdj0p, .framer-JhwLG .framer-1l89brk, .framer-JhwLG .framer-16vjjnr, .framer-JhwLG .framer-qd1i7l, .framer-JhwLG .framer-q25hw9, .framer-JhwLG .framer-1doy0zm, .framer-JhwLG .framer-f9ecdx, .framer-JhwLG .framer-1rkeiqm, .framer-JhwLG .framer-1gdxx7m, .framer-JhwLG .framer-uaiy2z, .framer-JhwLG .framer-1xqqgbz, .framer-JhwLG .framer-tlvs3c, .framer-JhwLG .framer-1nvr9rl, .framer-JhwLG .framer-1a46jmn, .framer-JhwLG .framer-1im0cr9, .framer-JhwLG .framer-di58tj, .framer-JhwLG .framer-1jzeyuq, .framer-JhwLG .framer-1ashai1, .framer-JhwLG .framer-1cum5tl, .framer-JhwLG .framer-9f8i0n, .framer-JhwLG .framer-khz71d, .framer-JhwLG .framer-1sqcnhd, .framer-JhwLG .framer-1h58eh9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JhwLG .framer-tyctq1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-16lntka, .framer-JhwLG .framer-6usxrd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-JhwLG .framer-agbeqf { align-content: center; align-items: center; background-color: #7c09e7; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 16px 32px 16px 32px; position: relative; text-decoration: none; width: 200px; }\",\".framer-JhwLG .framer-1hfuron { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 16px 32px 16px 32px; position: relative; text-decoration: none; width: 200px; }\",\".framer-JhwLG .framer-ewsb8q { flex: none; height: 610px; overflow: visible; position: relative; width: 50%; }\",\".framer-JhwLG .framer-1n701fb-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-JhwLG .framer-1k04796 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 80px 60px 80px 60px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-hgajhw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JhwLG .framer-nj95qh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-1rd335t, .framer-JhwLG .framer-1potmah, .framer-JhwLG .framer-n5qjfi { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.8); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 4.987576484680176px 17.356765747070312px 0px rgba(30, 35, 41, 0.02), 0px 16.75223159790039px 58.297767639160156px 0px rgba(30, 35, 41, 0.03576643392443657), 0px 75px 261px 0px rgba(30, 35, 41, 0.05999999865889549); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JhwLG .framer-1p3df7c, .framer-JhwLG .framer-1u5tn4a, .framer-JhwLG .framer-18e3oam { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-1i7r22e, .framer-JhwLG .framer-1nr4s4a, .framer-JhwLG .framer-oqmhlw { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-1rmj5d2 { aspect-ratio: 5.913215214915821 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 142px; }\",\".framer-JhwLG .framer-1uiixje, .framer-JhwLG .framer-fgrj5v, .framer-JhwLG .framer-165uyrf, .framer-JhwLG .framer-13dsvap { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-1vswhlj, .framer-JhwLG .framer-d0j1ri, .framer-JhwLG .framer-1xk59c0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JhwLG .framer-g2nj1i, .framer-JhwLG .framer-p9re4e, .framer-JhwLG .framer-1hc86q0, .framer-JhwLG .framer-h78qr9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-1n6gf2x, .framer-JhwLG .framer-17styg4, .framer-JhwLG .framer-1ks5hga, .framer-JhwLG .framer-70fxhk, .framer-JhwLG .framer-1qpdydw, .framer-JhwLG .framer-q7kymv { align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-mozzqm, .framer-JhwLG .framer-obyzna, .framer-JhwLG .framer-1lmeafk, .framer-JhwLG .framer-41i5xs, .framer-JhwLG .framer-1pih380, .framer-JhwLG .framer-19vl1a { flex: none; height: 17px; position: relative; width: 17px; }\",\".framer-JhwLG .framer-qrwn10, .framer-JhwLG .framer-1rh4eu, .framer-JhwLG .framer-zbqw36 { align-content: center; align-items: center; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-JhwLG .framer-14vv1j7, .framer-JhwLG .framer-4moxix, .framer-JhwLG .framer-bad3qo { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 20px; }\",\".framer-JhwLG .framer-12rccmy, .framer-JhwLG .framer-6lorh9, .framer-JhwLG .framer-d9sbp8 { flex: none; height: 21px; left: 0px; position: absolute; top: 0px; width: 20px; }\",\".framer-JhwLG .framer-oycuqm { aspect-ratio: 3.3269689355829106 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 80px; }\",\".framer-JhwLG .framer-gxyhvg { aspect-ratio: 2.9298892988929888 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 71px; }\",\".framer-JhwLG .framer-ydq7gy-container, .framer-JhwLG .framer-jlp77w-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-JhwLG .framer-552w7o { align-content: flex-start; align-items: flex-start; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 100px 80px 100px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-188c033, .framer-JhwLG .framer-1r8g48y { flex: none; height: 3px; overflow: hidden; position: relative; width: 100%; }\",\".framer-JhwLG .framer-vbcpaw { bottom: 0px; flex: none; left: calc(50.00000000000002% - 1240px / 2); opacity: 0.3; position: absolute; top: 0px; width: 1240px; }\",\".framer-JhwLG .framer-13omy2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-12jrcll { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-JhwLG .framer-us9qhh { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 200px; word-break: break-word; word-wrap: break-word; }\",\".framer-JhwLG .framer-1drfekk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-JhwLG .framer-xr2afc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-JhwLG .framer-14mbk20 { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-JhwLG .framer-7l5o2n, .framer-JhwLG .framer-1xft94u { flex: none; height: 4px; overflow: hidden; position: relative; width: 100%; }\",\".framer-JhwLG .framer-stswe { flex: none; height: 3px; left: calc(50.00000000000002% - 1240px / 2); opacity: 0.3; position: absolute; top: calc(50.00000000000002% - 3px / 2); width: 1240px; }\",\".framer-JhwLG .framer-qaymxj { aspect-ratio: 1.1855455177206393 / 1; bottom: -117px; flex: none; height: var(--framer-aspect-ratio-supported, 448px); left: -68px; position: absolute; width: 531px; z-index: 1; }\",\".framer-JhwLG .framer-rs2ohs { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; overflow: visible; padding: 64px 100px 34px 100px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-1m92p7n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-1a0j43b { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.05); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 34px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-JhwLG .framer-ixrgh4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 900px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JhwLG.framer-fc7064 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-JhwLG.framer-y0vmc0 { flex: none; height: 154px; left: calc(50.00000000000002% - 576px / 2); overflow: hidden; position: fixed; top: calc(50.00000000000002% - 154px / 2); width: 576px; }\",\".framer-JhwLG .framer-15pwizr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-JhwLG .framer-jotnti { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 48%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JhwLG .framer-5j5jpr { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 1px; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 51%; overflow: hidden; padding: 16px; position: absolute; transform: translateX(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-JhwLG .framer-lwct61 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-JhwLG .framer-znmxst { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 48px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-1qgf04u { align-content: flex-start; align-items: flex-start; background-color: #0a0a0a; 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: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-8u42dg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-1te8jpj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 20%; }\",\".framer-JhwLG .framer-ux0cei { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 80px; }\",\".framer-JhwLG .framer-131fgl4, .framer-JhwLG .framer-mnu3to, .framer-JhwLG .framer-1qqa08n { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-JhwLG .framer-1f2v4cn, .framer-JhwLG .framer-pn1w13, .framer-JhwLG .framer-1s0uo3q, .framer-JhwLG .framer-1kodbz0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 1px; }\",\".framer-JhwLG .framer-4c41m9 { --framer-paragraph-spacing: 0px; flex: none; height: 20px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JhwLG .framer-1thdm1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100vh; justify-content: space-between; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 200px 100px 0px 100px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-JhwLG .framer-1xfyzog { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 60%; }\",\".framer-JhwLG .framer-1vgqxzr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-1c0gdn2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-8i7fdh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JhwLG .framer-14w4nus-container { flex: none; height: 78px; position: relative; width: auto; }\",\".framer-JhwLG .framer-xamat9-container { flex: none; height: 47px; position: relative; width: 248px; }\",\".framer-JhwLG .framer-5t5ugt { align-content: center; align-items: center; background-color: #7c09e7; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 16px 24px 16px 24px; position: relative; text-decoration: none; width: 220px; }\",\".framer-JhwLG .framer-ykpqog { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 16px 24px 16px 24px; position: relative; text-decoration: none; width: 220px; }\",\".framer-JhwLG .framer-1ykeho6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: 231px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-JhwLG .framer-1dae136 { flex: none; height: 29px; position: relative; width: 28px; }\",\".framer-JhwLG .framer-1hwhxhp-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 5; }\",\".framer-JhwLG .framer-18p8hg5-container { flex: none; height: auto; position: fixed; right: 0px; top: 0px; width: 100%; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JhwLG.framer-1y0ct01, .framer-JhwLG .framer-to399w, .framer-JhwLG .framer-a2d2yj, .framer-JhwLG .framer-sn8cmj, .framer-JhwLG .framer-tyctq1, .framer-JhwLG .framer-16lntka, .framer-JhwLG .framer-agbeqf, .framer-JhwLG .framer-1hfuron, .framer-JhwLG .framer-1k04796, .framer-JhwLG .framer-nj95qh, .framer-JhwLG .framer-1rd335t, .framer-JhwLG .framer-1p3df7c, .framer-JhwLG .framer-1uiixje, .framer-JhwLG .framer-g2nj1i, .framer-JhwLG .framer-1n6gf2x, .framer-JhwLG .framer-17styg4, .framer-JhwLG .framer-qrwn10, .framer-JhwLG .framer-1potmah, .framer-JhwLG .framer-1u5tn4a, .framer-JhwLG .framer-fgrj5v, .framer-JhwLG .framer-p9re4e, .framer-JhwLG .framer-1ks5hga, .framer-JhwLG .framer-70fxhk, .framer-JhwLG .framer-1rh4eu, .framer-JhwLG .framer-n5qjfi, .framer-JhwLG .framer-18e3oam, .framer-JhwLG .framer-165uyrf, .framer-JhwLG .framer-1hc86q0, .framer-JhwLG .framer-1qpdydw, .framer-JhwLG .framer-q7kymv, .framer-JhwLG .framer-zbqw36, .framer-JhwLG .framer-552w7o, .framer-JhwLG .framer-h78qr9, .framer-JhwLG .framer-13omy2, .framer-JhwLG .framer-12jrcll, .framer-JhwLG .framer-1drfekk, .framer-JhwLG .framer-xr2afc, .framer-JhwLG .framer-14mbk20, .framer-JhwLG .framer-rs2ohs, .framer-JhwLG .framer-1m92p7n, .framer-JhwLG .framer-1a0j43b, .framer-JhwLG .framer-ixrgh4, .framer-JhwLG .framer-13dsvap, .framer-JhwLG .framer-5j5jpr, .framer-JhwLG .framer-znmxst, .framer-JhwLG .framer-1qgf04u, .framer-JhwLG .framer-1te8jpj, .framer-JhwLG .framer-131fgl4, .framer-JhwLG .framer-mnu3to, .framer-JhwLG .framer-1f2v4cn, .framer-JhwLG .framer-pn1w13, .framer-JhwLG .framer-1qqa08n, .framer-JhwLG .framer-1s0uo3q, .framer-JhwLG .framer-1kodbz0, .framer-JhwLG .framer-1xfyzog, .framer-JhwLG .framer-1gqa3ea, .framer-JhwLG .framer-1vgqxzr, .framer-JhwLG .framer-1c0gdn2, .framer-JhwLG .framer-8i7fdh, .framer-JhwLG .framer-6usxrd, .framer-JhwLG .framer-5t5ugt, .framer-JhwLG .framer-ykpqog, .framer-JhwLG .framer-1ykeho6 { gap: 0px; } .framer-JhwLG.framer-1y0ct01 > *, .framer-JhwLG .framer-1rd335t > *, .framer-JhwLG .framer-1potmah > *, .framer-JhwLG .framer-n5qjfi > *, .framer-JhwLG .framer-1c0gdn2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-JhwLG.framer-1y0ct01 > :first-child, .framer-JhwLG .framer-a2d2yj > :first-child, .framer-JhwLG .framer-sn8cmj > :first-child, .framer-JhwLG .framer-tyctq1 > :first-child, .framer-JhwLG .framer-1k04796 > :first-child, .framer-JhwLG .framer-1rd335t > :first-child, .framer-JhwLG .framer-1p3df7c > :first-child, .framer-JhwLG .framer-1uiixje > :first-child, .framer-JhwLG .framer-g2nj1i > :first-child, .framer-JhwLG .framer-1potmah > :first-child, .framer-JhwLG .framer-1u5tn4a > :first-child, .framer-JhwLG .framer-fgrj5v > :first-child, .framer-JhwLG .framer-p9re4e > :first-child, .framer-JhwLG .framer-n5qjfi > :first-child, .framer-JhwLG .framer-18e3oam > :first-child, .framer-JhwLG .framer-165uyrf > :first-child, .framer-JhwLG .framer-1hc86q0 > :first-child, .framer-JhwLG .framer-552w7o > :first-child, .framer-JhwLG .framer-h78qr9 > :first-child, .framer-JhwLG .framer-1drfekk > :first-child, .framer-JhwLG .framer-rs2ohs > :first-child, .framer-JhwLG .framer-1m92p7n > :first-child, .framer-JhwLG .framer-1a0j43b > :first-child, .framer-JhwLG .framer-13dsvap > :first-child, .framer-JhwLG .framer-5j5jpr > :first-child, .framer-JhwLG .framer-1qgf04u > :first-child, .framer-JhwLG .framer-1te8jpj > :first-child, .framer-JhwLG .framer-1f2v4cn > :first-child, .framer-JhwLG .framer-pn1w13 > :first-child, .framer-JhwLG .framer-1s0uo3q > :first-child, .framer-JhwLG .framer-1kodbz0 > :first-child, .framer-JhwLG .framer-1xfyzog > :first-child, .framer-JhwLG .framer-1gqa3ea > :first-child, .framer-JhwLG .framer-1c0gdn2 > :first-child, .framer-JhwLG .framer-1ykeho6 > :first-child { margin-top: 0px; } .framer-JhwLG.framer-1y0ct01 > :last-child, .framer-JhwLG .framer-a2d2yj > :last-child, .framer-JhwLG .framer-sn8cmj > :last-child, .framer-JhwLG .framer-tyctq1 > :last-child, .framer-JhwLG .framer-1k04796 > :last-child, .framer-JhwLG .framer-1rd335t > :last-child, .framer-JhwLG .framer-1p3df7c > :last-child, .framer-JhwLG .framer-1uiixje > :last-child, .framer-JhwLG .framer-g2nj1i > :last-child, .framer-JhwLG .framer-1potmah > :last-child, .framer-JhwLG .framer-1u5tn4a > :last-child, .framer-JhwLG .framer-fgrj5v > :last-child, .framer-JhwLG .framer-p9re4e > :last-child, .framer-JhwLG .framer-n5qjfi > :last-child, .framer-JhwLG .framer-18e3oam > :last-child, .framer-JhwLG .framer-165uyrf > :last-child, .framer-JhwLG .framer-1hc86q0 > :last-child, .framer-JhwLG .framer-552w7o > :last-child, .framer-JhwLG .framer-h78qr9 > :last-child, .framer-JhwLG .framer-1drfekk > :last-child, .framer-JhwLG .framer-rs2ohs > :last-child, .framer-JhwLG .framer-1m92p7n > :last-child, .framer-JhwLG .framer-1a0j43b > :last-child, .framer-JhwLG .framer-13dsvap > :last-child, .framer-JhwLG .framer-5j5jpr > :last-child, .framer-JhwLG .framer-1qgf04u > :last-child, .framer-JhwLG .framer-1te8jpj > :last-child, .framer-JhwLG .framer-1f2v4cn > :last-child, .framer-JhwLG .framer-pn1w13 > :last-child, .framer-JhwLG .framer-1s0uo3q > :last-child, .framer-JhwLG .framer-1kodbz0 > :last-child, .framer-JhwLG .framer-1xfyzog > :last-child, .framer-JhwLG .framer-1gqa3ea > :last-child, .framer-JhwLG .framer-1c0gdn2 > :last-child, .framer-JhwLG .framer-1ykeho6 > :last-child { margin-bottom: 0px; } .framer-JhwLG .framer-to399w > *, .framer-JhwLG .framer-16lntka > *, .framer-JhwLG .framer-6usxrd > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-JhwLG .framer-to399w > :first-child, .framer-JhwLG .framer-16lntka > :first-child, .framer-JhwLG .framer-agbeqf > :first-child, .framer-JhwLG .framer-1hfuron > :first-child, .framer-JhwLG .framer-nj95qh > :first-child, .framer-JhwLG .framer-1n6gf2x > :first-child, .framer-JhwLG .framer-17styg4 > :first-child, .framer-JhwLG .framer-qrwn10 > :first-child, .framer-JhwLG .framer-1ks5hga > :first-child, .framer-JhwLG .framer-70fxhk > :first-child, .framer-JhwLG .framer-1rh4eu > :first-child, .framer-JhwLG .framer-1qpdydw > :first-child, .framer-JhwLG .framer-q7kymv > :first-child, .framer-JhwLG .framer-zbqw36 > :first-child, .framer-JhwLG .framer-13omy2 > :first-child, .framer-JhwLG .framer-12jrcll > :first-child, .framer-JhwLG .framer-xr2afc > :first-child, .framer-JhwLG .framer-14mbk20 > :first-child, .framer-JhwLG .framer-ixrgh4 > :first-child, .framer-JhwLG .framer-znmxst > :first-child, .framer-JhwLG .framer-131fgl4 > :first-child, .framer-JhwLG .framer-mnu3to > :first-child, .framer-JhwLG .framer-1qqa08n > :first-child, .framer-JhwLG .framer-1vgqxzr > :first-child, .framer-JhwLG .framer-8i7fdh > :first-child, .framer-JhwLG .framer-6usxrd > :first-child, .framer-JhwLG .framer-5t5ugt > :first-child, .framer-JhwLG .framer-ykpqog > :first-child { margin-left: 0px; } .framer-JhwLG .framer-to399w > :last-child, .framer-JhwLG .framer-16lntka > :last-child, .framer-JhwLG .framer-agbeqf > :last-child, .framer-JhwLG .framer-1hfuron > :last-child, .framer-JhwLG .framer-nj95qh > :last-child, .framer-JhwLG .framer-1n6gf2x > :last-child, .framer-JhwLG .framer-17styg4 > :last-child, .framer-JhwLG .framer-qrwn10 > :last-child, .framer-JhwLG .framer-1ks5hga > :last-child, .framer-JhwLG .framer-70fxhk > :last-child, .framer-JhwLG .framer-1rh4eu > :last-child, .framer-JhwLG .framer-1qpdydw > :last-child, .framer-JhwLG .framer-q7kymv > :last-child, .framer-JhwLG .framer-zbqw36 > :last-child, .framer-JhwLG .framer-13omy2 > :last-child, .framer-JhwLG .framer-12jrcll > :last-child, .framer-JhwLG .framer-xr2afc > :last-child, .framer-JhwLG .framer-14mbk20 > :last-child, .framer-JhwLG .framer-ixrgh4 > :last-child, .framer-JhwLG .framer-znmxst > :last-child, .framer-JhwLG .framer-131fgl4 > :last-child, .framer-JhwLG .framer-mnu3to > :last-child, .framer-JhwLG .framer-1qqa08n > :last-child, .framer-JhwLG .framer-1vgqxzr > :last-child, .framer-JhwLG .framer-8i7fdh > :last-child, .framer-JhwLG .framer-6usxrd > :last-child, .framer-JhwLG .framer-5t5ugt > :last-child, .framer-JhwLG .framer-ykpqog > :last-child { margin-right: 0px; } .framer-JhwLG .framer-a2d2yj > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-JhwLG .framer-sn8cmj > *, .framer-JhwLG .framer-1gqa3ea > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-JhwLG .framer-tyctq1 > *, .framer-JhwLG .framer-1f2v4cn > *, .framer-JhwLG .framer-pn1w13 > *, .framer-JhwLG .framer-1s0uo3q > *, .framer-JhwLG .framer-1kodbz0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-JhwLG .framer-agbeqf > *, .framer-JhwLG .framer-1hfuron > *, .framer-JhwLG .framer-12jrcll > *, .framer-JhwLG .framer-14mbk20 > *, .framer-JhwLG .framer-5t5ugt > *, .framer-JhwLG .framer-ykpqog > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-JhwLG .framer-1k04796 > *, .framer-JhwLG .framer-1qgf04u > *, .framer-JhwLG .framer-1te8jpj > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-JhwLG .framer-nj95qh > *, .framer-JhwLG .framer-8i7fdh > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-JhwLG .framer-1p3df7c > *, .framer-JhwLG .framer-1u5tn4a > *, .framer-JhwLG .framer-18e3oam > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-JhwLG .framer-1uiixje > *, .framer-JhwLG .framer-fgrj5v > *, .framer-JhwLG .framer-165uyrf > *, .framer-JhwLG .framer-13dsvap > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-JhwLG .framer-g2nj1i > *, .framer-JhwLG .framer-p9re4e > *, .framer-JhwLG .framer-1hc86q0 > *, .framer-JhwLG .framer-h78qr9 > *, .framer-JhwLG .framer-1drfekk > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-JhwLG .framer-1n6gf2x > *, .framer-JhwLG .framer-17styg4 > *, .framer-JhwLG .framer-qrwn10 > *, .framer-JhwLG .framer-1ks5hga > *, .framer-JhwLG .framer-70fxhk > *, .framer-JhwLG .framer-1rh4eu > *, .framer-JhwLG .framer-1qpdydw > *, .framer-JhwLG .framer-q7kymv > *, .framer-JhwLG .framer-zbqw36 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-JhwLG .framer-552w7o > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-JhwLG .framer-13omy2 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-JhwLG .framer-xr2afc > *, .framer-JhwLG .framer-131fgl4 > *, .framer-JhwLG .framer-mnu3to > *, .framer-JhwLG .framer-1qqa08n > *, .framer-JhwLG .framer-1vgqxzr > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-JhwLG .framer-rs2ohs > *, .framer-JhwLG .framer-1m92p7n > *, .framer-JhwLG .framer-1a0j43b > *, .framer-JhwLG .framer-1xfyzog > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-JhwLG .framer-ixrgh4 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-JhwLG .framer-5j5jpr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-JhwLG .framer-znmxst > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-JhwLG .framer-1ykeho6 > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } }\",...sharedStyle.css,'.framer-JhwLG[data-border=\"true\"]::after, .framer-JhwLG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',`@media (min-width: 1200px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-JhwLG { background: #fbfcfa; } .framer-JhwLG.framer-1y0ct01 { width: 1200px; } .framer-JhwLG .framer-qaymxj { bottom: -174px; left: -313px; } .framer-JhwLG .framer-1xfyzog { width: 80%; }}`,`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-JhwLG { background: #fbfcfa; } .framer-JhwLG.framer-1y0ct01 { width: 810px; } .framer-JhwLG .framer-1f6vln0-container, .framer-JhwLG .framer-5t5ugt, .framer-JhwLG .framer-ykpqog { flex: 1 0 0px; width: 1px; } .framer-JhwLG .framer-9rt9nd { flex-direction: column; gap: 48px; justify-content: flex-start; padding: 60px 80px 60px 80px; } .framer-JhwLG .framer-a2d2yj, .framer-JhwLG .framer-ewsb8q, .framer-JhwLG .framer-1te8jpj, .framer-JhwLG .framer-1xfyzog, .framer-JhwLG .framer-6usxrd { width: 100%; } .framer-JhwLG .framer-nj95qh { flex-direction: column; flex-wrap: wrap; } .framer-JhwLG .framer-1rd335t, .framer-JhwLG .framer-1potmah, .framer-JhwLG .framer-n5qjfi { flex: none; width: 100%; } .framer-JhwLG .framer-1i7r22e, .framer-JhwLG .framer-1nr4s4a, .framer-JhwLG .framer-oqmhlw { height: 340px; } .framer-JhwLG .framer-552w7o { padding: 80px; } .framer-JhwLG .framer-13omy2 { gap: 32px; } .framer-JhwLG .framer-qaymxj { bottom: -358px; height: var(--framer-aspect-ratio-supported, 1210px); left: -321px; } .framer-JhwLG .framer-rs2ohs { padding: 80px 60px 80px 60px; } .framer-JhwLG .framer-8u42dg { flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-JhwLG .framer-131fgl4 { align-content: center; align-items: center; flex: none; flex-direction: column; gap: 32px; justify-content: flex-start; width: 100%; } .framer-JhwLG .framer-mnu3to { flex: none; gap: 10px; width: 100%; } .framer-JhwLG .framer-1qqa08n { flex: none; height: 309px; width: 100%; } .framer-JhwLG .framer-1s0uo3q, .framer-JhwLG .framer-1kodbz0 { flex: none; width: 50%; } .framer-JhwLG .framer-1thdm1 { padding: 200px 80px 0px 80px; } .framer-JhwLG .framer-1vgqxzr { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-JhwLG .framer-8i7fdh { gap: 16px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JhwLG .framer-9rt9nd, .framer-JhwLG .framer-nj95qh, .framer-JhwLG .framer-13omy2, .framer-JhwLG .framer-8u42dg, .framer-JhwLG .framer-131fgl4, .framer-JhwLG .framer-mnu3to, .framer-JhwLG .framer-1vgqxzr, .framer-JhwLG .framer-8i7fdh { gap: 0px; } .framer-JhwLG .framer-9rt9nd > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-JhwLG .framer-9rt9nd > :first-child, .framer-JhwLG .framer-nj95qh > :first-child, .framer-JhwLG .framer-8u42dg > :first-child, .framer-JhwLG .framer-131fgl4 > :first-child, .framer-JhwLG .framer-1vgqxzr > :first-child { margin-top: 0px; } .framer-JhwLG .framer-9rt9nd > :last-child, .framer-JhwLG .framer-nj95qh > :last-child, .framer-JhwLG .framer-8u42dg > :last-child, .framer-JhwLG .framer-131fgl4 > :last-child, .framer-JhwLG .framer-1vgqxzr > :last-child { margin-bottom: 0px; } .framer-JhwLG .framer-nj95qh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-JhwLG .framer-13omy2 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-JhwLG .framer-13omy2 > :first-child, .framer-JhwLG .framer-mnu3to > :first-child, .framer-JhwLG .framer-8i7fdh > :first-child { margin-left: 0px; } .framer-JhwLG .framer-13omy2 > :last-child, .framer-JhwLG .framer-mnu3to > :last-child, .framer-JhwLG .framer-8i7fdh > :last-child { margin-right: 0px; } .framer-JhwLG .framer-8u42dg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-JhwLG .framer-131fgl4 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-JhwLG .framer-mnu3to > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-JhwLG .framer-1vgqxzr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-JhwLG .framer-8i7fdh > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-JhwLG { background: #fbfcfa; } .framer-JhwLG.framer-1y0ct01 { width: 390px; } .framer-JhwLG .framer-to399w { flex-direction: column; padding: 18px 20px 18px 20px; } .framer-JhwLG .framer-1xpw9t1, .framer-JhwLG .framer-nj95qh { flex-direction: column; } .framer-JhwLG .framer-1f6vln0-container, .framer-JhwLG .framer-agbeqf, .framer-JhwLG .framer-1hfuron, .framer-JhwLG .framer-ewsb8q, .framer-JhwLG .framer-1xfyzog, .framer-JhwLG .framer-5t5ugt, .framer-JhwLG .framer-ykpqog { width: 100%; } .framer-JhwLG .framer-9rt9nd { flex-direction: column; gap: 40px; justify-content: flex-start; padding: 48px 20px 48px 20px; } .framer-JhwLG .framer-a2d2yj { gap: 34px; padding: 0px; width: 100%; } .framer-JhwLG .framer-1a87s5t, .framer-JhwLG .framer-188c033 { order: 0; } .framer-JhwLG .framer-ew8ye3 { order: 1; } .framer-JhwLG .framer-16lntka { flex-direction: column; gap: 12px; width: 100%; } .framer-JhwLG .framer-1k04796, .framer-JhwLG .framer-552w7o, .framer-JhwLG .framer-rs2ohs { padding: 48px 20px 48px 20px; } .framer-JhwLG .framer-1rd335t, .framer-JhwLG .framer-1potmah, .framer-JhwLG .framer-n5qjfi, .framer-JhwLG .framer-1drfekk { flex: none; width: 100%; } .framer-JhwLG .framer-13omy2 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; order: 1; } .framer-JhwLG .framer-12jrcll { flex: none; flex-direction: column; width: 100%; } .framer-JhwLG .framer-14mbk20 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; padding: 0px; } .framer-JhwLG .framer-7l5o2n { order: 2; } .framer-JhwLG .framer-1r8g48y { order: 3; } .framer-JhwLG .framer-1xft94u { order: 4; } .framer-JhwLG .framer-qaymxj { bottom: -91px; height: var(--framer-aspect-ratio-supported, 303px); left: -102px; width: 359px; } .framer-JhwLG .framer-1m92p7n { gap: 24px; } .framer-JhwLG .framer-1a0j43b { padding: 8px; } .framer-JhwLG .framer-znmxst { padding: 48px 20px 20px 20px; } .framer-JhwLG .framer-1qgf04u { padding: 20px; } .framer-JhwLG .framer-8u42dg { flex-direction: column; gap: 32px; justify-content: flex-start; } .framer-JhwLG .framer-1te8jpj { gap: 16px; padding: 16px; width: 100%; } .framer-JhwLG .framer-131fgl4, .framer-JhwLG .framer-mnu3to, .framer-JhwLG .framer-1qqa08n { flex: none; flex-direction: column; gap: 24px; justify-content: flex-start; width: 100%; } .framer-JhwLG .framer-1f2v4cn, .framer-JhwLG .framer-pn1w13, .framer-JhwLG .framer-1s0uo3q, .framer-JhwLG .framer-1kodbz0 { flex: none; gap: 8px; padding: 0px 16px 0px 16px; width: 100%; } .framer-JhwLG .framer-1thdm1 { padding: 200px 20px 0px 20px; } .framer-JhwLG .framer-6usxrd { flex-direction: column; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JhwLG .framer-to399w, .framer-JhwLG .framer-1xpw9t1, .framer-JhwLG .framer-9rt9nd, .framer-JhwLG .framer-a2d2yj, .framer-JhwLG .framer-16lntka, .framer-JhwLG .framer-nj95qh, .framer-JhwLG .framer-13omy2, .framer-JhwLG .framer-12jrcll, .framer-JhwLG .framer-14mbk20, .framer-JhwLG .framer-1m92p7n, .framer-JhwLG .framer-8u42dg, .framer-JhwLG .framer-1te8jpj, .framer-JhwLG .framer-131fgl4, .framer-JhwLG .framer-mnu3to, .framer-JhwLG .framer-1f2v4cn, .framer-JhwLG .framer-pn1w13, .framer-JhwLG .framer-1qqa08n, .framer-JhwLG .framer-1s0uo3q, .framer-JhwLG .framer-1kodbz0, .framer-JhwLG .framer-6usxrd { gap: 0px; } .framer-JhwLG .framer-to399w > *, .framer-JhwLG .framer-1te8jpj > *, .framer-JhwLG .framer-6usxrd > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-JhwLG .framer-to399w > :first-child, .framer-JhwLG .framer-9rt9nd > :first-child, .framer-JhwLG .framer-a2d2yj > :first-child, .framer-JhwLG .framer-16lntka > :first-child, .framer-JhwLG .framer-nj95qh > :first-child, .framer-JhwLG .framer-13omy2 > :first-child, .framer-JhwLG .framer-12jrcll > :first-child, .framer-JhwLG .framer-14mbk20 > :first-child, .framer-JhwLG .framer-1m92p7n > :first-child, .framer-JhwLG .framer-8u42dg > :first-child, .framer-JhwLG .framer-1te8jpj > :first-child, .framer-JhwLG .framer-131fgl4 > :first-child, .framer-JhwLG .framer-mnu3to > :first-child, .framer-JhwLG .framer-1f2v4cn > :first-child, .framer-JhwLG .framer-pn1w13 > :first-child, .framer-JhwLG .framer-1qqa08n > :first-child, .framer-JhwLG .framer-1s0uo3q > :first-child, .framer-JhwLG .framer-1kodbz0 > :first-child, .framer-JhwLG .framer-6usxrd > :first-child { margin-top: 0px; } .framer-JhwLG .framer-to399w > :last-child, .framer-JhwLG .framer-9rt9nd > :last-child, .framer-JhwLG .framer-a2d2yj > :last-child, .framer-JhwLG .framer-16lntka > :last-child, .framer-JhwLG .framer-nj95qh > :last-child, .framer-JhwLG .framer-13omy2 > :last-child, .framer-JhwLG .framer-12jrcll > :last-child, .framer-JhwLG .framer-14mbk20 > :last-child, .framer-JhwLG .framer-1m92p7n > :last-child, .framer-JhwLG .framer-8u42dg > :last-child, .framer-JhwLG .framer-1te8jpj > :last-child, .framer-JhwLG .framer-131fgl4 > :last-child, .framer-JhwLG .framer-mnu3to > :last-child, .framer-JhwLG .framer-1f2v4cn > :last-child, .framer-JhwLG .framer-pn1w13 > :last-child, .framer-JhwLG .framer-1qqa08n > :last-child, .framer-JhwLG .framer-1s0uo3q > :last-child, .framer-JhwLG .framer-1kodbz0 > :last-child, .framer-JhwLG .framer-6usxrd > :last-child { margin-bottom: 0px; } .framer-JhwLG .framer-1xpw9t1 > *, .framer-JhwLG .framer-1xpw9t1 > :first-child, .framer-JhwLG .framer-1xpw9t1 > :last-child { margin: 0px; } .framer-JhwLG .framer-9rt9nd > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-JhwLG .framer-a2d2yj > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-JhwLG .framer-16lntka > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-JhwLG .framer-nj95qh > *, .framer-JhwLG .framer-13omy2 > *, .framer-JhwLG .framer-1m92p7n > *, .framer-JhwLG .framer-131fgl4 > *, .framer-JhwLG .framer-mnu3to > *, .framer-JhwLG .framer-1qqa08n > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-JhwLG .framer-12jrcll > *, .framer-JhwLG .framer-1f2v4cn > *, .framer-JhwLG .framer-pn1w13 > *, .framer-JhwLG .framer-1s0uo3q > *, .framer-JhwLG .framer-1kodbz0 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-JhwLG .framer-14mbk20 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-JhwLG .framer-8u42dg > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5149.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"l06iQOu9V\":{\"layout\":[\"fixed\",\"auto\"]},\"V70zw_NVV\":{\"layout\":[\"fixed\",\"auto\"]},\"B1Wfm6tex\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerMlj4XvgF_=withCSS(Component,css,\"framer-JhwLG\");export default FramerMlj4XvgF_;FramerMlj4XvgF_.displayName=\"Home\";FramerMlj4XvgF_.defaultProps={height:5149.5,width:1440};addFonts(FramerMlj4XvgF_,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4S-EiAou6Y.woff2\",weight:\"300\"},{family:\"Lexend\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v23/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LVte6KuGEo.woff2\",weight:\"600\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\",weight:\"500\"},{family:\"Lexend\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v23/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LVte6KuGEo.woff2\",weight:\"500\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bC1C4S-EiAou6Y.woff2\",weight:\"200\"},{family:\"Syne\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6hR47NCV5Z.woff2\",weight:\"400\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\",weight:\"400\"},{family:\"Syne\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6hR47NCV5Z.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"}]},...TickerFonts,...AboutUsModalFonts,...ImpactSectionFonts,...BaseFormFonts,...HeroTextFonts,...MobileViewTextFonts,...HeaderCopyFonts,...HeaderFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMlj4XvgF_\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"5149.5\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l06iQOu9V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V70zw_NVV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"B1Wfm6tex\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "n", "noopReturn", "getTForX", "l", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "n", "calcGeneratorVelocity", "t", "s", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "noopReturn", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "o", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "i", "s", "__rest", "inView$1", "o", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearf382t5", "args", "CycleVariantState", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "css", "Framerw8WDIr3N8", "withCSS", "w8WDIr3N8_default", "addPropertyControls", "ControlType", "addFonts", "FieldType", "isExternalURL", "url", "hasMinMaxStep", "type", "VERSION", "BaseForm", "withCSS", "method", "contentType", "redirectAs", "link", "inputs", "button", "styles", "extraHeaders", "style", "onSubmit", "isError", "setError", "ye", "isLoading", "setLoading", "getFocus", "setFocus", "labelPaddingPerSide", "labelPaddingTop", "labelPaddingRight", "labelPaddingBottom", "labelPaddingLeft", "labelPadding", "labelBorderRadius", "labelBorderObject", "labelShadowObject", "inputPaddingPerSide", "inputPaddingTop", "inputPaddingRight", "inputPaddingBottom", "inputPaddingLeft", "inputPadding", "inputBorderRadius", "inputBorderObject", "inputFocusObject", "inputShadowObject", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "buttonBorderRadius", "buttonBorderObject", "buttonShadowObject", "labelPaddingValue", "inputPaddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "formControls", "handleChange", "te", "event", "handleFocus", "input", "handleBlur", "handleSubmit", "headers", "key", "value", "requestOptions", "urlSearchParams", "name", "value1", "queryString", "formData", "urlSearchParams1", "name1", "value2", "bodyObject", "name2", "value3", "response", "statusCode", "data", "errorMessage", "error", "useAnimationControls", "labelShadowStyles", "labelBorderStyles", "inputFocusStylesFrom", "inputFocusStylesTo", "inputShadowStyles", "inputBorderStyles", "buttonShadowStyles", "buttonBorderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "label", "u", "requiredFlag", "getInputSpan", "getButtonSpan", "sum", "baseInput", "p", "motion", "defaultStyle", "textareaInput", "optionsHMTL", "options", "option", "selectInput", "selectChevron", "checkboxInput", "radioInput", "inputsHTML", "inputElement", "containerStyles", "Spinner", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "isRequired", "BaseForm_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearf382t5", "args", "CycleVariantState", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "p", "LayoutGroup", "u", "RichText2", "css", "FramerB0MZIcvi_", "withCSS", "B0MZIcvi_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pTgegn3Xm", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1yuy12b", "args", "onMouseEnter1vtmq5b", "onMouseEnter1tuxx3l", "onMouseLeavegklyq6", "onMouseLeaveuq4zja", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerxVnLVyQ5a", "withCSS", "xVnLVyQ5a_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithFX", "withFX", "RichText2", "ArrowsFonts", "getFonts", "xVnLVyQ5a_default", "MotionDivWithFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transition3", "transition4", "animation1", "transition5", "animation2", "transformTemplate1", "_", "t", "animation3", "transition6", "transition7", "transition8", "transition9", "transition10", "transition11", "transition12", "transition13", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "impactAndInnovation", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "IdXn8nSgg", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "pTgegn3Xm1bq85vz", "args", "pTgegn3Xmcroy64", "pTgegn3Xmcrzazy", "pTgegn3Xm1sxs0bf", "pTgegn3Xm1wvp0hk", "pTgegn3Xm3iff0e", "pTgegn3Xm18vfk0o", "pTgegn3Xmkfflxf", "pTgegn3Xmzgys56", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "css", "FrameregY0E7yn0", "withCSS", "egY0E7yn0_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "inertia", "preventDefault", "e", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "aboutUs", "brand", "career", "contactUs", "height", "home", "id", "impactAndInnovations", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "oKmvDcggD", "in9tca2Ho", "Mghla32qn", "KLCZmKLF1", "Z0xW9JTT_", "kUDoxcJWD", "vLYn9RQve", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1mmyc27", "args", "onTap484dqx", "onTap14tex2e", "onTaphgpj3u", "onTapetd5on", "onTap1lgn1p0", "onTaply7poo", "onTapjxec5j", "onTap1igqurp", "onTap1dlht2u", "onTap1qvu6ov", "onTap131tnth", "onTap1kkm6ks", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "RichText2", "Image2", "css", "FramerJRZk1Lea_", "withCSS", "JRZk1Lea_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "aboutUs", "brand", "career", "contactUs", "height", "home", "id", "impactAndInnovations", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "oKmvDcggD", "in9tca2Ho", "Mghla32qn", "KLCZmKLF1", "Z0xW9JTT_", "kUDoxcJWD", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap15hk24k", "args", "onTapxkir19", "onTapik6in0", "onTap1uwwa93", "onTap1lc8aro", "onTap30cg4a", "onTapm1h8ls", "onTapg59fdo", "onTap221bd6", "onTap16ovu7e", "onTapvl4ygn", "onTap1hl9de", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "RichText2", "Image2", "css", "FramerkFhm9OmOY", "withCSS", "kFhm9OmOY_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear57ugdx", "args", "onAppear1tq81ck", "onAppearf382t5", "CycleVariantState", "onTapv3lo84", "onTap1c51fmy", "onTap1oq7hy1", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "cx", "u", "RichText2", "SVG", "css", "FramerscvfQSE67", "withCSS", "scvfQSE67_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "TickerFonts", "getFonts", "Ticker", "RichTextWithFX", "withFX", "RichText2", "MotionDivWithFX", "motion", "AboutUsModalFonts", "scvfQSE67_default", "ImpactSectionFonts", "egY0E7yn0_default", "MotionAWithFX", "BaseFormFonts", "BaseForm_default", "HeroTextFonts", "B0MZIcvi_default", "MobileViewTextFonts", "w8WDIr3N8_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichTextWithOptimizedAppearEffect", "MotionAWithOptimizedAppearEffect", "HeaderCopyFonts", "JRZk1Lea_default", "ContainerWithFX", "Container", "HeaderFonts", "kFhm9OmOY_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "transition3", "transition4", "animation1", "transition5", "animation2", "animation3", "transition6", "animation4", "animation5", "animation6", "transition7", "transition8", "animation7", "transition9", "animation8", "transformTemplate1", "_", "t", "animation9", "animation10", "transformTemplate2", "getContainer", "_document_querySelector", "_ref", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation11", "animation12", "animation13", "animation14", "transition10", "animation15", "animation16", "animation17", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSubmit3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "elementId6", "ref8", "elementId7", "ref9", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "defaultLayoutId", "ae", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "PropertyOverrides2", "x", "ComponentViewportProvider", "Link", "SVG", "l", "AnimatePresence", "Ga", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FramerMlj4XvgF_", "withCSS", "Mlj4XvgF_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
