forked from fwij/now.gg-roblox-in-browser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
solutions.html
644 lines (644 loc) · 235 KB
/
solutions.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
<!DOCTYPE html><html lang="en"><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<script>(function() {
var host = window.location.hostname;
var element = document.createElement('script');
var firstScript = document.getElementsByTagName('script')[0];
var url = 'https://quantcast.mgr.consensu.org'
.concat('/choice/', 'mw9xJtqPQGFbC', '/', host, '/choice.js')
var uspTries = 0;
var uspTriesLimit = 3;
element.async = true;
element.type = 'text/javascript';
element.src = url;
firstScript.parentNode.insertBefore(element, firstScript);
function makeStub() {
var TCF_LOCATOR_NAME = '__tcfapiLocator';
var queue = [];
var win = window;
var cmpFrame;
function addFrame() {
var doc = win.document;
var otherCMP = !!(win.frames[TCF_LOCATOR_NAME]);
if (!otherCMP) {
if (doc.body) {
var iframe = doc.createElement('iframe');
iframe.style.cssText = 'display:none';
iframe.name = TCF_LOCATOR_NAME;
doc.body.appendChild(iframe);
} else {
setTimeout(addFrame, 5);
}
}
return !otherCMP;
}
function tcfAPIHandler() {
var gdprApplies;
var args = arguments;
if (!args.length) {
return queue;
} else if (args[0] === 'setGdprApplies') {
if (
args.length > 3 &&
args[2] === 2 &&
typeof args[3] === 'boolean'
) {
gdprApplies = args[3];
if (typeof args[2] === 'function') {
args[2]('set', true);
}
}
} else if (args[0] === 'ping') {
var retr = {
gdprApplies: gdprApplies,
cmpLoaded: false,
cmpStatus: 'stub'
};
if (typeof args[2] === 'function') {
args[2](retr);
}
} else {
queue.push(args);
}
}
function postMessageEventHandler(event) {
var msgIsString = typeof event.data === 'string';
var json = {};
try {
if (msgIsString) {
json = JSON.parse(event.data);
} else {
json = event.data;
}
} catch (ignore) {}
var payload = json.__tcfapiCall;
if (payload) {
window.__tcfapi(
payload.command,
payload.version,
function(retValue, success) {
var returnMsg = {
__tcfapiReturn: {
returnValue: retValue,
success: success,
callId: payload.callId
}
};
if (msgIsString) {
returnMsg = JSON.stringify(returnMsg);
}
if (event && event.source && event.source.postMessage) {
event.source.postMessage(returnMsg, '*');
}
},
payload.parameter
);
}
}
while (win) {
try {
if (win.frames[TCF_LOCATOR_NAME]) {
cmpFrame = win;
break;
}
} catch (ignore) {}
if (win === window.top) {
break;
}
win = win.parent;
}
if (!cmpFrame) {
addFrame();
win.__tcfapi = tcfAPIHandler;
win.addEventListener('message', postMessageEventHandler, false);
}
};
makeStub();
var uspStubFunction = function() {
var arg = arguments;
if (typeof window.__uspapi !== uspStubFunction) {
setTimeout(function() {
if (typeof window.__uspapi !== 'undefined') {
window.__uspapi.apply(window.__uspapi, arg);
}
}, 500);
}
};
var checkIfUspIsReady = function() {
uspTries++;
if (window.__uspapi === uspStubFunction && uspTries < uspTriesLimit) {
console.warn('USP is not accessible');
} else {
clearInterval(uspInterval);
}
};
if (typeof window.__uspapi === 'undefined') {
window.__uspapi = uspStubFunction;
var uspInterval = setInterval(checkIfUspIsReady, 6000);
}
})();</script><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-PRM8BWR');</script><meta name="robots" content="index,follow"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><meta http-equiv="X-UA-Compatible" content="ie=edge"/><link rel="canonical" href="solutions.html"/><meta name="description" content="With now.gg, gamers can instantly try a mobile game, pay for IAPs through digital wallets, and game developers benefit from lower IAP cuts and much more."/><meta name="baidu-site-verification" content="code-y42E1spUr0"/><meta name="theme-color" content="#FF42A5"/><meta property="og:locale" content="en"/><meta property="og:type" content="website"/><meta property="og:title" content="now.gg Mobile Cloud: Instant Play, Instant Pay"/><meta property="og:description" content="With now.gg, gamers can instantly try a mobile game, pay for IAPs through digital wallets, and game developers benefit from lower IAP cuts and much more."/><meta property="og:url" content="https://now.gg/solutions.html"/><meta property="og:site_name" content="now.gg"/><meta property="twitter:title" content="now.gg Mobile Cloud: Instant Play, Instant Pay"/><meta name="twitter:description" content="With now.gg, gamers can instantly try a mobile game, pay for IAPs through digital wallets, and game developers benefit from lower IAP cuts and much more."/><link rel="icon" href="apps-content/common/img/favicon.ico" sizes="32x32"/><link rel="icon" href="apps-content/common/img/favicon.ico" sizes="192x192"/><link rel="apple-touch-icon-precomposed" href="apps-content/common/img/favicon.ico"/><meta name="msapplication-TileImage" content="apps-content/common/img/favicon.ico"/><title>now.gg Mobile Cloud: Instant Play, Instant Pay</title><link rel="preconnect" href="https://fonts.gstatic.com"/><meta property="og:image" content="apps-content/img/OGImg.png"/><meta property="og:image:secure_url" content="apps-content/img/OGImg.png"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="og:image:type" content="image/jpeg"/><meta name="twitter:card" content="summary_large_image"/><meta name="twitter:image" content="apps-content/img/OGImg.png"/><link rel="alternate" href="solutions.html" hrefLang="x-default"/><link rel="alternate" href="tw/solutions.html" hrefLang="zh-Hant-TW"/><link rel="alternate" href="ko/solutions.html" hrefLang="ko"/><link rel="alternate" href="cn/solutions.html" hrefLang="zh-Hans-CN"/><link rel="alternate" href="ja/solutions.html" hrefLang="ja"/><meta name="next-head-count" content="34"/><noscript data-n-css=""></noscript><link rel="preload" href="_next/static/chunks/framework.04d0db93c3651611635b.js" as="script"/><link rel="preload" href="_next/static/chunks/ea88be26.383cfd70d6f2d4d898af.js" as="script"/><link rel="preload" href="_next/static/chunks/9770a1fcde7d7b6376a25a2afd36ac1302fb30da.2ed3fa1b2016ebfbf8de.js" as="script"/><link rel="preload" href="_next/static/chunks/b49ba256db75aaf04a65d51a9a8a9b01fee913e5.44e713228b5065e358de.js" as="script"/><link rel="preload" href="_next/static/chunks/53.b700420b3af67eba97f5.js" as="script"/><link rel="preload" href="_next/static/chunks/52.21a1cd4d33eb7f0f4169.js" as="script"/><link rel="preload" href="_next/static/chunks/main-a604217d9da5dffe907c.js" as="script"/><link rel="preload" href="_next/static/chunks/webpack-b25ae977b157e03de458.js" as="script"/><link rel="preload" href="_next/static/chunks/framework.04d0db93c3651611635b.js" as="script"/><link rel="preload" href="_next/static/chunks/9770a1fcde7d7b6376a25a2afd36ac1302fb30da.2ed3fa1b2016ebfbf8de.js" as="script"/><link rel="preload" href="_next/static/chunks/d65043a6a30b96783fc43a9b8ca0ad9e15124ba3.388e39bcce14534cfe45.js" as="script"/><link rel="preload" href="_next/static/chunks/a55ef1c0a6ace42c88cc595af787bfc2f5ea2290.9be3943cdffbc958caaa.js" as="script"/><link rel="preload" href="_next/static/chunks/26322ba5503bde0f471ca53a74cf7b8c77ad2d46.1909a6c1fb703beaf436.js" as="script"/><link rel="preload" href="_next/static/chunks/pages/_app-b7234e44ddb5c38fbb64.js" as="script"/><link rel="preload" href="_next/static/chunks/ea88be26.383cfd70d6f2d4d898af.js" as="script"/><link rel="preload" href="_next/static/chunks/54944ea01857f918e7d3d95729472fa2c6b382ff.c9e11f2337006320ce7f.js" as="script"/><link rel="preload" href="_next/static/chunks/b49ba256db75aaf04a65d51a9a8a9b01fee913e5.44e713228b5065e358de.js" as="script"/><link rel="preload" href="_next/static/chunks/7218279e5d3f4dcc733a7cfaa91e399dc1d8d858.12b71cb22efedf2aa4d1.js" as="script"/><link rel="preload" href="_next/static/chunks/1b67f1c5410f017eaa8647bbc72842be698fffc7.75ddc79ef77dea09e7db.js" as="script"/><link rel="preload" href="_next/static/chunks/pages/_pages/solutions-d635291118bd2f97994c.js" as="script"/><style data-styled="" data-styled-version="5.3.0">@font-face{font-family:'Poppins';font-style:normal;font-weight:400;font-display:swap;src:url(s/poppins/v15/pxiEyp8kv8JHgFVrJJbecnFHGPezSQ.woff) format("woff2");unicode-range:U+0900-097F,U+1CD0-1CF6,U+1CF8-1CF9,U+200C-200D,U+20A8,U+20B9,U+25CC,U+A830-A839,U+A8E0-A8FB;}/*!sc*/
@font-face{font-family:'Poppins';font-style:normal;font-weight:400;font-display:swap;src:url(s/poppins/v15/pxiEyp8kv8JHgFVrJJnecnFHGPezSQ.woff) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}/*!sc*/
@font-face{font-family:'Poppins';font-style:normal;font-weight:400;font-display:swap;src:url(s/poppins/v15/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}/*!sc*/
@font-face{font-family:'Poppins';font-style:normal;font-weight:500;font-display:swap;src:url(s/poppins/v15/pxiByp8kv8JHgFVrLGT9Z11lFd2JQEl8qw.woff) format("woff2");unicode-range:U+0900-097F,U+1CD0-1CF6,U+1CF8-1CF9,U+200C-200D,U+20A8,U+20B9,U+25CC,U+A830-A839,U+A8E0-A8FB;}/*!sc*/
@font-face{font-family:'Poppins';font-style:normal;font-weight:500;font-display:swap;src:url(s/poppins/v15/pxiByp8kv8JHgFVrLGT9Z1JlFd2JQEl8qw.woff) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}/*!sc*/
@font-face{font-family:'Poppins';font-style:normal;font-weight:500;font-display:swap;src:url(s/poppins/v15/pxiByp8kv8JHgFVrLGT9Z1xlFd2JQEk.woff) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}/*!sc*/
@font-face{font-family:'Poppins';font-style:normal;font-weight:600;font-display:swap;src:url(s/poppins/v15/pxiByp8kv8JHgFVrLEj6Z11lFd2JQEl8qw.woff) format("woff2");unicode-range:U+0900-097F,U+1CD0-1CF6,U+1CF8-1CF9,U+200C-200D,U+20A8,U+20B9,U+25CC,U+A830-A839,U+A8E0-A8FB;}/*!sc*/
@font-face{font-family:'Poppins';font-style:normal;font-weight:600;font-display:swap;src:url(s/poppins/v15/pxiByp8kv8JHgFVrLEj6Z1JlFd2JQEl8qw.woff) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}/*!sc*/
@font-face{font-family:'Poppins';font-style:normal;font-weight:600;font-display:swap;src:url(s/poppins/v15/pxiByp8kv8JHgFVrLEj6Z1xlFd2JQEk.woff) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}/*!sc*/
@font-face{font-family:'Poppins';font-style:normal;font-weight:700;font-display:swap;src:url(s/poppins/v15/pxiByp8kv8JHgFVrLCz7Z11lFd2JQEl8qw.woff) format("woff2");unicode-range:U+0900-097F,U+1CD0-1CF6,U+1CF8-1CF9,U+200C-200D,U+20A8,U+20B9,U+25CC,U+A830-A839,U+A8E0-A8FB;}/*!sc*/
@font-face{font-family:'Poppins';font-style:normal;font-weight:700;font-display:swap;src:url(s/poppins/v15/pxiByp8kv8JHgFVrLCz7Z1JlFd2JQEl8qw.woff) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}/*!sc*/
@font-face{font-family:'Poppins';font-style:normal;font-weight:700;font-display:swap;src:url(s/poppins/v15/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}/*!sc*/
@font-face{font-family:'Poppins';font-style:normal;font-weight:900;font-display:swap;src:url(s/poppins/v15/pxiByp8kv8JHgFVrLBT5Z11lFd2JQEl8qw.woff) format("woff2");unicode-range:U+0900-097F,U+1CD0-1CF6,U+1CF8-1CF9,U+200C-200D,U+20A8,U+20B9,U+25CC,U+A830-A839,U+A8E0-A8FB;}/*!sc*/
@font-face{font-family:'Poppins';font-style:normal;font-weight:900;font-display:swap;src:url(s/poppins/v15/pxiByp8kv8JHgFVrLBT5Z1JlFd2JQEl8qw.woff) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}/*!sc*/
@font-face{font-family:'Poppins';font-style:normal;font-weight:900;font-display:swap;src:url(s/poppins/v15/pxiByp8kv8JHgFVrLBT5Z1xlFd2JQEk.woff) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}/*!sc*/
:root{--white:#ffffff;--black:#000000;--primaryColor:#ff43a6;--paraColor:#473e5f;--titlecolor:#0b0223;--hpTitleColor:#1f1637;--termsTitleColor:#5b5273;--partnerParaColor:#8d84a5;--contactusParaColor:#797091;--hoverPrimary:#ff339e;--borderColor:#ebebeb;--lightParaColor:#a198b9;}/*!sc*/
*{box-sizing:border-box;margin:0;padding:0;}/*!sc*/
*:focus,*:active,*:hover{outline:none;}/*!sc*/
html,body{margin:0;padding:0;width:100%;}/*!sc*/
ul[class]{list-style:none;padding:0;margin:0;}/*!sc*/
button,.btn{cursor:pointer;}/*!sc*/
h1,h2,h3,h4,h5,h6,p,span{margin:0;font-weight:unset;}/*!sc*/
a{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
b,strong{font-family:var(--font-bold);}/*!sc*/
.inline-lazy{display:inline;}/*!sc*/
.main-content{min-height:calc(100vh - 297px);}/*!sc*/
html[lang='ko'] *{word-break:keep-all;}/*!sc*/
@-webkit-keyframes fadeIn{from{opacity:0;}to{opacity:1;}}/*!sc*/
@-webkit-keyframes fadeIn{from{opacity:0;}to{opacity:1;}}/*!sc*/
@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}/*!sc*/
body{font-family:'Poppins',sans-serif;-webkit-font-smoothing:antialiased;overflow-x:hidden;background-color:var(--white);padding-top:87px !important;}/*!sc*/
@media (max-width:767px){body{padding-top:83px !important;}}/*!sc*/
html:not([lang='en']) .blog-menu{display:none;}/*!sc*/
html[lang='ja'] .header-section-light .logo{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;}/*!sc*/
html[lang='ja'] .header-section-light .logo svg{width:181px;height:48px;}/*!sc*/
.flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
.flex.perfectCenter{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.flex.hrtlCenter{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
.flex.vrtlCenter{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.flex.flex-end{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;}/*!sc*/
.flex.space-btw{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}/*!sc*/
.flex.space-even{-webkit-box-pack:space-evenly;-webkit-justify-content:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;}/*!sc*/
.flex.space-around{-webkit-box-pack:space-around;-webkit-justify-content:space-around;-ms-flex-pack:space-around;justify-content:space-around;}/*!sc*/
.flex.column{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
.flex.start{-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;}/*!sc*/
.flex.pointer{cursor:pointer;}/*!sc*/
.container{max-width:1147px;width:100%;margin:0 auto;}/*!sc*/
@media (max-width:1200px){.container{padding:0 12px !important;}}/*!sc*/
@media (max-width:1024px){.container{padding:0 16px !important;}}/*!sc*/
.img-responsive{max-width:100%;width:auto;height:auto;}/*!sc*/
.image-fit{object-fit:cover;height:100%;width:100%;}/*!sc*/
.fs-modal-open,.hamburger-open{height:100vh;overflow-y:hidden;}/*!sc*/
.read-more{color:#ff43a5;cursor:pointer;}/*!sc*/
.experience-btn *{pointer-events:none;}/*!sc*/
#nprogress{pointer-events:none;}/*!sc*/
#nprogress .bar{background:#29d;position:fixed;z-index:1031;top:0;left:0;width:100%;height:2px;}/*!sc*/
#nprogress .peg{display:block;position:absolute;right:0px;width:100px;height:100%;box-shadow:0 0 10px #29d,0 0 5px #29d;opacity:1.0;-webkit-transform:rotate(3deg) translate(0px,-4px);-ms-transform:rotate(3deg) translate(0px,-4px);-webkit-transform:rotate(3deg) translate(0px,-4px);-ms-transform:rotate(3deg) translate(0px,-4px);transform:rotate(3deg) translate(0px,-4px);}/*!sc*/
#nprogress .spinner{display:block;position:fixed;z-index:1031;top:15px;right:15px;}/*!sc*/
#nprogress .spinner-icon{width:18px;height:18px;box-sizing:border-box;border:solid 2px transparent;border-top-color:#29d;border-left-color:#29d;border-radius:50%;-webkit-animation:nprogress-spinner 400ms linear infinite;-webkit-animation:nprogress-spinner 400ms linear infinite;animation:nprogress-spinner 400ms linear infinite;}/*!sc*/
.nprogress-custom-parent{overflow:hidden;position:relative;}/*!sc*/
.nprogress-custom-parent #nprogress .spinner,.nprogress-custom-parent #nprogress .bar{position:absolute;}/*!sc*/
@-webkit-keyframes nprogress-spinner{0%{-webkit-transform:rotate(0deg);}100%{-webkit-transform:rotate(360deg);}}/*!sc*/
@-webkit-keyframes nprogress-spinner{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);}100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}}/*!sc*/
@keyframes nprogress-spinner{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);}100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}}/*!sc*/
#nprogress .bar{background:var(--primaryColor) !important;}/*!sc*/
#nprogress .peg{box-shadow:0 0 10px var(--primaryColor) 0,0 0 5px var(--primaryColor) 0;}/*!sc*/
.scroll-down .header-section-light{-webkit-transition:-webkit-transform 0.4s ease-in;-webkit-transition:transform 0.4s ease-in;transition:transform 0.4s ease-in;-webkit-transform:translate3d(0,-100%,0);-ms-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);}/*!sc*/
.scroll-up .header-section-light{-webkit-transform:none;-ms-transform:none;transform:none;-webkit-transition:-webkit-transform 0.4s ease-in-out;-webkit-transition:transform 0.4s ease-in-out;transition:transform 0.4s ease-in-out;box-shadow:0px 4px 16px rgba(0,0,0,0.08);}/*!sc*/
@media (min-width:1025px){.language+.main-content{margin-top:85px;}}/*!sc*/
@media (max-width:1024px){.language+.main-content{margin-top:110px;}.unsupportedlangMsg+.main-content{margin-top:135px;}}/*!sc*/
.blog-menu{display:none;}/*!sc*/
data-styled.g1[id="sc-global-jwqxDK1"]{content:"sc-global-jwqxDK1,"}/*!sc*/
.dMZlFP{border-radius:8px;border:0;outline:none;overflow:hidden;-webkit-animation:fadeIn 1.5s;animation:fadeIn 1.5s;font-family:'Poppins';}/*!sc*/
.dMZlFP.btn-play-now *{pointer-events:none;}/*!sc*/
@media screen and (max-width:768px){.dMZlFP.mob{max-width:100%;margin-top:32px;height:56px;}.dMZlFP img,.dMZlFP video{height:auto;max-width:40px;}.dMZlFP .btn-text{font-weight:600;font-size:14px !important;line-height:150%;}}/*!sc*/
data-styled.g2[id="PlayButton__ButtonStyleWrapper-sc-tpjoyr-0"]{content:"dMZlFP,"}/*!sc*/
.dyYHqO .next-level{background:url("apps-content/img/homepage/nextLevelBg.png") no-repeat,#fff;background-size:cover;padding:41px 0 40px;box-shadow:inset 0px 1px 0px #f5f5f5;}/*!sc*/
.dyYHqO .next-level .container .next-level-content{font-weight:400;font-size:24px;line-height:36px;color:var(--paraColor);max-width:600px;width:100%;}/*!sc*/
.dyYHqO .next-level .container .next-level-content p.highlight{font-weight:600;font-size:36px;line-height:54px;color:#332a4b;}/*!sc*/
@media (max-width:767px){.dyYHqO .next-level .container .next-level-content{text-align:center;}}/*!sc*/
.dyYHqO .next-level .container .align-center{max-width:100%;text-align:center;}/*!sc*/
.dyYHqO .next-level .container .fixed-demo-btn{max-width:280px !important;border-radius:8px !important;height:56px !important;}/*!sc*/
.dyYHqO .next-level .container .fixed-demo-btn button{width:auto !important;}/*!sc*/
.dyYHqO .next-level .container .scheduleDemoBtnRef{width:100%;max-width:382px;background:#ff43a6;border-radius:8px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden;border:none;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
.dyYHqO .next-level .container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo{width:60px;}/*!sc*/
.dyYHqO .next-level .container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo img{margin-right:0px;}/*!sc*/
.dyYHqO .next-level .container .scheduleDemoBtnRef .fixed-demo-logo{width:auto;}/*!sc*/
.dyYHqO .next-level .container .scheduleDemoBtnRef .fixed-demo-logo img{margin-right:8px !important;}/*!sc*/
.dyYHqO .next-level .container .scheduleDemoBtnRef .next-level-btn{width:auto;height:56px;padding:12px 24px 12px 0px;background:#ff43a6;border-radius:4px;font-weight:600;color:#fff;border:0;font-size:18px;line-height:150%;-webkit-transition:-webkit-transform 0.3s ease-in-out,-webkit-transform 0.3s ease-in-out;-webkit-transition:transform 0.3s ease-in-out,-webkit-transform 0.3s ease-in-out;transition:transform 0.3s ease-in-out,-webkit-transform 0.3s ease-in-out;font-family:'Poppins','sans-serif';}/*!sc*/
.dyYHqO .next-level .container .scheduleDemoBtnRef .next-level-btn:hover{-webkit-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px);}/*!sc*/
.dyYHqO .next-level .container .btn-wrapper .experience-btn{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;height:56px;background:#ff42a5;padding:0 24px;color:#ffffff;font-weight:600;font-size:18px;line-height:150%;box-shadow:0px 8px 16px rgba(0,0,0,0.1);border-radius:8px;-webkit-transition:all 0.4s ease-in-out 0s;transition:all 0.4s ease-in-out 0s;}/*!sc*/
.dyYHqO .next-level .container .btn-wrapper .experience-btn:hover{-webkit-transform:translate(0px,-3px);-ms-transform:translate(0px,-3px);transform:translate(0px,-3px);}/*!sc*/
.dyYHqO .next-level .container .btn-wrapper .experience-btn .btn-text{margin-left:16px;white-space:nowrap;}/*!sc*/
@media (min-width:768px) and (max-width:1023px){.dyYHqO .next-level .container .btn-wrapper .experience-btn{padding:0 48px;}}/*!sc*/
@media (min-width:1024px){.dyYHqO .next-level .container .btn-wrapper .experience-btn{padding:0 74px;}}/*!sc*/
@media (max-width:767px){.dyYHqO .next-level .container .btn-wrapper{width:100%;}.dyYHqO .next-level .container .btn-wrapper .experience-btn{width:100%;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}}/*!sc*/
@media (max-width:767px){.dyYHqO .next-level{background:url("apps-content/img/nextLevelBgMob.png") no-repeat;background-size:cover;padding-top:33px;}.dyYHqO .next-level .container{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}.dyYHqO .next-level .container .title{margin-bottom:32px;font-weight:400;font-size:18px;line-height:150%;}.dyYHqO .next-level .container .title span{font-size:24px;line-height:31.2px;}.dyYHqO .next-level .container .btn-wrapper{margin-top:32px;}}/*!sc*/
data-styled.g3[id="NextLevel__Section-sc-1eurid-0"]{content:"dyYHqO,"}/*!sc*/
.bICNwM{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);}/*!sc*/
.bICNwM .circle{stroke-dasharray:90;stroke-dashoffset:90;stroke-linecap:round;-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-animation:animate-stroke 1.5s ease infinite,rotation 1.5s linear infinite;animation:animate-stroke 1.5s ease infinite,rotation 1.5s linear infinite;}/*!sc*/
.bICNwM .circle-2{-webkit-transform:rotate(-20deg);-ms-transform:rotate(-20deg);transform:rotate(-20deg);-webkit-animation:animate-stroke 1.5s ease-in infinite,rotation2 1.5s linear infinite;animation:animate-stroke 1.5s ease-in infinite,rotation2 1.5s linear infinite;}/*!sc*/
.bICNwM .circle-3{-webkit-transform:rotate(-60deg);-ms-transform:rotate(-60deg);transform:rotate(-60deg);-webkit-animation:animate-stroke 1.5s ease-in infinite,rotation3 1.5s linear infinite;animation:animate-stroke 1.5s ease-in infinite,rotation3 1.5s linear infinite;}/*!sc*/
@-webkit-keyframes animate-stroke{50%{stroke-dashoffset:0;}100%{stroke-dashoffset:-90;}}/*!sc*/
@keyframes animate-stroke{50%{stroke-dashoffset:0;}100%{stroke-dashoffset:-90;}}/*!sc*/
@-webkit-keyframes rotation{100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}}/*!sc*/
@keyframes rotation{100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}}/*!sc*/
@-webkit-keyframes rotation2{100%{-webkit-transform:rotate(340deg);-ms-transform:rotate(340deg);transform:rotate(340deg);}}/*!sc*/
@keyframes rotation2{100%{-webkit-transform:rotate(340deg);-ms-transform:rotate(340deg);transform:rotate(340deg);}}/*!sc*/
@-webkit-keyframes rotation3{100%{-webkit-transform:rotate(300deg);-ms-transform:rotate(300deg);transform:rotate(300deg);}}/*!sc*/
@keyframes rotation3{100%{-webkit-transform:rotate(300deg);-ms-transform:rotate(300deg);transform:rotate(300deg);}}/*!sc*/
data-styled.g5[id="style__SvgStyleWrapper-sc-4wcfru-0"]{content:"bICNwM,"}/*!sc*/
.hLpIHn{position:relative;}/*!sc*/
.hLpIHn img{max-width:100%;height:auto;z-index:1;position:relative;}/*!sc*/
data-styled.g6[id="styles__ImageStyleWrapper-sc-gsdq9-0"]{content:"hLpIHn,"}/*!sc*/
.uXjFT{position:relative;}/*!sc*/
.uXjFT img{max-width:100%;height:auto;z-index:1;position:relative;}/*!sc*/
data-styled.g7[id="style__VideoStyleWrapper-sc-1o1hl5k-0"]{content:"uXjFT,"}/*!sc*/
.ildGLV{min-width:183px;position:absolute;bottom:24px;right:16px;-webkit-filter:drop-shadow(0px 8px 24px rgba(0,0,0,0.08));filter:drop-shadow(0px 8px 24px rgba(0,0,0,0.08));}/*!sc*/
.ildGLV .locale-name{-webkit-text-decoration:underline;text-decoration:underline;font-size:12px;line-height:150%;cursor:pointer;text-align:right;}/*!sc*/
.ildGLV .locale-name .label{display:inline-block;min-width:80px;border:1px solid rgba(0,0,0,0.1);border-radius:4px;text-align:center;height:26px;padding:4px 12px 4px 8px;font-weight:normal;font-size:12px;line-height:150%;position:relative;}/*!sc*/
.ildGLV .locale-name .label::before{border:5px solid white;content:'';position:absolute;left:-21px;top:-6px;width:20px;height:10px;border-bottom:transparent;border-top-right-radius:22px;border-left:none;display:none;}/*!sc*/
.ildGLV .locale-name .label::after{margin-left:5px;content:'';border:solid;border-width:0 1px 1px 0;display:inline-block;padding:3px;-webkit-transform:rotate(-135deg) translateY(50%);-ms-transform:rotate(-135deg) translateY(50%);transform:rotate(-135deg) translateY(50%);bottom:-3px;position:relative;-webkit-transition:0.2s ease-in-out;transition:0.2s ease-in-out;}/*!sc*/
.ildGLV .locale-name .btn-focus{border:1px solid white;background-color:white;border-radius:0 0 4px 4px;}/*!sc*/
.ildGLV .language-header .language-heading{font-weight:bold;font-size:24px;line-height:140%;color:#ff42a5;}/*!sc*/
.ildGLV .modal-body{max-width:540px !important;width:100% !important;}/*!sc*/
.ildGLV .show-dropdown{display:block !important;}/*!sc*/
.ildGLV .language-body{margin-top:20px;display:none;}/*!sc*/
.ildGLV .language-body .dropdown-list{position:relative;z-index:1;}/*!sc*/
.ildGLV .language-body .dropdown-list ul li{font-size:14px;line-height:150%;background:#ffffff;height:37px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;padding:8px;cursor:pointer;box-shadow:inset 0px 1px 0px #f5f5f5;position:relative;}/*!sc*/
.ildGLV .language-body .dropdown-list ul li .link{width:100%;height:100%;color:black;}/*!sc*/
.ildGLV .language-body .dropdown-list ul li:first-child{border-top-right-radius:4px;border-top-left-radius:4px;}/*!sc*/
.ildGLV .language-body .dropdown-list ul li:last-child{border-bottom-left-radius:4px;}/*!sc*/
.ildGLV .language-body .dropdown-list ul li:hover{background:#f5f5f5;box-shadow:inset 0px 1px 0px #f5f5f5;}/*!sc*/
.ildGLV .language-body .dropdown-list ul li .tick{visibility:hidden;position:absolute;right:8px;}/*!sc*/
.ildGLV .language-body .dropdown-list ul li.selected .tick{visibility:visible;}/*!sc*/
.ildGLV .language-body .dropdown-list ul li.selected .tick .logo{vertical-align:middle;}/*!sc*/
.ildGLV .language-footer{margin-top:20px;}/*!sc*/
.ildGLV .language-footer .done-btn{width:100%;border:0;background:#ff42a5;box-shadow:0px 8px 16px rgba(0,0,0,0.1);border-radius:4px;font-weight:600;font-size:18px;line-height:150%;color:#ffffff;padding:14.5px 0;}/*!sc*/
@media screen and (max-width:768px){.ildGLV .modal-body{max-height:calc(90vh - 20px);}}/*!sc*/
.ildGLV .show{display:block;}/*!sc*/
data-styled.g12[id="style__LanguageModalStyleWarpper-sc-tzgosc-0"]{content:"ildGLV,"}/*!sc*/
.ljNBlk .footer-section{background-color:#f5f5f5;}/*!sc*/
@media (max-width:767px){.ljNBlk .footer-section{padding-top:16px;padding-bottom:0;}}/*!sc*/
.ljNBlk .footer-section .container{padding:24px 0;margin:0 auto;}/*!sc*/
.ljNBlk .footer-section .container .social-logos{margin-bottom:28px;}/*!sc*/
@media (max-width:768px){.ljNBlk .footer-section .container .social-logos{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;}}/*!sc*/
.ljNBlk .footer-section .container .social-logos .breadcrumb{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
@media (max-width:768px){.ljNBlk .footer-section .container .social-logos .breadcrumb{-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;}}/*!sc*/
@media (max-width:768px){.ljNBlk .footer-section .container .social-logos .breadcrumb .scroller{max-width:260px;overflow-x:auto;}}/*!sc*/
.ljNBlk .footer-section .container .social-logos .breadcrumb ul{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;height:auto;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;list-style:none;width:-webkit-max-content;width:-moz-max-content;width:max-content;}/*!sc*/
@media (max-width:768px){.ljNBlk .footer-section .container .social-logos .breadcrumb ul{margin-bottom:0;}}/*!sc*/
.ljNBlk .footer-section .container .social-logos .breadcrumb ul li{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:auto;color:var(--hpTitleColor);}/*!sc*/
.ljNBlk .footer-section .container .social-logos .breadcrumb ul li::before{content:'>';padding:12px;color:#5b5273;font-weight:400;font-size:20px;}/*!sc*/
.ljNBlk .footer-section .container .social-logos .breadcrumb ul li:last-child{color:#797091;}/*!sc*/
.ljNBlk .footer-section .container .social-logos .breadcrumb ul li:first-child a{color:var(--hpTitleColor);}/*!sc*/
.ljNBlk .footer-section .container .social-logos .breadcrumb ul li a{font-size:12px;font-weight:400;}/*!sc*/
.ljNBlk .footer-section .container .social-logos .breadcrumb ul li a:active,.ljNBlk .footer-section .container .social-logos .breadcrumb ul li a:visited{color:var(--hpTitleColor);}/*!sc*/
.ljNBlk .footer-section .container .social-logos .breadcrumb ul li span{font-size:12px;font-weight:400;}/*!sc*/
.ljNBlk .footer-section .container .footer-logo{display:block;}/*!sc*/
@media (max-width:768px){.ljNBlk .footer-section .container .footer-logo{margin-bottom:16px;min-width:66px;}.ljNBlk .footer-section .container .footer-logo img{width:66px;height:48px;}.ljNBlk .footer-section .container .footer-logo svg{width:66px;height:48px;}}/*!sc*/
.ljNBlk .footer-section .container .footer-list{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}/*!sc*/
.ljNBlk .footer-section .container .footer-list li{margin-bottom:20px;white-space:nowrap;}/*!sc*/
@media (max-width:767px){.ljNBlk .footer-section .container .footer-list li{white-space:unset;}}/*!sc*/
.ljNBlk .footer-section .container .footer-list li a{color:var(--hpTitleColor);font-size:14px;line-height:1.4;}/*!sc*/
@media (min-width:768px){.ljNBlk .footer-section .container .footer-list{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.ljNBlk .footer-section .container .footer-list li{margin-bottom:16px;}.ljNBlk .footer-section .container .footer-list li:not(:last-child){margin-right:24px;}.ljNBlk .footer-section .container .footer-list li a:hover{-webkit-text-decoration:underline;text-decoration:underline;}}/*!sc*/
.ljNBlk .footer-section .container .footer-list #contact-us-modal{cursor:pointer;color:var(--hpTitleColor);font-size:14px;line-height:1.4;}/*!sc*/
.ljNBlk .footer-section .container .footer-list #contact-us-modal:hover{-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
.ljNBlk .footer-section .container .copyright{color:#8d84a5;font-size:12px;line-height:18px;margin-bottom:22px;}/*!sc*/
@media (min-width:768px){.ljNBlk .footer-section .container .copyright{margin-bottom:0;}}/*!sc*/
@media (max-width:768px){.ljNBlk .footer-section .container .copyright{width:70%;}}/*!sc*/
.ljNBlk .footer-section .container .agreement{font-size:13px;line-height:17px;color:#8d84a5;margin-bottom:16px;}/*!sc*/
.ljNBlk .footer-section .container .agreement a{color:#0091ff;}/*!sc*/
.ljNBlk .footer-section .container.footer-pad{position:relative;}/*!sc*/
@media (max-width:1200px) and (min-width:768px){.ljNBlk .footer-section .container.footer-pad{padding-top:24px !important;padding:24px 16px !important;}}/*!sc*/
@media (max-width:1200px){.ljNBlk .footer-section .container{margin-left:0;}}/*!sc*/
@media (max-width:767px){.ljNBlk .footer-section .container{margin-left:0;}}/*!sc*/
.ljNBlk .footer-section .footer-strip{width:100%;background-color:#071036;padding:16px 0 15px 0;font-size:14px;line-height:150%;color:#fff;}/*!sc*/
.ljNBlk .footer-section .footer-strip .container{padding:0;}/*!sc*/
@media (max-width:1200px){.ljNBlk .footer-section .footer-strip .container{padding-left:24px;}}/*!sc*/
@media (max-width:767px){.ljNBlk .footer-section .footer-strip .container{padding-left:0;margin-left:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}}/*!sc*/
.ljNBlk .footer-section .footer-strip span{color:var(--primaryColor);}/*!sc*/
.ljNBlk .contact-us .modal-body .contact-heading{width:100%;margin-bottom:10px;}/*!sc*/
.ljNBlk .contact-us .modal-body .contact-heading h2{font-weight:bold;font-size:24px;line-height:140%;color:var(--hpTitleColor);}/*!sc*/
.ljNBlk .contact-us .modal-body .contact-para{font-size:18px;line-height:150%;color:var(--contactusParaColor);padding-bottom:20px;max-width:454px;}/*!sc*/
.ljNBlk .contact-us .modal-body .contact-para a{color:#0397eb;}/*!sc*/
.ljNBlk .contact-us .modal-body .contact-close-btn{background:var(--primaryColor);box-shadow:0px 8px 16px rgba(0,0,0,0.1);border-radius:4px;padding:11.5px 24px;width:100%;height:56px;border:0;color:#fff;font-weight:600;font-size:18px;line-height:150%;font-family:'Poppins',sans-serif;}/*!sc*/
.ljNBlk .social-icons .icon{width:48px;height:49px;}/*!sc*/
.ljNBlk .social-icons .linkedin{background:url("apps-content/img/homepage/sprite_icons.png") 0 0;background-size:cover;}/*!sc*/
.ljNBlk .social-icons .snapchat{background:url("apps-content/img/homepage/sprite_icons.png") -48px 0;background-size:cover;}/*!sc*/
.ljNBlk .social-icons .twitter{background:url("apps-content/img/homepage/sprite_icons.png") -96px 0;background-size:cover;}/*!sc*/
data-styled.g13[id="Footer__FooterStyle-sc-1rki6vl-0"]{content:"ljNBlk,"}/*!sc*/
.jlZuBq{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;padding:16px;width:360px;-webkit-transition:0.2s ease-in-out;transition:0.2s ease-in-out;position:relative;margin:0 12px 12px 0;}/*!sc*/
.jlZuBq .icon{width:48px;}/*!sc*/
.jlZuBq .content{margin-left:24px;}/*!sc*/
.jlZuBq .content .title{font-weight:600;font-size:14px;color:#0b0223;margin-top:0 !important;line-height:21px;margin-bottom:4px;}/*!sc*/
.jlZuBq .content .para{font-size:12px;color:#473e5f;min-height:57px;margin-bottom:4px;line-height:18px;}/*!sc*/
.jlZuBq .content .know-more{font-weight:600;font-size:12px;color:var(--primaryColor) !important;line-height:18px;}/*!sc*/
.jlZuBq .arrow{margin-left:5px;height:12px;width:12px;color:var(--paraColor);-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);position:absolute;right:8px;top:20px;}/*!sc*/
.jlZuBq .arrow:before{background-color:var(--paraColor);bottom:1px;content:'';height:9px;position:absolute;right:2px;-webkit-transform-origin:bottom;-ms-transform-origin:bottom;transform-origin:bottom;width:1px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);}/*!sc*/
.jlZuBq .arrow:after{border-bottom-style:solid;border-bottom-width:1px;border-right-style:solid;border-right-width:1px;content:'';display:inline-block;height:6px;left:3px;position:absolute;top:5px;width:6px;}/*!sc*/
@media (max-width:1025px){.jlZuBq .arrow{right:20px;}}/*!sc*/
.jlZuBq:hover{background-color:#f5f5f5;border-radius:8px;}/*!sc*/
.jlZuBq.active{background-color:#f5f5f5;border-radius:8px;}/*!sc*/
data-styled.g15[id="PageLink-sc-vq015r-0"]{content:"jlZuBq,"}/*!sc*/
.bfEcr .title{font-weight:600;font-size:12px;color:rgba(0,0,0,0.5);margin-bottom:8px;line-height:18px;}/*!sc*/
.bfEcr .pages{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}/*!sc*/
data-styled.g16[id="Company__CompanyMenu-sc-moqg5u-0"]{content:"bfEcr,"}/*!sc*/
.dPxGQi{min-height:335px;}/*!sc*/
.dPxGQi .title{font-weight:600;font-size:12px;color:rgba(0,0,0,0.5);margin-bottom:8px;line-height:18px;}/*!sc*/
.dPxGQi .pages{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}/*!sc*/
data-styled.g17[id="Nft__NftMenu-sc-14s2qqy-0"]{content:"dPxGQi,"}/*!sc*/
.fSxDwq{min-height:335px;}/*!sc*/
.fSxDwq .title{font-weight:600;font-size:12px;color:rgba(0,0,0,0.5);margin-bottom:8px;line-height:18px;}/*!sc*/
.fSxDwq .pages{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}/*!sc*/
.fSxDwq .pages svg.dimension{width:48px;height:48px;}/*!sc*/
data-styled.g18[id="Platform__PlatformMenu-sc-1mfcvk1-0"]{content:"fSxDwq,"}/*!sc*/
.cEHKDb .header-section-light{height:87px;position:fixed;left:0;top:0;right:0;z-index:10;max-height:108px;background:#ffffff;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
.cEHKDb .header-section-light .container{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
@media (max-width:768px){.cEHKDb .header-section-light .logo-alignment{-webkit-box-pack:center !important;-webkit-justify-content:center !important;-ms-flex-pack:center !important;justify-content:center !important;}}/*!sc*/
@media (max-width:768px){.cEHKDb .header-section-light .logo svg{height:48px;width:181px;}}/*!sc*/
.cEHKDb .header-section-light .bs-logo img{height:60px;}/*!sc*/
.cEHKDb .header-section-light .header-menu{height:100%;}/*!sc*/
.cEHKDb .header-section-light .header-menu a,.cEHKDb .header-section-light .header-menu a:active,.cEHKDb .header-section-light .header-menu a:visited,.cEHKDb .header-section-light .header-menu button{color:var(--hpTitleColor);}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item{height:100%;padding:8px;margin-right:12px;font-size:14px;line-height:150%;color:var(--hpTitleColor);cursor:pointer;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item:hover .primary-hover{color:var(--primaryColor);}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item:hover .external-menu .arrow::before{background-color:var(--primaryColor);}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item:hover .external-menu .arrow::after{border-color:var(--primaryColor);}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item:hover .mega-menu::after{border-color:var(--primaryColor);-webkit-transform:rotate(-135deg) translateY(50%);-ms-transform:rotate(-135deg) translateY(50%);transform:rotate(-135deg) translateY(50%);bottom:-3px;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item:hover .mega-menu .menu-overlay{display:block;-webkit-animation:fadeIn 0.3s;animation:fadeIn 0.3s;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .external-menu{position:relative;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .external-menu .arrow{margin-left:5px;height:12px;width:12px;color:var(--lightParaColor);-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);position:absolute;right:-15px;top:5px;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .external-menu .arrow:before{background-color:var(--lightParaColor);bottom:2px;content:'';height:9px;position:absolute;right:2px;-webkit-transform-origin:bottom;-ms-transform-origin:bottom;transform-origin:bottom;width:1px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .external-menu .arrow:after{border-bottom-style:solid;border-bottom-width:1px;border-right-style:solid;border-right-width:1px;content:'';display:inline-block;height:6px;left:3px;position:absolute;top:4px;width:6px;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay{cursor:default;display:none;padding:48px 0;color:black;left:0;position:absolute;top:87px;width:100vw;min-height:258px;background:var(--white);box-shadow:0px 6px 6px -6px rgba(0,0,0,0.8);}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-left-section{width:760px;max-width:calc(95vw - 524px);}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section{padding:48px 24px;background:linear-gradient(113.21deg,#ffedf6 0%,#ffedf6 .01%,#e4f7ff 60.94%,#fcffed 100%);top:0;right:0;bottom:0;position:absolute;width:calc(100% - 760px - (100% - 1147px) / 2);}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section .title{text-transform:capitalize;font-weight:600;font-size:12px;color:rgba(0,0,0,0.5);margin-bottom:24px;line-height:18px;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section .row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section .row .brand-assets{font-weight:600;font-size:12px;color:#473e5f;text-transform:uppercase;line-height:18px;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section .row .logo-assets{font-size:14px;color:#473e5f;margin:4px 0;height:54px;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section .row .get-assets-btn{color:var(--primaryColor);border:1px solid;background:none;border-radius:4px;padding:4px 25px;font-weight:600;font-size:10px;-webkit-letter-spacing:0.05em;-moz-letter-spacing:0.05em;-ms-letter-spacing:0.05em;letter-spacing:0.05em;display:inline-block;height:auto;line-height:15px;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section .row .get-assets-btn:hover{background:var(--primaryColor);color:var(--white);}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section .row .company-logo{border:1px solid white;width:104px;height:104px;border-radius:8px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-right:16px;-webkit-transition:0.3s ease;transition:0.3s ease;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section .row .company-logo img{width:64px;height:47px;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section .menu-image{max-width:328px;height:auto;margin-bottom:16px;border-radius:8px;-webkit-transition:0.3s ease;transition:0.3s ease;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section .menu-image img{width:calc(100% - 6px);-webkit-transform:translate(3px,3px);-ms-transform:translate(3px,3px);transform:translate(3px,3px);height:100%;max-height:200px;border-radius:8px;box-shadow:0 0 0 1px #ff43a433;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section .menu-image img.news{object-fit:contain;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section .menu-para{width:328px;line-height:21px;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section .learn-more{margin-top:16px;font-weight:600;font-size:12px;color:var(--primaryColor);height:41px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section:hover .company-logo,.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section:hover .menu-image{outline-offset:-3px;outline:3px solid var(--primaryColor);border-radius:11px;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section:hover .company-logo img,.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section:hover .menu-image img{border:0;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section:hover .learn-more{-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu .menu-overlay .mega-menu-right-section:hover .get-assets-btn{background:var(--primaryColor);color:var(--white);}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu:after{margin-left:5px;content:'';border:solid var(--lightParaColor);border-width:0 1px 1px 0;display:inline-block;padding:3px;-webkit-transform:rotate(45deg) translateY(-50%);-ms-transform:rotate(45deg) translateY(-50%);transform:rotate(45deg) translateY(-50%);bottom:0;position:relative;-webkit-transition:0.2s ease-in-out;transition:0.2s ease-in-out;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item .mega-menu:hover::after{-webkit-transform:rotate(-135deg) translateY(50%);-ms-transform:rotate(-135deg) translateY(50%);transform:rotate(-135deg) translateY(50%);bottom:-3px;}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item.active .primary-hover{color:var(--primaryColor);}/*!sc*/
.cEHKDb .header-section-light .header-menu .menu-item.active .mega-menu::after{border:solid var(--primaryColor);border-width:0 1px 1px 0;}/*!sc*/
.cEHKDb .header-section-light .header-menu .btn-item{width:0;-webkit-transition:width 1s;transition:width 1s;}/*!sc*/
.cEHKDb .header-section-light .header-menu .btn-item .header-link{border:none;padding:0;white-space:nowrap;overflow:hidden;text-overflow:clip;}/*!sc*/
.cEHKDb .header-section-light .header-menu .show-experience-btn{width:200px;margin-left:34px;}/*!sc*/
.cEHKDb .header-section-light .header-menu .show-experience-btn .header-link{border:1px solid var(--primaryColor);color:var(--primaryColor);border-radius:6px;padding:11.5px 24px;}/*!sc*/
.cEHKDb .header-section-light .header-menu .show-experience-btn .header-link:hover{border:1px solid var(--primaryColor);}/*!sc*/
.cEHKDb .header-section-light .header-link{display:block;border:1px solid #1f1637;border-radius:6px;padding:11.5px 24px;background:transparent;font-weight:600;font-size:14px;line-height:150%;color:var(--hpTitleColor);cursor:pointer;font-family:'Poppins',sans-serif;text-align:center;width:100%;-webkit-transition:all 0.4s ease-in-out 0s;transition:all 0.4s ease-in-out 0s;}/*!sc*/
.cEHKDb .header-section-light .header-link:hover{color:white !important;background:var(--primaryColor);border-color:var(--primaryColor);}/*!sc*/
@media (max-width:767px){.cEHKDb .header-section-light .header-link{border-radius:8px;color:white !important;background:var(--primaryColor);border-color:var(--primaryColor);}}/*!sc*/
.cEHKDb .header-section-light #humburger-icon{display:none;width:24px;height:24px;}/*!sc*/
@media (max-width:1025px){.cEHKDb .header-section-light{position:fixed;top:0;width:100%;-webkit-transition:top 0.3s;transition:top 0.3s;padding:16px 0;}.cEHKDb .header-section-light .container{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.cEHKDb .header-section-light .header-menu{display:none;}.cEHKDb .header-section-light #humburger-icon{display:inline-block;cursor:pointer;}.cEHKDb .header-section-light .hamburger-menu-wrapper{background-color:white;}}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper{position:fixed;top:0;right:0;bottom:0;padding-bottom:24px;z-index:99;left:100%;overflow-y:auto;-webkit-transition:left 0.5s;transition:left 0.5s;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;background-position:center center;background-size:cover;height:100%;width:100%;font-size:18px;line-height:150%;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .demoBtnHamburger{position:fixed;bottom:24px;outline:24px solid #fff;background-color:#fff;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-header{padding:16px;width:100%;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-header .hamburger-close-block{width:24px;height:24px;background:url("cms-media/2022/02/Close.png") -144px 0;background-size:cover;cursor:pointer;position:relative;top:0px;right:5px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item{position:relative;color:var(--hpTitleColor);width:100%;width:100%;background:rgba(255,255,255,0.01);padding:16px 24px;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item a{color:var(--hpTitleColor);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;line-height:150%;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item a:hover{color:var(--primaryColor);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item a:hover p,.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item a:hover .brand-assets,.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item a:hover .logo-assets{color:var(--hpTitleColor);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item a:hover .company-logo{outline-offset:-3px;outline:3px solid var(--primaryColor);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .external-menu{position:relative;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .external-menu .arrow{margin-left:5px;height:12px;width:12px;color:var(--lightParaColor);-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);position:absolute;right:-15px;top:5px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .external-menu .arrow:before{background-color:var(--lightParaColor);bottom:2px;content:'';height:9px;position:absolute;right:2px;-webkit-transform-origin:bottom;-ms-transform-origin:bottom;transform-origin:bottom;width:1px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .external-menu .arrow:after{border-bottom-style:solid;border-bottom-width:1px;border-right-style:solid;border-right-width:1px;content:'';display:inline-block;height:6px;left:3px;position:absolute;top:4px;width:6px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay{cursor:default;display:none;padding:48px 0;color:black;left:0;position:absolute;top:87px;width:100vw;min-height:258px;background:var(--white);box-shadow:0px 6px 6px -6px rgba(0,0,0,0.8);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-left-section{width:760px;max-width:calc(95vw - 524px);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section{padding:48px 24px;background:linear-gradient(113.21deg,#ffedf6 0%,#ffedf6 .01%,#e4f7ff 60.94%,#fcffed 100%);top:0;right:0;bottom:0;position:absolute;width:calc(100% - 760px - (100% - 1147px) / 2);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section .title{text-transform:capitalize;font-weight:600;font-size:12px;color:rgba(0,0,0,0.5);margin-bottom:24px;line-height:18px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section .row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section .row .brand-assets{font-weight:600;font-size:12px;color:#473e5f;text-transform:uppercase;line-height:18px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section .row .logo-assets{font-size:14px;color:#473e5f;margin:4px 0;height:54px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section .row .get-assets-btn{color:var(--primaryColor);border:1px solid;background:none;border-radius:4px;padding:4px 25px;font-weight:600;font-size:10px;-webkit-letter-spacing:0.05em;-moz-letter-spacing:0.05em;-ms-letter-spacing:0.05em;letter-spacing:0.05em;display:inline-block;height:auto;line-height:15px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section .row .get-assets-btn:hover{background:var(--primaryColor);color:var(--white);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section .row .company-logo{border:1px solid white;width:104px;height:104px;border-radius:8px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-right:16px;-webkit-transition:0.3s ease;transition:0.3s ease;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section .row .company-logo img{width:64px;height:47px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section .menu-image{max-width:328px;height:auto;margin-bottom:16px;border-radius:8px;-webkit-transition:0.3s ease;transition:0.3s ease;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section .menu-image img{width:calc(100% - 6px);-webkit-transform:translate(3px,3px);-ms-transform:translate(3px,3px);transform:translate(3px,3px);height:100%;max-height:200px;border-radius:8px;box-shadow:0 0 0 1px #ff43a433;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section .menu-image img.news{object-fit:contain;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section .menu-para{width:328px;line-height:21px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section .learn-more{margin-top:16px;font-weight:600;font-size:12px;color:var(--primaryColor);height:41px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section:hover .company-logo,.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section:hover .menu-image{outline-offset:-3px;outline:3px solid var(--primaryColor);border-radius:11px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section:hover .company-logo img,.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section:hover .menu-image img{border:0;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section:hover .learn-more{-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu .menu-overlay .mega-menu-right-section:hover .get-assets-btn{background:var(--primaryColor);color:var(--white);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu:after{margin-left:5px;content:'';border:solid var(--lightParaColor);border-width:0 1px 1px 0;display:inline-block;padding:3px;-webkit-transform:rotate(45deg) translateY(-50%);-ms-transform:rotate(45deg) translateY(-50%);transform:rotate(45deg) translateY(-50%);bottom:0;position:relative;-webkit-transition:0.2s ease-in-out;transition:0.2s ease-in-out;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .mega-menu:hover::after{-webkit-transform:rotate(-135deg) translateY(50%);-ms-transform:rotate(-135deg) translateY(50%);transform:rotate(-135deg) translateY(50%);bottom:-3px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body{margin-left:-24px;padding-left:24px;width:100vw;max-height:auto;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container{padding:0 !important;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-left-section{padding-right:30px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-left-section .title{margin-top:16px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-right-section{padding:16px 24px;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background:linear-gradient(113.21deg,#ffedf6 0%,#ffedf6 .01%,#e4f7ff 60.94%,#fcffed 100%);width:auto;margin-left:-24px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-right-section .title{text-transform:capitalize;font-weight:600;font-size:12px;color:rgba(0,0,0,0.5);margin-bottom:24px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-right-section .row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-right-section .row .company-logo{margin-right:16px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-right-section .row .brand-assets{font-weight:600;font-size:12px;line-height:18px;text-transform:uppercase;margin:4px 0px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-right-section .row .logo-assets{font-weight:normal;font-size:14px;line-height:150%;margin:4px 0px;min-height:44px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-right-section .row .get-assets-btn{color:var(--primaryColor);border:1px solid;background:none;border-radius:4px;padding:4px 25px;font-weight:600;font-size:12px;line-height:150%;-webkit-letter-spacing:0.05em;-moz-letter-spacing:0.05em;-ms-letter-spacing:0.05em;letter-spacing:0.05em;height:auto;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;line-height:15px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-right-section .row .get-assets-btn:hover{background:var(--primaryColor);color:var(--white);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-right-section .company-logo{border:1px solid white;width:104px;height:104px;border-radius:8px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-right-section .company-logo img{width:64px;height:47px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-right-section .menu-image{max-width:328px;height:auto;margin-bottom:16px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-right-section .menu-image img{width:calc(100% - 6px);-webkit-transform:translate(3px,3px);-ms-transform:translate(3px,3px);transform:translate(3px,3px);height:100%;max-height:200px;border-radius:8px;border-radius:8px;box-shadow:0 0 0 1px #ff43a433;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-right-section .menu-image .nft{object-fit:cover;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-right-section .menu-image:hover{outline-offset:-3px;outline:3px solid var(--primaryColor);border-radius:11px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-right-section .menu-image:hover img{border:0;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .body .container .mega-menu-right-section .learn-more{margin-top:16px;font-weight:600;font-size:12px;color:var(--primaryColor);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .external-menu{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .external-menu .arrow{position:absolute;right:2px;top:6px;color:var(--paraColor);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item .external-menu .arrow:before{background-color:var(--paraColor);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item:hover::after{opacity:1;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item:hover .external-menu .arrow::before{background-color:var(--primaryColor);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item:hover .external-menu .arrow::after{border-color:var(--primaryColor);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item:hover .mega-menu::after{border-color:var(--primaryColor);-webkit-transform:rotate(-135deg) translateY(50%);-ms-transform:rotate(-135deg) translateY(50%);transform:rotate(-135deg) translateY(50%);bottom:-3px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item.active .primary-hover,.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item.active .header>.text{position:relative;color:var(--primaryColor);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-item.active::after{opacity:1;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .scheduleDemoBtnRef{width:calc(100% - 48px);}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .scheduleDemoBtnRef .hamburger-btn-item{height:56px;padding:11.5px 24px;width:100%;border:0;background:var(--primaryColor);box-shadow:0px 8px 16px rgba(0,0,0,0.1);border-radius:4px;font-weight:600;color:#fff;font-size:18px;line-height:150%;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-drop{width:100%;margin:auto;margin-top:0;padding-bottom:72px;}/*!sc*/
.cEHKDb .header-section-light .hamburger-menu-wrapper .hamburger-menu-drop>li:first-child{box-shadow:none !important;}/*!sc*/
@media (max-width:767px){.cEHKDb .header-section-light{background-color:#fff;}.cEHKDb .header-section-light .bs-logo img{height:44px;}}/*!sc*/
.cEHKDb .header-section-light.open-menu .hamburger-menu-wrapper{-webkit-transition:left 0.5s;transition:left 0.5s;left:0;}/*!sc*/
.cEHKDb .scroll-down .header-section-light{-webkit-transition:-webkit-transform 0.4s ease-in;-webkit-transition:transform 0.4s ease-in;transition:transform 0.4s ease-in;-webkit-transform:translate3d(0,-100%,0);-ms-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);}/*!sc*/
.cEHKDb .scroll-up .header-section-light{-webkit-transform:none;-ms-transform:none;transform:none;-webkit-transition:-webkit-transform 0.4s ease-in-out;-webkit-transition:transform 0.4s ease-in-out;transition:transform 0.4s ease-in-out;box-shadow:0px 4px 16px rgba(0,0,0,0.08);}/*!sc*/
.cEHKDb #nprogress .bar{background:var(--primaryColor) !important;}/*!sc*/
.cEHKDb #nprogress .peg{box-shadow:0 0 10px var(--primaryColor) 0,0 0 5px var(--primaryColor) 0;}/*!sc*/
.cEHKDb .header-margin-top{top:85px !important;}/*!sc*/
@media (max-width:768px){.cEHKDb .header-margin-top{top:109px !important;}}/*!sc*/
.cEHKDb .header-margin-top-unsupportedLang{top:85px !important;}/*!sc*/
@media (max-width:768px){.cEHKDb .header-margin-top-unsupportedLang{top:133px !important;}}/*!sc*/
data-styled.g19[id="HeaderLight__HeaderStyle-sc-1kux33w-0"]{content:"cEHKDb,"}/*!sc*/
.krWrgc{position:relative;}/*!sc*/
.krWrgc img{max-width:100%;height:auto;z-index:1;position:relative;}/*!sc*/
data-styled.g22[id="style__PictureStyleWrapper-sc-3zuk8d-0"]{content:"krWrgc,"}/*!sc*/
.iehZxl .platform-parent,.iehZxl .solutions-parent{background-image:url(apps-content/img/homepage/bg-top-right.png),url(apps-content/img/homepage/hero-left-bg.png),url(apps-content/img/homepage/play-now-bg.png),url(apps-content/img/homepage/left-center-bg.png),url(apps-content/img/homepage/right-bottom-bg.png);background-position:right top,left 400px,right 400px,left 1350px,right 1400px;background-repeat:no-repeat;}/*!sc*/
@media (max-width:767px){.iehZxl .platform-parent,.iehZxl .solutions-parent{background-image:none;}}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent{font-family:'Poppins',sans-serif !important;padding:24px;background:#ffffff;box-shadow:0px 8px 24px rgba(0,0,0,0.08);border-radius:12px;max-width:540px;width:100%;position:relative;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent{width:100%;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent>header,.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent>div{margin-bottom:24px;width:100%;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .demo-header{width:auto;margin-left:auto;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .demo-header .title{font-weight:bold;font-size:24px;line-height:120%;color:var(--primaryColor);}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .demo-header .demo-close-icon{cursor:pointer;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .h2{display:none;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent.submitted-message .h1{display:none;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent.submitted-message .h2{display:block;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent.submitted-message .input-field{display:none;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent.submitted-message .success-container{display:block;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent.submitted-message .scheduleDemo-submit{display:none;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent.submitted-message .demo-header{margin-bottom:10px;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hbspt-form{max-height:calc(80vh - 20px);overflow-y:auto;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hs-form h1{font-weight:bold;font-size:24px;line-height:120%;color:var(--primaryColor);display:block;position:absolute;top:24px;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hs-form .hs_error_rollup{display:none;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hs-form-field{width:100%;margin-bottom:15px;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hs-form-field label{font-weight:600;font-size:12px;line-height:18px;text-transform:uppercase;color:var(--paraColor);opacity:0.8;margin-bottom:4px;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hs-form-field .hs-input{width:100%;height:51px;background:#ffffff;border:1px solid #ebebeb;box-sizing:border-box;box-shadow:0px 2px 8px rgba(0,0,0,0.04);border-radius:4px;padding:12px;font-size:18px;line-height:150%;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hs-form-field .hs-input::-webkit-input-placeholder{color:#5b5273;opacity:0.4;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hs-form-field .hs-input::-moz-placeholder{color:#5b5273;opacity:0.4;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hs-form-field .hs-input:-ms-input-placeholder{color:#5b5273;opacity:0.4;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hs-form-field .hs-input::placeholder{color:#5b5273;opacity:0.4;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hs-form-field .hs-input:focus{border:1px solid #ff43a6;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hs-form-field input[type='text']{-webkit-appearance:none;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hs-form-field select{cursor:pointer;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hs-form-field .hs-error-msgs .hs-error-msg{margin-top:6px;font-weight:600;font-size:12px;line-height:16px;color:#ff402f;text-transform:none;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hs-form-field .hs-error-msgs.err .error-text{display:block;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hs-form-field .hs-error-msgs.err svg{top:18% !important;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .legal-consent-container{font-size:0.7rem;margin-bottom:0.5rem;color:black;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .legal-consent-container a{color:#18a0fb;}/*!sc*/
.iehZxl .schedule-a-demo-parent .schedule-parent .demo-parent .hs-button{border:0;outline:none;width:100%;padding:11.5px 24px;background:#ff43a6;box-shadow:0px 8px 16px rgba(0,0,0,0.1);border-radius:4px;font-weight:600;font-size:18px;line-height:150%;color:#ffffff;cursor:pointer;-webkit-appearance:none;}/*!sc*/
@media (max-width:500px){.iehZxl .schedule-a-demo-parent .schedule-parent{padding:16px;}}/*!sc*/
.iehZxl .schedule-a-demo-parent .submitted-message{width:100%;margin-bottom:0 !important;}/*!sc*/
.iehZxl .schedule-a-demo-parent .submitted-message p:first-child{font-weight:bold;font-size:24px;line-height:120%;color:var(--primaryColor);position:absolute;top:24px;}/*!sc*/
.iehZxl .schedule-a-demo-parent .submitted-message p:last-child{font-size:18px;line-height:150%;color:#473e5f;opacity:0.6;margin-bottom:20px;}/*!sc*/
.iehZxl .vid-fullscreen-mode{position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;z-index:999;background:#0b0223;}/*!sc*/
.iehZxl .vid-fullscreen-mode .cross-vid{display:block;position:absolute;right:24px;top:24px;z-index:1000;width:24px;height:24px;cursor:pointer;}/*!sc*/
.iehZxl .vid-fullscreen-mode .cross-vid:before,.iehZxl .vid-fullscreen-mode .cross-vid:after{content:'';position:absolute;width:2px;height:16px;top:4px;left:11px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);background:#fff;}/*!sc*/
.iehZxl .vid-fullscreen-mode .cross-vid:after{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);}/*!sc*/
.iehZxl .hero-container{position:relative;width:100%;height:672px;}/*!sc*/
.iehZxl .hero-container .heroVid{max-height:672px;width:100%;object-fit:cover;object-position:center;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text{position:absolute;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);z-index:1;width:100%;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .swiper-text{font-size:24px;line-height:36px;color:#fff;margin-bottom:50px;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .swiper-text span{font-weight:bold;font-size:72px;line-height:108px;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .watch-vid-btn{margin-top:33.5px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .watch-vid-btn .watch-text{font-weight:400;font-size:14px;line-height:150%;margin-right:9px;color:var(--white);}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .watch-vid-btn .triangle{display:inline-block;vertical-align:middle;position:relative;width:24px;height:24px;background:white;border-radius:50%;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .watch-vid-btn .triangle:after{position:absolute;content:'';top:50%;left:50%;border:7px solid transparent;border-bottom:10px solid #ff42a5;-webkit-transform:translateX(-50%) translateY(-80%);-ms-transform:translateX(-50%) translateY(-80%);transform:translateX(-50%) translateY(-80%);}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef{max-width:305px;border-radius:8px;height:56px;background-color:#ff43a6;border:none;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .scheduleDemoBtnRefLogo{margin-left:15px;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .next-level-btn{position:relative;padding:12px 16px 12px 8px;overflow:hidden;width:100%;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .next-level-btn:hover{-webkit-transform:none;-ms-transform:none;transform:none;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .next-level-btn .tw-demo-btn-text{display:none;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .next-level-btn .rolling-text-effect{display:inline;text-indent:2px;margin-bottom:25px;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .next-level-btn .rolling-text-effect #cta-ru{-webkit-letter-spacing:-4px;-moz-letter-spacing:-4px;-ms-letter-spacing:-4px;letter-spacing:-4px;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .next-level-btn .rolling-text-effect span{position:absolute;opacity:0;overflow:hidden;color:#fff;-webkit-animation:rotateWord 30s linear infinite 0s;animation:rotateWord 30s linear infinite 0s;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .next-level-btn .rolling-text-effect span:nth-child(2){-webkit-animation-delay:3s;animation-delay:3s;color:#fff;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .next-level-btn .rolling-text-effect span:nth-child(3){-webkit-animation-delay:6s;animation-delay:6s;color:#fff;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .next-level-btn .rolling-text-effect span:nth-child(4){-webkit-animation-delay:9s;animation-delay:9s;color:#fff;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .next-level-btn .rolling-text-effect span:nth-child(5){-webkit-animation-delay:12s;animation-delay:12s;color:#fff;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .next-level-btn .rolling-text-effect span:nth-child(6){-webkit-animation-delay:15s;animation-delay:15s;color:#fff;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .next-level-btn .rolling-text-effect span:nth-child(7){-webkit-animation-delay:18s;animation-delay:18s;color:#fff;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .next-level-btn .rolling-text-effect span:nth-child(8){-webkit-animation-delay:21s;animation-delay:21s;color:#fff;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .next-level-btn .rolling-text-effect span:nth-child(9){-webkit-animation-delay:24s;animation-delay:24s;color:#fff;}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .next-level-btn .rolling-text-effect span:nth-child(10){-webkit-animation-delay:27s;animation-delay:27s;color:#fff;}/*!sc*/
@-webkit-keyframes rotateWord{0%{opacity:0;}2%{opacity:0;-webkit-transform:translateY(-30px);-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px);}4%{opacity:1;-webkit-transform:translateY(0px);-webkit-transform:translateY(0px);-ms-transform:translateY(0px);transform:translateY(0px);}11%{opacity:1;-webkit-transform:translateY(0px);-webkit-transform:translateY(0px);-ms-transform:translateY(0px);transform:translateY(0px);}13%{opacity:0;-webkit-transform:translateY(30px);-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px);}50%{opacity:0;}100%{opacity:0;}}/*!sc*/
@keyframes rotateWord{0%{opacity:0;}2%{opacity:0;-webkit-transform:translateY(-30px);-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px);}4%{opacity:1;-webkit-transform:translateY(0px);-webkit-transform:translateY(0px);-ms-transform:translateY(0px);transform:translateY(0px);}11%{opacity:1;-webkit-transform:translateY(0px);-webkit-transform:translateY(0px);-ms-transform:translateY(0px);transform:translateY(0px);}13%{opacity:0;-webkit-transform:translateY(30px);-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px);}50%{opacity:0;}100%{opacity:0;}}/*!sc*/
.iehZxl .hero-container .swiper-upper-text .scheduleDemoBtnRef .next-level-btn .rolling-text-effect .ko-text{font-size:14px;}/*!sc*/
.iehZxl .hero-container .down-arrow{position:absolute;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);bottom:10px;z-index:1;cursor:pointer;-webkit-animation:2s arrow infinite ease;animation:2s arrow infinite ease;}/*!sc*/
.iehZxl .hero-container .down-arrow img{width:28px;height:32px;}/*!sc*/
@-webkit-keyframes arrow{0%,100%{bottom:15px;}80%{bottom:1px;}}/*!sc*/
@keyframes arrow{0%,100%{bottom:15px;}80%{bottom:1px;}}/*!sc*/
.iehZxl .hero-container::after{content:'';position:absolute;background:linear-gradient(90deg,rgba(0,0,0,0.6) 0%,rgba(11,2,35,0.2) 51.57%,rgba(11,2,35,0) 100%);top:0;left:0;width:100%;height:100%;}/*!sc*/
@media (max-width:767px){.iehZxl .hero-container::after{background:linear-gradient(25.58deg,rgba(0,0,0,0.6) 10.33%,rgba(11,2,35,0.4) 45.38%,rgba(11,2,35,0) 66.1%);}}/*!sc*/
@media (max-width:767px){.iehZxl .hero-container{max-height:calc(100vh - 87px);}.iehZxl .hero-container .swiper-upper-text{bottom:48px;top:unset;-webkit-transform:none;-ms-transform:none;transform:none;}.iehZxl .hero-container .swiper-upper-text .swiper-text{font-size:18px;line-height:27px;margin-bottom:24px;}.iehZxl .hero-container .swiper-upper-text .swiper-text span{font-size:48px;line-height:58px;}}/*!sc*/
.iehZxl .hero-vid-lazy{height:100%;width:100%;}/*!sc*/
.iehZxl .hero-container{width:100%;height:672px;color:white;position:relative;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
.iehZxl .hero-container .mobileCloudVid{max-height:672px;width:100%;object-fit:cover;object-position:center;}/*!sc*/
.iehZxl .hero-container .mobileCloudVid.mob-vid{display:none;}/*!sc*/
@media (max-width:767px){.iehZxl .hero-container .mobileCloudVid{display:none;}.iehZxl .hero-container .mobileCloudVid.mob-vid{display:block;}}/*!sc*/
.iehZxl .hero-container .mobile-cloud{font-size:36px;font-weight:800;}/*!sc*/
.iehZxl .hero-container .subtitle{font-size:24px;}/*!sc*/
.iehZxl .hero-container .watch-now{font-size:14px;margin-top:33.5px;cursor:pointer;}/*!sc*/
.iehZxl .hero-container .watch-now .play-btn{margin-left:9px;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;width:24px;height:24px;background-color:white;border-radius:50%;}/*!sc*/
.iehZxl .hero-container .watch-now .play-btn img{margin:auto;margin-left:8px;}/*!sc*/
.iehZxl .hero-container::after{content:'';position:absolute;background:linear-gradient(90deg,rgba(0,0,0,0.6) 0%,rgba(11,2,35,0.2) 51.57%,rgba(11,2,35,0) 100%);top:0;left:0;width:100%;height:100%;}/*!sc*/
@media (max-width:767px){.iehZxl .hero-container::after{background:linear-gradient(25.58deg,rgba(0,0,0,0.6) 10.33%,rgba(11,2,35,0.4) 45.38%,rgba(11,2,35,0) 66.1%);}}/*!sc*/
.iehZxl .solutions-parent .steps-container,.iehZxl .solutions-parent .nowcloudos-container,.iehZxl .solutions-parent .realtime-tracking-container,.iehZxl .solutions-parent .infinity-phone-container,.iehZxl .solutions-parent .network-effect-container,.iehZxl .solutions-parent .higher-margins-container{width:100%;height:auto;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:100px 0;text-align:center;}/*!sc*/
.iehZxl .solutions-parent .steps-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .nowcloudos-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .realtime-tracking-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .infinity-phone-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .network-effect-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .higher-margins-container .scheduleDemoBtnRef{margin-top:24px;}/*!sc*/
.iehZxl .solutions-parent .steps-container .scheduleDemoBtnRef img,.iehZxl .solutions-parent .nowcloudos-container .scheduleDemoBtnRef img,.iehZxl .solutions-parent .realtime-tracking-container .scheduleDemoBtnRef img,.iehZxl .solutions-parent .infinity-phone-container .scheduleDemoBtnRef img,.iehZxl .solutions-parent .network-effect-container .scheduleDemoBtnRef img,.iehZxl .solutions-parent .higher-margins-container .scheduleDemoBtnRef img{margin-right:8px;}/*!sc*/
.iehZxl .solutions-parent .steps-container .steps,.iehZxl .solutions-parent .nowcloudos-container .steps,.iehZxl .solutions-parent .realtime-tracking-container .steps,.iehZxl .solutions-parent .infinity-phone-container .steps,.iehZxl .solutions-parent .network-effect-container .steps,.iehZxl .solutions-parent .higher-margins-container .steps{width:100%;margin-bottom:24px;}/*!sc*/
@media (max-width:1024px){.iehZxl .solutions-parent .steps-container .steps,.iehZxl .solutions-parent .nowcloudos-container .steps,.iehZxl .solutions-parent .realtime-tracking-container .steps,.iehZxl .solutions-parent .infinity-phone-container .steps,.iehZxl .solutions-parent .network-effect-container .steps,.iehZxl .solutions-parent .higher-margins-container .steps{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}}/*!sc*/
.iehZxl .solutions-parent .steps-container .steps .step-1,.iehZxl .solutions-parent .nowcloudos-container .steps .step-1,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-1,.iehZxl .solutions-parent .infinity-phone-container .steps .step-1,.iehZxl .solutions-parent .network-effect-container .steps .step-1,.iehZxl .solutions-parent .higher-margins-container .steps .step-1,.iehZxl .solutions-parent .steps-container .steps .step-2,.iehZxl .solutions-parent .nowcloudos-container .steps .step-2,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-2,.iehZxl .solutions-parent .infinity-phone-container .steps .step-2,.iehZxl .solutions-parent .network-effect-container .steps .step-2,.iehZxl .solutions-parent .higher-margins-container .steps .step-2,.iehZxl .solutions-parent .steps-container .steps .step-3,.iehZxl .solutions-parent .nowcloudos-container .steps .step-3,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-3,.iehZxl .solutions-parent .infinity-phone-container .steps .step-3,.iehZxl .solutions-parent .network-effect-container .steps .step-3,.iehZxl .solutions-parent .higher-margins-container .steps .step-3{max-width:334px;}/*!sc*/
@media (max-width:1024px){.iehZxl .solutions-parent .steps-container .steps .step-1 h2,.iehZxl .solutions-parent .nowcloudos-container .steps .step-1 h2,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-1 h2,.iehZxl .solutions-parent .infinity-phone-container .steps .step-1 h2,.iehZxl .solutions-parent .network-effect-container .steps .step-1 h2,.iehZxl .solutions-parent .higher-margins-container .steps .step-1 h2,.iehZxl .solutions-parent .steps-container .steps .step-1 p,.iehZxl .solutions-parent .nowcloudos-container .steps .step-1 p,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-1 p,.iehZxl .solutions-parent .infinity-phone-container .steps .step-1 p,.iehZxl .solutions-parent .network-effect-container .steps .step-1 p,.iehZxl .solutions-parent .higher-margins-container .steps .step-1 p,.iehZxl .solutions-parent .steps-container .steps .step-2 h2,.iehZxl .solutions-parent .nowcloudos-container .steps .step-2 h2,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-2 h2,.iehZxl .solutions-parent .infinity-phone-container .steps .step-2 h2,.iehZxl .solutions-parent .network-effect-container .steps .step-2 h2,.iehZxl .solutions-parent .higher-margins-container .steps .step-2 h2,.iehZxl .solutions-parent .steps-container .steps .step-2 p,.iehZxl .solutions-parent .nowcloudos-container .steps .step-2 p,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-2 p,.iehZxl .solutions-parent .infinity-phone-container .steps .step-2 p,.iehZxl .solutions-parent .network-effect-container .steps .step-2 p,.iehZxl .solutions-parent .higher-margins-container .steps .step-2 p,.iehZxl .solutions-parent .steps-container .steps .step-3 h2,.iehZxl .solutions-parent .nowcloudos-container .steps .step-3 h2,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-3 h2,.iehZxl .solutions-parent .infinity-phone-container .steps .step-3 h2,.iehZxl .solutions-parent .network-effect-container .steps .step-3 h2,.iehZxl .solutions-parent .higher-margins-container .steps .step-3 h2,.iehZxl .solutions-parent .steps-container .steps .step-3 p,.iehZxl .solutions-parent .nowcloudos-container .steps .step-3 p,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-3 p,.iehZxl .solutions-parent .infinity-phone-container .steps .step-3 p,.iehZxl .solutions-parent .network-effect-container .steps .step-3 p,.iehZxl .solutions-parent .higher-margins-container .steps .step-3 p{text-align:start;}}/*!sc*/
.iehZxl .solutions-parent .steps-container .steps .step-1 h2,.iehZxl .solutions-parent .nowcloudos-container .steps .step-1 h2,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-1 h2,.iehZxl .solutions-parent .infinity-phone-container .steps .step-1 h2,.iehZxl .solutions-parent .network-effect-container .steps .step-1 h2,.iehZxl .solutions-parent .higher-margins-container .steps .step-1 h2,.iehZxl .solutions-parent .steps-container .steps .step-2 h2,.iehZxl .solutions-parent .nowcloudos-container .steps .step-2 h2,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-2 h2,.iehZxl .solutions-parent .infinity-phone-container .steps .step-2 h2,.iehZxl .solutions-parent .network-effect-container .steps .step-2 h2,.iehZxl .solutions-parent .higher-margins-container .steps .step-2 h2,.iehZxl .solutions-parent .steps-container .steps .step-3 h2,.iehZxl .solutions-parent .nowcloudos-container .steps .step-3 h2,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-3 h2,.iehZxl .solutions-parent .infinity-phone-container .steps .step-3 h2,.iehZxl .solutions-parent .network-effect-container .steps .step-3 h2,.iehZxl .solutions-parent .higher-margins-container .steps .step-3 h2{font-size:24px;line-height:36px;text-align:center;color:#ff43a6;margin:8px 0;}/*!sc*/
@media (max-width:1024px){.iehZxl .solutions-parent .steps-container .steps .step-1 h2,.iehZxl .solutions-parent .nowcloudos-container .steps .step-1 h2,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-1 h2,.iehZxl .solutions-parent .infinity-phone-container .steps .step-1 h2,.iehZxl .solutions-parent .network-effect-container .steps .step-1 h2,.iehZxl .solutions-parent .higher-margins-container .steps .step-1 h2,.iehZxl .solutions-parent .steps-container .steps .step-2 h2,.iehZxl .solutions-parent .nowcloudos-container .steps .step-2 h2,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-2 h2,.iehZxl .solutions-parent .infinity-phone-container .steps .step-2 h2,.iehZxl .solutions-parent .network-effect-container .steps .step-2 h2,.iehZxl .solutions-parent .higher-margins-container .steps .step-2 h2,.iehZxl .solutions-parent .steps-container .steps .step-3 h2,.iehZxl .solutions-parent .nowcloudos-container .steps .step-3 h2,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-3 h2,.iehZxl .solutions-parent .infinity-phone-container .steps .step-3 h2,.iehZxl .solutions-parent .network-effect-container .steps .step-3 h2,.iehZxl .solutions-parent .higher-margins-container .steps .step-3 h2{text-align:start;}}/*!sc*/
.iehZxl .solutions-parent .steps-container .steps .step-1 p,.iehZxl .solutions-parent .nowcloudos-container .steps .step-1 p,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-1 p,.iehZxl .solutions-parent .infinity-phone-container .steps .step-1 p,.iehZxl .solutions-parent .network-effect-container .steps .step-1 p,.iehZxl .solutions-parent .higher-margins-container .steps .step-1 p,.iehZxl .solutions-parent .steps-container .steps .step-2 p,.iehZxl .solutions-parent .nowcloudos-container .steps .step-2 p,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-2 p,.iehZxl .solutions-parent .infinity-phone-container .steps .step-2 p,.iehZxl .solutions-parent .network-effect-container .steps .step-2 p,.iehZxl .solutions-parent .higher-margins-container .steps .step-2 p,.iehZxl .solutions-parent .steps-container .steps .step-3 p,.iehZxl .solutions-parent .nowcloudos-container .steps .step-3 p,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-3 p,.iehZxl .solutions-parent .infinity-phone-container .steps .step-3 p,.iehZxl .solutions-parent .network-effect-container .steps .step-3 p,.iehZxl .solutions-parent .higher-margins-container .steps .step-3 p{font-size:24px;line-height:36px;text-align:center;color:#473e5f;width:334px;height:108px;}/*!sc*/
@media (max-width:1024px){.iehZxl .solutions-parent .steps-container .steps .step-1 p,.iehZxl .solutions-parent .nowcloudos-container .steps .step-1 p,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-1 p,.iehZxl .solutions-parent .infinity-phone-container .steps .step-1 p,.iehZxl .solutions-parent .network-effect-container .steps .step-1 p,.iehZxl .solutions-parent .higher-margins-container .steps .step-1 p,.iehZxl .solutions-parent .steps-container .steps .step-2 p,.iehZxl .solutions-parent .nowcloudos-container .steps .step-2 p,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-2 p,.iehZxl .solutions-parent .infinity-phone-container .steps .step-2 p,.iehZxl .solutions-parent .network-effect-container .steps .step-2 p,.iehZxl .solutions-parent .higher-margins-container .steps .step-2 p,.iehZxl .solutions-parent .steps-container .steps .step-3 p,.iehZxl .solutions-parent .nowcloudos-container .steps .step-3 p,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-3 p,.iehZxl .solutions-parent .infinity-phone-container .steps .step-3 p,.iehZxl .solutions-parent .network-effect-container .steps .step-3 p,.iehZxl .solutions-parent .higher-margins-container .steps .step-3 p{text-align:start;}}/*!sc*/
.iehZxl .solutions-parent .steps-container .steps .step-1 .LazyLoad,.iehZxl .solutions-parent .nowcloudos-container .steps .step-1 .LazyLoad,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-1 .LazyLoad,.iehZxl .solutions-parent .infinity-phone-container .steps .step-1 .LazyLoad,.iehZxl .solutions-parent .network-effect-container .steps .step-1 .LazyLoad,.iehZxl .solutions-parent .higher-margins-container .steps .step-1 .LazyLoad,.iehZxl .solutions-parent .steps-container .steps .step-2 .LazyLoad,.iehZxl .solutions-parent .nowcloudos-container .steps .step-2 .LazyLoad,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-2 .LazyLoad,.iehZxl .solutions-parent .infinity-phone-container .steps .step-2 .LazyLoad,.iehZxl .solutions-parent .network-effect-container .steps .step-2 .LazyLoad,.iehZxl .solutions-parent .higher-margins-container .steps .step-2 .LazyLoad,.iehZxl .solutions-parent .steps-container .steps .step-3 .LazyLoad,.iehZxl .solutions-parent .nowcloudos-container .steps .step-3 .LazyLoad,.iehZxl .solutions-parent .realtime-tracking-container .steps .step-3 .LazyLoad,.iehZxl .solutions-parent .infinity-phone-container .steps .step-3 .LazyLoad,.iehZxl .solutions-parent .network-effect-container .steps .step-3 .LazyLoad,.iehZxl .solutions-parent .higher-margins-container .steps .step-3 .LazyLoad{height:341px;}/*!sc*/
.iehZxl .solutions-parent .steps-container .subtitle,.iehZxl .solutions-parent .nowcloudos-container .subtitle,.iehZxl .solutions-parent .realtime-tracking-container .subtitle,.iehZxl .solutions-parent .infinity-phone-container .subtitle,.iehZxl .solutions-parent .network-effect-container .subtitle,.iehZxl .solutions-parent .higher-margins-container .subtitle{font-size:18px;font-weight:400;margin-top:30px;text-align:center;max-width:940px;margin-bottom:24px;color:#473e5f;}/*!sc*/
.iehZxl .solutions-parent .steps-container .fixed-demo-btn,.iehZxl .solutions-parent .nowcloudos-container .fixed-demo-btn,.iehZxl .solutions-parent .realtime-tracking-container .fixed-demo-btn,.iehZxl .solutions-parent .infinity-phone-container .fixed-demo-btn,.iehZxl .solutions-parent .network-effect-container .fixed-demo-btn,.iehZxl .solutions-parent .higher-margins-container .fixed-demo-btn{max-width:280px !important;border-radius:8px !important;height:56px !important;}/*!sc*/
.iehZxl .solutions-parent .steps-container .fixed-demo-btn button,.iehZxl .solutions-parent .nowcloudos-container .fixed-demo-btn button,.iehZxl .solutions-parent .realtime-tracking-container .fixed-demo-btn button,.iehZxl .solutions-parent .infinity-phone-container .fixed-demo-btn button,.iehZxl .solutions-parent .network-effect-container .fixed-demo-btn button,.iehZxl .solutions-parent .higher-margins-container .fixed-demo-btn button{width:auto !important;}/*!sc*/
.iehZxl .solutions-parent .steps-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .nowcloudos-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .realtime-tracking-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .infinity-phone-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .network-effect-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .higher-margins-container .scheduleDemoBtnRef{width:100%;max-width:382px;background:#ff43a6;border-radius:8px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden;border:none;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
.iehZxl .solutions-parent .steps-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo,.iehZxl .solutions-parent .nowcloudos-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo,.iehZxl .solutions-parent .realtime-tracking-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo,.iehZxl .solutions-parent .infinity-phone-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo,.iehZxl .solutions-parent .network-effect-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo,.iehZxl .solutions-parent .higher-margins-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo{width:60px;}/*!sc*/
.iehZxl .solutions-parent .steps-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo img,.iehZxl .solutions-parent .nowcloudos-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo img,.iehZxl .solutions-parent .realtime-tracking-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo img,.iehZxl .solutions-parent .infinity-phone-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo img,.iehZxl .solutions-parent .network-effect-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo img,.iehZxl .solutions-parent .higher-margins-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo img{margin-right:0px;}/*!sc*/
.iehZxl .solutions-parent .steps-container .scheduleDemoBtnRef .fixed-demo-logo,.iehZxl .solutions-parent .nowcloudos-container .scheduleDemoBtnRef .fixed-demo-logo,.iehZxl .solutions-parent .realtime-tracking-container .scheduleDemoBtnRef .fixed-demo-logo,.iehZxl .solutions-parent .infinity-phone-container .scheduleDemoBtnRef .fixed-demo-logo,.iehZxl .solutions-parent .network-effect-container .scheduleDemoBtnRef .fixed-demo-logo,.iehZxl .solutions-parent .higher-margins-container .scheduleDemoBtnRef .fixed-demo-logo{width:auto;}/*!sc*/
.iehZxl .solutions-parent .steps-container .scheduleDemoBtnRef .fixed-demo-logo img,.iehZxl .solutions-parent .nowcloudos-container .scheduleDemoBtnRef .fixed-demo-logo img,.iehZxl .solutions-parent .realtime-tracking-container .scheduleDemoBtnRef .fixed-demo-logo img,.iehZxl .solutions-parent .infinity-phone-container .scheduleDemoBtnRef .fixed-demo-logo img,.iehZxl .solutions-parent .network-effect-container .scheduleDemoBtnRef .fixed-demo-logo img,.iehZxl .solutions-parent .higher-margins-container .scheduleDemoBtnRef .fixed-demo-logo img{margin-right:8px !important;}/*!sc*/
.iehZxl .solutions-parent .steps-container .scheduleDemoBtnRef .next-level-btn,.iehZxl .solutions-parent .nowcloudos-container .scheduleDemoBtnRef .next-level-btn,.iehZxl .solutions-parent .realtime-tracking-container .scheduleDemoBtnRef .next-level-btn,.iehZxl .solutions-parent .infinity-phone-container .scheduleDemoBtnRef .next-level-btn,.iehZxl .solutions-parent .network-effect-container .scheduleDemoBtnRef .next-level-btn,.iehZxl .solutions-parent .higher-margins-container .scheduleDemoBtnRef .next-level-btn{width:auto;height:56px;padding:12px 24px 12px 0px;background:#ff43a6;border-radius:4px;font-weight:600;color:#fff;border:0;font-size:18px;line-height:150%;-webkit-transition:-webkit-transform 0.3s ease-in-out,-webkit-transform 0.3s ease-in-out;-webkit-transition:transform 0.3s ease-in-out,-webkit-transform 0.3s ease-in-out;transition:transform 0.3s ease-in-out,-webkit-transform 0.3s ease-in-out;font-family:'Poppins','sans-serif';}/*!sc*/
.iehZxl .solutions-parent .steps-container .scheduleDemoBtnRef .next-level-btn:hover,.iehZxl .solutions-parent .nowcloudos-container .scheduleDemoBtnRef .next-level-btn:hover,.iehZxl .solutions-parent .realtime-tracking-container .scheduleDemoBtnRef .next-level-btn:hover,.iehZxl .solutions-parent .infinity-phone-container .scheduleDemoBtnRef .next-level-btn:hover,.iehZxl .solutions-parent .network-effect-container .scheduleDemoBtnRef .next-level-btn:hover,.iehZxl .solutions-parent .higher-margins-container .scheduleDemoBtnRef .next-level-btn:hover{-webkit-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px);}/*!sc*/
.iehZxl .solutions-parent .steps-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .nowcloudos-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .realtime-tracking-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .infinity-phone-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .network-effect-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .higher-margins-container .scheduleDemoBtnRef{max-width:356px;height:56px;padding:12px 16px;}/*!sc*/
.iehZxl .solutions-parent .steps-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo,.iehZxl .solutions-parent .nowcloudos-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo,.iehZxl .solutions-parent .realtime-tracking-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo,.iehZxl .solutions-parent .infinity-phone-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo,.iehZxl .solutions-parent .network-effect-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo,.iehZxl .solutions-parent .higher-margins-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo{margin-left:0;width:60px;}/*!sc*/
.iehZxl .solutions-parent .steps-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo img,.iehZxl .solutions-parent .nowcloudos-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo img,.iehZxl .solutions-parent .realtime-tracking-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo img,.iehZxl .solutions-parent .infinity-phone-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo img,.iehZxl .solutions-parent .network-effect-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo img,.iehZxl .solutions-parent .higher-margins-container .scheduleDemoBtnRef .scheduleDemoBtnRefLogo img{margin:8px 8px 8px 0;}/*!sc*/
.iehZxl .solutions-parent .steps-container .scheduleDemoBtnRef .next-level-btn,.iehZxl .solutions-parent .nowcloudos-container .scheduleDemoBtnRef .next-level-btn,.iehZxl .solutions-parent .realtime-tracking-container .scheduleDemoBtnRef .next-level-btn,.iehZxl .solutions-parent .infinity-phone-container .scheduleDemoBtnRef .next-level-btn,.iehZxl .solutions-parent .network-effect-container .scheduleDemoBtnRef .next-level-btn,.iehZxl .solutions-parent .higher-margins-container .scheduleDemoBtnRef .next-level-btn{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;position:relative;padding:0;overflow:hidden;font-family:'Poppins',sans-serif;font-weight:600;}/*!sc*/
.iehZxl .solutions-parent .steps-container .scheduleDemoBtnRef .next-level-btn:hover,.iehZxl .solutions-parent .nowcloudos-container .scheduleDemoBtnRef .next-level-btn:hover,.iehZxl .solutions-parent .realtime-tracking-container .scheduleDemoBtnRef .next-level-btn:hover,.iehZxl .solutions-parent .infinity-phone-container .scheduleDemoBtnRef .next-level-btn:hover,.iehZxl .solutions-parent .network-effect-container .scheduleDemoBtnRef .next-level-btn:hover,.iehZxl .solutions-parent .higher-margins-container .scheduleDemoBtnRef .next-level-btn:hover{-webkit-transform:none;-ms-transform:none;transform:none;}/*!sc*/
@media (max-width:767px){.iehZxl .solutions-parent .steps-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .nowcloudos-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .realtime-tracking-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .infinity-phone-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .network-effect-container .scheduleDemoBtnRef,.iehZxl .solutions-parent .higher-margins-container .scheduleDemoBtnRef{width:280px;}}/*!sc*/
.iehZxl .solutions-parent .reach-next-container,.iehZxl .solutions-parent .freedom-pay-container{width:100%;height:auto;margin-bottom:80px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
.iehZxl .solutions-parent .reach-next-container .image,.iehZxl .solutions-parent .freedom-pay-container .image{position:relative;}/*!sc*/
.iehZxl .solutions-parent .reach-next-container .image-text,.iehZxl .solutions-parent .freedom-pay-container .image-text{position:absolute;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);left:100px;max-width:510px;}/*!sc*/
.iehZxl .solutions-parent .laptop-container{width:100%;}/*!sc*/
.iehZxl .solutions-parent .laptop-container .LazyLoad{width:100%;}/*!sc*/
.iehZxl .solutions-parent .nowcloudos-container{margin-top:0;}/*!sc*/
.iehZxl .solutions-parent .nowcloudos-container .nowcloudos .nowcloudos-block{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:column;-ms-flex-flow:column;flex-flow:column;}/*!sc*/
.iehZxl .solutions-parent .nowcloudos-container .nowcloudos .nowcloudos-block .cloud-os-img{max-width:252px;margin:auto;}/*!sc*/
.iehZxl .solutions-parent .nowcloudos-container .nowcloudos .nowcloudos-block .cloud-list{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;position:relative;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;padding-top:36px;}/*!sc*/
.iehZxl .solutions-parent .nowcloudos-container .nowcloudos .nowcloudos-block .cloud-list::before{content:'';background:url(apps-content/img/platforms/border-img.png) no-repeat;width:67%;position:absolute;-webkit-transform:translate(-50%);-ms-transform:translate(-50%);transform:translate(-50%);left:50%;height:30px;background-size:contain;top:35px;}/*!sc*/
.iehZxl .solutions-parent .nowcloudos-container .nowcloudos .nowcloudos-block .cloud-list .cloud-item{padding:0 50px;width:33.33%;position:relative;}/*!sc*/
.iehZxl .solutions-parent .nowcloudos-container .nowcloudos .nowcloudos-block .cloud-list .cloud-item .LazyLoad{min-height:250px;}/*!sc*/
.iehZxl .solutions-parent .nowcloudos-container .nowcloudos .nowcloudos-block .cloud-list .cloud-item:nth-child(2n)::before{position:absolute;content:'';height:40px;width:2px;background-color:#a198b9;left:50%;top:-20px;}/*!sc*/
.iehZxl .solutions-parent .nowcloudos-container .nowcloudos .nowcloudos-block .cloud-list .cloud-item p{margin:0;font-size:18px;color:#473e5f;font-weight:600;line-height:1.5;text-align:center;}/*!sc*/
.iehZxl .solutions-parent .nowcloudos-container .nowcloudos .nowcloudos-block .cloud-list .cloud-item img{max-height:233px;margin-bottom:16px;}/*!sc*/
.iehZxl .solutions-parent .realtime-tracking-container{margin-top:0;}/*!sc*/
.iehZxl .solutions-parent .realtime-tracking-container .features{margin:25px auto;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:auto;}/*!sc*/
.iehZxl .solutions-parent .realtime-tracking-container .features li{display:inline;}/*!sc*/
.iehZxl .solutions-parent .realtime-tracking-container .features li:first-child{margin-right:20px;}/*!sc*/
@media (max-width:767px){.iehZxl .solutions-parent .realtime-tracking-container .features li{width:155px;text-align:center;}}/*!sc*/
.iehZxl .solutions-parent .realtime-tracking-container .features li::before{content:'';display:inline-block;vertical-align:middle;margin:0 8px;width:8px;height:8px;border-radius:50%;background-color:var(--primaryColor);}/*!sc*/
.iehZxl .solutions-parent .realtime-tracking-container .subtitle{max-width:720px;}/*!sc*/
@media only screen and (min-width:1023px){.iehZxl .solutions-parent .laptop-container .lazyload-container{min-height:650px;}.iehZxl .solutions-parent .reach-next-container .image,.iehZxl .solutions-parent .freedom-pay-container .image,.iehZxl .solutions-parent .freedom-pay-container .image{width:100%;}.iehZxl .solutions-parent .reach-next-container .image .LazyLoad,.iehZxl .solutions-parent .freedom-pay-container .image .LazyLoad,.iehZxl .solutions-parent .freedom-pay-container .image .LazyLoad{min-height:740px;}}/*!sc*/
@media only screen and (max-width:768px){.iehZxl .solutions-parent .laptop-container .lazyload-container{min-height:190px;}.iehZxl .solutions-parent .reach-next-container .image,.iehZxl .solutions-parent .freedom-pay-container .image,.iehZxl .solutions-parent .freedom-pay-container .image{width:100%;}.iehZxl .solutions-parent .reach-next-container .image .LazyLoad,.iehZxl .solutions-parent .freedom-pay-container .image .LazyLoad,.iehZxl .solutions-parent .freedom-pay-container .image .LazyLoad{min-height:590px;}}/*!sc*/
.iehZxl .solutions-parent .freedom-pay-container .image-text{left:auto;right:100px;}/*!sc*/
.iehZxl .solutions-parent .network-effect-container,.iehZxl .solutions-parent .higher-margins-container{margin-top:0;}/*!sc*/
.iehZxl .solutions-parent .title{font-size:36px;font-weight:400;margin-bottom:30px;}/*!sc*/
.iehZxl .solutions-parent .title .highlight{color:var(--primaryColor);}/*!sc*/
@media (max-width:1024px){.iehZxl .solutions-parent .reach-next-container .image-text,.iehZxl .solutions-parent .freedom-pay-container .image-text{left:50px;}.iehZxl .solutions-parent .freedom-pay-container .image-text{right:50px;left:auto;}}/*!sc*/
@media only screen and (max-width:952px){.iehZxl .solutions-parent .reach-next-container .image-text,.iehZxl .solutions-parent .freedom-pay-container .image-text{bottom:24px;left:24px;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;}}/*!sc*/
@media (max-width:767px){.iehZxl .solutions-parent .hero-container{padding-bottom:50px;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;background:linear-gradient(360deg,rgba(0,0,0,0.6) 0%,rgba(11,2,35,0.2) 51.57%,rgba(11,2,35,0) 100%);}.iehZxl .solutions-parent .reach-next-container,.iehZxl .solutions-parent .freedom-pay-container{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding-bottom:0;}.iehZxl .solutions-parent .reach-next-container .image-text,.iehZxl .solutions-parent .freedom-pay-container .image-text{bottom:24px;left:24px;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;}.iehZxl .solutions-parent .realtime-tracking-container .features{width:auto;}.iehZxl .solutions-parent .nowcloudos-container,.iehZxl .solutions-parent .steps-container,.iehZxl .solutions-parent .nowcloudos-container,.iehZxl .solutions-parent .realtime-tracking-container,.iehZxl .solutions-parent .infinity-phone-container,.iehZxl .solutions-parent .network-effect-container,.iehZxl .solutions-parent .higher-margins-container{text-align:start;}.iehZxl .solutions-parent .nowcloudos-container .subtitle,.iehZxl .solutions-parent .steps-container .subtitle,.iehZxl .solutions-parent .nowcloudos-container .subtitle,.iehZxl .solutions-parent .realtime-tracking-container .subtitle,.iehZxl .solutions-parent .infinity-phone-container .subtitle,.iehZxl .solutions-parent .network-effect-container .subtitle,.iehZxl .solutions-parent .higher-margins-container .subtitle{text-align:start;}.iehZxl .solutions-parent .nowcloudos-container .nowcloudos .nowcloudos-block .cloud-os-img{margin:0;}.iehZxl .solutions-parent .nowcloudos-container .nowcloudos .nowcloudos-block .cloud-list{-webkit-flex-flow:column;-ms-flex-flow:column;flex-flow:column;}.iehZxl .solutions-parent .nowcloudos-container .nowcloudos .nowcloudos-block .cloud-list::before{content:'';background:url(apps-content/img/platforms/border-bg-mob.png) no-repeat;position:absolute;width:90px;background-size:cover;top:0;left:56px;height:85%;}.iehZxl .solutions-parent .nowcloudos-container .nowcloudos .nowcloudos-block .cloud-list .cloud-item{width:100%;padding:0;padding-left:30px;}.iehZxl .solutions-parent .nowcloudos-container .nowcloudos .nowcloudos-block .cloud-list .cloud-item:not(:last-child){margin-bottom:68px;}.iehZxl .solutions-parent .nowcloudos-container .nowcloudos .nowcloudos-block .cloud-list .cloud-item:not(:last-child)::before{content:'';background-color:#a198b9;position:absolute;width:90px !important;left:12px !important;top:90px !important;height:1px !important;}.iehZxl .solutions-parent .title{font-size:24px;display:block;}.iehZxl .solutions-parent .title div{display:inline-block;}}/*!sc*/
data-styled.g36[id="solutions__SolutionsStyleWrapper-sc-1nuy518-0"]{content:"iehZxl,"}/*!sc*/
</style></head><body><div id="__next"><div lang="en" class="solutions__SolutionsStyleWrapper-sc-1nuy518-0 iehZxl"><noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PRM8BWR" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><div lang="en" class="HeaderLight__HeaderStyle-sc-1kux33w-0 cEHKDb"><header class="header-section-light"><div class="flex container space-btw"><a class="logo" href="index.html"><img alt="now.gg logo" src="apps-content/img/nowgg-logo.png" width="181" height="48"/></a><ul class="flex header-menu perfectCenter"><li class="flex menu-item active perfectCenter"><div class="mega-menu primary-hover">Platform<div class="menu-overlay"><div class="container"><div class="mega-menu-left-section"><div class="Platform__PlatformMenu-sc-1mfcvk1-0 fSxDwq"><h2 class="title">Platform</h2><div class="pages"><a href="platform.html" target="_self" class="PageLink-sc-vq015r-0 jlZuBq"><div class="icon"><svg width="48" height="49" viewBox="0 0 48 49" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.9901 32.6386C28.5219 32.6386 32.1957 28.9648 32.1957 24.433C32.1957 19.9012 28.5219 16.2274 23.9901 16.2274C19.4583 16.2274 15.7845 19.9012 15.7845 24.433C15.7845 28.9648 19.4583 32.6386 23.9901 32.6386Z" stroke="#473E5F" stroke-linecap="round" stroke-linejoin="round"></path><path d="M32.3109 24.4335H39.5962" stroke="#473E5F" stroke-linecap="round" stroke-linejoin="round"></path><path d="M43.1625 27.3281C44.7296 27.3281 46 26.0577 46 24.4906C46 22.9236 44.7296 21.6532 43.1625 21.6532C41.5954 21.6532 40.3251 22.9236 40.3251 24.4906C40.3251 26.0577 41.5954 27.3281 43.1625 27.3281Z" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M15.6692 24.5664H8.40308" stroke="#473E5F" stroke-linecap="round" stroke-linejoin="round"></path><path d="M4.83744 27.3281C6.40452 27.3281 7.67489 26.0577 7.67489 24.4906C7.67489 22.9236 6.40452 21.6532 4.83744 21.6532C3.27037 21.6532 2 22.9236 2 24.4906C2 26.0577 3.27037 27.3281 4.83744 27.3281Z" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M24.0664 32.8099V40.0953" stroke="#473E5F" stroke-linecap="round" stroke-linejoin="round"></path><path d="M23.9906 46.5C25.5577 46.5 26.8281 45.2296 26.8281 43.6625C26.8281 42.0954 25.5577 40.8251 23.9906 40.8251C22.4236 40.8251 21.1532 42.0954 21.1532 43.6625C21.1532 45.2296 22.4236 46.5 23.9906 46.5Z" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M23.9326 16.1692V8.90308" stroke="#473E5F" stroke-linecap="round" stroke-linejoin="round"></path><path d="M23.9906 8.17489C25.5577 8.17489 26.8281 6.90452 26.8281 5.33744C26.8281 3.77037 25.5577 2.5 23.9906 2.5C22.4236 2.5 21.1532 3.77037 21.1532 5.33744C21.1532 6.90452 22.4236 8.17489 23.9906 8.17489Z" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M17.5485 18.7777L15.0562 16.2854" stroke="#473E5F" stroke-linecap="round" stroke-linejoin="round"></path><path d="M13.8862 16.7445C14.8392 16.7445 15.6117 15.972 15.6117 15.0191C15.6117 14.0661 14.8392 13.2936 13.8862 13.2936C12.9333 13.2936 12.1608 14.0661 12.1608 15.0191C12.1608 15.972 12.9333 16.7445 13.8862 16.7445Z" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M29.818 30.9508L32.3103 33.4432" stroke="#473E5F" stroke-linecap="round" stroke-linejoin="round"></path><path d="M33.4804 36.4145C34.4333 36.4145 35.2058 35.6419 35.2058 34.689C35.2058 33.736 34.4333 32.9635 33.4804 32.9635C32.5274 32.9635 31.7549 33.736 31.7549 34.689C31.7549 35.6419 32.5274 36.4145 33.4804 36.4145Z" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M18.2577 30.3367L14.8643 33.7301" stroke="#473E5F" stroke-linecap="round" stroke-linejoin="round"></path><path d="M13.8478 36.377C14.8007 36.377 15.5733 35.6044 15.5733 34.6515C15.5733 33.6985 14.8007 32.926 13.8478 32.926C12.8948 32.926 12.1223 33.6985 12.1223 34.6515C12.1223 35.6044 12.8948 36.377 13.8478 36.377Z" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M29.8761 18.6234L32.2534 16.2461" stroke="#473E5F" stroke-linecap="round" stroke-linejoin="round"></path><path d="M33.5187 16.8025C34.4716 16.8025 35.2442 16.03 35.2442 15.077C35.2442 14.1241 34.4716 13.3516 33.5187 13.3516C32.5657 13.3516 31.7932 14.1241 31.7932 15.077C31.7932 16.03 32.5657 16.8025 33.5187 16.8025Z" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M21.153 21.9977H19.6768C19.6532 22.2553 19.6866 22.515 19.7746 22.7584C19.8626 23.0017 20.0031 23.2226 20.186 23.4056C20.369 23.5886 20.59 23.729 20.8333 23.817C21.0766 23.905 21.3363 23.9384 21.594 23.9149L21.153 21.9977Z" fill="#FF42A5"></path><path d="M26.9998 21.9977L26.5013 23.9149C26.759 23.9384 27.0187 23.905 27.262 23.817C27.5053 23.729 27.7263 23.5886 27.9093 23.4056C28.0922 23.2226 28.2327 23.0017 28.3207 22.7584C28.4087 22.515 28.4421 22.2553 28.4185 21.9977H26.9998Z" fill="#FF42A5"></path><path d="M25.8887 27.2517H24.7959L24.5083 25.833C25.9078 25.4303 27.0006 23.2064 27.0006 20.5223H21.1149C21.1149 23.1872 22.1693 25.392 23.5689 25.8138L23.2813 27.2517H22.246C22.0851 27.2788 21.939 27.362 21.8336 27.4866C21.7283 27.6112 21.6705 27.7691 21.6705 27.9323C21.6705 28.0955 21.7283 28.2534 21.8336 28.378C21.939 28.5026 22.0851 28.5858 22.246 28.6129H25.8887C26.0496 28.5858 26.1957 28.5026 26.301 28.378C26.4064 28.2534 26.4642 28.0955 26.4642 27.9323C26.4642 27.7691 26.4064 27.6112 26.301 27.4866C26.1957 27.362 26.0496 27.2788 25.8887 27.2517Z" fill="#FF42A5"></path></svg></div><div class="content"><h2 class="title">nowCloud OS</h2><p class="para">Bringing gamers and game developers together on the world's first mobile cloud PaaS.</p><span class="know-more">Learn More</span></div></a><a href="payments.html" target="_self" class="PageLink-sc-vq015r-0 jlZuBq"><div class="icon"><img src="apps-content/img/NFG/payments-sdk.png" alt="payments-sdk" width="48" height="48"/></div><div class="content"><h2 class="title">Payments</h2><p class="para">Unlocking new monetization opportunities for game developers with integrated cloud payments</p><span class="know-more">Learn More</span></div></a><a href="solutions.html" target="_self" class="PageLink-sc-vq015r-0 jlZuBq active"><div class="icon"><svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.38789 8H38.3543C39.813 8 41.2119 8.57946 42.2433 9.6109C43.2748 10.6423 43.8542 12.0413 43.8542 13.5V33.6664H3.88794V13.5C3.88794 12.0413 4.4674 10.6423 5.49884 9.6109C6.53028 8.57946 7.92921 8 9.38789 8V8Z" stroke="#0B0223" stroke-miterlimit="10"></path><path d="M32.8181 21.6947C33.1133 20.9798 33.2629 20.2132 33.2581 19.4397C33.269 18.104 32.8238 16.8046 31.9961 15.7563C31.1684 14.7079 30.0078 13.9734 28.706 13.6742C27.4043 13.3749 26.0394 13.5288 24.837 14.1105C23.6345 14.6921 22.6666 15.6667 22.0932 16.8731C21.4549 16.1003 20.5517 15.593 19.5597 15.4498C18.5678 15.3067 17.558 15.538 16.7273 16.0987C15.8965 16.6594 15.3043 17.5093 15.066 18.4828C14.8277 19.4563 14.9604 20.4837 15.4382 21.3647C15.2598 21.4531 15.0934 21.564 14.9432 21.6947C14.469 22.0722 14.0858 22.5517 13.8224 23.0976C13.559 23.6435 13.422 24.2418 13.4216 24.848C13.4179 25.4548 13.5531 26.0545 13.8169 26.601C14.0806 27.1476 14.4659 27.6266 14.9432 28.0013H32.3964C32.923 27.6775 33.3647 27.2327 33.6849 26.704C34.0051 26.1753 34.1946 25.5778 34.2377 24.9611C34.2807 24.3444 34.176 23.7264 33.9323 23.1583C33.6886 22.5903 33.3129 22.0885 32.8364 21.6947" fill="#FF42A5"></path><path d="M32.8181 21.6947C33.1133 20.9798 33.2629 20.2132 33.2581 19.4397C33.269 18.104 32.8238 16.8046 31.9961 15.7563C31.1684 14.7079 30.0078 13.9734 28.706 13.6742C27.4043 13.3749 26.0394 13.5288 24.837 14.1105C23.6345 14.6921 22.6666 15.6667 22.0932 16.8731C21.4549 16.1003 20.5517 15.593 19.5597 15.4498C18.5678 15.3067 17.558 15.538 16.7273 16.0987C15.8965 16.6594 15.3043 17.5093 15.066 18.4828C14.8277 19.4563 14.9604 20.4837 15.4382 21.3647C15.2598 21.4531 15.0934 21.564 14.9432 21.6947C14.469 22.0722 14.0858 22.5517 13.8224 23.0976C13.559 23.6435 13.422 24.2418 13.4216 24.848C13.4179 25.4548 13.5531 26.0545 13.8169 26.601C14.0806 27.1476 14.4659 27.6266 14.9432 28.0013H32.3964C32.923 27.6775 33.3647 27.2327 33.6849 26.704C34.0051 26.1753 34.1946 25.5778 34.2377 24.9611C34.2807 24.3444 34.176 23.7264 33.9323 23.1583C33.6886 22.5903 33.3129 22.0885 32.8364 21.6947V21.6947" stroke="#0B0223" stroke-linecap="round" stroke-linejoin="round"></path><path d="M44.533 33.6306H3.46665C2.65664 33.6306 2 34.2873 2 35.0973V39.2039C2 40.0139 2.65664 40.6706 3.46665 40.6706H44.533C45.343 40.6706 45.9996 40.0139 45.9996 39.2039V35.0973C45.9996 34.2873 45.343 33.6306 44.533 33.6306Z" stroke="#0B0223" stroke-miterlimit="10"></path><path d="M13.4036 24.8292H26.6951" stroke="#473E5F" stroke-miterlimit="10" stroke-linecap="round"></path><path d="M10.1953 37.1504H46" stroke="#473E5F" stroke-miterlimit="10" stroke-linecap="round"></path><path d="M6.21651 38.3039C6.8544 38.3039 7.3715 37.7868 7.3715 37.1489C7.3715 36.511 6.8544 35.9939 6.21651 35.9939C5.57863 35.9939 5.06152 36.511 5.06152 37.1489C5.06152 37.7868 5.57863 38.3039 6.21651 38.3039Z" fill="#473E5F"></path></svg></div><div class="content"><h2 class="title">Solutions</h2><p class="para">Enabling game developers to reach the next billion gamers, powered by the mobile cloud.</p><span class="know-more">Learn More</span></div></a></div></div></div><a target="_blank" class="mega-menu-right-section"><h2 class="title">in the News</h2><div class="menu-image"><img class="news" width="328" height="186"/></div><p class="menu-para"></p><div class="learn-more">Learn More</div></a></div></div></div></li><li class="flex menu-item perfectCenter"><div class="mega-menu primary-hover">NFT<div class="menu-overlay"><div class="container"><div class="mega-menu-left-section"><div class="Nft__NftMenu-sc-14s2qqy-0 dPxGQi"><h2 class="title">NFT</h2><div class="pages"><a href="nfg.html" target="_self" class="PageLink-sc-vq015r-0 jlZuBq"><div class="icon"><svg width="48" height="49" viewBox="0 0 48 49" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M33.9313 17.0746C38.7448 17.0746 42.6468 15.6877 42.6468 13.9769C42.6468 12.2661 38.7448 10.8793 33.9313 10.8793C29.1179 10.8793 25.1324 12.2314 25.1324 13.9421C25.1324 15.6529 29.1179 17.0746 33.9313 17.0746Z" fill="#FF42A5" stroke="#0B0223" stroke-miterlimit="10"></path><path d="M42.6473 13.9955V32.511C42.6473 34.271 38.741 35.6087 33.9665 35.6087C29.1921 35.6087 25.1324 34.2182 25.1324 32.511V20.1908C25.1324 21.9508 29.1921 23.2884 33.9665 23.2884C38.741 23.2884 42.6473 21.898 42.6473 20.1908V26.3685C42.6473 28.1285 38.741 29.4661 33.9665 29.4661C29.1921 29.4661 25.1324 27.9696 25.1324 26.2624" stroke="#0B0223" stroke-miterlimit="10"></path><path d="M33.0811 20.3909H34.8346C34.8972 20.3909 34.9596 20.4442 34.9596 20.5245V20.7181C34.9596 20.7983 34.8972 20.8517 34.8346 20.8517H33.0811C33.0184 20.8517 32.9561 20.7983 32.9561 20.7181V20.5245C32.9561 20.4442 33.0184 20.3909 33.0811 20.3909Z" fill="#473E5F" stroke="#0B0223"></path><path d="M34.8346 25.8224H33.0811C32.7359 25.8224 32.4561 26.1061 32.4561 26.456V26.6496C32.4561 26.9995 32.7359 27.2832 33.0811 27.2832H34.8346C35.1798 27.2832 35.4596 26.9995 35.4596 26.6496V26.456C35.4596 26.1061 35.1798 25.8224 34.8346 25.8224Z" fill="#473E5F"></path><path d="M34.8346 32.0168H33.0811C32.7359 32.0168 32.4561 32.3005 32.4561 32.6505V32.8441C32.4561 33.194 32.7359 33.4777 33.0811 33.4777H34.8346C35.1798 33.4777 35.4596 33.194 35.4596 32.8441V32.6505C35.4596 32.3005 35.1798 32.0168 34.8346 32.0168Z" fill="#473E5F"></path><path d="M33.9316 35.6074V43.9148" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M15.9971 43.9159H39.3831" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M13.4445 46.502C14.854 46.502 15.9966 45.3437 15.9966 43.9148C15.9966 42.4859 14.854 41.3275 13.4445 41.3275C12.035 41.3275 10.8923 42.4859 10.8923 43.9148C10.8923 45.3437 12.035 46.502 13.4445 46.502Z" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M41.935 46.502C43.3445 46.502 44.4871 45.3437 44.4871 43.9148C44.4871 42.4859 43.3445 41.3275 41.935 41.3275C40.5255 41.3275 39.3828 42.4859 39.3828 43.9148C39.3828 45.3437 40.5255 46.502 41.935 46.502Z" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M18.3684 3.50195H5.63158C4.1782 3.50195 3 4.58079 3 5.91159V33.0923C3 34.4231 4.1782 35.502 5.63158 35.502H18.3684C19.8218 35.502 21 34.4231 21 33.0923V5.91159C21 4.58079 19.8218 3.50195 18.3684 3.50195Z" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M8 4.50195H16C16.0003 5.08278 15.795 5.6409 15.4276 6.05813C15.0603 6.47535 14.5597 6.7189 14.032 6.73719H10.032C9.49308 6.73719 8.97623 6.50169 8.59516 6.08251C8.21408 5.66332 8 5.09478 8 4.50195Z" fill="#473E5F"></path><path d="M15.654 19.0375L11.3127 16.7479C11.1081 16.6401 10.8762 16.5829 10.6399 16.5822C10.4036 16.5814 10.1713 16.637 9.96583 16.7434C9.76039 16.8499 9.589 17.0035 9.4687 17.189C9.34841 17.3746 9.28338 17.5856 9.28004 17.8011V22.3805C9.27901 22.598 9.34089 22.8119 9.4594 23.0006C9.57791 23.1893 9.74886 23.3461 9.95504 23.4553C10.1612 23.5644 10.3953 23.622 10.6337 23.6223C10.872 23.6225 11.1062 23.5654 11.3127 23.4566L15.654 21.1669C15.8569 21.0576 16.0251 20.9019 16.1419 20.7152C16.2587 20.5285 16.3202 20.3172 16.3202 20.1022C16.3202 19.8873 16.2587 19.676 16.1419 19.4893C16.0251 19.3025 15.8569 19.1469 15.654 19.0375Z" fill="#FF42A5"></path><path d="M25.1324 20.2053V13.9421" stroke="#473E5F"></path></svg></div><div class="content"><h2 class="title">NFG</h2><p class="para">The NFG platform works seamlessly for games based on Cocos, Unreal, and Unity engines.</p><span class="know-more">Learn More</span></div></a><a href="https://nft.now.gg/" target="_blank" class="PageLink-sc-vq015r-0 jlZuBq"><div class="icon"><svg width="48" height="49" viewBox="0 0 48 49" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.22644 12.4403V5.19863C5.23122 5.01219 5.30866 4.83503 5.44224 4.70488C5.57581 4.57473 5.75492 4.50189 5.94141 4.50195H42.0765C42.2612 4.50195 42.4384 4.57535 42.569 4.706C42.6997 4.83665 42.7731 5.01386 42.7731 5.19863V12.4403" stroke="#0B0223" stroke-miterlimit="10"></path><path d="M5.22644 24.7421V41.7737H42.7731V24.7421" stroke="#0B0223" stroke-miterlimit="10"></path><path d="M44.1117 41.7745H3.88833C2.84544 41.7745 2 42.62 2 43.6629V43.6812C2 44.7241 2.84544 45.5695 3.88833 45.5695H44.1117C45.1546 45.5695 46 44.7241 46 43.6812V43.6629C46 42.62 45.1546 41.7745 44.1117 41.7745Z" stroke="#0B0223" stroke-miterlimit="10"></path><path d="M44.625 20.8014H3.375L5.22667 12.4231H42.7733L44.625 20.8014Z" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M13.696 20.8375C13.696 22.2038 13.1533 23.5142 12.1871 24.4803C11.221 25.4464 9.91067 25.9892 8.54436 25.9892C7.17806 25.9892 5.86771 25.4464 4.90159 24.4803C3.93546 23.5142 3.3927 22.2038 3.3927 20.8375" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M13.6969 20.8375C13.6969 22.2038 14.2397 23.5142 15.2058 24.4803C16.1719 25.4464 17.4823 25.9892 18.8486 25.9892C20.2149 25.9892 21.5252 25.4464 22.4913 24.4803C23.4575 23.5142 24.0002 22.2038 24.0002 20.8375" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M24 20.8375C24.0784 22.1531 24.6564 23.389 25.6156 24.2928C26.5748 25.1965 27.8429 25.6998 29.1608 25.6998C30.4787 25.6998 31.7469 25.1965 32.7061 24.2928C33.6653 23.389 34.2432 22.1531 34.3217 20.8375" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M34.3219 20.8375C34.3219 22.2038 34.8647 23.5142 35.8308 24.4803C36.7969 25.4464 38.1073 25.9892 39.4736 25.9892C40.8384 25.9844 42.1459 25.4401 43.111 24.475C44.0761 23.5099 44.6204 22.2023 44.6252 20.8375" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M13.3484 12.4231V18.2714" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M24 12.4231V18.2714" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M34.6516 12.4231V18.2714" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M39.4545 25.9521V35.3571H31.2962H23.1378V23.6604" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M31.2963 35.358V25.4763" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M16.776 41.7733V29.6366C16.776 29.4518 16.7026 29.2746 16.5719 29.144C16.4413 29.0133 16.2641 28.9399 16.0793 28.9399H9.24099C9.05622 28.9399 8.87901 29.0133 8.74836 29.144C8.61771 29.2746 8.54431 29.4518 8.54431 29.6366V41.7733" fill="#FF42A5"></path><path d="M16.776 41.7733V29.6366C16.776 29.4518 16.7026 29.2746 16.5719 29.144C16.4413 29.0133 16.2641 28.9399 16.0793 28.9399H9.24099C9.05622 28.9399 8.87901 29.0133 8.74836 29.144C8.61771 29.2746 8.54431 29.4518 8.54431 29.6366V41.7733" stroke="#473E5F" stroke-miterlimit="10"></path></svg></div><div class="content"><h2 class="title">NFT Marketplace</h2><p class="para">Create a NFT marketplace within your game or app. Unlock new dimensions in monetization and promotion.</p><span class="know-more">Learn More</span></div><span class="arrow"></span></a></div></div></div><a class="mega-menu-right-section" href="nfg.html"><h2 class="title">LiveOps NFT</h2><div class="menu-image"><img class="nft" src="apps-content/img/homepage/liveops-bg.png" width="328" height="186" alt="liveops nft"/></div><p class="menu-para">Now.gg NFT Service expands the monetization dimension for you by introducing another layer with interactive LiveOps NFT.</p><div class="learn-more">Learn More</div></a></div></div></div></li><li class="flex menu-item perfectCenter"><div class="mega-menu primary-hover">Company<div class="menu-overlay"><div class="container"><div class="mega-menu-left-section"><div class="Company__CompanyMenu-sc-moqg5u-0 bfEcr"><h2 class="title">Company</h2><div class="pages"><a href="aboutus.html" target="_self" class="PageLink-sc-vq015r-0 jlZuBq"><div class="icon"><svg width="48" height="49" viewBox="0 0 48 49" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="24" cy="24.0039" r="21.5" stroke="#473E5F"></circle><path d="M9.68481 39.5322C12.3112 36.2543 17.7351 34.0039 23.9999 34.0039C30.2401 34.0039 35.6459 36.2366 38.2839 39.4936" stroke="#473E5F" stroke-linecap="round"></path><circle cx="24" cy="20.0039" r="9.5" fill="#FF42A5" stroke="#473E5F"></circle></svg></div><div class="content"><h2 class="title">About</h2><p class="para">The mobile gaming revolution, powered by the mobile cloud.</p><span class="know-more">Learn More</span></div></a><a href="news.html" target="_self" class="PageLink-sc-vq015r-0 jlZuBq"><div class="icon"><svg width="48" height="49" viewBox="0 0 48 49" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.9565 30.919C12.9565 32.1154 13.9221 33.0852 15.1131 33.0852C16.3041 33.0852 17.2695 32.1154 17.2695 30.919L17.2695 17.1097C17.2695 15.9134 16.3041 14.9435 15.1131 14.9435C13.9221 14.9435 12.9565 15.9134 12.9565 17.1097L12.9565 30.919Z" stroke="#0B0223" stroke-miterlimit="10"></path><path d="M36.959 24.0134H17.212" stroke="#0B0223" stroke-miterlimit="10"></path><path d="M40.6144 27.5526C42.5692 27.5526 44.1538 25.968 44.1538 24.0132C44.1538 22.0585 42.5692 20.4739 40.6144 20.4739C38.6597 20.4739 37.0751 22.0585 37.0751 24.0132C37.0751 25.968 38.6597 27.5526 40.6144 27.5526Z" fill="#FF42A5" stroke="#0B0223" stroke-miterlimit="10"></path><path d="M40.6144 9.08264C42.5692 9.08264 44.1538 7.49801 44.1538 5.54327C44.1538 3.58853 42.5692 2.00391 40.6144 2.00391C38.6597 2.00391 37.0751 3.58853 37.0751 5.54327C37.0751 7.49801 38.6597 9.08264 40.6144 9.08264Z" fill="#FF42A5" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M40.6144 46.004C42.5692 46.004 44.1538 44.4194 44.1538 42.4647C44.1538 40.5099 42.5692 38.9253 40.6144 38.9253C38.6597 38.9253 37.0751 40.5099 37.0751 42.4647C37.0751 44.4194 38.6597 46.004 40.6144 46.004Z" fill="#FF42A5" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M17.2507 18.501C22.144 19.1973 24.4842 18.0561 25.722 16.8377C28.6618 13.9946 26.8631 9.37214 29.8609 6.76113C30.9005 6.04938 32.0822 5.57183 33.3244 5.36145C34.5666 5.15108 35.8397 5.21289 37.0557 5.54265" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M17.2507 28.8486C21.6991 28.2103 23.9426 29.2547 25.1804 30.3572C28.2363 33.0649 26.689 37.5326 29.8222 40.4531C30.8388 41.2401 32.0022 41.8165 33.2442 42.1486C34.4862 42.4807 35.782 42.5618 37.0557 42.3871" stroke="#473E5F" stroke-miterlimit="10"></path><path d="M2.47441 24.6132L7.94786 21.3833C8.08529 21.3017 8.24182 21.2578 8.40166 21.2559C8.5615 21.2541 8.71897 21.2944 8.85823 21.3729C8.9975 21.4514 9.11362 21.5651 9.19487 21.7028C9.27613 21.8404 9.31964 21.9971 9.32104 22.1569V28.52C9.32108 28.6787 9.27962 28.8346 9.20075 28.9722C9.12187 29.1099 9.00835 29.2245 8.87146 29.3046C8.73457 29.3848 8.57906 29.4278 8.42043 29.4292C8.26179 29.4307 8.10554 29.3907 7.96719 29.313L6.32321 28.3846L4.38913 31.7693C4.33268 31.8754 4.25536 31.9689 4.16177 32.0443C4.06818 32.1196 3.96028 32.1753 3.84461 32.2078C3.72893 32.2404 3.60788 32.2491 3.48873 32.2336C3.36957 32.218 3.25479 32.1786 3.15132 32.1175L2.51307 31.75C2.40699 31.6935 2.31345 31.6162 2.23808 31.5226C2.16271 31.429 2.10709 31.3211 2.07456 31.2054C2.04202 31.0898 2.03326 30.9687 2.04879 30.8495C2.06433 30.7304 2.10385 30.6156 2.16495 30.5121L4.09903 27.1275L2.45505 26.1992C2.31508 26.1185 2.19915 26.0019 2.11918 25.8616C2.0392 25.7212 1.9981 25.5621 2.00007 25.4005C2.00204 25.239 2.04702 25.0809 2.13039 24.9425C2.21376 24.8041 2.33252 24.6905 2.47441 24.6132Z" fill="#FF42A5"></path></svg></div><div class="content"><h2 class="title">News</h2><p class="para">Now.gg gives 95% cut to mobile game devs and launches NFT monetization</p><span class="know-more">Learn More</span></div></a></div></div></div><a class="mega-menu-right-section" href="https://cdn.now.gg/apps-content/media/Media_Kit.zip" target="_blank" rel="noopener"><h2 class="title">Media Kit</h2><div class="row"><div class="company-logo"><img alt="now.gg logo" src="apps-content/img/homepage/nowgg-footer-logo.png" width="64" height="64"/></div><div><h2 class="brand-assets">Brand Assets</h2><h2 class="logo-assets">Logos and creative assets</h2><div class="get-assets-btn">Get Assets</div></div></div></a></div></div></div></li><li class="flex menu-item perfectCenter"><a class=" primary-hover" href="blog.html" target="_self" rel="noopener">Blog<span class="arrow"></span></a></li><li class="flex menu-item perfectCenter"><a class="external-menu primary-hover" href="https://dev.now.gg/" target="_blanck" rel="noopener">Developers<span class="arrow"></span></a></li><li class="flex btn-item perfectCenter pointer "><button class="PlayButton__ButtonStyleWrapper-sc-tpjoyr-0 dMZlFP play-btn flex perfectCenter header-link experience-btn" lang="en"><span class="btn-text">Experience now.gg</span></button></li></ul><div class="hamburger-block" id="humburger-icon"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><rect x="2" y="11" width="20" height="1" rx="0.5" fill="#FF42A5"></rect><rect x="2" y="18" width="20" height="1" rx="0.5" fill="#FF42A5"></rect><rect x="2" y="4" width="20" height="1" rx="0.5" fill="#FF42A5"></rect></svg></div></div></header></div><div class="main-content"><section class="flex hero-container"><div class="LazyLoad hero-vid-lazy"></div><div class="swiper-upper-text"><div class="flex container column"><p class="mobile-cloud">Mobile Cloud</p><div class="subtitle"><p>Accessibility, Shareability</p><p class="subtitle">and Monetization</p></div><div class="flex watch-vid-btn vrtlCenter pointer"><p class="watch-text">Watch Video</p><span class="flex triangle perfectCenter"></span></div></div></div></section><section class="flex solutions-parent column space-btw"><section class="steps-container"><div class="flex container perfectCenter column"><h1 class="title">Enabling game developers to bring mobile gaming to the next billion In just one easy step</h1><div class="subtitle">Simply host your game on now.gg mobile cloud, Platform-as-a-Service (PaaS) and publish the link on your website. No additional app modification required. Once hosted, mobile gamers can experience amazing game play without the need to download or install any app.</div><div class="flex steps row space-btw"><div class="step-1"><div class="style__PictureStyleWrapper-sc-3zuk8d-0 krWrgc lazyload-container "><div class="LazyLoad"></div><svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none" class="style__SvgStyleWrapper-sc-4wcfru-0 bICNwM img-loader"><style type="text/css"></style><circle class="circle circle-3" cx="24" cy="24" r="20" stroke="#B3D661" stroke-width="8"></circle><circle class="circle circle-2" cx="24" cy="24" r="20" stroke="#51A5C9" stroke-width="8"></circle><circle class="circle circle-1" cx="24" cy="24" r="20" stroke="#FF42A5" stroke-width="8"></circle></svg></div><h2>Step 1</h2><p>Host your game on now.gg cloud and publish link on your website</p></div><div class="step-2"><div class="style__PictureStyleWrapper-sc-3zuk8d-0 krWrgc lazyload-container "><div class="LazyLoad"></div><svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none" class="style__SvgStyleWrapper-sc-4wcfru-0 bICNwM img-loader"><style type="text/css"></style><circle class="circle circle-3" cx="24" cy="24" r="20" stroke="#B3D661" stroke-width="8"></circle><circle class="circle circle-2" cx="24" cy="24" r="20" stroke="#51A5C9" stroke-width="8"></circle><circle class="circle circle-1" cx="24" cy="24" r="20" stroke="#FF42A5" stroke-width="8"></circle></svg></div><h2>Step 2</h2><p>Share cloud game links via your social or send traffic via ads</p></div><div class="step-3"><div class="style__PictureStyleWrapper-sc-3zuk8d-0 krWrgc lazyload-container "><div class="LazyLoad"></div><svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none" class="style__SvgStyleWrapper-sc-4wcfru-0 bICNwM img-loader"><style type="text/css"></style><circle class="circle circle-3" cx="24" cy="24" r="20" stroke="#B3D661" stroke-width="8"></circle><circle class="circle circle-2" cx="24" cy="24" r="20" stroke="#51A5C9" stroke-width="8"></circle><circle class="circle circle-1" cx="24" cy="24" r="20" stroke="#FF42A5" stroke-width="8"></circle></svg></div><h2>Step 3</h2><p>Integrate Cloud Payment</p></div></div></div><div class="flex scheduleDemoBtnRef"><div class="LazyLoad scheduleDemoBtnRefLogo"></div><button class="flex next-level-btn demoBtnStepsContainer vrtlCenter pointer">Schedule Demo Now</button></div></section><section class="nowcloudos-container"><div class="flex container perfectCenter column"><div class="title flex"><span class="with">With</span> <div class="LazyLoad"></div> <div class="LazyLoad"></div> <!-- -->for future ready cloud apps</div><div class="subtitle">The future of experiencing mobile apps is not through downloading or installing but through streaming on a mobile cloud OS. nowCloudOS is backward compatible with existing Android mobile apps and is fully ready for native cloud OS apps for the future.</div><div class="nowcloudos"><div class="nowcloudos-block"><div class="LazyLoad"></div><ul class="cloud-list"><li class="cloud-item"><div class="styles__ImageStyleWrapper-sc-gsdq9-0 hLpIHn lazyload-container "><div class="LazyLoad"></div><svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none" class="style__SvgStyleWrapper-sc-4wcfru-0 bICNwM img-loader"><style type="text/css"></style><circle class="circle circle-3" cx="24" cy="24" r="20" stroke="#B3D661" stroke-width="8"></circle><circle class="circle circle-2" cx="24" cy="24" r="20" stroke="#51A5C9" stroke-width="8"></circle><circle class="circle circle-1" cx="24" cy="24" r="20" stroke="#FF42A5" stroke-width="8"></circle></svg></div><p>Backward compatible with all Android apps</p></li><li class="cloud-item"><div class="styles__ImageStyleWrapper-sc-gsdq9-0 hLpIHn lazyload-container "><div class="LazyLoad"></div><svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none" class="style__SvgStyleWrapper-sc-4wcfru-0 bICNwM img-loader"><style type="text/css"></style><circle class="circle circle-3" cx="24" cy="24" r="20" stroke="#B3D661" stroke-width="8"></circle><circle class="circle circle-2" cx="24" cy="24" r="20" stroke="#51A5C9" stroke-width="8"></circle><circle class="circle circle-1" cx="24" cy="24" r="20" stroke="#FF42A5" stroke-width="8"></circle></svg></div><p>Ready for future cloud-native apps and hybrid edge</p></li><li class="cloud-item"><div class="styles__ImageStyleWrapper-sc-gsdq9-0 hLpIHn lazyload-container "><div class="LazyLoad"></div><svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none" class="style__SvgStyleWrapper-sc-4wcfru-0 bICNwM img-loader"><style type="text/css"></style><circle class="circle circle-3" cx="24" cy="24" r="20" stroke="#B3D661" stroke-width="8"></circle><circle class="circle circle-2" cx="24" cy="24" r="20" stroke="#51A5C9" stroke-width="8"></circle><circle class="circle circle-1" cx="24" cy="24" r="20" stroke="#FF42A5" stroke-width="8"></circle></svg></div><p>Infinity Phone</p></li></ul></div></div></div></section><section class="realtime-tracking-container"><div class="flex container perfectCenter column"><div class="title flex">And real-time tracking on<div class="LazyLoad"></div> <div class="LazyLoad"></div></div><div class="subtitle">nowStudio provides real-time tracking to game developers to monitor growth in gaming sessions and optimize campaigns to scale them further.</div><div class="laptop-container"><div class="style__VideoStyleWrapper-sc-1o1hl5k-0 uXjFT lazyload-container "><div class="LazyLoad"></div><svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none" class="style__SvgStyleWrapper-sc-4wcfru-0 bICNwM img-loader"><style type="text/css"></style><circle class="circle circle-3" cx="24" cy="24" r="20" stroke="#B3D661" stroke-width="8"></circle><circle class="circle circle-2" cx="24" cy="24" r="20" stroke="#51A5C9" stroke-width="8"></circle><circle class="circle circle-1" cx="24" cy="24" r="20" stroke="#FF42A5" stroke-width="8"></circle></svg></div></div><ul class="features"><li>ATT Compatible</li><li>Facebook Ads</li></ul><div class="subtitle">With nowStudio and partner MMPs, game developers can help optimize current Facebook and Google ad spends on iOS, even in the post IDFA era, while being compliant with privacy guidelines.</div></div><div class="flex scheduleDemoBtnRef"><div class="LazyLoad scheduleDemoBtnRefLogo"></div><button class="flex next-level-btn demoBtnRealtimeContainer vrtlCenter pointer">Schedule Demo Now</button></div></section><section class="reach-next-container"><div class="image"><div class="style__PictureStyleWrapper-sc-3zuk8d-0 krWrgc lazyload-container "><div class="LazyLoad"></div><svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none" class="style__SvgStyleWrapper-sc-4wcfru-0 bICNwM img-loader"><style type="text/css"></style><circle class="circle circle-3" cx="24" cy="24" r="20" stroke="#B3D661" stroke-width="8"></circle><circle class="circle circle-2" cx="24" cy="24" r="20" stroke="#51A5C9" stroke-width="8"></circle><circle class="circle circle-1" cx="24" cy="24" r="20" stroke="#FF42A5" stroke-width="8"></circle></svg></div><div class="title image-text"><p>Reach the next billion mobile gamers through</p><p class="highlight">social channels they already use</p></div></div></section><section class="network-effect-container"><div class="flex container perfectCenter column"><div class="title">Up your game’s viral potential with the network effect</div><div class="subtitle">The next billion users are spending significant time on social media – the new face of word-of-mouth marketing. now.gg uses the intrinsic sharing nature of these platforms to seed and feed viral loops by making it easier to share your mobile game on different channels with just one click.</div></div></section><section class="freedom-pay-container"><div class="image"><div class="style__PictureStyleWrapper-sc-3zuk8d-0 krWrgc lazyload-container "><div class="LazyLoad"></div><svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none" class="style__SvgStyleWrapper-sc-4wcfru-0 bICNwM img-loader"><style type="text/css"></style><circle class="circle circle-3" cx="24" cy="24" r="20" stroke="#B3D661" stroke-width="8"></circle><circle class="circle circle-2" cx="24" cy="24" r="20" stroke="#51A5C9" stroke-width="8"></circle><circle class="circle circle-1" cx="24" cy="24" r="20" stroke="#FF42A5" stroke-width="8"></circle></svg></div><div class="title image-text"><div><span class="withthe">With the</span> <span class="highlight">freedom to pay</span> <div>via payment channels they already have</div></div></div></div></section><section class="higher-margins-container"><div class="flex container perfectCenter column"><div class="title">Earn more through higher margins</div><div class="subtitle">now.gg seamlessly integrates its cloud payments technology with any game and allows players to use digital wallets and cryptocurrency for making in-game purchases without any credit card restrictions. It also offers developers a higher margin in-app purchase (IAP) commissions and lowers the cost for multi-device integrations. </div></div></section></section></div><div class="Footer__FooterStyle-sc-1rki6vl-0 ljNBlk"><div class="NextLevel__Section-sc-1eurid-0 dyYHqO"><section class="next-level"><div class="flex container perfectCenter space-btw"><div class="next-level-content"><p class="highlight">Mobile Cloud</p><p class="">For mobile game developers and gamers</p></div><div class="btn-wrapper"></div></div></section></div><footer class="flex footer-section column"><div class="container footer-pad"><div class="flex social-logos vrtlCenter space-btw"><div class="breadcrumb"><a class="flex footer-logo vrtlCenter" href="index.html"><img alt="now.gg logo" src="apps-content/img/homepage/nowgg-footer-logo.png" width="44" height="32"/></a><div class="scroller"><ul><li><span>Solutions</span></li></ul></div><script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://now.gg"},{"@type":"ListItem","position":2,"name":"Solutions","item":"https://now.gg/solutions.html"}]}</script></div><div class="flex social-icons perfectCenter"><a href="https://www.linkedin.com/company/nowgginc" target="_blank" rel="noopener" class="linkedin icon"></a><a href="https://www.snapchat.com/add/nowgginc" target="_blank" rel="noopener" class="snapchat icon"></a><a href="https://twitter.com/nowgginc" target="_blank" rel="noopener" class="twitter icon"></a></div></div><ul class="footer-list"><li class="flex vrtlCenter" id="contact-us-modal">Contact Us</li><li><a href="terms-and-privacy.html#terms">Terms and Privacy</a></li><li><a href="copyright-dispute-policy.html">Copyright Dispute Policy</a></li><li><a href="terms-and-privacy.html#eu-privacy">EU Privacy</a></li><li><a href="preregister.html">Pre-register</a></li><li><a href="support.html">Support</a></li></ul><div class="copyright-locale flex space-btw"><p class="copyright">© 2022 now.gg. All rights reserved. By using now.gg you agree to our Terms of use and Privacy Policy</p><div class="style__LanguageModalStyleWarpper-sc-tzgosc-0 ildGLV language-modal"><div class="language-body"><div class="dropdown-list"><ul class="dropdown-list-ul"><li class="lang-option selected"><a class="link" href="solutions.html">English</a><span class="tick"><svg class="logo" width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.82163 13.2106C4.82308 13.2119 4.82453 13.2132 4.82599 13.2145C5.29625 13.6328 6.01251 13.586 6.42579 13.1101L6.42579 13.11L15.7214 2.40468C16.1347 1.92873 16.0885 1.2038 15.6183 0.78552C15.148 0.367237 14.4317 0.41399 14.0185 0.889945L5.47113 10.7335L1.88544 7.54415C1.41518 7.12587 0.698925 7.17262 0.285645 7.64857C-0.127635 8.12453 -0.0814414 8.84945 0.388821 9.26774L4.82163 13.2106Z" fill="#FF42A5"></path></svg></span></li><li class="lang-option "><a class="link" href="tw/solutions.html">中文 – 繁體</a><span class="tick"><svg class="logo" width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.82163 13.2106C4.82308 13.2119 4.82453 13.2132 4.82599 13.2145C5.29625 13.6328 6.01251 13.586 6.42579 13.1101L6.42579 13.11L15.7214 2.40468C16.1347 1.92873 16.0885 1.2038 15.6183 0.78552C15.148 0.367237 14.4317 0.41399 14.0185 0.889945L5.47113 10.7335L1.88544 7.54415C1.41518 7.12587 0.698925 7.17262 0.285645 7.64857C-0.127635 8.12453 -0.0814414 8.84945 0.388821 9.26774L4.82163 13.2106Z" fill="#FF42A5"></path></svg></span></li><li class="lang-option "><a class="link" href="ko/solutions.html">한국어</a><span class="tick"><svg class="logo" width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.82163 13.2106C4.82308 13.2119 4.82453 13.2132 4.82599 13.2145C5.29625 13.6328 6.01251 13.586 6.42579 13.1101L6.42579 13.11L15.7214 2.40468C16.1347 1.92873 16.0885 1.2038 15.6183 0.78552C15.148 0.367237 14.4317 0.41399 14.0185 0.889945L5.47113 10.7335L1.88544 7.54415C1.41518 7.12587 0.698925 7.17262 0.285645 7.64857C-0.127635 8.12453 -0.0814414 8.84945 0.388821 9.26774L4.82163 13.2106Z" fill="#FF42A5"></path></svg></span></li><li class="lang-option "><a class="link" href="ja/solutions.html">日本語</a><span class="tick"><svg class="logo" width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.82163 13.2106C4.82308 13.2119 4.82453 13.2132 4.82599 13.2145C5.29625 13.6328 6.01251 13.586 6.42579 13.1101L6.42579 13.11L15.7214 2.40468C16.1347 1.92873 16.0885 1.2038 15.6183 0.78552C15.148 0.367237 14.4317 0.41399 14.0185 0.889945L5.47113 10.7335L1.88544 7.54415C1.41518 7.12587 0.698925 7.17262 0.285645 7.64857C-0.127635 8.12453 -0.0814414 8.84945 0.388821 9.26774L4.82163 13.2106Z" fill="#FF42A5"></path></svg></span></li><li class="lang-option "><a class="link" href="cn/solutions.html">中文 – 简体</a><span class="tick"><svg class="logo" width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.82163 13.2106C4.82308 13.2119 4.82453 13.2132 4.82599 13.2145C5.29625 13.6328 6.01251 13.586 6.42579 13.1101L6.42579 13.11L15.7214 2.40468C16.1347 1.92873 16.0885 1.2038 15.6183 0.78552C15.148 0.367237 14.4317 0.41399 14.0185 0.889945L5.47113 10.7335L1.88544 7.54415C1.41518 7.12587 0.698925 7.17262 0.285645 7.64857C-0.127635 8.12453 -0.0814414 8.84945 0.388821 9.26774L4.82163 13.2106Z" fill="#FF42A5"></path></svg></span></li></ul></div></div><p class="locale-name"><button id="locale-select" class="label">English</button></p></div></div></div></footer></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"isMobile":false,"messages":{"default":{"scheduleDemo":"Schedule a Demo","largestMobile":"The World’s First and Largest Mobile Cloud","billion":"6 Billion","gameSessions":"gaming sessions per year","hyperDroid":"HyperDroid™","poweredByDistributed":"Powered by Distributed Android","playNow":"Play Now","play":"Play","publishGame":"Publish your game on the now.gg mobile cloud","gamesExperience":"Gamers experience the game instantly. No download required","saasOffering":"Easy to integrate mobile SaaS offering","payNow":"Pay Now","pay":"Pay","cloudPayment":"Publish your game, integrate cloud payments on now.gg ","enableGamers":"Enable gamers to play long term on the cloud at no extra cost","maximizeRevenue":"Get higher IAP margins, maximize revenue share","promoteNow":"Promote Now","promote":"Promote","coreGamers":"Take your game to 500M+ core gamers","gamingCommunities":"Seed and feed the game across popular gaming networks","networkEffect":"Accelerate viral sharing","distributedAndroid":"We use the Distributed Android (HyperDroid™) architecture internally to power millions of game sessions per day. Now, it’s time to bring it to you","platformPartners":"Platform Partners","attributionPartners":"Attribution Partners","viewDetails":"View Details","intheNews":"now.gg in the News","technology":"Technology","developerGuide":"Developer’s Guide","knowledgeHub":"Knowledge Hub","termsPrivacy":"Terms and Privacy","disputePolicy":"Copyright Dispute Policy","allRightReserved":"© 2021 now.gg. All rights reserved. By using now.gg you agree to our Terms of use and Privacy Policy","cloudGaming":"The Future of Cloud Gaming is","takeyourGame":"Take your game to the next level with now.gg.","minRead":"Min read","togetherFuture":"Together, we're ready for the future.","togetherDesc":"We are thrilled to join forces with some of the most prominent players in the technology ecosystem.","hyperDroidDesc":"HyperDroid™ applies the concept of distributed computing to Android, creating a powerful platform suited for several cloud-based applications.","whatHyperDroid":"How Distributed Android Works","answer11":"The basic premise of the architecture is that as network bandwidth and latency between different devices decrease, we can distribute the computational workload to better suit the specifications of each device, thus creating a low latency cloud-based platform.","answer12":"We have used this architecture ourselves to power millions of gaming sessions per day on the cloud since quite some time. We are thrilled to offer it to our customers now for gaming and other industries.","hyperDroidMobile":"HyperDroid™ based Mobile Cloud: Powered by ARM","answer2":"Distributed Android allows different parts of the Android stack to run on different machines. For the gaming use case with now.gg, the ‘compute stack’ is run on ARM servers and the ‘graphics stack’ is run on different servers with connected graphics cards. This distributed architecture realizes low latency computing with economical resource usage.","lowLatency":"Low Latency Computing","answer3":"Distributed Android runs many Android components like notifications and background processing within a region, in which latency-sensitive compute stacks run closer to the edge of the network.","distributedAndroid5g":"5G and Distributed Android","answer4":"With AWS wavelength zones, you can get computing right to the edge of the mobile network. Distributed Android enables a new application genre where the mobile phone seamlessly integrates with the cloud and works together to deliver the best experience to end-users. Some uses of such applications are live streaming or AR applications on the phone.","noDownloadPlay":"No download. Play in browser now.","usingNowgg":"By using now.gg, you agree to our","termsOfuse":"Terms of Use","and":"and","browserVideoSupport":"Your browser does not support the video tag.","playInstantly":"Play instantly","inbrowser":"in browser","unsupportedBrowser":"now.gg is currently available only on Chrome and Safari.","nowggMobile":"now.gg is currently available only on iOS.","noWait":"No Wait.","noDownload":"No Download","highQualityGamePlay":"High quality gameplay","ultraLowLatency":"Ultra low latency","newGameEveryDay":"New game everyday","commingSoon":"Coming Soon","aboutus":"About Us","aboutTitle":"Building the future of mobile cloud with cutting-edge technology.","aboutDesc1":"now.gg is a global mobile cloud-as-a-service offering meant for mobile game developers to acquire an entire spectrum of new users, who would otherwise not be reachable due to device spec constraints. now.gg is powered by a distributed Android stack on ARM servers. It enables gaming communities to instantly play and stream mobile games and esports on any device – iOS, Android, PC or Mac. ","aboutDesc2":"now.gg has been powering mobile cloud gaming sessions across its global gaming and esports platforms via HyperDroid™, its proprietary distributed Android technology. It has now introduced its mobile cloud-as-a-service to the market, with mobile game development being the first of its many use cases.","aboutDesc3":"Headquartered in Silicon Valley, the mobile cloud start-up has been incubated by the founders of game.tv (largest AI-powered mobile esports platform), botlabs.gg (An idea lab that builds and invests in some of the coolest AI-powered Discord bots) and BlueStacks (the largest Android gaming platform for PCs and Macs).","nextLevel":"Take your game to the next level with now.gg","solutionPayNow":"Integrate cloud payments for your games on now.gg, maximize revenue share from your IAP monetization efforts, and do more.","easyIntegration":"Easy Integration, Higher Margins","marginsDesc":"now.gg seamlessly integrates the cloud payments technology with any game. It also offers you a higher cut in in-app purchase (IAP) commissions and significantly lowers the cost for multi-device integration.","improveUser":"Improve User Engagement","userDesc":"Build long-term relationships and loyalty. Allow gamers to play long term on the now.gg mobile cloud without any time or device restrictions.","builtinSec":"Built-in Security","builtinDesc":"now.gg is 100% safe, secure, and forms the core of our platform experience. ","solutionPlayNow":"A mobile SaaS offering that empowers you to publish your mobile game on the agile and scalable now.gg mobile cloud platform for instant play.","instantGamePlay":"Instant Gameplay","gamePlayDesc":"Publish your games on now.gg and let gamers play it instantly with just one tap —no waiting for lengthy downloads, installs, or updates.","multiDeviceSupport":"Multi-Device Support","multiDeviceDesc":"With your game integrated on the now.gg mobile cloud, gamers can play it on any device, regardless of its technical specifications. Your mobile game can now reach a massive audience across mobile and PC and different operating systems.","payPerExp":"Pay Per Experience","payDesc":"Gamers can try your game instantly with one click on its ad shown on social media or other platforms. You gain a higher ROAS since you only pay for each gamer that experiences your game, as opposed to each click on that ad.","driveTraffic":"Drive Website Traffic","driveDesc":"Thanks to the cloud-based capabilities of now.gg, you can direct traffic from your Google and social media ads to an embedded experience on your website.","solutionPromoteNow":"Accelerate viral growth for your game using the power of social sharing.","coreGamer":"100M+ Core Gamer Community","coreGamerDesc":"Share your game in some of the most popular and deeply engaged gaming communities on the Internet.","retention":"Higher Retention","retentionDesc":"Engage with high-value players and core gamers who keep coming back to experience your game.","networkEff":"The Network Effect","networkDesc":"Now.gg takes your game to some of the most passionate core gaming communities. When millions of fans click, play, and share your game, it has the potential to trigger virality.","mediaKit":"Media Kit","nowggLogo":"now.gg Logo","includeAssets":"Includes SVG and PNG formats for use on light and dark backgrounds.","error404":"Sorry, we can't find the page you're looking for, but we’re here to help.","goToHomepage":"Go to Homepage","pressRelease":"Press release","countryRegion":"Country Region","myCompany":"My company is","selectRegion":"Select region","selectCompanyType":"Select company type","higherRoas":"Exponential reach Higher ROAS","gamingSessions":"6 billion gaming sessions","powered":"Powered by HyperDroid™","communityDriven":"Community driven game promotion","globalReach":"Widespread global reach","solutionText":"Mobile Cloud based solutions that together make up a comprehensive marketing suite for mobile game user acquisition, engagement and retention.","takeit":"We'll take it from here","seedNfeed":"Seed and feed the game across popular gaming networks","viralSharing":"Accelerate viral sharing","thankyoumsg":"We have received your information, one of our expert will reach out to you shortly.","trackingFlow":"Understanding the tracking flow - now.gg + Singular","step1Head":"Host games on your website using now.gg","step1Desc":"Use now.gg to host your Android game on your own website.","step2Head":"Integrate web tracking from Singular","step2Desc":"Integrate the Singular web tracking link on hosted game page. ","step3Head":"Track user sessions for now.gg ","step3Desc":"As users click to launch game, track the game session on Singular’s dashboard","step4":"Step 4","step4Head":"Integrate install tracking for now.gg","step4Desc":"On the now.gg game page, integrate Singular’s install tracking link for install CTA","step5":"Step 5","step5Head":"Measure assisted installs by now.gg","step5Desc":"Track the assisted installs driven by now.gg using Singular’s install tracker.","step6":"Step 6","step6Head":"Share in groups","step6Desc":"Gamers can share the link with friends","unsubsDesc":"We will miss you, but we hear you loud and clear. Click below to unsubscribe.","agreeToNowgg":"I agree to receive email and updates from now.gg","recieveEmail":"Receive news and updates via email","marketAgency":"A marketing agency","successfulUnSub":"You have been unsubscribed successfully.","noIntrested":"I am Not Interested","trackingFlowShort":"Understanding the tracking flow","testimonyText":"Now.gg mobile cloud is revolutionary for the mobile gaming industry. It unlocks massive growth potential from the demand side by leapfrogging the limitations of the gamer's device capabilities. We continue to drive and track quality to make your UA campaigns a huge success story.","testimonials":"Testimonials","faqs":"FAQs","supportArticles":"Support articles","browseSupportArticles":"Browse support articles on now.gg product, services, FAQ's and more.","support":"Support","promotedArticles":"Promoted articles","talkToExpert":"Talk to a now.gg expert to see how we can help you deliver results. Please write to us at {EMAIL}","metaTitleSupport":"now.gg Online Support","metaDescSupport":"Make the most of your now.gg experience by reading ‘how-to’ articles, product usage guides and more","euPrivacy_1":"EU Privacy","fullName_1":"Full Name","companyName_1":"Company Name","businessEmail_1":"Business Email","gameDev_1":"A game developer","adNet_1":"An ad network","interested_1":"I am Interested","close_1":"Close","submit_1":"Submit","privacyPolicy_1":"Privacy Policy","learnMore_1":"Learn More","partners_1":"Partners","seeMore_1":"See More","solutions_1":"Solutions","mobileCloud_1":"now.gg Mobile Cloud","step1_1":"Step 1","step2_1":"Step 2","step3_1":"Step 3","platform_1":"Platform","distAndroid_1":"Distributed Android","blog_1":"Blog","gameGuide_1":"Game Guide","news_1":"News","getAssets_1":"Get Assets","about_1":"About","sorryToSee_1":"Sorry to see you go!","emailId_1":"Email address","playInBrowser_1":"Play in browser","unsubscribe_1":"Unsubscribe","home_1":"Home","invalidRegion_1":"Sorry, this app is not available in your country.","warningBrowser_1":"Hi there! now.gg is only available on Safari. We will soon be available on other browsers.","scheduleADemo":"Schedule a Demo","bringingMobile":"Bringing mobile gaming to the","nestBillion":"NEXT BILLION","joinTheRev":"Join the Revolution","joinThe":"Join the","untapped":"The next billion mobile gamers are untapped","termsAndPrivacy":"Terms and Privacy","copyrightDispute":"Copyright Dispute Policy","euPrivacy":"EU Privacy","copyrightText":"© 2022 now.gg. All rights reserved. By using now.gg you agree to our Terms of use and Privacy Policy","willTake":"We'll take it from here","confirmDesc":"Thank you for sending your contact details, one of our cloud experts will be in touch shortly.","fullName":"Full Name","azallowed":"A-Z, 0-9 Characters allowed","companyName":"Company Name","cannotBeEmpty":"Please provide a name","businessEmail":"Business Email","validEmail":"Please enter a valid email address","country":"Country/Region","yourCompany":"Your Company is","gameDev":"A game developer","adNet":"An ad network","marketingAg":"A marketing agency","recieve":"RECEIVE NEWS AND UPDATES VIA EMAIL","interested":"I am interested","notinterested":"I am not interested","close":"Close","submit":"Submit","privacyTerms":"Your privacy is our priority. We may use your information to communicate with you about our events, products, and services. Visit our ","privacyPolicy":"Privacy Policy","privacyTerms2":" to learn more about how we handle your information. You may opt-out at any time ","here":"here.","watchVid":"Watch Video","gamersUntapped":"The next billion mobile gamers are untapped","highEnd":"High-end mobiles cannot keep up with the needs of power gamers, while low- to mid-range mobiles are unsuitable for gaming","with":"With","mobileCloudWebLink":"mobile cloud the next billion mobile gamers are just a web link away","nextLiveSocial":"The next billion live on social media","nextLiveTitle":"They get news, content, updates as web links on social media","nextPara1":"Social is the most popular way for internet engagement. Over 1 million new users join social media everyday – that’s 15.5 new users every second! And almost all of them access their accounts via mobile devices. They are digital natives, and receive and share content, be it memes, cat pictures, news or original content.","nextPara2":"With now.gg, they can simply receive links to their favourite mobile games via any social app they already use.","nextPara3":"No wait, no download – Instant play.","learnMore":"Learn More","paymentChannels":"The next billion use digital payment channels, not credit cards","paymentTitle":"They use digital wallets, crypto currency, game top-ups","paymentPara1":"Digital payments have outstripped the use of credit and debit cards in many global markets. Payments via digital wallets, in-game currency and even crypto currency are the future.","paymentsPara2":"With now.gg, they can use their local digital payment channels to make in-app purchases.","paymentsPara3":"Faster, secure – Instant pay.","poweredBy":"Powered by","newWay":"A new way to experience mobile apps","readyTitle":"Get ready to reach the next billion in just one step","readyPara":"nowCloudOS is a distributed cloud OS that virtualizes native mobile app interfaces, enabling OS and device-agnostic access to users anywhere, anytime. It makes it extremely easy for game developers to build cloud-ready games for the future while keeping their existing Android games backward compatible.","partners":"Partners","nowggInNews":"now.gg in the News","inTheNews":"in the News","seeMore":"See More","solutions":"Solutions","mobileCloud":"Mobile Cloud","accessibility":"Accessibility, Shareability","watchVideo":"Watch Video","monetization":"and Monetization","enableGameDevs":"Enabling game developers to bring mobile gaming to the next billion In just one easy step","gameHost":"Simply host your game on now.gg mobile cloud, Platform-as-a-Service (PaaS) and publish the link on your website. No additional app modification required. Once hosted, mobile gamers can experience amazing game play without the need to download or install any app.","step1":"Step 1","solStep1":"Host your game on now.gg cloud and publish link on your website","step2":"Step 2","solStep2":"Share cloud game links via your social or send traffic via ads","step3":"Step 3","solStep3":"Integrate Cloud Payment","scheduleDemoNow":"Schedule Demo Now","forFuture":"for future ready cloud apps","futurePara":"The future of experiencing mobile apps is not through downloading or installing but through streaming on a mobile cloud OS. nowCloudOS is backward compatible with existing Android mobile apps and is fully ready for native cloud OS apps for the future.","realTime":"And real-time tracking on","realTimeDesc":"nowStudio provides real-time tracking to game developers to monitor growth in gaming sessions and optimize campaigns to scale them further.","attComp":"ATT Compatible","fbAds":"Facebook Ads","trackingDesc":"With nowStudio and partner MMPs, game developers can help optimize current Facebook and Google ad spends on iOS, even in the post IDFA era, while being compliant with privacy guidelines.","reachGamers":"Reach the next billion mobile gamers through","socialChannels":"social channels they already use","upPotential":"Up your game’s viral potential with the network effect","potentialDesc":"The next billion users are spending significant time on social media – the new face of word-of-mouth marketing. now.gg uses the intrinsic sharing nature of these platforms to seed and feed viral loops by making it easier to share your mobile game on different channels with just one click.","withThe":"With the","freedomToPay":"freedom to pay","freedomDesc":"via payment channels they already have","earnMore":"Earn more through higher margins","earnMoreDesc":"now.gg seamlessly integrates its cloud payments technology with any game and allows players to use digital wallets and cryptocurrency for making in-game purchases without any credit card restrictions. It also offers developers a higher margin in-app purchase (IAP) commissions and lowers the cost for multi-device integrations. ","poweringNowgg1":"Powering the now.gg","platform":"Platform","futureReady":"Future Ready,","androidComp":" Android Compatible","nowCloudOsDesc":"The future of experiencing mobile apps is not through downloading or installing but through streaming on a mobile cloud OS. nowCloudOS is already compatible with existing Android mobile apps and is fully ready for native cloud OS apps of the future.","fromAndroid":"From Android to ","distAndroid":"Distributed Android","distAndroidPara1":"nowCloudOS applies the concept of distributed computing to Android, creating a powerful platform suited for several cloud-based applications.","distAndroidPara2":"The basic premise of the architecture is that as network bandwidth and latency between different devices decrease, we can distribute the computational workload to better suit the specifications of each device, thus creating a low latency cloud-based platform.","armNvidiaAws":"ARM, NVIDIA \u0026 AWS","armPara1":"now.gg has been working closely with ARM, nVidia and AWS to create the nowCloud OS. Distributed architecture enables the use of heterogeneous nodes based on availability in the cloud. This enables scaling rapidly to a world wide service which can meet the current and future demand of the game developers and consumers.","armPara2":"In addition, now.gg envisions all games and mobile apps to be available on the cloud within a short time span. So it’s working closely with several companies in the chip eco-system to design optimal hardware for different gaming workloads all powered by the nowCloud OS.","5gDistributed":"Phone and 5G","aws":"AWS","awsDesc":"nowCloudOS is working with Telcos and phone manufacturers to create the Infinity phone. A phone with infinite specs powered by the vast cloud infrastructure. The infinity phone is able to transparently move apps and user data between the cloud and the device. In addition to benefits to gamers, this also provides enhanced security and privacy to the end consumer. The Infinity phone becomes even more powerful with the 5G rollouts as it can leverage the high bandwidth and low latency of 5G for this architecture.","infinity":"Infinity","phone":"Phone","phoneDesc":"nowCloudOS is integrated natively at the phone level. It works as a medium to run high-performance apps on the device, powered by intelligent servers worldwide, delivering a near real-time experience to the end-user. The low-cost mobile device, much like a thin client, would use an internet connection to stream the apps directly from the cloud. ","blog":"Blog","readFull":"Read Full Article","tenMinRead":"10 Min read","fiveMinRead":"5 Min read","subscribeWeekly":"Get regular blog updates to your inbox","enterEmail":"Enter YOUR EMAIL","moreArticles":"More Articles","gameGuide":"Game Guide","news":"News","mdeiaKit":"Media Kit","logosAssets":"Logos and creative assets","getAssets":"Get Assets","about":"About","aboutUs":"About Us","aboutUsDesc":"Building the future of mobile cloud with cutting-edge technology.","aboutUsPara1":"now.gg is the mobile cloud company changing the gaming experience for game developers and consumers. With the first mobile platform-as-a-service for game developers, now.gg enables gaming communities to play games on any device or OS, share games instantly on their social channels and pay in-game through payment channels they already have. No longer constrained by geography, device or attribution, now.gg opens the world of consumers to game developers and unlocks entirely new revenue streams.","aboutUsPara2":"Headquartered in Silicon Valley, now.gg shares a parent company with game.tv, the world's No. 1 mobile esports platform, and BlueStacks, the largest Android gaming platform on PC. Leading game developers use now.gg to delight the world with their games. ","404Msg":"Sorry, we can't find the page you're looking for, but we’re here to help.","goToHomePage":"Go to Homepage","sorryToSee":"Sorry to see you go!","sorryDesc":"We will miss you, but we hear you loud and clear. Click below to unsubscribe.","unsubscribeSuccess":"You have successfully unsubscribed.","unsubscribeAccident":"Did you unsubscribe by accident?","subscribeAgain":"Subscribe again","subscribe":"Subscribe","recieveNews":"Receive news and updates via email","emailId":"Email address","successSubscibe":"You have been successfully added to our subscribers list.","optOut":"To opt out, click ","cannotEmpty":"Cannot be blank","validEmailID":"Please enter a valid email address","playInBrowser":"Play instantly in browser with now.gg","videoNotSupported":"Your browser does not support the video tag.","unsubscribe":"Unsubscribe","email_id":"EMAIL ADDRESS","madeWith":"Made with ","madewith2":"by gamers, engineers and coffee connoisseurs","aboutUsPara3":"now.gg mobile cloud is fueled by the vision and experience of veteran technology leaders and innovators. With multi-decade experience in the technology domain, they’ve built and scaled several path-breaking products in global markets, turning them into business moats. Transforming the vision into reality is a team of passionate engineers, technologists, cloud experts, marketers, and web developers working across continents.","homeMetaTitle":"now.gg Mobile Cloud - Platform-as-a-Service (PaaS)","homeMetaDesc":"now.gg is a mobile cloud gaming platform that solves the problems of user acquisition, shareability, and monetization faced by mobile game developers globally.","platformMetaTitle":"nowCloudOS: Built on Distributed Android technology","platformMetaDesc":"now.gg is powered by the nowCloudOS, a powerful platform that enables mobile game developers to develop their existing Android apps for the cloud.","solutionMetaTitle":"now.gg Mobile Cloud: Instant Play, Instant Pay","solutionMetaDesc":"With now.gg, gamers can instantly try a mobile game, pay for IAPs through digital wallets, and game developers benefit from lower IAP cuts and much more.","blogMetaTitle":"The Offical now.gg Mobile Cloud Blog","blogMetaDesc":"Whitepapers, insights, game guides, product updates, and more- keep up to date with the latest news from now.gg - the future of mobile gaming.","aboutusMetaTitle":"now.gg mobile cloud - Democratizing Access to Mobile Gaming","aboutMetaDesc":"Headquartered in Silicon Valley, now.gg is a mobile cloud start-up that aims to bring mobile gaming to the next billion gamers.","newsMetaTitle":"Press Releases and News - now.gg mobile cloud","newsMetaDesc":"Discover the latest news, press releases, downloads and media kit in this section","404MetaTitle":"404 Error: Page Not Found","404MetaDesc":"It seems the page you are looking for no longer exists or is temporarily unavailable. Please try exploring other pages on the website","partnerText1":"Backward compatible with all Android apps","partnerText2":"Ready for future cloud-native apps and hybrid edge","partnerText3":"Infinity Phone","testimonial1":"now.gg has built a platform that leverages the global scale of AWS to provide a valuable business model to game developers worldwide. We see this as one of the most exciting use cases of our ARM servers on Amazon Elastic Compute Cloud (Amazon EC2). By leveraging the mobile cloud from now.gg, and AWS Graviton2 instances, game developers can run mobile games natively, encode the rendered graphics and stream the games directly to a mobile device. This allows game developers to provide a consistent gaming experience for all mobile devices and a much more enjoyable and seamless process for the gamers.","testimonial2":"Data centers running servers powered by Arm-based processors are helping to eliminate compatibility issues for mobile cloud developers, ensuring smartphone applications are readily available in the cloud. Through our collaboration with now.gg, we are solving for this new era of cloud-hosted gaming to enable a rich game play experience, while driving more efficient revenue streams for developers and cloud providers.","testimonial3":"Apple’s ATT privacy policy is a massive shift for mobile gaming marketers needing to reach and engage potential gamers. now.gg's mobile cloud solution empowers gamers to experience mobile games on the web before downloading the app. And with Singular’s cross-platform attribution, game developers can measure this innovative web-to-app flow while staying compliant with privacy policies.","testimonial4":"now.gg is powered by nowCloudOS’ distributed Android, that allows different parts of the Android stack to run on different machines. This has been enabled by our technology partners ARM, AWS and NVIDIA.","testimonial5":"now.gg enables tracking through leading MMP partners and help game developers optimize the campaigns while ensuring that all privacy guidelines are followed. Our partners include Singular, AppsFlyer","goBack":"Go Back","ourTechnologyPartner":"Our Technology Partners","mmpPartners":"MMP Partners","readMore":"read more","home":"Home","plsSelect":"Please Select","requiredField":"Please complete this required field.","allField":"Please complete all required fields.","subscribeUpdate":"Subscribe","contactUs":"Contact Us","contactUsPara":"Talk to a now.gg expert to see how we can help you deliver results. Please write to us at","invalidRegion":"Sorry, this app is not available in your country.","app.releaseDate":"Release Date:","app.genre":"Genre","app.popularGames":"Popular games","games":"Games","accessiblitySharability":"Be the first to experience now.gg","glimpseMobileLibrary":"Discover thrilling new games","trustedPartners":"Trusted by leading mobile game developers worldwide","forMobileDeveloper":"Turn any device into a gaming monster","desktopUnsupported":"This app is currently supported only on mobile devices.","warningBrowser":"Hi there! now.gg is currently available only on Chrome and Safari. We will soon be available on other browsers.","app.PlayInBrowser":"Play {app_name} in browser","app.gameDescription":"Goodbye lengthy downloads and nagging updates. Play your favorite {app_name} in the cloud on your PC or mobile without having to download or install the game. Make your old phone or PC, or any device, a powerful gaming machine instantly. Share the game’s link with your friends on social media quickly and introduce them to a new way of playing games. Logged in to a new device? No worries. With now.gg mobile cloud, you can resume a game on another screen without losing progress. So get in {app_name} right away and start slaying.","app.clickPlayInBrowser":"Click the ‘play in browser’ button and get started within no time, only on now.gg.","app.metaTitle":"Play {app_name} in browser with now.gg","app.metaDescription":"now.gg mobile cloud is a cloud gaming service unlike any other. Play {app_name} instantly and enjoy lag-free, low latency, and high-quality gaming.","metaTitleGamesList":"now.gg mobile Cloud - Play in Browser","metaDescGamesList":"Play mobile games instantly on any device, any OS, anywhere, anytime with now.gg mobile cloud. No downloads. No updates needed. Pre-register now","preRegister":"Pre-register","joinGamers":"Join over {GAMERS_COUNT} gamers","thanksForRegister":"Thank you for registering","reservedSpace":"We’ve reserved your space.","tellFriends":"Tell your friends about it and spread the word.","somethingWentWrong":"Something went wrong. Please try again.","amongFirstFew":"You’ll be among the first few players to experience now.gg mobile cloud.","chooseLanguageMessage":"Select your default language for now.gg website.","chooseLanguageMessageMob":"Select your language","continue":"Continue","selectYourCountry":"Select Your Language","done":"Done","supportArticleMetaTitle":"now.gg Support","supportArticleMetaDescription":"Unable to play a game? Experiencing technical issues while cloud gaming? Get answers for your product-related questions from now.gg support","mobGameDevelopers":"for Mobile Game Developers","andMonetization":"and Monetization","glimpseMobileGaming":"A glimpse into our mobile gaming library","app.moreGenreGames":"More {GENRE} games","preregisterFull":"Our Pre-registration is now full.","preregisterClosed":"Pre-registration is now closed.","thanksForResponse":" Thanks for the overwhelming response!","exploreAndroidGames":"Explore Android games on cloud","unsupportedLanguageMessage":"This page is currently not available in {LANG}.","swithchLanguage":"Switch to another language.","heroDesc":"A vibrant ecosystem for mobile game developers and gamers","mobileCloudGamers":"mobile cloud gamers","cloudAppStore":"cloud app store","nfts":"NFTs","mobileGameMods":"mobile game mods","experienceNowGG":"Experience now.gg","media1.header":"Next Billion Mobile Gamers","media1.subHeader":"Mobile cloud technology","media1.text1":"Embed games anywhere","media1.text2":"Get freedom from device, OS, geography restrictions","media1.text3":"Enable Instant Play via web app, social shares, Discord servers","media1.text4":"Grow your game with proprietary tech: NCOS, Hybrid cloud on distributed ARM servers","media1.text5":"Delight users with a one-of-its-kind free cloud service","media1.text6":"Go where the gamers live, 1 bn+ minutes played","media2.header":"Higher Monetization","media2.subHeader":"Open Cloud App Store","media2.text1":"Enjoy full compliance with Google and Apple stores","media2.text2":"Integrate cloud payments with Payment SDK","media2.text3":"Earn higher profit margins on IAPs","media2.text4":"Get support for mobile and NFT games","media3.header":"New Revenue Opportunity","media3.subHeader":"NFT Platform","media3.text1":"Introduce NFTs into existing mobile games","media3.text2":"Boost revenue with NFT-based monetization, NFT Fan Art, NFT-based gift cards","media3.text3":"Create NFT-based games from scratch","media3.text4":"Use NFTs as prizes, certificates in eSports","media3.text5":"Buy, sell, trade game characters, skins, buffs as NFTs","userEngagement":"User Engagement","modMobileGames":"Keep players engaged with mobile game modding directly through the cloud","forGameDevelopers":"For mobile game developers and gamers","payments":"Payments","devResources":"Developer Resources","cloudBasedMobileGame":"Cloud Based Mobile Game Monetization","globalPlatformForDevelopers":"Global platform-as-a-service for game developers with integrated cloud payments","createDeveloperAccount":"Create a developer account","newRevenue":"New Revenue","whatWeDo":"What we do","increasingMargins":"Increasing margins from current revenue and unlocking new monetization opportunities for game developers.","maximizeIAPMargins":"Maximize IAP Margins","integrateWithMobileCloud":"Integrate with our mobile cloud payments for much higher margins on current revenue from in-app purchases. Fully compatible with existing Google and Apple Store policies, now.gg offers a 95% cut to game developers, increasing their margins by 25%.","nftMonetization":"NFT Monetization with LiveOps","discoverMonetizeGames":"Discover a whole new way to monetize games with NFTs on now.gg mobile cloud. Leverage the many possibilities that NFT game economy has to offer and add another layer of monetization to your game. Use powerful LiveOps tools to boost adoption of NFTs in your gaming community.","nftBasedGames":"NFT-based Games","stepIntoWorld":"Step into the world of NFT-based gaming with now.gg mobile cloud. Launch your own NFT-based mobile game with our technology and expertise.","benefitsOfNowgg":"Benefits of now.gg","empowersDevelopers":"now.gg empowers developers to create, share and monetize their games on the cloud in ways never done before.","higherMargin":"+25% Higher Margin","increasePurchaseMargins":"Increase in-app purchase margins by 25% from currently paying users for in-app purchases.","targetNonPayingUsers":"Target currently non-paying users through NFT-based monetization, NFT marketplace, NFT game fan art and more, to create a new revenue opportunity.","worksAppleGoogle":"Works with Apple and Google","compatibleWithGoogleApple":"Fully compatible with existing Google and Apple store policies.","developerPartners":"Developer Partners","nowggCloudPayments":"now.gg Cloud Payments","earnHigherMargins":"Earn higher margins on in-app purchases using now.gg's integrated cloud payments store. Fully compliant with Google, Apple stores","developers":"Developers","registerAsDeveloper":"Register as a developer","creatorstudio.subHeader":"Mobile Game Modding","creatorstudio.text1":"Give gamers a new way to play on the world’s first and only mobile game modding platform","creatorstudio.text2":"Use the Creator Studio to build infinite modded versions of a game","creatorstudio.text3":"Enable easy discovery and one-click sharing with the Creator Hub","creatorstudio.text4":"Buy and sell mods as NFTs","nfg.header":"Democratized Game Ownership","nfg.subHeader":"now.gg Fungible Games (NFG)","nfg.text1":"Revolutionize game ownership through NFTs","nfg.text2":"Distribute ownership of in-game assets among multiple owners","nfg.text3":"Develop games that are fungible, possible only through the mobile cloud","nfg.text4":"Bring gamers, creators and developers together","nfg.text5":"Power up now.gg Creator Studio to create mobile game mods","increaseUserEngagement":"Increase user engagement by giving gamers a whole new way to build, play and share games","nfg":"NFG","nowggFungibleGames":"{NOW_GG} Fungible Game","tryGame":"Try game","nfgMedia.header1":"A Brave New World of Gaming","nfgMedia.subHeader1":"The NFG platform empowers developers to build for Web 3.0. It lets gamers recreate a game event by changing the game code, game art, and game data.","nfgMedia.header2":"Redefining Game Ownership","nfgMedia.subHeader2":"Unlike the traditional way where games are owned by an entity or a studio, NFG makes it super easy for different gamers to own different pieces of the game.","nfgMedia.header3":"Partner Gaming Engines","nfgMedia.subheader3":"The mobile cloud technology powering the NFG platform works seamlessly for games based on Cocos, Unreal, and Unity engines.","nfgMedia.header4":"Unique NFT Marketplace","nfgMedia.subHeader4":"Create a NFT marketplace within your game or app. Unlock new dimensions in monetization and promotion.","visitMarketPlace":"Visit Marketplace","testimonial.header":"The First NFG","testimonial.subHeader":"From building for Web 3.0 to launching an NFT marketplace, mobile cloud is empowering game developers to go beyond the usual.","testimonial.comment1":"\u003cstrong\u003eNFG is a mind-blowing new platform.\u003c/strong\u003e It will transform how games are developed in the future and how games interact with their player.","testimonial.comment2":"It also gives existing mobile developers a path to Web 3.0 building on top of the existing business. This would not have been possible without the mobile cloud.","founderCeo":"Founder \u0026 CEO","nfgMetaDescription":"With NFGs, trade in pre-owned NFTs, buy a new one from a NFT marketplace and distribute game ownership. Made possible by the mobile cloud.","nfgDefinition":"With the NFG (now.gg fungible games) platform, games can be broken down into game code, game events, and game art with different people owning different pieces of the game. The NFG platform can do this automatically for some existing games or enable developers to do this programmatically.","whatIsNfg":"What is NFG?","nfgMedia.altHeader3":"Seamless across gaming engines","mobileGamingMetaverse":"Mobile Gaming Metaverse","stepIntoMobileMetaverse":"Step into the Mobile Gaming Metaverse","knowMore":"Learn more","paymentsMenuPara":"Unlocking new monetization opportunities for game developers with integrated cloud payments","solutionsMenuPara":"Enabling game developers to reach the next billion gamers, powered by the mobile cloud.","nft":"NFT","company":"Company","nftSolutions":"NFT Solutions","nftSolutionsMenuPara":"Increasing margins from current revenue and unlocking new monetization opportunities for game developers.","nfgMenuPara":"The NFG platform works seamlessly for games based on Cocos, Unreal, and Unity engines.","nftMarketplace":"NFT Marketplace","nftMarketplaceMenuPara":"Create a NFT marketplace within your game or app. Unlock new dimensions in monetization and promotion.","aboutMenuPara":"The mobile gaming revolution, powered by the mobile cloud.","newsMenuPara":"Now.gg gives 95% cut to mobile game devs and launches NFT monetization","liveopsNft":"LiveOps NFT","liveopsNFTMenupara":"Now.gg NFT Service expands the monetization dimension for you by introducing another layer with interactive LiveOps NFT.","brandAssets":"Brand Assets","mobileGamingModding":"Mobile Game Modding","stepIntoMobileModdinf":"Step into the Mobile Gaming Modding","platformMenuPara":"Bringing gamers and game developers together on the world's first mobile cloud PaaS.","mgmSummary":"Create and build a much richer experience by giving players the power to mod mobile games.","nowcloudOs":"nowCloud OS","modGames":"Mod games","dontSellInformation":"Do Not Sell My Personal Information"},"scheduleDemo":"Schedule a Demo","largestMobile":"The World’s First and Largest Mobile Cloud","billion":"6 Billion","gameSessions":"gaming sessions per year","hyperDroid":"HyperDroid™","poweredByDistributed":"Powered by Distributed Android","playNow":"Play Now","play":"Play","publishGame":"Publish your game on the now.gg mobile cloud","gamesExperience":"Gamers experience the game instantly. No download required","saasOffering":"Easy to integrate mobile SaaS offering","payNow":"Pay Now","pay":"Pay","cloudPayment":"Publish your game, integrate cloud payments on now.gg ","enableGamers":"Enable gamers to play long term on the cloud at no extra cost","maximizeRevenue":"Get higher IAP margins, maximize revenue share","promoteNow":"Promote Now","promote":"Promote","coreGamers":"Take your game to 500M+ core gamers","gamingCommunities":"Seed and feed the game across popular gaming networks","networkEffect":"Accelerate viral sharing","distributedAndroid":"We use the Distributed Android (HyperDroid™) architecture internally to power millions of game sessions per day. Now, it’s time to bring it to you","platformPartners":"Platform Partners","attributionPartners":"Attribution Partners","viewDetails":"View Details","intheNews":"now.gg in the News","technology":"Technology","developerGuide":"Developer’s Guide","knowledgeHub":"Knowledge Hub","termsPrivacy":"Terms and Privacy","disputePolicy":"Copyright Dispute Policy","allRightReserved":"© 2021 now.gg. All rights reserved. By using now.gg you agree to our Terms of use and Privacy Policy","cloudGaming":"The Future of Cloud Gaming is","takeyourGame":"Take your game to the next level with now.gg.","minRead":"Min read","togetherFuture":"Together, we're ready for the future.","togetherDesc":"We are thrilled to join forces with some of the most prominent players in the technology ecosystem.","hyperDroidDesc":"HyperDroid™ applies the concept of distributed computing to Android, creating a powerful platform suited for several cloud-based applications.","whatHyperDroid":"How Distributed Android Works","answer11":"The basic premise of the architecture is that as network bandwidth and latency between different devices decrease, we can distribute the computational workload to better suit the specifications of each device, thus creating a low latency cloud-based platform.","answer12":"We have used this architecture ourselves to power millions of gaming sessions per day on the cloud since quite some time. We are thrilled to offer it to our customers now for gaming and other industries.","hyperDroidMobile":"HyperDroid™ based Mobile Cloud: Powered by ARM","answer2":"Distributed Android allows different parts of the Android stack to run on different machines. For the gaming use case with now.gg, the ‘compute stack’ is run on ARM servers and the ‘graphics stack’ is run on different servers with connected graphics cards. This distributed architecture realizes low latency computing with economical resource usage.","lowLatency":"Low Latency Computing","answer3":"Distributed Android runs many Android components like notifications and background processing within a region, in which latency-sensitive compute stacks run closer to the edge of the network.","distributedAndroid5g":"5G and Distributed Android","answer4":"With AWS wavelength zones, you can get computing right to the edge of the mobile network. Distributed Android enables a new application genre where the mobile phone seamlessly integrates with the cloud and works together to deliver the best experience to end-users. Some uses of such applications are live streaming or AR applications on the phone.","noDownloadPlay":"No download. Play in browser now.","usingNowgg":"By using now.gg, you agree to our","termsOfuse":"Terms of Use","and":"and","browserVideoSupport":"Your browser does not support the video tag.","playInstantly":"Play instantly","inbrowser":"in browser","unsupportedBrowser":"now.gg is currently available only on Chrome and Safari.","nowggMobile":"now.gg is currently available only on iOS.","noWait":"No Wait.","noDownload":"No Download","highQualityGamePlay":"High quality gameplay","ultraLowLatency":"Ultra low latency","newGameEveryDay":"New game everyday","commingSoon":"Coming Soon","aboutus":"About Us","aboutTitle":"Building the future of mobile cloud with cutting-edge technology.","aboutDesc1":"now.gg is a global mobile cloud-as-a-service offering meant for mobile game developers to acquire an entire spectrum of new users, who would otherwise not be reachable due to device spec constraints. now.gg is powered by a distributed Android stack on ARM servers. It enables gaming communities to instantly play and stream mobile games and esports on any device – iOS, Android, PC or Mac. ","aboutDesc2":"now.gg has been powering mobile cloud gaming sessions across its global gaming and esports platforms via HyperDroid™, its proprietary distributed Android technology. It has now introduced its mobile cloud-as-a-service to the market, with mobile game development being the first of its many use cases.","aboutDesc3":"Headquartered in Silicon Valley, the mobile cloud start-up has been incubated by the founders of game.tv (largest AI-powered mobile esports platform), botlabs.gg (An idea lab that builds and invests in some of the coolest AI-powered Discord bots) and BlueStacks (the largest Android gaming platform for PCs and Macs).","nextLevel":"Take your game to the next level with now.gg","solutionPayNow":"Integrate cloud payments for your games on now.gg, maximize revenue share from your IAP monetization efforts, and do more.","easyIntegration":"Easy Integration, Higher Margins","marginsDesc":"now.gg seamlessly integrates the cloud payments technology with any game. It also offers you a higher cut in in-app purchase (IAP) commissions and significantly lowers the cost for multi-device integration.","improveUser":"Improve User Engagement","userDesc":"Build long-term relationships and loyalty. Allow gamers to play long term on the now.gg mobile cloud without any time or device restrictions.","builtinSec":"Built-in Security","builtinDesc":"now.gg is 100% safe, secure, and forms the core of our platform experience. ","solutionPlayNow":"A mobile SaaS offering that empowers you to publish your mobile game on the agile and scalable now.gg mobile cloud platform for instant play.","instantGamePlay":"Instant Gameplay","gamePlayDesc":"Publish your games on now.gg and let gamers play it instantly with just one tap —no waiting for lengthy downloads, installs, or updates.","multiDeviceSupport":"Multi-Device Support","multiDeviceDesc":"With your game integrated on the now.gg mobile cloud, gamers can play it on any device, regardless of its technical specifications. Your mobile game can now reach a massive audience across mobile and PC and different operating systems.","payPerExp":"Pay Per Experience","payDesc":"Gamers can try your game instantly with one click on its ad shown on social media or other platforms. You gain a higher ROAS since you only pay for each gamer that experiences your game, as opposed to each click on that ad.","driveTraffic":"Drive Website Traffic","driveDesc":"Thanks to the cloud-based capabilities of now.gg, you can direct traffic from your Google and social media ads to an embedded experience on your website.","solutionPromoteNow":"Accelerate viral growth for your game using the power of social sharing.","coreGamer":"100M+ Core Gamer Community","coreGamerDesc":"Share your game in some of the most popular and deeply engaged gaming communities on the Internet.","retention":"Higher Retention","retentionDesc":"Engage with high-value players and core gamers who keep coming back to experience your game.","networkEff":"The Network Effect","networkDesc":"Now.gg takes your game to some of the most passionate core gaming communities. When millions of fans click, play, and share your game, it has the potential to trigger virality.","mediaKit":"Media Kit","nowggLogo":"now.gg Logo","includeAssets":"Includes SVG and PNG formats for use on light and dark backgrounds.","error404":"Sorry, we can't find the page you're looking for, but we’re here to help.","goToHomepage":"Go to Homepage","pressRelease":"Press release","countryRegion":"Country Region","myCompany":"My company is","selectRegion":"Select region","selectCompanyType":"Select company type","higherRoas":"Exponential reach Higher ROAS","gamingSessions":"6 billion gaming sessions","powered":"Powered by HyperDroid™","communityDriven":"Community driven game promotion","globalReach":"Widespread global reach","solutionText":"Mobile Cloud based solutions that together make up a comprehensive marketing suite for mobile game user acquisition, engagement and retention.","takeit":"We'll take it from here","seedNfeed":"Seed and feed the game across popular gaming networks","viralSharing":"Accelerate viral sharing","thankyoumsg":"We have received your information, one of our expert will reach out to you shortly.","trackingFlow":"Understanding the tracking flow - now.gg + Singular","step1Head":"Host games on your website using now.gg","step1Desc":"Use now.gg to host your Android game on your own website.","step2Head":"Integrate web tracking from Singular","step2Desc":"Integrate the Singular web tracking link on hosted game page. ","step3Head":"Track user sessions for now.gg ","step3Desc":"As users click to launch game, track the game session on Singular’s dashboard","step4":"Step 4","step4Head":"Integrate install tracking for now.gg","step4Desc":"On the now.gg game page, integrate Singular’s install tracking link for install CTA","step5":"Step 5","step5Head":"Measure assisted installs by now.gg","step5Desc":"Track the assisted installs driven by now.gg using Singular’s install tracker.","step6":"Step 6","step6Head":"Share in groups","step6Desc":"Gamers can share the link with friends","unsubsDesc":"We will miss you, but we hear you loud and clear. Click below to unsubscribe.","agreeToNowgg":"I agree to receive email and updates from now.gg","recieveEmail":"Receive news and updates via email","marketAgency":"A marketing agency","successfulUnSub":"You have been unsubscribed successfully.","noIntrested":"I am Not Interested","trackingFlowShort":"Understanding the tracking flow","testimonyText":"Now.gg mobile cloud is revolutionary for the mobile gaming industry. It unlocks massive growth potential from the demand side by leapfrogging the limitations of the gamer's device capabilities. We continue to drive and track quality to make your UA campaigns a huge success story.","testimonials":"Testimonials","faqs":"FAQs","supportArticles":"Support articles","browseSupportArticles":"Browse support articles on now.gg product, services, FAQ's and more.","support":"Support","promotedArticles":"Promoted articles","talkToExpert":"Talk to a now.gg expert to see how we can help you deliver results. Please write to us at {EMAIL}","metaTitleSupport":"now.gg Online Support","metaDescSupport":"Make the most of your now.gg experience by reading ‘how-to’ articles, product usage guides and more","euPrivacy_1":"EU Privacy","fullName_1":"Full Name","companyName_1":"Company Name","businessEmail_1":"Business Email","gameDev_1":"A game developer","adNet_1":"An ad network","interested_1":"I am Interested","close_1":"Close","submit_1":"Submit","privacyPolicy_1":"Privacy Policy","learnMore_1":"Learn More","partners_1":"Partners","seeMore_1":"See More","solutions_1":"Solutions","mobileCloud_1":"now.gg Mobile Cloud","step1_1":"Step 1","step2_1":"Step 2","step3_1":"Step 3","platform_1":"Platform","distAndroid_1":"Distributed Android","blog_1":"Blog","gameGuide_1":"Game Guide","news_1":"News","getAssets_1":"Get Assets","about_1":"About","sorryToSee_1":"Sorry to see you go!","emailId_1":"Email address","playInBrowser_1":"Play in browser","unsubscribe_1":"Unsubscribe","home_1":"Home","invalidRegion_1":"Sorry, this app is not available in your country.","warningBrowser_1":"Hi there! now.gg is only available on Safari. We will soon be available on other browsers.","scheduleADemo":"Schedule a Demo","bringingMobile":"Bringing mobile gaming to the","nestBillion":"NEXT BILLION","joinTheRev":"Join the Revolution","joinThe":"Join the","untapped":"The next billion mobile gamers are untapped","termsAndPrivacy":"Terms and Privacy","copyrightDispute":"Copyright Dispute Policy","euPrivacy":"EU Privacy","copyrightText":"© 2022 now.gg. All rights reserved. By using now.gg you agree to our Terms of use and Privacy Policy","willTake":"We'll take it from here","confirmDesc":"Thank you for sending your contact details, one of our cloud experts will be in touch shortly.","fullName":"Full Name","azallowed":"A-Z, 0-9 Characters allowed","companyName":"Company Name","cannotBeEmpty":"Please provide a name","businessEmail":"Business Email","validEmail":"Please enter a valid email address","country":"Country/Region","yourCompany":"Your Company is","gameDev":"A game developer","adNet":"An ad network","marketingAg":"A marketing agency","recieve":"RECEIVE NEWS AND UPDATES VIA EMAIL","interested":"I am interested","notinterested":"I am not interested","close":"Close","submit":"Submit","privacyTerms":"Your privacy is our priority. We may use your information to communicate with you about our events, products, and services. Visit our ","privacyPolicy":"Privacy Policy","privacyTerms2":" to learn more about how we handle your information. You may opt-out at any time ","here":"here.","watchVid":"Watch Video","gamersUntapped":"The next billion mobile gamers are untapped","highEnd":"High-end mobiles cannot keep up with the needs of power gamers, while low- to mid-range mobiles are unsuitable for gaming","with":"With","mobileCloudWebLink":"mobile cloud the next billion mobile gamers are just a web link away","nextLiveSocial":"The next billion live on social media","nextLiveTitle":"They get news, content, updates as web links on social media","nextPara1":"Social is the most popular way for internet engagement. Over 1 million new users join social media everyday – that’s 15.5 new users every second! And almost all of them access their accounts via mobile devices. They are digital natives, and receive and share content, be it memes, cat pictures, news or original content.","nextPara2":"With now.gg, they can simply receive links to their favourite mobile games via any social app they already use.","nextPara3":"No wait, no download – Instant play.","learnMore":"Learn More","paymentChannels":"The next billion use digital payment channels, not credit cards","paymentTitle":"They use digital wallets, crypto currency, game top-ups","paymentPara1":"Digital payments have outstripped the use of credit and debit cards in many global markets. Payments via digital wallets, in-game currency and even crypto currency are the future.","paymentsPara2":"With now.gg, they can use their local digital payment channels to make in-app purchases.","paymentsPara3":"Faster, secure – Instant pay.","poweredBy":"Powered by","newWay":"A new way to experience mobile apps","readyTitle":"Get ready to reach the next billion in just one step","readyPara":"nowCloudOS is a distributed cloud OS that virtualizes native mobile app interfaces, enabling OS and device-agnostic access to users anywhere, anytime. It makes it extremely easy for game developers to build cloud-ready games for the future while keeping their existing Android games backward compatible.","partners":"Partners","nowggInNews":"now.gg in the News","inTheNews":"in the News","seeMore":"See More","solutions":"Solutions","mobileCloud":"Mobile Cloud","accessibility":"Accessibility, Shareability","watchVideo":"Watch Video","monetization":"and Monetization","enableGameDevs":"Enabling game developers to bring mobile gaming to the next billion In just one easy step","gameHost":"Simply host your game on now.gg mobile cloud, Platform-as-a-Service (PaaS) and publish the link on your website. No additional app modification required. Once hosted, mobile gamers can experience amazing game play without the need to download or install any app.","step1":"Step 1","solStep1":"Host your game on now.gg cloud and publish link on your website","step2":"Step 2","solStep2":"Share cloud game links via your social or send traffic via ads","step3":"Step 3","solStep3":"Integrate Cloud Payment","scheduleDemoNow":"Schedule Demo Now","forFuture":"for future ready cloud apps","futurePara":"The future of experiencing mobile apps is not through downloading or installing but through streaming on a mobile cloud OS. nowCloudOS is backward compatible with existing Android mobile apps and is fully ready for native cloud OS apps for the future.","realTime":"And real-time tracking on","realTimeDesc":"nowStudio provides real-time tracking to game developers to monitor growth in gaming sessions and optimize campaigns to scale them further.","attComp":"ATT Compatible","fbAds":"Facebook Ads","trackingDesc":"With nowStudio and partner MMPs, game developers can help optimize current Facebook and Google ad spends on iOS, even in the post IDFA era, while being compliant with privacy guidelines.","reachGamers":"Reach the next billion mobile gamers through","socialChannels":"social channels they already use","upPotential":"Up your game’s viral potential with the network effect","potentialDesc":"The next billion users are spending significant time on social media – the new face of word-of-mouth marketing. now.gg uses the intrinsic sharing nature of these platforms to seed and feed viral loops by making it easier to share your mobile game on different channels with just one click.","withThe":"With the","freedomToPay":"freedom to pay","freedomDesc":"via payment channels they already have","earnMore":"Earn more through higher margins","earnMoreDesc":"now.gg seamlessly integrates its cloud payments technology with any game and allows players to use digital wallets and cryptocurrency for making in-game purchases without any credit card restrictions. It also offers developers a higher margin in-app purchase (IAP) commissions and lowers the cost for multi-device integrations. ","poweringNowgg1":"Powering the now.gg","platform":"Platform","futureReady":"Future Ready,","androidComp":" Android Compatible","nowCloudOsDesc":"The future of experiencing mobile apps is not through downloading or installing but through streaming on a mobile cloud OS. nowCloudOS is already compatible with existing Android mobile apps and is fully ready for native cloud OS apps of the future.","fromAndroid":"From Android to ","distAndroid":"Distributed Android","distAndroidPara1":"nowCloudOS applies the concept of distributed computing to Android, creating a powerful platform suited for several cloud-based applications.","distAndroidPara2":"The basic premise of the architecture is that as network bandwidth and latency between different devices decrease, we can distribute the computational workload to better suit the specifications of each device, thus creating a low latency cloud-based platform.","armNvidiaAws":"ARM, NVIDIA \u0026 AWS","armPara1":"now.gg has been working closely with ARM, nVidia and AWS to create the nowCloud OS. Distributed architecture enables the use of heterogeneous nodes based on availability in the cloud. This enables scaling rapidly to a world wide service which can meet the current and future demand of the game developers and consumers.","armPara2":"In addition, now.gg envisions all games and mobile apps to be available on the cloud within a short time span. So it’s working closely with several companies in the chip eco-system to design optimal hardware for different gaming workloads all powered by the nowCloud OS.","5gDistributed":"Phone and 5G","aws":"AWS","awsDesc":"nowCloudOS is working with Telcos and phone manufacturers to create the Infinity phone. A phone with infinite specs powered by the vast cloud infrastructure. The infinity phone is able to transparently move apps and user data between the cloud and the device. In addition to benefits to gamers, this also provides enhanced security and privacy to the end consumer. The Infinity phone becomes even more powerful with the 5G rollouts as it can leverage the high bandwidth and low latency of 5G for this architecture.","infinity":"Infinity","phone":"Phone","phoneDesc":"nowCloudOS is integrated natively at the phone level. It works as a medium to run high-performance apps on the device, powered by intelligent servers worldwide, delivering a near real-time experience to the end-user. The low-cost mobile device, much like a thin client, would use an internet connection to stream the apps directly from the cloud. ","blog":"Blog","readFull":"Read Full Article","tenMinRead":"10 Min read","fiveMinRead":"5 Min read","subscribeWeekly":"Get regular blog updates to your inbox","enterEmail":"Enter YOUR EMAIL","moreArticles":"More Articles","gameGuide":"Game Guide","news":"News","mdeiaKit":"Media Kit","logosAssets":"Logos and creative assets","getAssets":"Get Assets","about":"About","aboutUs":"About Us","aboutUsDesc":"Building the future of mobile cloud with cutting-edge technology.","aboutUsPara1":"now.gg is the mobile cloud company changing the gaming experience for game developers and consumers. With the first mobile platform-as-a-service for game developers, now.gg enables gaming communities to play games on any device or OS, share games instantly on their social channels and pay in-game through payment channels they already have. No longer constrained by geography, device or attribution, now.gg opens the world of consumers to game developers and unlocks entirely new revenue streams.","aboutUsPara2":"Headquartered in Silicon Valley, now.gg shares a parent company with game.tv, the world's No. 1 mobile esports platform, and BlueStacks, the largest Android gaming platform on PC. Leading game developers use now.gg to delight the world with their games. ","404Msg":"Sorry, we can't find the page you're looking for, but we’re here to help.","goToHomePage":"Go to Homepage","sorryToSee":"Sorry to see you go!","sorryDesc":"We will miss you, but we hear you loud and clear. Click below to unsubscribe.","unsubscribeSuccess":"You have successfully unsubscribed.","unsubscribeAccident":"Did you unsubscribe by accident?","subscribeAgain":"Subscribe again","subscribe":"Subscribe","recieveNews":"Receive news and updates via email","emailId":"Email address","successSubscibe":"You have been successfully added to our subscribers list.","optOut":"To opt out, click ","cannotEmpty":"Cannot be blank","validEmailID":"Please enter a valid email address","playInBrowser":"Play instantly in browser with now.gg","videoNotSupported":"Your browser does not support the video tag.","unsubscribe":"Unsubscribe","email_id":"EMAIL ADDRESS","madeWith":"Made with ","madewith2":"by gamers, engineers and coffee connoisseurs","aboutUsPara3":"now.gg mobile cloud is fueled by the vision and experience of veteran technology leaders and innovators. With multi-decade experience in the technology domain, they’ve built and scaled several path-breaking products in global markets, turning them into business moats. Transforming the vision into reality is a team of passionate engineers, technologists, cloud experts, marketers, and web developers working across continents.","homeMetaTitle":"now.gg Mobile Cloud - Platform-as-a-Service (PaaS)","homeMetaDesc":"now.gg is a mobile cloud gaming platform that solves the problems of user acquisition, shareability, and monetization faced by mobile game developers globally.","platformMetaTitle":"nowCloudOS: Built on Distributed Android technology","platformMetaDesc":"now.gg is powered by the nowCloudOS, a powerful platform that enables mobile game developers to develop their existing Android apps for the cloud.","solutionMetaTitle":"now.gg Mobile Cloud: Instant Play, Instant Pay","solutionMetaDesc":"With now.gg, gamers can instantly try a mobile game, pay for IAPs through digital wallets, and game developers benefit from lower IAP cuts and much more.","blogMetaTitle":"The Offical now.gg Mobile Cloud Blog","blogMetaDesc":"Whitepapers, insights, game guides, product updates, and more- keep up to date with the latest news from now.gg - the future of mobile gaming.","aboutusMetaTitle":"now.gg mobile cloud - Democratizing Access to Mobile Gaming","aboutMetaDesc":"Headquartered in Silicon Valley, now.gg is a mobile cloud start-up that aims to bring mobile gaming to the next billion gamers.","newsMetaTitle":"Press Releases and News - now.gg mobile cloud","newsMetaDesc":"Discover the latest news, press releases, downloads and media kit in this section","404MetaTitle":"404 Error: Page Not Found","404MetaDesc":"It seems the page you are looking for no longer exists or is temporarily unavailable. Please try exploring other pages on the website","partnerText1":"Backward compatible with all Android apps","partnerText2":"Ready for future cloud-native apps and hybrid edge","partnerText3":"Infinity Phone","testimonial1":"now.gg has built a platform that leverages the global scale of AWS to provide a valuable business model to game developers worldwide. We see this as one of the most exciting use cases of our ARM servers on Amazon Elastic Compute Cloud (Amazon EC2). By leveraging the mobile cloud from now.gg, and AWS Graviton2 instances, game developers can run mobile games natively, encode the rendered graphics and stream the games directly to a mobile device. This allows game developers to provide a consistent gaming experience for all mobile devices and a much more enjoyable and seamless process for the gamers.","testimonial2":"Data centers running servers powered by Arm-based processors are helping to eliminate compatibility issues for mobile cloud developers, ensuring smartphone applications are readily available in the cloud. Through our collaboration with now.gg, we are solving for this new era of cloud-hosted gaming to enable a rich game play experience, while driving more efficient revenue streams for developers and cloud providers.","testimonial3":"Apple’s ATT privacy policy is a massive shift for mobile gaming marketers needing to reach and engage potential gamers. now.gg's mobile cloud solution empowers gamers to experience mobile games on the web before downloading the app. And with Singular’s cross-platform attribution, game developers can measure this innovative web-to-app flow while staying compliant with privacy policies.","testimonial4":"now.gg is powered by nowCloudOS’ distributed Android, that allows different parts of the Android stack to run on different machines. This has been enabled by our technology partners ARM, AWS and NVIDIA.","testimonial5":"now.gg enables tracking through leading MMP partners and help game developers optimize the campaigns while ensuring that all privacy guidelines are followed. Our partners include Singular, AppsFlyer","goBack":"Go Back","ourTechnologyPartner":"Our Technology Partners","mmpPartners":"MMP Partners","readMore":"read more","home":"Home","plsSelect":"Please Select","requiredField":"Please complete this required field.","allField":"Please complete all required fields.","subscribeUpdate":"Subscribe","contactUs":"Contact Us","contactUsPara":"Talk to a now.gg expert to see how we can help you deliver results. Please write to us at","invalidRegion":"Sorry, this app is not available in your country.","app.releaseDate":"Release Date:","app.genre":"Genre","app.popularGames":"Popular games","games":"Games","accessiblitySharability":"Be the first to experience now.gg","glimpseMobileLibrary":"Discover thrilling new games","trustedPartners":"Trusted by leading mobile game developers worldwide","forMobileDeveloper":"Turn any device into a gaming monster","desktopUnsupported":"This app is currently supported only on mobile devices.","warningBrowser":"Hi there! now.gg is currently available only on Chrome and Safari. We will soon be available on other browsers.","app.PlayInBrowser":"Play {app_name} in browser","app.gameDescription":"Goodbye lengthy downloads and nagging updates. Play your favorite {app_name} in the cloud on your PC or mobile without having to download or install the game. Make your old phone or PC, or any device, a powerful gaming machine instantly. Share the game’s link with your friends on social media quickly and introduce them to a new way of playing games. Logged in to a new device? No worries. With now.gg mobile cloud, you can resume a game on another screen without losing progress. So get in {app_name} right away and start slaying.","app.clickPlayInBrowser":"Click the ‘play in browser’ button and get started within no time, only on now.gg.","app.metaTitle":"Play {app_name} in browser with now.gg","app.metaDescription":"now.gg mobile cloud is a cloud gaming service unlike any other. Play {app_name} instantly and enjoy lag-free, low latency, and high-quality gaming.","metaTitleGamesList":"now.gg mobile Cloud - Play in Browser","metaDescGamesList":"Play mobile games instantly on any device, any OS, anywhere, anytime with now.gg mobile cloud. No downloads. No updates needed. Pre-register now","preRegister":"Pre-register","joinGamers":"Join over {GAMERS_COUNT} gamers","thanksForRegister":"Thank you for registering","reservedSpace":"We’ve reserved your space.","tellFriends":"Tell your friends about it and spread the word.","somethingWentWrong":"Something went wrong. Please try again.","amongFirstFew":"You’ll be among the first few players to experience now.gg mobile cloud.","chooseLanguageMessage":"Select your default language for now.gg website.","chooseLanguageMessageMob":"Select your language","continue":"Continue","selectYourCountry":"Select Your Language","done":"Done","supportArticleMetaTitle":"now.gg Support","supportArticleMetaDescription":"Unable to play a game? Experiencing technical issues while cloud gaming? Get answers for your product-related questions from now.gg support","mobGameDevelopers":"for Mobile Game Developers","andMonetization":"and Monetization","glimpseMobileGaming":"A glimpse into our mobile gaming library","app.moreGenreGames":"More {GENRE} games","preregisterFull":"Our Pre-registration is now full.","preregisterClosed":"Pre-registration is now closed.","thanksForResponse":" Thanks for the overwhelming response!","exploreAndroidGames":"Explore Android games on cloud","unsupportedLanguageMessage":"This page is currently not available in {LANG}.","swithchLanguage":"Switch to another language.","heroDesc":"A vibrant ecosystem for mobile game developers and gamers","mobileCloudGamers":"mobile cloud gamers","cloudAppStore":"cloud app store","nfts":"NFTs","mobileGameMods":"mobile game mods","experienceNowGG":"Experience now.gg","media1.header":"Next Billion Mobile Gamers","media1.subHeader":"Mobile cloud technology","media1.text1":"Embed games anywhere","media1.text2":"Get freedom from device, OS, geography restrictions","media1.text3":"Enable Instant Play via web app, social shares, Discord servers","media1.text4":"Grow your game with proprietary tech: NCOS, Hybrid cloud on distributed ARM servers","media1.text5":"Delight users with a one-of-its-kind free cloud service","media1.text6":"Go where the gamers live, 1 bn+ minutes played","media2.header":"Higher Monetization","media2.subHeader":"Open Cloud App Store","media2.text1":"Enjoy full compliance with Google and Apple stores","media2.text2":"Integrate cloud payments with Payment SDK","media2.text3":"Earn higher profit margins on IAPs","media2.text4":"Get support for mobile and NFT games","media3.header":"New Revenue Opportunity","media3.subHeader":"NFT Platform","media3.text1":"Introduce NFTs into existing mobile games","media3.text2":"Boost revenue with NFT-based monetization, NFT Fan Art, NFT-based gift cards","media3.text3":"Create NFT-based games from scratch","media3.text4":"Use NFTs as prizes, certificates in eSports","media3.text5":"Buy, sell, trade game characters, skins, buffs as NFTs","userEngagement":"User Engagement","modMobileGames":"Keep players engaged with mobile game modding directly through the cloud","forGameDevelopers":"For mobile game developers and gamers","payments":"Payments","devResources":"Developer Resources","cloudBasedMobileGame":"Cloud Based Mobile Game Monetization","globalPlatformForDevelopers":"Global platform-as-a-service for game developers with integrated cloud payments","createDeveloperAccount":"Create a developer account","newRevenue":"New Revenue","whatWeDo":"What we do","increasingMargins":"Increasing margins from current revenue and unlocking new monetization opportunities for game developers.","maximizeIAPMargins":"Maximize IAP Margins","integrateWithMobileCloud":"Integrate with our mobile cloud payments for much higher margins on current revenue from in-app purchases. Fully compatible with existing Google and Apple Store policies, now.gg offers a 95% cut to game developers, increasing their margins by 25%.","nftMonetization":"NFT Monetization with LiveOps","discoverMonetizeGames":"Discover a whole new way to monetize games with NFTs on now.gg mobile cloud. Leverage the many possibilities that NFT game economy has to offer and add another layer of monetization to your game. Use powerful LiveOps tools to boost adoption of NFTs in your gaming community.","nftBasedGames":"NFT-based Games","stepIntoWorld":"Step into the world of NFT-based gaming with now.gg mobile cloud. Launch your own NFT-based mobile game with our technology and expertise.","benefitsOfNowgg":"Benefits of now.gg","empowersDevelopers":"now.gg empowers developers to create, share and monetize their games on the cloud in ways never done before.","higherMargin":"+25% Higher Margin","increasePurchaseMargins":"Increase in-app purchase margins by 25% from currently paying users for in-app purchases.","targetNonPayingUsers":"Target currently non-paying users through NFT-based monetization, NFT marketplace, NFT game fan art and more, to create a new revenue opportunity.","worksAppleGoogle":"Works with Apple and Google","compatibleWithGoogleApple":"Fully compatible with existing Google and Apple store policies.","developerPartners":"Developer Partners","nowggCloudPayments":"now.gg Cloud Payments","earnHigherMargins":"Earn higher margins on in-app purchases using now.gg's integrated cloud payments store. Fully compliant with Google, Apple stores","developers":"Developers","registerAsDeveloper":"Register as a developer","creatorstudio.subHeader":"Mobile Game Modding","creatorstudio.text1":"Give gamers a new way to play on the world’s first and only mobile game modding platform","creatorstudio.text2":"Use the Creator Studio to build infinite modded versions of a game","creatorstudio.text3":"Enable easy discovery and one-click sharing with the Creator Hub","creatorstudio.text4":"Buy and sell mods as NFTs","nfg.header":"Democratized Game Ownership","nfg.subHeader":"now.gg Fungible Games (NFG)","nfg.text1":"Revolutionize game ownership through NFTs","nfg.text2":"Distribute ownership of in-game assets among multiple owners","nfg.text3":"Develop games that are fungible, possible only through the mobile cloud","nfg.text4":"Bring gamers, creators and developers together","nfg.text5":"Power up now.gg Creator Studio to create mobile game mods","increaseUserEngagement":"Increase user engagement by giving gamers a whole new way to build, play and share games","nfg":"NFG","nowggFungibleGames":"{NOW_GG} Fungible Game","tryGame":"Try game","nfgMedia.header1":"A Brave New World of Gaming","nfgMedia.subHeader1":"The NFG platform empowers developers to build for Web 3.0. It lets gamers recreate a game event by changing the game code, game art, and game data.","nfgMedia.header2":"Redefining Game Ownership","nfgMedia.subHeader2":"Unlike the traditional way where games are owned by an entity or a studio, NFG makes it super easy for different gamers to own different pieces of the game.","nfgMedia.header3":"Partner Gaming Engines","nfgMedia.subheader3":"The mobile cloud technology powering the NFG platform works seamlessly for games based on Cocos, Unreal, and Unity engines.","nfgMedia.header4":"Unique NFT Marketplace","nfgMedia.subHeader4":"Create a NFT marketplace within your game or app. Unlock new dimensions in monetization and promotion.","visitMarketPlace":"Visit Marketplace","testimonial.header":"The First NFG","testimonial.subHeader":"From building for Web 3.0 to launching an NFT marketplace, mobile cloud is empowering game developers to go beyond the usual.","testimonial.comment1":"\u003cstrong\u003eNFG is a mind-blowing new platform.\u003c/strong\u003e It will transform how games are developed in the future and how games interact with their player.","testimonial.comment2":"It also gives existing mobile developers a path to Web 3.0 building on top of the existing business. This would not have been possible without the mobile cloud.","founderCeo":"Founder \u0026 CEO","nfgMetaDescription":"With NFGs, trade in pre-owned NFTs, buy a new one from a NFT marketplace and distribute game ownership. Made possible by the mobile cloud.","nfgDefinition":"With the NFG (now.gg fungible games) platform, games can be broken down into game code, game events, and game art with different people owning different pieces of the game. The NFG platform can do this automatically for some existing games or enable developers to do this programmatically.","whatIsNfg":"What is NFG?","nfgMedia.altHeader3":"Seamless across gaming engines","mobileGamingMetaverse":"Mobile Gaming Metaverse","stepIntoMobileMetaverse":"Step into the Mobile Gaming Metaverse","knowMore":"Learn more","paymentsMenuPara":"Unlocking new monetization opportunities for game developers with integrated cloud payments","solutionsMenuPara":"Enabling game developers to reach the next billion gamers, powered by the mobile cloud.","nft":"NFT","company":"Company","nftSolutions":"NFT Solutions","nftSolutionsMenuPara":"Increasing margins from current revenue and unlocking new monetization opportunities for game developers.","nfgMenuPara":"The NFG platform works seamlessly for games based on Cocos, Unreal, and Unity engines.","nftMarketplace":"NFT Marketplace","nftMarketplaceMenuPara":"Create a NFT marketplace within your game or app. Unlock new dimensions in monetization and promotion.","aboutMenuPara":"The mobile gaming revolution, powered by the mobile cloud.","newsMenuPara":"Now.gg gives 95% cut to mobile game devs and launches NFT monetization","liveopsNft":"LiveOps NFT","liveopsNFTMenupara":"Now.gg NFT Service expands the monetization dimension for you by introducing another layer with interactive LiveOps NFT.","brandAssets":"Brand Assets","mobileGamingModding":"Mobile Game Modding","stepIntoMobileModdinf":"Step into the Mobile Gaming Modding","platformMenuPara":"Bringing gamers and game developers together on the world's first mobile cloud PaaS.","mgmSummary":"Create and build a much richer experience by giving players the power to mod mobile games.","nowcloudOs":"nowCloud OS","modGames":"Mod games","dontSellInformation":"Do Not Sell My Personal Information"},"host":"https://now.gg","languages":{"blog_post_lang":["zh-hans","zh-hant","en","ja","ko"],"app_page_lang":["zh-hans","zh-hant","en","ja","ko","pt-br","es","th","vi","fr","de","id"],"support_article_lang":["zh-hant","en","ja","ko"],"prereg_apps_lang":["zh-hans","zh-hant","en"]},"country_code":"US","__N_SSP":true,"pageProps":{"pressReleases":{"cached":true,"data":[{"id":8229,"slug":"bluestacks-launches-creator-studio-and-creator-hub-for-modding-mobile-games","title":"Bluestacks launches Creator Studio and Creator Hub for modding mobile games","news_description":"Mobile gaming platform Bluestacks has launched its Creator Studio and Creator Hub for the modding and sharing of modded mobile games.","publisher_logo_link":"cms-media/2022/02/pocket-gamer.png","published_date":"2022-02-23","news_link":"https://www.pocketgamer.biz/news/78227/bluestacks-launches-creator-studio-and-creator-hub-for-modding-mobile-games/"},{"id":8228,"slug":"bluestacks-launches-creator-tools-for-mobile-game-modding","title":"BlueStacks launches creator tools for mobile game modding","news_description":"BlueStacks is launching its Creator Studio \u0026 Creator Hub, which will enable mobile game players mod their games.","publisher_logo_link":"cms-media/2022/02/VentureBeat_VB_Logo.png","published_date":"2022-02-23","news_link":"https://venturebeat.com/2022/02/23/bluestacks-launches-creator-tools-for-mobile-game-modding/"},{"id":8227,"slug":"modding-of-android-games-now-possible-thanks-to-bluestacks","title":"Modding of Android games now possible thanks to BlueStacks","news_description":"Android game modding hasn't been nearly as easy as PC game modding. However, BlueStacks aims to change that.","publisher_logo_link":"cms-media/2022/02/android-authority.png","published_date":"2022-02-23","news_link":"https://www.androidauthority.com/android-game-modding-3113363/"},{"id":7701,"slug":"now-gg-wins-the-2022-devies-awards-for-the-best-innovation-in-gaming","title":"now.gg Wins the 2022 DEVIES Awards for the Best Innovation in Gaming","news_description":"Recognizing outstanding design, engineering, and innovation in developer technology.","publisher_logo_link":"cms-media/2022/02/devies.png","published_date":"2022-02-16","news_link":"https://www.developerweek.com/awards/"},{"id":3785,"slug":"now-gg-gives-95-cut-to-mobile-game-devs-and-launches-nft-monetization","title":"now.gg gives 95% cut to mobile game devs and launches NFT monetization","news_description":"now.gg is adding a generous revenue split and NFT monetization for the devs.","publisher_logo_link":"cms-media/2021/11/1_VentureBeat_VB_Logo-1.png","published_date":"2021-11-16","news_link":"https://venturebeat.com/2021/11/16/now-gg-gives-95-cut-to-mobile-game-devs-and-launches-nft-monetization/"},{"id":2577,"slug":"its-the-network-that-matters-not-the-device-now-gg-ceo-on-cloud-gaming","title":"‘It’s the network that matters, not the device’: now.gg CEO on cloud gaming","news_description":"With a hybrid cloud, computation can be offloaded from the cloud to the device and back to optimize application function.","publisher_logo_link":"cms-media/2021/11/RCR-Wireless-News-Banner.png","published_date":"2021-11-22","news_link":"https://www.rcrwireless.com/20211122/telco-cloud/its-the-network-that-matters-not-the-device-now-gg-ceo-on-cloud-gaming"}],"meta":{"count":35,"maxPage":6,"languages":["zh-hans","zh-hant","en","ja","ko","pt-br","th","vi","id"]},"message":"success","code":200}}},"page":"/_pages/solutions","query":{},"buildId":"h1MsyAy6Lya6lMhTahiLN","runtimeConfig":{"PUBLIC_NOWGG_MODS":"https://now.gg/mods"},"isFallback":false,"dynamicIds":["+wdc","0x2o","16Al","17x9","8L3h","QCnb","WbBG","f/k9","i8i4","nKUr","q1tI","viRO","yl30","lPHp","0x0X","9uj6","Gytx","ME5O","vOnD","+NU8","9/5/","HVci","JeI0","UxbX","hKI/","ntbh","pxCl","P957","S6dy","YFqc","cTJO","deKR","hIrt","kriW","mmzJ","qM95","vNVm","xoxq","HXcA","L+Q8","ULIw","chPE","pipb"],"gssp":true,"appGip":true,"locale":"en","locales":["en","tw","ko","cn","ja","es","pt-br","th","vi","fr","de","id"],"defaultLocale":"en"}</script><script nomodule="" src="_next/static/chunks/polyfills-b52747adce181b3dd003.js"></script><script async="" src="_next/static/chunks/53.b700420b3af67eba97f5.js"></script><script async="" src="_next/static/chunks/52.21a1cd4d33eb7f0f4169.js"></script><script src="_next/static/chunks/main-a604217d9da5dffe907c.js" async=""></script><script src="_next/static/chunks/webpack-b25ae977b157e03de458.js" async=""></script><script src="_next/static/chunks/framework.04d0db93c3651611635b.js" async=""></script><script src="_next/static/chunks/9770a1fcde7d7b6376a25a2afd36ac1302fb30da.2ed3fa1b2016ebfbf8de.js" async=""></script><script src="_next/static/chunks/d65043a6a30b96783fc43a9b8ca0ad9e15124ba3.388e39bcce14534cfe45.js" async=""></script><script src="_next/static/chunks/a55ef1c0a6ace42c88cc595af787bfc2f5ea2290.9be3943cdffbc958caaa.js" async=""></script><script src="_next/static/chunks/26322ba5503bde0f471ca53a74cf7b8c77ad2d46.1909a6c1fb703beaf436.js" async=""></script><script src="_next/static/chunks/pages/_app-b7234e44ddb5c38fbb64.js" async=""></script><script src="_next/static/chunks/ea88be26.383cfd70d6f2d4d898af.js" async=""></script><script src="_next/static/chunks/54944ea01857f918e7d3d95729472fa2c6b382ff.c9e11f2337006320ce7f.js" async=""></script><script src="_next/static/chunks/b49ba256db75aaf04a65d51a9a8a9b01fee913e5.44e713228b5065e358de.js" async=""></script><script src="_next/static/chunks/7218279e5d3f4dcc733a7cfaa91e399dc1d8d858.12b71cb22efedf2aa4d1.js" async=""></script><script src="_next/static/chunks/1b67f1c5410f017eaa8647bbc72842be698fffc7.75ddc79ef77dea09e7db.js" async=""></script><script src="_next/static/chunks/pages/_pages/solutions-d635291118bd2f97994c.js" async=""></script><script src="_next/static/h1MsyAy6Lya6lMhTahiLN/_buildManifest.js" async=""></script><script src="_next/static/h1MsyAy6Lya6lMhTahiLN/_ssgManifest.js" async=""></script></body></html>