-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·1200 lines (1164 loc) · 68.7 KB
/
index.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
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Xcloud - Cloud Gaming HTML Template</title>
<!-- Favicon -->
<link rel="shortcut icon" href="images/favicon.ico">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Rev-slider -->
<link rel="stylesheet" href="rev/css/rs6.css">
<link rel="stylesheet" href="rev/fonts/font-awesome/css/font-awesome.css">
<link rel="stylesheet" href="rev/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css">
<link rel="stylesheet" href="rev/fonts/pe-icon-7-stroke/css/helper.css">
<!-- Animations -->
<link rel="stylesheet" href="css/animations.min.css">
<!-- Icons -->
<link rel="stylesheet" href="fonts/font-awesome/css/all.min.css">
<link rel="stylesheet" href="css/ionicons.min.css">
<link rel="stylesheet" href="fonts/themify-icons/themify-icons.css">
<link rel="stylesheet" href="fonts/flaticon/flaticon.css">
<!-- Magnific Popup -->
<link rel="stylesheet" href="css/magnific-popup.min.css">
<!-- Style -->
<link rel="stylesheet" href="css/style.css">
<!-- Responsive -->
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<!-- Loading -->
<div id="pq-loading">
<div id="pq-loading-center">
<img src="images/logo/logo.png" alt="loading">
</div>
</div>
<!-- Loading -->
<!-- Header -->
<header id="pq-header" class="pq-header-style-1 pq-has-sticky">
<div class="pq-top-header top-style-1">
<div class="container-fluid">
<div class="row flex-row-reverse">
<div class="col-md-4 text-right">
<div class="pq-header-social text-right">
<ul>
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
<li><a href="#"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
</div>
</div>
<div class="col-md-8 ">
<p class="pq-header-tagline mb-0">
Tune In to XCloud beyond At CES Cloud Gaming 00d:07h:39m:44s
</p>
</div>
</div>
</div>
</div>
<div class="pq-bottom-header">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" href="main-home.html">
<img class="img-fluid logo" src="images/logo/logo.png" alt="xcloud">
</a>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<div id="pq-menu-contain" class="pq-menu-contain">
<ul id="pq-main-menu" class="navbar-nav ml-auto">
<li class="menu-item current-menu-item menu-item-has-children">
<a href="main-home.html">Home</a><i
class="fa fa-chevron-down pq-submenu-icon"></i>
<ul class="sub-menu">
<li class="menu-item current-menu-item">
<a href="main-home.html" aria-current="page">Main Home</a>
</li>
<li class="menu-item">
<a href="cloud-game.html">Cloud Game</a>
</li>
<li class="menu-item">
<a href="online-gaming.html">Online Gaming</a>
</li>
</ul>
</li>
<li class="menu-item">
<a href="about.html">About</a>
</li>
<li class="menu-item">
<a href="games.html">Games</a>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">page</a><i class="fa fa-chevron-down pq-submenu-icon"></i>
<ul class="sub-menu">
<li class="menu-item">
<a href="pricing-plan.html">Pricing Plan</a>
</li>
<li class="menu-item">
<a href="get-started.html">Get Started</a>
</li>
<li class="menu-item">
<a href="how-to-play.html">How to play</a>
</li>
<li class="menu-item">
<a href="support.html">Support</a>
</li>
<li class="menu-item">
<a href="download.html">Download</a>
</li>
<li class="menu-item">
<a href="faq.html">FAQ</a>
</li>
<li class="menu-item">
<a href="contact-us.html">Contact Us</a>
</li>
<li class="menu-item">
<a href="404.html">404</a>
</li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">blog</a><i class="fa fa-chevron-down pq-submenu-icon"></i>
<ul class="sub-menu">
<li class="menu-item menu-item-has-children">
<a href="#">Grid Style</a><i
class="fa fa-chevron-down pq-submenu-icon"></i>
<ul class="sub-menu">
<li class="menu-item">
<a href="1-column-blog.html">1 column blog</a>
</li>
<li class="menu-item">
<a href="2-column-blog.html">2 column blog</a>
</li>
<li class="menu-item">
<a href="3-column-blog.html">3 column blog</a>
</li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">blog sidebar</a><i
class="fa fa-chevron-down pq-submenu-icon"></i>
<ul class="sub-menu">
<li id="menu-item-1534" class="menu-item">
<a href="left-sidebar.html">Left Sidebar</a>
</li>
<li class="menu-item">
<a href="right-sidebar.html">Right Sidebar</a>
</li>
</ul>
</li>
<li class="menu-item">
<a href="you-wont-stop-playing-once-you-start.html">single blog</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="pq-menu-search-block">
<a href="javascript:void(0)" class="pq-tools-serach-button" data-bs-toggle="offcanvas"
data-bs-target="#offcanvassearch">
<i class="ti-search"></i>
</a>
<div class="offcanvas offcanvas-top" tabindex="-1" id="offcanvassearch"
aria-hidden="true">
<form role="search" method="get" class="search-form">
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field mb-0" placeholder="Search …" value="" name="s">
</label>
<button type="submit" class="search-submit">
<span class="screen-reader-text">Search</span>
</button>
</form>
</div>
</div>
<div class="pq-btn-container">
<div class="pq-button-block">
<a href="games.html" class="pq-button pq-button-flat">
<span class="pq-button-text">play now </span>
</a>
</div>
</div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<i class="fas fa-bars"></i>
</button>
</nav>
</div>
</div>
</div>
</div>
</header>
<!-- Header -->
<!-- Banner -->
<div class="banner py-0">
<!-- START Home 1 REVOLUTION SLIDER 6.6.11 -->
<p class="rs-p-wp-fix"></p>
<rs-module-wrap id="rev_slider_5_1_wrapper" data-alias="home-12" data-source="gallery"
style="visibility:hidden;background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;">
<rs-module id="rev_slider_5_1" data-version="6.6.11">
<rs-slides style="overflow: hidden; position: absolute;">
<rs-slide style="position: absolute;" data-key="rs-13" data-title="Slide"
data-anim="adpr:false;ms:300;" data-in="o:0;" data-out="a:false;">
<img src="rev/assets/dummy.png" alt="Slide" class="rev-slidebg tp-rs-img rs-lazyload"
data-lazyload="rev/assets/transparent.png" data-bg="p:center bottom;c:#14141d;"
data-no-retina>
<!--
--><rs-layer id="slider-5-slide-13-layer-2" data-type="shape" data-rsp_ch="on"
data-xy="xo:-1190px,-982px,-746px,-460px;" data-text="w:normal;s:20,16,12,7;l:0,20,15,9;"
data-dim="w:3611px,2981px,2264px,1396px;h:540px,445px,338px,335px;"
data-frame_999="o:0;st:w;" style="z-index:7;background-color:#0c0d11;">
</rs-layer><!--
--><rs-layer id="slider-5-slide-13-layer-3" data-type="text" data-rsp_ch="on"
data-xy="x:l,l,c,c;xo:30px,15px,0,0;yo:260px,217px,175px,177px;"
data-text="w:normal;s:60,48,42,34;l:68,56,50,42;ls:1px;fw:700;a:left,left,center,center;"
data-dim="w:1068px,793px,661px,353px;" data-frame_0="y:50,41,31,19;"
data-frame_1="st:800;sp:1000;sR:800;" data-frame_999="o:0;st:w;sR:7200;"
style="z-index:11;font-family:'Barlow';text-transform:uppercase;">play any game any where<br>
</rs-layer><!--
--><rs-layer id="slider-5-slide-13-layer-5" data-type="text" data-color="#c9c6c6" data-rsp_ch="on"
data-xy="x:l,l,c,c;xo:30px,15px,0,0;yo:346px,282px,233px,143px;"
data-text="w:normal;s:16,14,14,8;l:28,26,22,13;a:left,left,center,center;"
data-dim="w:776px,640px,653px,402px;" data-vbility="t,t,t,f" data-frame_0="y:50,41,31,19;"
data-frame_1="st:1000;sp:1000;" data-frame_999="o:0;st:w;"
style="z-index:12;font-family:'Poppins';">There are many variations of passages of Lorem
Ipsum
available, but the majority have suffered injected humour, or randomised words which don't
look
even slightly believable. If you are goingto use consectetur. Bibendum est ultricies integer
quis auct elit sed.<br>
</rs-layer><!--
--><rs-layer id="slider-5-slide-13-layer-6" data-type="image" data-rsp_ch="on"
data-xy="x:c;xo:60px,49px,37px,-13px;y:t,t,t,b;yo:457px,377px,286px,0;"
data-text="w:normal;s:20,16,12,7;l:0,20,15,9;"
data-dim="w:2085px,1721px,1307px,521px;h:1086px,896px,680px,263px;"
data-frame_999="o:0;st:w;" style="z-index:6;"><img src="rev/assets/dummy.png" alt=""
class="tp-rs-img rs-lazyload" width="1920" height="1000"
data-lazyload="rev/assets/1-7.jpg" data-no-retina>
</rs-layer><!--
--> </rs-slide>
<rs-slide style="position: absolute;" data-key="rs-20" data-title="Slide"
data-anim="adpr:false;ms:300;" data-in="o:0;" data-out="a:false;">
<img src="rev/assets/dummy.png" alt="Slide" class="rev-slidebg tp-rs-img rs-lazyload"
data-lazyload="rev/assets/transparent.png" data-bg="p:center bottom;c:#14141d;"
data-no-retina>
<!--
--><rs-layer id="slider-5-slide-20-layer-2" data-type="shape" data-rsp_ch="on"
data-xy="xo:-1190px,-982px,-746px,-460px;" data-text="w:normal;s:20,16,12,7;l:0,20,15,9;"
data-dim="w:3611px,2981px,2264px,1396px;h:540px,445px,338px,335px;"
data-frame_999="o:0;st:w;" style="z-index:7;background-color:#0c0d11;">
</rs-layer><!--
--><rs-layer id="slider-5-slide-20-layer-3" data-type="text" data-rsp_ch="on"
data-xy="x:l,l,c,c;xo:30px,15px,0,0;yo:260px,217px,175px,177px;"
data-text="w:normal;s:60,48,42,34;l:68,56,50,42;ls:1px;fw:700;a:left,left,center,center;"
data-dim="w:1068px,793px,661px,353px;" data-frame_0="y:50,41,31,19;"
data-frame_1="st:800;sp:1000;sR:800;" data-frame_999="o:0;st:w;sR:7200;"
style="z-index:11;font-family:'Barlow';text-transform:uppercase;">WATCH LIVE any STREAMS<br>
</rs-layer><!--
--><rs-layer id="slider-5-slide-20-layer-5" data-type="text" data-color="#c9c6c6" data-rsp_ch="on"
data-xy="x:l,l,c,c;xo:30px,15px,0,0;yo:346px,282px,233px,143px;"
data-text="w:normal;s:16,14,14,8;l:28,26,22,13;a:left,left,center,center;"
data-dim="w:776px,640px,653px,402px;" data-vbility="t,t,t,f" data-frame_0="y:50,41,31,19;"
data-frame_1="st:1000;sp:1000;" data-frame_999="o:0;st:w;"
style="z-index:12;font-family:'Poppins';">There are many variations of passages of Lorem
Ipsum
available, but the majority have suffered injected humour, or randomised words which don't
look
even slightly believable. If you are goingto use consectetur. Bibendum est ultricies integer
quis auct elit sed.<br>
</rs-layer><!--
--><rs-layer id="slider-5-slide-20-layer-6" data-type="image" data-rsp_ch="on"
data-xy="x:c;xo:60px,49px,37px,-13px;y:t,t,t,b;yo:457px,377px,286px,0;"
data-text="w:normal;s:20,16,12,7;l:0,20,15,9;"
data-dim="w:2085px,1721px,1307px,521px;h:1086px,896px,680px,263px;"
data-frame_999="o:0;st:w;" style="z-index:6;"><img src="rev/assets/dummy.png" alt=""
class="tp-rs-img rs-lazyload" width="1920" height="1000"
data-lazyload="rev/assets/2-7.jpg" data-no-retina>
</rs-layer><!--
--> </rs-slide>
<rs-slide style="position: absolute;" data-key="rs-21" data-title="Slide"
data-anim="adpr:false;ms:300;" data-in="o:0;" data-out="a:false;">
<img src="rev/assets/dummy.png" alt="Slide" class="rev-slidebg tp-rs-img rs-lazyload"
data-lazyload="rev/assets/transparent.png" data-bg="p:center bottom;c:#14141d;"
data-no-retina>
<!--
--><rs-layer id="slider-5-slide-21-layer-2" data-type="shape" data-rsp_ch="on"
data-xy="xo:-1190px,-982px,-746px,-460px;" data-text="w:normal;s:20,16,12,7;l:0,20,15,9;"
data-dim="w:3611px,2981px,2264px,1396px;h:540px,445px,338px,335px;"
data-frame_999="o:0;st:w;" style="z-index:7;background-color:#0c0d11;">
</rs-layer><!--
--><rs-layer id="slider-5-slide-21-layer-3" data-type="text" data-rsp_ch="on"
data-xy="x:l,l,c,c;xo:30px,15px,0,0;yo:260px,217px,175px,177px;"
data-text="w:normal;s:60,48,42,34;l:68,56,50,42;ls:1px;fw:700;a:left,left,center,center;"
data-dim="w:1068px,793px,661px,353px;" data-frame_0="y:50,41,31,19;"
data-frame_1="st:800;sp:1000;sR:800;" data-frame_999="o:0;st:w;sR:7200;"
style="z-index:11;font-family:'Barlow';text-transform:uppercase;">VIDEO GAMES TRENDING MATCHES<br>
</rs-layer><!--
--><rs-layer id="slider-5-slide-21-layer-5" data-type="text" data-color="#c9c6c6" data-rsp_ch="on"
data-xy="x:l,l,c,c;xo:30px,15px,0,0;yo:346px,282px,233px,143px;"
data-text="w:normal;s:16,14,14,8;l:28,26,22,13;a:left,left,center,center;"
data-dim="w:776px,640px,653px,402px;" data-vbility="t,t,t,f" data-frame_0="y:50,41,31,19;"
data-frame_1="st:1000;sp:1000;" data-frame_999="o:0;st:w;"
style="z-index:12;font-family:'Poppins';">There are many variations of passages of Lorem
Ipsum
available, but the majority have suffered injected humour, or randomised words which don't
look
even slightly believable. If you are goingto use consectetur. Bibendum est ultricies integer
quis auct elit sed.<br>
</rs-layer><!--
--><rs-layer id="slider-5-slide-21-layer-6" data-type="image" data-rsp_ch="on"
data-xy="x:c;xo:60px,49px,37px,-13px;y:t,t,t,b;yo:457px,377px,286px,0;"
data-text="w:normal;s:20,16,12,7;l:0,20,15,9;"
data-dim="w:2085px,1721px,1307px,521px;h:1173px,968px,735px,263px;"
data-frame_999="o:0;st:w;" style="z-index:6;"><img src="rev/assets/dummy.png" alt=""
class="tp-rs-img rs-lazyload" width="1920" height="1080"
data-lazyload="rev/assets/3-12.jpg" data-no-retina>
</rs-layer><!--
--> </rs-slide>
</rs-slides>
</rs-module>
</rs-module-wrap>
<!-- END REVOLUTION SLIDER -->
</div>
<!-- Banner -->
<!-- Gaming -->
<section class="gaming pq-bg-dark">
<div class="container">
<div class="row align-items-center flex-column-reverse flex-xl-row">
<div class="col-xl-6 pq-pe-30 mt-4 mt-xl-0">
<div class=" pq-section-title-style-1">
<h2 class="pq-section-main-title">experience gaming with no limits</h2>
<p class="pq-section-description">It is a long established fact that a reader will be distracted
by the readable content of a page when looking at its layout. The point of using Lorem Ipsum
is that it has a more or less normal English.</p>
</div>
<div class="divider pq-divider-spacing"></div>
<div class="pq-icon-boxes pq-mb-45">
<div class="pq-icon-box pq-style-1">
<div class="pq-icon">
<i class="ion ion-ios-checkmark-outline"></i>
</div>
<div class="pq-icon-box-content">
<h6 class="pq-icon-box-title">24/7 Support</h6>
</div>
</div>
<div class="pq-icon-box pq-style-1">
<div class="pq-icon">
<i class="ion ion-ios-checkmark-outline"></i>
</div>
<div class="pq-icon-box-content">
<h6 class="pq-icon-box-title">Offers & Care</h6>
</div>
</div>
</div>
<div class="pq-btn-container">
<div class="pq-button-block">
<a class="pq-button pq-button-flat" href="games.html">
<span class="pq-button-text">Play now</span>
</a>
</div>
</div>
</div>
<div class="col-xl-6">
<img src="images/about/1.png" class="img-fluid" alt="">
</div>
</div>
</div>
</section>
<!-- Gaming -->
<!-- Marquee -->
<div class="marquee pq-pb-60">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 p-0">
<div class="pq-marquee-main">
<div class="pq-marquee">
<ul class="marquee-content-items">
<li>
esports in word now play the next generation <span> cloud gaming</span>
</li>
</ul>
<ul class="marquee-content-items">
<li>
esports in word now play the next generation <span> cloud gaming</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Marquee -->
<!-- Connect & Play -->
<section class="connect-and-play pq-bg-img-1 pq-bg-grey">
<div class="container">
<div class="row">
<div class="col-xl-6">
<div class="pq-sticky-top">
<div class="pq-section-title-style-1">
<h2 class="pq-section-main-title">Connect and play your games</h2>
</div>
</div>
</div>
<div class="col-xl-6 mt-5 mt-xl-0">
<div class="pq-icon-box pq-style-2">
<div class="pq-icon">
<i class="flaticon-gaming-1"></i>
</div>
<div class="pq-icon-box-content">
<h4 class="pq-icon-box-title">high-end gaming</h4>
<p class="pq-icon-box-description">It is a long established fact that a reader of a page
when looking at its layout. The point of using Lorem Ipsum is that it have evolved over
the years, sometimes has a more.</p>
</div>
</div>
<div class="pq-icon-box pq-style-2">
<div class="pq-icon">
<i class="flaticon-online-gaming"></i>
</div>
<div class="pq-icon-box-content">
<h4 class="pq-icon-box-title">join the community</h4>
<p class="pq-icon-box-description">It is a long established fact that a reader of a page
when looking at its layout. The point of using Lorem Ipsum is that it have evolved over
the years, sometimes has a more.</p>
</div>
</div>
<div class="pq-icon-box pq-style-2">
<div class="pq-icon">
<i class="flaticon-gaming-3"></i>
</div>
<div class="pq-icon-box-content">
<h4 class="pq-icon-box-title">a look into roadmap</h4>
<p class="pq-icon-box-description">It is a long established fact that a reader of a page
when looking at its layout. The point of using Lorem Ipsum is that it have evolved over
the years, sometimes has a more.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Connect & Play -->
<!-- Image Marquee -->
<div class="image-marquee pq-pt-45">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 p-0">
<div class="pq-img-marquee-main ">
<div class="pq-img-marquee">
<ul class="marquee-img-content-items">
<li>
<img decoding="async" src="images/marquee/image-marquee-1/1.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-1/2.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-1/3.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-1/4.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-1/5.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-1/6.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-1/7.jpg" alt="img"
class="pq-marquee-img">
</li>
</ul>
<ul class="marquee-img-content-items">
<li>
<img decoding="async" src="images/marquee/image-marquee-1/1.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-1/2.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-1/3.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-1/4.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-1/5.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-1/6.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-1/7.jpg" alt="img"
class="pq-marquee-img">
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-12 p-0">
<div class="pq-img-marquee-main pq-imagemarqueeright">
<div class="pq-img-marquee">
<ul class="marquee-img-content-items">
<li>
<img decoding="async" src="images/marquee/image-marquee-2/1.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-2/2.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-2/3.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-2/4.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-2/5.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-2/6.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-2/7.jpg" alt="img"
class="pq-marquee-img">
</li>
</ul>
<ul class="marquee-img-content-items">
<li>
<img decoding="async" src="images/marquee/image-marquee-2/1.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-2/2.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-2/3.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-2/4.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-2/5.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-2/6.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-2/7.jpg" alt="img"
class="pq-marquee-img">
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-12 p-0">
<div class="pq-img-marquee-main ">
<div class="pq-img-marquee">
<ul class="marquee-img-content-items">
<li>
<img decoding="async" src="images/marquee/image-marquee-3/1.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-3/2.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-3/3.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-3/4.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-3/5.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-3/6.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-3/7.jpg" alt="img"
class="pq-marquee-img">
</li>
</ul>
<ul class="marquee-img-content-items">
<li>
<img decoding="async" src="images/marquee/image-marquee-3/1.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-3/2.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-3/3.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-3/4.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-3/5.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-3/6.jpg" alt="img"
class="pq-marquee-img">
</li>
<li>
<img decoding="async" src="images/marquee/image-marquee-3/7.jpg" alt="img"
class="pq-marquee-img">
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Image Marquee -->
<!-- Process -->
<section class="process pq-bg-dark">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class=" pq-section-title-style-1 text-center">
<h2 class="pq-section-main-title">cloud gaming process</h2>
</div>
</div>
<div class="col-lg-12">
<div class="pq-process-step pq-process-1 left">
<img decoding="async" class="pq-before-img" src="images/process/shape/1.png" alt="arrow-img">
<div class="pq-process-img">
<img decoding="async" src="images/process/1.jpg" alt="process-image">
</div>
<div class="pq-process-info">
<h2 class="pq-process-title">1. Create your account</h2>
<p class="pq-process-description">It is a long established fact that a reader will be
distracted by the readable content of a page when looking at its layout. The point of
using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as
opposed </p>
</div>
</div>
<div class="pq-reverse-process pq-process-step pq-process-1 left">
<img decoding="async" class="pq-before-img" src="images/process/shape/1.png" alt="arrow-img">
<div class="pq-process-img">
<img decoding="async" src="images/process/2.jpg" alt="process-image">
</div>
<div class="pq-process-info">
<h2 class="pq-process-title">2. download the app</h2>
<p class="pq-process-description">It is a long established fact that a reader will be distracted
by the readable content of a page when looking at its layout. The point of using Lorem Ipsum
is that it has a more-or-less normal distribution of letters, as opposed </p>
</div>
</div>
<div class="before-img-none pq-process-step pq-process-1 left mb-0">
<img decoding="async" class="pq-before-img" src="images/process/shape/1.png" alt="arrow-img">
<div class="pq-process-img">
<img decoding="async" src="images/process/3.jpg" alt="process-image">
</div>
<div class="pq-process-info">
<h2 class="pq-process-title">3. link your game library</h2>
<p class="pq-process-description">It is a long established fact that a reader will be distracted
by the readable content of a page when looking at its layout. The point of using Lorem Ipsum
is that it has a more-or-less normal distribution of letters, as opposed </p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Process -->
<!-- Devices -->
<section class="devices pq-bg-grey pq-bg-img-2">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class=" pq-section-title-style-1 text-center">
<h2 class="pq-section-main-title">cloud gaming on all devices</h2>
</div>
</div>
<div class="col-lg-12">
<div class="pq-image-box pq-style-1 pq-mb-60">
<div class="item">
<div class="pq-image-box-media">
<img decoding="async" src="images/devices/1.png" alt="box">
</div>
<div class="pq-image-box-info">
<h5 class="pq-image-box-title">windows pc</h5>
</div>
</div>
<div class="item">
<div class="pq-image-box-media">
<img decoding="async" src="images/devices/2.png" alt="box">
</div>
<div class="pq-image-box-info">
<h5 class="pq-image-box-title">android tv</h5>
</div>
</div>
<div class="item">
<div class="pq-image-box-media">
<img decoding="async" src="images/devices/3.png" alt="box">
</div>
<div class="pq-image-box-info">
<h5 class="pq-image-box-title">chrome</h5>
</div>
</div>
<div class="item">
<div class="pq-image-box-media">
<img decoding="async" src="images/devices/4.png" alt="box">
</div>
<div class="pq-image-box-info">
<h5 class="pq-image-box-title">android</h5>
</div>
</div>
<div class="item">
<div class="pq-image-box-media">
<img decoding="async" src="images/devices/5.png" alt="box">
</div>
<div class="pq-image-box-info">
<h5 class="pq-image-box-title">safari</h5>
</div>
</div>
<div class="item">
<div class="pq-image-box-media">
<img decoding="async" src="images/devices/6.png" alt="box">
</div>
<div class="pq-image-box-info">
<h5 class="pq-image-box-title">edge</h5>
</div>
</div>
</div>
<div class="text-center">
<div class="pq-btn-container">
<div class="pq-button-block">
<a class="pq-button pq-button-flat" href="games.html">
<span class="pq-button-text">view more</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Devices -->
<!-- Marquee -->
<div class="marquee pq-pt-60">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 p-0">
<div class="pq-marquee-main ">
<div class="pq-marquee">
<ul class="marquee-content-items">
<li>
esports in word now play the next generation <span> cloud gaming</span>
</li>
</ul>
<ul class="marquee-content-items">
<li>
esports in word now play the next generation <span> cloud gaming</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Marquee -->
<!-- Portfolio -->
<section class="portfolio">
<div class="container">
<div class="row">
<div class="col-xl-6">
<div class="pq-section-title-style-1">
<h2 class="pq-section-main-title">connect and play your game</h2>
</div>
</div>
<div class="col-xl-6 mt-5 mt-xl-0">
<div class="pq-menu-tabs pq-style-1 ">
<div class="menu-tabs-item">
<a class="menu-tabs-link ">
<i aria-hidden="true" class="flaticon-gaming-1"></i>
high-end gaming
<span>01</span>
</a>
<img decoding="async" src="images/portfolio/main-home/1.jpg" alt="menu-tabs-img"
class="menu-tabs-img">
</div>
<div class="menu-tabs-item">
<a class="menu-tabs-link ">
<i aria-hidden="true" class="flaticon-gaming-4"></i>
multiple device
<span>02</span>
</a>
<img decoding="async" src="images/portfolio/main-home/2.jpg" alt="menu-tabs-img"
class="menu-tabs-img">
</div>
<div class="menu-tabs-item">
<a class="menu-tabs-link ">
<i aria-hidden="true" class="flaticon-headset"></i>
instant play
<span>03</span>
</a>
<img decoding="async" src="images/portfolio/main-home/3.jpg" alt="menu-tabs-img"
class="menu-tabs-img">
</div>
<div class="menu-tabs-item">
<a class="menu-tabs-link ">
<i aria-hidden="true" class="flaticon-mouse"></i>
high-end gaming
<span>04</span>
</a>
<img decoding="async" src="images/portfolio/main-home/4.jpg" alt="menu-tabs-img"
class="menu-tabs-img">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio -->
<!-- Video Popup -->
<div class="video-popup pq-bg-grey pq-bg-img-3 pq-pt-130">
<div class="container">
<div class="row">
<div class="col-lg-12 pq-mb-130">
<div class="pq-video-bg-img">
<div class="pq-popup-video-block pq-popup-style-1">
<div class="pq-video-icon">
<a href="https://www.youtube.com/watch?v=XHOmBV4js_E"
class="pq-video default popup-youtube">
<i aria-hidden="true" class="ion ion-play"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Video Popup -->
<!-- Faq -->
<section class="faq pq-pt-260">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class=" pq-section-title-style-1 text-center">
<h2 class="pq-section-main-title">frequently asked questions</h2>
</div>
</div>
<div class="col-lg-12">
<div class="pq-accordion-block-style-1">
<div class="pq-accordion-block ">
<div class="pq-accordion-box pq-active 1">
<div class="pq-ad-title">
<h4 class="ad-title-text">
what is cloud gaming ?
<i aria-hidden="true" class="ion ion-ios-arrow-down active"></i><i
aria-hidden="true" class="ion ion-ios-arrow-up inactive"></i>
</h4>
</div>
<div class="pq-accordion-details">
<p class="pq-detail-text"> Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud page when
looking at its layout. The point of using Lorem Ipsum is that it has a
more-or-less normal
exercitation. </p>
</div>
</div>
</div>
<div class="pq-accordion-block ">
<div class="pq-accordion-box 2">
<div class="pq-ad-title">
<h4 class="ad-title-text">
how can i know you are legit, can i trust you ?
<i aria-hidden="true" class="ion ion-ios-arrow-down active"></i><i
aria-hidden="true" class="ion ion-ios-arrow-up inactive"></i>
</h4>
</div>
<div class="pq-accordion-details" style="display: none;">
<p class="pq-detail-text"> Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud page when
looking at its layout. The point of using Lorem Ipsum is that it has a
more-or-less normal
exercitation. </p>
</div>
</div>
</div>
<div class="pq-accordion-block ">
<div class="pq-accordion-box 3">
<div class="pq-ad-title">
<h4 class="ad-title-text">
i don't like the price, can i get discount?
<i aria-hidden="true" class="ion ion-ios-arrow-down active"></i><i
aria-hidden="true" class="ion ion-ios-arrow-up inactive"></i>
</h4>
</div>
<div class="pq-accordion-details">
<p class="pq-detail-text"> Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud page when
looking at its layout. The point of using Lorem Ipsum is that it has a
more-or-less normal
exercitation. </p>
</div>
</div>
</div>
<div class="pq-accordion-block ">
<div class="pq-accordion-box 4">
<div class="pq-ad-title">
<h4 class="ad-title-text">
is boosting safe , can i get banned?
<i aria-hidden="true" class="ion ion-ios-arrow-down active"></i><i
aria-hidden="true" class="ion ion-ios-arrow-up inactive"></i>
</h4>
</div>
<div class="pq-accordion-details">
<p class="pq-detail-text"> Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud page when
looking at its layout. The point of using Lorem Ipsum is that it has a
more-or-less normal
exercitation. </p>
</div>
</div>
</div>
<div class="pq-accordion-block ">