-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1491 lines (1269 loc) · 86.3 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">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/jquery.magnific-popup.min.js"></script>
<script src="js/main.js"></script>
<title>TrueGaming Rollover</title>
</head>
<body class="font-sfpro-regular">
<header class="relative text-white py-0 px-3 text-left" style="height:750px">
<nav id="menuDesktop" class="lg:block hidden bg-transparent absolute z-40 w-full left-0">
<div class="px-2 sm:px-6 lg:px-8">
<div class="relative flex h-16 items-center justify-between mt-6 items-center">
<div class="flex flex-1 items-center justify-center sm:items-stretch sm:justify-start">
<div class="flex flex-shrink-0 items-center mt-2">
<img class="block h-12 w-auto lg:hidden" src="./img/logo.png" alt="logo-truegaming-en">
<img class="hidden h-12 w-auto lg:block" src="./img/logo.png" alt="logo-truegaming-en">
</div>
<div class="hidden sm:ml-6 sm:block mt-4">
<div class="flex space-x-4">
<!-- Current: "bg-gray-900 text-white", Default: "text-gray-300 hover:bg-gray-700 hover:text-white" -->
<a href="/#"
class="flex content-center items-center text-white bg-truegaming_red px-2 py-1 rounded-md text-sm font-medium"
aria-current="page">Home</a>
<a href="#about"
class="flex content-center items-center text-white hover:bg-truegaming_red px-2 py-1 rounded-md text-sm font-medium">About
Us</a>
<a href="#services"
class="flex content-center items-center text-white hover:bg-truegaming_red px-2 py-1 rounded-md text-sm font-medium">Services</a>
<a href="#projects"
class="flex content-center items-center text-white hover:bg-truegaming_red px-2 py-1 rounded-md text-sm font-medium">Projects
& Achivements</a>
<a href="#social"
class="flex content-center items-center text-white hover:bg-truegaming_red px-2 py-1 rounded-md text-sm font-medium">Social
& Video</a>
<a href="#clients"
class="flex content-center items-center text-white hover:bg-truegaming_red px-2 py-1 rounded-md text-sm font-medium">Our
Clients</a>
<a href="#teams"
class="flex content-center items-center text-white hover:bg-truegaming_red px-2 py-1 rounded-md text-sm font-medium">
Meet the Team</a>
<a href="#contact"
class="flex content-center items-center text-white hover:bg-truegaming_red px-2 py-1 rounded-md text-sm font-medium">Contact
Us</a>
</div>
</div>
</div>
<div
class="absolute inset-y-0 right-0 flex items-center pr-2 sm:static sm:inset-auto sm:ml-6 sm:pr-0 border-r border-gray-600">
<a href="#"
class="flex rounded-lg bg-white text-truegaming_red px-3 py-1 font-bold le hover:bg-truegaming_red hover:text-white text-center items-center content-center mr-1">
ع
</a>
</div>
<div class="flex ml-4">
<a href="#"><i class="fa-brands fa-twitter mr-2 hover:text-truegaming_red"></i></a>
<a href="#"><i class="fa-brands fa-tiktok mr-2 2 hover:text-truegaming_red"></i></i></a>
<a href="#"><i class="fa-brands fa-youtube mr-2 2 hover:text-truegaming_red"></i></a>
<a href="#"><i class="fa-brands fa-instagram mr-2 2 hover:text-truegaming_red"></i></a>
<a href="#"><i class="fa-brands fa-linkedin-in 2 hover:text-truegaming_red"></i></a>
</div>
</div>
</div>
</nav>
<nav id="menuMobile" class="lg:hidden bg-transparent absolute z-40 w-full left-0">
<div class="px-2 sm:px-6 lg:px-8">
<div class="relative flex h-16 items-center mt-6 items-center content-center">
<!-- Mobile menu button-->
<div class="block lg:invisible visible px-4 z-40">
<button onclick="toggleMenu()" class="flex items-center py-1 rounded mt-2 justify-items-end">
<svg class="dark:text-white text-gray-200 fill-current h-6 w-6" viewBox="0 0 100 80">
<title>Menu</title>
<rect width="100" height="20" rx="8"></rect>
<rect y="30" width="100" height="20" rx="8"></rect>
<rect y="60" width="100" height="20" rx="8"></rect>
</svg>
</button>
</div>
<div class="w-full flex items-center justify-center -ml-14">
<div class="block items-center text-center">
<img class="h-12 w-auto lg:block" src="./img/logo.png" alt="logo-truegaming-en">
</div>
</div>
<div class="absolute inset-y-0 right-0 flex items-center sm:static sm:inset-auto">
<a href="#"
class="flex rounded-lg bg-white text-truegaming_red px-4 py-1 font-bold le hover:bg-truegaming_red hover:text-white text-center items-center content-center mr-4">
ع
</a>
</div>
</div>
<div class="w-full hidden items-center bg-gray-800 show-menu z-40">
<div class="block w-full text-center">
<!-- Current: "bg-gray-900 text-white", Default: "text-gray-300 hover:bg-gray-700 hover:text-white" -->
<a href="/#"
class="block text-base leading-3 lg:mt-0 text-white py-4 px-2 trans text-white hover:bg-truegaming_red"
aria-current="page">Home</a>
<a href="#about"
class="block text-base leading-3 lg:mt-0 text-white py-4 px-2 trans text-white hover:bg-truegaming_red">About
Us</a>
<a href="#services"
class="block text-base leading-3 lg:mt-0 text-white py-4 px-2 trans text-white hover:bg-truegaming_red">Services</a>
<a href="#projects"
class="block text-base leading-3 lg:mt-0 text-white py-4 px-2 trans text-white hover:bg-truegaming_red">Projects
& Achivements</a>
<a href="#social"
class="block text-base leading-3 lg:mt-0 text-white py-4 px-2 trans text-white hover:bg-truegaming_red">Social
& Video</a>
<a href="#clients"
class="block text-base leading-3 lg:mt-0 text-white py-4 px-2 trans text-white hover:bg-truegaming_red">Our
Clients</a>
<a href="#teams"
class="block text-base leading-3 lg:mt-0 text-white py-4 px-2 trans text-white hover:bg-truegaming_red">
Meet the Team</a>
<a href="#contact"
class="block text-base leading-3 lg:mt-0 text-white py-4 px-2 trans text-white hover:bg-truegaming_red">Contact
Us</a>
</div>
<div class="flex ml-4 justify-center py-4">
<a href="#"><i class="text-2xl fa-brands fa-twitter mr-6 hover:text-truegaming_red"></i></a>
<a href="#"><i class="text-2xl fa-brands fa-tiktok mr-6 hover:text-truegaming_red"></i></i></a>
<a href="#"><i class="text-2xl fa-brands fa-youtube mr-6 hover:text-truegaming_red"></i></a>
<a href="#"><i class="text-2xl fa-brands fa-instagram mr-6 hover:text-truegaming_red"></i></a>
<a href="#"><i class="text-2xl fa-brands fa-linkedin-in hover:text-truegaming_red"></i></a>
</div>
</div>
</div>
</nav>
<div class="video-docker absolute top-0 left-0 w-full h-full overflow-hidden">
<video class="min-w-full min-h-full absolute object-cover" src="video/header.mp4" type="video/mp4" autoplay
muted loop></video>
</div>
<div class="absolute lg:top-32 lg:bottom-50 lg:left-32 space-y-2 z-10 py-40 mx-auto uppercase lg:px-0 px-4">
<h1 class="lg:text-8xl md:text-7xl text-5xl font-geo-bold lg:mb-0 mb-8">
<span class="lg:text-6xl" style="letter-spacing: -10px;">\\</span>
<span class="lg:text-7xl font-geo-extrabold">
Welcome to
</span>
<span class="text-truegaming_red">True</span>Gaming,
</h1>
<h3 class="text-3xl font-geo-regular lg:ml-20 abcX">Your Gaming & Esports Companion</h3>
</div>
</header>
<div class="relative">
<div class="lg:block hidden icon-bar border border-gray-300 block">
<a href="/#" class=""><i class="fa-solid fa-house hover:text-truegaming_red"></i></a>
<a href="#about" class=""><i class="fa-regular fa-eye"></i></a>
<a href="#services" class=""><i class="fa-sharp fa-solid fa-gem"></i></a>
<a href="#projects" class=""><i class="fa-solid fa-award"></i></a>
<a href="#social" class=""><i class="fa-regular fa-circle-play"></i></a>
<a href="#clients" class=""> <i class="fa-regular fa-handshake"></i></a>
<a href="#teams" class=""><i class="fa-regular fa-heart"></i></a>
<a href="#contact" class=""><i class="fa-regular fa-envelope"></i></a>
</div>
<div id="about" class="about-t text-center py-24 mx-auto px-4 relative"
style="background: center / cover url('./img/bg-aboutus.png')">
<div class="container mx-auto">
<h1 class="font-geo-extrabold uppercase text-3xl pb-14"
style="background: center url('./img/redLine.png'); background-repeat: no-repeat;">
About Us
</h1>
<p class="lg:w-4/5 w-full font-sfpro-regular text-2xl mx-auto">
<span class="font-geo-extrabold"> TrueGaming </span> is a one-stop-shop for brands that need help
exploring the gaming market, it was established by
an experienced & pas-sionate local team with a mission to provide the best experience in creating,
managing,
and consuming gaming content and media for our partners and clients in the Middle East.
</p>
</div>
<div class="arrow-down mx-auto absolute left-0 right-0 z-40"></div>
</div>
<div id="services" class="service-t bg-white bg-gray-200 text-center py-24 relative">
<h1 class="font-geo-extrabold uppercase text-3xl pb-14 w-full py-4"
style="background: center url('./img/redline.png'); background-repeat: no-repeat;">
Services
</h1>
<div>
<div class="bg-header" data-bg-text="Services">
<h2>What We Do</h2>
</div>
</div>
<div class="lg:w-4/5 w-full mx-auto text-center items-center content-center">
<div class="py-2 flex mx-auto justify-center">
<div class="flex flex-wrap py-4 mx-auto justify-center">
<div
class="lg:w-card card-services w-full flex justify-center items-center content-1 border-2 hover:border-0 border-white lg:mr-4 mx-2 lg:my-0 relative lg:mb-0 mb-4">
<div class="px-4 fd-cl group-hover:opacity-25" style="min-height: 400px;">
<img class="h-28 mx-auto mb-6" src="./img/annonce.png" alt="">
<h3 class="text-2xl text-gray-800 font-bold font-geo-bold uppercase mb-8">
Gaming Marketing</h3>
<p class="text-gray-600 text-lg">
It is an essential way to increase your game’s presence, and with our team’s 20+
years of experience in the gaming field, we will support you to target and reach
the
right.....
</p>
</div>
<div class="absolute left-0 right-0 opacity-0 fd-sh group-hover:opacity-100 py-24"
style="min-height: 400px;">
<h3
class="text-4xl text-truegaming_red font-bold font-geo-bold uppercase mb-10 mt-20">
Gaming Marketing</h3>
<p class="text-gray-600 text-lg px-4">
It is an essential way to increase your game’s presence, and with our team’s 20+
years of experience in the gaming field, we will support you to target and reach
the
right audience through different channels and tools.
</p>
</div>
</div>
<div
class="lg:w-card card-services w-full flex justify-center items-center content-2 border-2 hover:border-0 border-white lg:mr-4 mx-2 lg:my-0 relative lg:mb-0 mb-4">
<div class="px-4 fd-cl group-hover:opacity-25" style="min-height: 400px;">
<img class="h-28 mx-auto mb-6" src="./img/joystick.png" alt="">
<h3 class="text-2xl text-gray-800 font-bold font-geo-bold uppercase mb-8">
Gaming content creation</h3>
<p class="text-gray-600 text-lg">
Our team of passionate gaming writers and content creators will help bring your
gaming content to life, making sure that it fits your objectives and follows the
latest.....
</p>
</div>
<div class="absolute left-0 right-0 opacity-0 fd-sh group-hover:opacity-100 py-24"
style="min-height: 400px;">
<h3
class="text-4xl text-truegaming_red font-bold font-geo-bold uppercase mb-10 mt-20">
Gaming content creation</h3>
<p class="text-gray-600 text-lg px-4">
Our team of passionate gaming writers and content creators will help bring your
gaming content to life, making sure that it fits your objectives and follows the
latest market trends.
</p>
</div>
</div>
</div>
</div>
<div class="flex mx-auto justify-center">
<div class="flex flex-wrap py-4 mx-auto justify-center">
<div
class="lg:w-card card-services w-full flex justify-center items-center content-3 border-2 hover:border-0 border-white lg:mr-4 mx-2 lg:my-0 relative lg:mb-0 mb-4">
<div class="px-4 fd-cl group-hover:opacity-25" style="min-height: 450px;">
<img class="h-28 mx-auto mb-6" src="./img/sce.png" alt="">
<h3 class="text-2xl text-gray-800 font-bold font-geo-bold uppercase mb-8">
Gaming events & eSports leagues management
</h3>
<p class="text-gray-600 text-lg">
Do you have an online or offline tournament? Whether it is small or big we are
here to help you manage the tournament from A-Z. Our partners have extensive
experience.....
</p>
</div>
<div class="px-2 absolute left-0 right-0 opacity-0 fd-sh group-hover:opacity-100 py-20"
style="min-height: 450px;">
<h3
class="text-4xl text-truegaming_red font-bold font-geo-bold uppercase mb-10 mt-20">
Gaming events & eSports leagues management
</h3>
<p class="text-gray-600 text-lg px-4">
Do you have an online or offline tournament? Whether it is small or big we are
here to help you manage the tournament from A-Z. Our partners have extensive
experience and talent in esport event management, whether they happen or being
streamed online or on-site.
</p>
</div>
</div>
<div
class="lg:w-card card-services w-full flex justify-center items-center content-4 border-2 hover:border-0 border-white lg:mr-4 mx-2 lg:my-0 relative lg:mb-0 mb-4">
<div class="px-4 fd-cl group-hover:opacity-25" style="min-height: 450px;">
<img class="h-28 mx-auto mb-6" src="./img/gamer.png" alt="">
<h3 class="text-2xl text-gray-800 font-bold font-geo-bold uppercase mb-8">
Gaming events
<br>
and activations</h3>
<p class="text-gray-600 text-lg px-2">
Apart from organizing our own events, we also help brands and companies organize
events and activities related to gaming, whether it's a game launch,
physical.....
</p>
</div>
<div class="px-2 absolute left-0 right-0 opacity-0 fd-sh group-hover:opacity-100 py-20"
style="min-height: 450px;">
<h3
class="text-4xl text-truegaming_red font-bold font-geo-bold uppercase mb-10 mt-20">
Gaming events
<br>
and activations</h3>
<p class="text-gray-600 text-lg px-4">
Apart from organizing our own events, we also help brands and companies organize
events and activities related to gaming, whether it's a game launch, physical
hands-on gameplay, or multi-zone events.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="arrow-down mx-auto absolute left-0 right-0 z-40"></div>
</div>
<div id="projects" class="project-t bg-white text-center py-24 relative">
<h1 class="font-geo-extrabold uppercase text-3xl pb-14 w-full py-4"
style="background: center url('./img/redlinePA.png'); background-repeat: no-repeat;">
Projects & Achivements
</h1>
<div>
<div class="bg-header" data-bg-text="Projects & Achivements">
<h2>Let’s have a look at some of them</h2>
</div>
</div>
<div id="buttons_container">
<span class="px-2 border-r-2 inline-block cursor-pointer hover:text-truegaming_red btn active"
onclick="filterSelection('all')">All</span>
<span class="px-2 border-r-2 inline-block cursor-pointer hover:text-truegaming_red btn"
onclick="filterSelection('picture')">Picture</span>
<span class="px-2 border-r-2 inline-block cursor-pointer hover:text-truegaming_red btn"
onclick="filterSelection('video')">Video</span>
</div>
<div class="container gallery mx-auto filterDiv picture show">
<div class="content-gallery border-2 border-gray-200 relative font-sfpro-regular">
<a class="fd-cl group-hover:opacity-25 h-96" href="./img/picture/GCC.jpg"
style="background: center / cover url('./img/picture/GCC.jpg');">
<img src="./img/picture/GCC.jpg" class="hidden">
</a>
<a class="absolute fd-sh opacity-0 top-0 left-0 right-0 text-white px-4"
href="./img/picture/GCC.jpg">
<img src="./img/picture/GCC.jpg" class="hidden">
<h1 class="text-3xl py-24 uppercase font-geo-bold">
GCC Circuit Championship
</h1>
<p class="text-lg">
The first ever GCC wide esports tournament from Microsoft Arabia was fully executed by
TrueGaming.
</p>
<img class="mx-auto text-center absolute bottom-6 right-0 left-0" src="./img/zoom.png" alt="" />
</a>
</div>
<div class="content-gallery border-2 border-gray-200 relative font-sfpro-regular">
<a class="fd-cl group-hover:opacity-25 h-96" href="./img/picture/Comicon-Jeddah.jpg"
style="background: center / cover url('./img/picture/Comicon-Jeddah.jpg');">
<img src="./img/picture/Comicon-Jeddah.jpg" class="hidden">
</a>
<a class="absolute fd-sh opacity-0 top-0 left-0 right-0 text-white px-4"
href="./img/picture/Comicon-Jeddah.jpg">
<img src="./img/picture/Comicon-Jeddah.jpg" class="hidden">
<h1 class="text-3xl py-24 uppercase font-geo-bold">
Gaming
<br>
@ Saudi Comic Con
</h1>
<p class="text-lg">
TrueGaming was hired by Saudi Comic Con to manage their gaming section in both shows they
did
(2018 & 2019).
</p>
<img class="mx-auto text-center absolute bottom-6 right-0 left-0" src="./img/zoom.png" alt="" />
</a>
</div>
<div class="content-gallery border-2 border-gray-200 relative font-sfpro-regular">
<a class="fd-cl group-hover:opacity-25 h-96" href="./img/picture/Working-with-GEA-&-MOT.jpg"
style="background: center / cover url('./img/picture/Working-with-GEA-&-MOT.jpg');">
<img src="./img/picture/Working-with-GEA-&-MOT.jpg" class="hidden">
</a>
<a class="absolute fd-sh opacity-0 top-0 left-0 right-0 text-white px-4"
href="./img/picture/Working-with-GEA-&-MOT.jpg">
<img src="./img/picture/Working-with-GEA-&-MOT.jpg" class="hidden">
<h1 class="text-3xl py-24 uppercase font-geo-bold">
Working
<br>
with GEA & MOT
</h1>
<p class="text-lg">
TrueGaming worked with both the General Entertainment Authority and the Ministry of Tourism
in
creating two major gaming events. Gaming Tent in Jeddah (2019) and Aseer Gaming Show (2021).
</p>
<img class="mx-auto text-center absolute bottom-6 right-0 left-0" src="./img/zoom.png" alt="" />
</a>
</div>
<div class="content-gallery border-2 border-gray-200 relative font-sfpro-regular">
<a class="fd-cl group-hover:opacity-25 h-96" href="./img/picture/GamersCon.jpg"
style="background: center / cover url('./img/picture/GamersCon.jpg');">
<img src="./img/picture/GamersCon.jpg" class="hidden">
</a>
<a class="absolute fd-sh opacity-0 top-0 left-0 right-0 text-white px-4"
href="./img/picture/GamersCon.jpg">
<img src="./img/picture/GamersCon.jpg" class="hidden">
<h1 class="text-3xl py-24 uppercase font-geo-bold">
GamersCon
</h1>
<p class="text-lg">
One of the most iconic local gaming events in KSA and GCC region.
</p>
<img class="mx-auto text-center absolute bottom-6 right-0 left-0" src="./img/zoom.png" alt="" />
</a>
</div>
<div class="content-gallery border-2 border-gray-200 relative font-sfpro-regular">
<a class="fd-cl group-hover:opacity-25 h-96" href="./img/picture/TrueGaming-Invitational.jpg"
style="background: center / cover url('./img/picture/TrueGaming-Invitational.jpg');">
<img src="./img/picture/TrueGaming-Invitational.jpg" class="hidden">
</a>
<a class="absolute fd-sh opacity-0 top-0 left-0 right-0 text-white px-4"
href="./img/picture/TrueGaming-Invitational.jpg">
<img src="./img/picture/TrueGaming-Invitational.jpg" class="hidden">
<h1 class="text-3xl py-24 uppercase font-geo-bold">
TrueGaming Invitational
</h1>
<p class="text-lg">
In 2019 TrueGaming Invitational was considered the biggest world wide tournament in Tekken
history. The top international players in the game came to Saudi to challenge the local
best.
</p>
<img class="mx-auto text-center absolute bottom-6 right-0 left-0" src="./img/zoom.png" alt="" />
</a>
</div>
<div class="content-gallery border-2 border-gray-200 relative font-sfpro-regular">
<a class="fd-cl group-hover:opacity-25 h-96" href="./img/picture/TrueGaming-Awards.jpg"
style="background: center / cover url('./img/picture/TrueGaming-Awards.jpg');">
<img src="./img/picture/TrueGaming-Awards.jpg" class="hidden">
</a>
<a class="absolute fd-sh opacity-0 top-0 left-0 right-0 text-white px-4"
href="./img/picture/TrueGaming-Awards.jpg">
<img src="./img/picture/TrueGaming-Awards.jpg" class="hidden">
<h1 class="text-3xl py-24 uppercase font-geo-bold">
TrueGaming Invitational
</h1>
<p class="text-lg">
Our annual awards ceremony and the oldest in the region honoring achievements in the video
game
industry.
</p>
<img class="mx-auto text-center absolute bottom-6 right-0 left-0" src="./img/zoom.png" alt="" />
</a>
</div>
<div class="content-gallery border-2 border-gray-200 relative font-sfpro-regular">
<a class="fd-cl group-hover:opacity-25 h-96" href="./img/picture/Game-Launch.jpg"
style="background: center / cover url('./img/picture/Game-Launch.jpg');">
<img src="./img/picture/Game-Launch.jpg" class="hidden">
</a>
<a class="absolute fd-sh opacity-0 top-0 left-0 right-0 text-white px-4"
href="./img/picture/Game-Launch.jpg">
<img src="./img/picture/Game-Launch.jpg" class="hidden">
<h1 class="text-3xl py-24 uppercase font-geo-bold">
Game Launch
</h1>
<p class="text-lg">
In 2019 TrueGaming Invitational was considered the biggest world wide tournament in Tekken
history. The top international players in the game came to Saudi to challenge the local
best.
</p>
<img class="mx-auto text-center absolute bottom-6 right-0 left-0" src="./img/zoom.png" alt="" />
</a>
</div>
<div class="content-gallery border-2 border-gray-200 relative font-sfpro-regular">
<a class="fd-cl group-hover:opacity-25 h-96" href="./img/picture/Guests.jpg"
style="background: center / cover url('./img/picture/Guests.jpg');">
<img src="./img/picture/Guests.jpg" class="hidden">
</a>
<a class="absolute fd-sh opacity-0 top-0 left-0 right-0 text-white px-4"
href="./img/picture/Guests.jpg">
<img src="./img/picture/Guests.jpg" class="hidden">
<h1 class="text-3xl py-24 uppercase font-geo-bold">
Guests
</h1>
<p class="text-lg">
Our annual awards ceremony and the oldest in the region honoring achievements in the video
game
industry.
</p>
<img class="mx-auto text-center absolute bottom-6 right-0 left-0" src="./img/zoom.png" alt="" />
</a>
</div>
<div class="content-gallery border-2 border-gray-200 relative font-sfpro-regular">
<a class="fd-cl group-hover:opacity-25 h-96" href="./img/picture/XBox.jpg"
style="background: center / cover url('./img/picture/XBox.jpg');">
<img src="./img/picture/XBox.jpg" class="hidden">
</a>
<a class="absolute fd-sh opacity-0 top-0 left-0 right-0 text-white px-4"
href="./img/picture/XBox.jpg">
<img src="./img/picture/XBox.jpg" class="hidden">
<h1 class="text-3xl py-24 uppercase font-geo-bold">
Xbox
</h1>
<p class="text-lg">
We partnered with other multiple companies and govermental entities to handle gaming &
eSports
events.
</p>
<img class="mx-auto text-center absolute bottom-6 right-0 left-0" src="./img/zoom.png" alt="" />
</a>
</div>
<div class="content-gallery border-2 border-gray-200 relative font-sfpro-regular">
<a class="fd-cl group-hover:opacity-25 h-96" href="./img/picture/Playstation.jpg"
style="background: center / cover url('./img/picture/Playstation.jpg');">
<img src="./img/picture/Playstation.jpg" class="hidden">
</a>
<a class="absolute fd-sh opacity-0 top-0 left-0 right-0 text-white px-4"
href="./img/picture/Playstation.jpg">
<img src="./img/picture/Playstation.jpg" class="hidden">
<h1 class="text-3xl py-24 uppercase font-geo-bold">
Playstation
</h1>
<p class="text-lg">
Our annual awards ceremony and the oldest in the region honoring achievements in the video
game
industry.
</p>
<img class="mx-auto text-center absolute bottom-6 right-0 left-0" src="./img/zoom.png" alt="" />
</a>
</div>
<div class="content-gallery border-2 border-gray-200 relative font-sfpro-regular">
<a class="fd-cl group-hover:opacity-25 h-96" href="./img/picture/Game-Launch_Nintendo.jpg"
style="background: center / cover url('./img/picture/Game-Launch_Nintendo.jpg');">
<img src="./img/picture/Game-Launch_Nintendo.jpg" class="hidden">
</a>
<a class="absolute fd-sh opacity-0 top-0 left-0 right-0 text-white px-4"
href="./img/picture/Game-Launch_Nintendo.jpg">
<img src="./img/picture/Game-Launch_Nintendo.jpg" class="hidden">
<h1 class="text-3xl py-24 uppercase font-geo-bold">
Game Launch
</h1>
<p class="text-lg">
In 2019 TrueGaming Invitational was considered the biggest world wide tournament in Tekken
history. The top international players in the game came to Saudi to challenge the local
best.
</p>
<img class="mx-auto text-center absolute bottom-6 right-0 left-0" src="./img/zoom.png" alt="" />
</a>
</div>
<div class="content-gallery border-2 border-gray-200 relative font-sfpro-regular">
<a class="fd-cl group-hover:opacity-25 h-96" href="./img/picture/esport.jpg"
style="background: center / cover url('./img/picture/esport.jpg');">
<img src="./img/picture/esport.jpg" class="hidden">
</a>
<a class="absolute fd-sh opacity-0 top-0 left-0 right-0 text-white px-4"
href="./img/picture/esport.jpg">
<img src="./img/picture/esport.jpg" class="hidden">
<h1 class="text-3xl py-24 uppercase font-geo-bold">
Esport
</h1>
<p class="text-lg">
We partnered with other multiple companies and govermental entities to handle gaming &
eSports
events.
</p>
<img class="mx-auto text-center absolute bottom-6 right-0 left-0" src="./img/zoom.png" alt="" />
</a>
</div>
</div>
<div class="container gallery-video mx-auto filterDiv video show">
<div class="content-gallery border-2 border-gray-200 relative font-sfpro-regular">
<a class="youtube fd-cl group-hover:opacity-25 h-96"
href="https://www.youtube.com/watch?v=P5tF0m4VEV4"
style="background: center / cover url('./img/video/TrueGaming-Invitational.jpg');">
</a>
<a class="youtube absolute fd-sh opacity-0 top-0 left-0 right-0 text-white px-4"
href="https://www.youtube.com/watch?v=P5tF0m4VEV4">
<h1 class="text-3xl lg:py-24 py-12 uppercase font-geo-bold">
TrueGaming Invitational
</h1>
<p class="text-lg">
In 2019 TrueGaming Invitational was considered the biggest world wide tournament in Tekken
history. The top international players in the game came to Saudi to challenge the local
best.
</p>
<img class="mx-auto text-center absolute bottom-6 right-0 left-0" src="./img/video.png"
alt="" />
</a>
</div>
<div class="content-gallery border-2 border-gray-200 relative font-sfpro-regular">
<a class="youtube fd-cl group-hover:opacity-25 h-96"
href="https://www.youtube.com/watch?v=P5tF0m4VEV4"
style="background: center / cover url('./img/video/TrueGaming-Summer-Game-fest-2022.jpg');">
</a>
<a class="youtube absolute fd-sh opacity-0 top-0 left-0 right-0 text-white px-4"
href="https://www.youtube.com/watch?v=P5tF0m4VEV4">
<h1 class="text-3xl lg:py-24 py-12 uppercase font-geo-bold">
TrueGaming Summer Game fest 2022
</h1>
<p class="text-lg">
In 2019 TrueGaming Invitational was considered the biggest world wide tournament in Tekken
history. The top international players in the game came to Saudi to challenge the local
best.
</p>
<img class="mx-auto text-center absolute bottom-6 right-0 left-0" src="./img/video.png"
alt="" />
</a>
</div>
<div class="content-gallery border-2 border-gray-200 relative font-sfpro-regular">
<a class="youtube fd-cl group-hover:opacity-25 h-96"
href="https://www.youtube.com/watch?v=P5tF0m4VEV4"
style="background: center / cover url('./img/video/E3.jpg');">
</a>
<a class="youtube absolute fd-sh opacity-0 top-0 left-0 right-0 text-white px-4"
href="https://www.youtube.com/watch?v=P5tF0m4VEV4">
<h1 class="text-3xl lg:py-24 py-12 uppercase font-geo-bold">
E3
</h1>
<p class="text-lg">
In 2019 TrueGaming Invitational was considered the biggest world wide tournament in Tekken
history. The top international players in the game came to Saudi to challenge the local
best.
</p>
<img class="mx-auto text-center absolute bottom-6 right-0 left-0" src="./img/video.png"
alt="" />
</a>
</div>
<div class="content-gallery border-2 border-gray-200 relative font-sfpro-regular">
<a class="youtube fd-cl group-hover:opacity-25 h-96"
href="https://www.youtube.com/watch?v=P5tF0m4VEV4"
style="background: center / cover url('./img/video/Gaming-Tent-in-Jeddah-(2019).jpg');">
</a>
<a class="youtube absolute fd-sh opacity-0 top-0 left-0 right-0 text-white px-4"
href="https://www.youtube.com/watch?v=P5tF0m4VEV4">
<h1 class="text-3xl lg:py-24 py-12 uppercase font-geo-bold">
Gaming Tent in Jeddah (2019)
</h1>
<p class="text-lg">
In 2019 TrueGaming Invitational was considered the biggest world wide tournament in Tekken
history. The top international players in the game came to Saudi to challenge the local
best.
</p>
<img class="mx-auto text-center absolute bottom-6 right-0 left-0" src="./img/video.png"
alt="" />
</a>
</div>
</div>
<div class="arrow-down mx-auto absolute left-0 right-0 z-40"></div>
</div>
<div id="social" class="social-t bg-gray-200 text-center py-24 relative">
<h1 class="font-geo-extrabold uppercase text-3xl pb-14 w-full py-4"
style="background: center url('./img/redlinePA.png'); background-repeat: no-repeat;">
Social & Video
</h1>
<div>
<div class="bg-header mb-12" data-bg-text="Followers For All Channels">
<h2>Followers For All Channels</h2>
</div>
</div>
<div class="lg:w-2/3 w-full mx-auto lg:flex mb-20 justify-center">
<img class="h-40 lg:mx-0 mx-auto" src="./img/heart.png" alt="">
<div class="lg:ml-8">
<p class="lg:text-left text-center text-5xl text-gray-600 font-bold font-sfpro-regular">Follwers
(All
channels)</p>
<p class="lg:text-left text-center text-9xl text-truegaming_red font-geo-extrabold">1.78 Milion</p>
</div>
</div>
<div class="cards container mx-auto lg:flex justify-between lg:px-2 px-4">
<div class="w-1/4 card w-full bg-white border-gray-300 border-b-4 relative mr-3 lg:mb-0 mb-12 lg:py-0 py-12"
style="min-height:230px">
<div class="w-24 h-24 rounded-full flex justify-center items-center absolute"
style="top:-30px; left:50%; transform: translate(-50%); background: center / contain url('./img/tiktok.png');">
</div>
<h5 class="mb-2 text-2xl font-semibold tracking-tight text-gray-900 dark:text-white mt-16">Followers
</h5>
<p class="mb-3 font-normal text-gray-900 text-6xl font-geo-extrabold">
540.3K
</p>
</div>
<div class="w-1/4 card w-full bg-white border-gray-300 border-b-4 relative mr-3 lg:mb-0 mb-12 lg:py-0 py-12"
style="min-height:230px">
<div class="w-24 h-24 rounded-full flex justify-center items-center absolute"
style="top:-30px; left:50%; transform: translate(-50%); background: center / contain url('./img/youtube.png');">
</div>
<h5 class="mb-2 text-2xl font-semibold tracking-tight text-gray-900 dark:text-white mt-16">
Subscribers
</h5>
<p class="mb-3 font-normal text-gray-900 text-6xl font-geo-extrabold">
1M
</p>
</div>
<div class="w-1/4 card w-full bg-white border-gray-300 border-b-4 relative mr-3 lg:mb-0 mb-12 lg:py-0 py-12"
style="min-height:230px">
<div class="w-24 h-24 rounded-full flex justify-center items-center absolute"
style="top:-30px; left:50%; transform: translate(-50%); background: center / contain url('./img/instagram.png');">
</div>
<h5 class="mb-2 text-2xl font-semibold tracking-tight text-gray-900 dark:text-white mt-16">Followers
</h5>
<p class="mb-3 font-normal text-gray-900 text-6xl font-geo-extrabold">
70.2K
</p>
</div>
<div class="w-1/4 card w-full bg-white border-gray-300 border-b-4 relative lg:mb-0 mb-12 lg:py-0 py-12"
style="min-height:230px">
<div class="w-24 h-24 rounded-full flex justify-center items-center absolute"
style="top:-30px; left:50%; transform: translate(-50%); background: center / contain url('./img/twitter.png');">
</div>
<h5 class="mb-2 text-2xl font-semibold tracking-tight text-gray-900 dark:text-white mt-16">Followers
</h5>
<p class="mb-3 font-normal text-gray-900 text-6xl font-geo-extrabold">
250.7K
</p>
</div>
</div>
<div class="arrow-down mx-auto absolute left-0 right-0 z-40"></div>
</div>
<div id="clients" class="clients-t bg-white text-center py-24 relative">
<h1 class="font-geo-extrabold uppercase text-3xl pb-14 w-full py-4"
style="background: center url('./img/redlinePA.png'); background-repeat: no-repeat;">
Our Clients
</h1>
<div>
<div class="mb-12 text-gray-900 uppercase" data-bg-text="Our Clients">
<h2>We have a wide range of clients.
<br />
Most of them are international brands and industry leaders
</h2>
</div>
</div>
<section class="bg-white dark:bg-gray-900">
<div class="mx-auto max-w-screen-xl px-4">
<div
class="grid grid-cols-2 gap-8 text-gray-500 sm:gap-12 md:grid-cols-3 lg:grid-cols-5 dark:text-gray-400 mx-auto">
<a href="#" class="flex justify-center items-center">
<img class="w-40 h-auto" src="./img/logos/Jarir.png" alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-40 h-auto" src="./img/logos/Saudi-eSport.png" alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-40 h-auto" src="./img/logos/Saudi-eLeagues.png" alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-40 h-auto" src="./img/logos/Manga.png" alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-40 h-auto" src="./img/logos/General-Entertainment-Authority.png" alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-40 h-auto" src="./img/logos/Microsoft_logo_(2012).svg.png" alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-20 h-auto" src="./img/logos/zain.png" alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-40 h-auto" src="./img/logos/modernelectro.png" alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-52 h-auto" src="./img/logos/1280px-PlayStation_logo_and_wordmark.svg.png"
alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-20 h-auto" src="./img/logos/Stc-logo.png" alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-52 h-auto" src="./img/logos/razer.png" alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-52 h-auto" src="./img/logos/tecent.png" alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-52 h-auto" src="./img/logos/1200px-Activision.svg.png" alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-52 h-auto" src="./img/logos/Nvidia_logo.png" alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-20 h-auto" src="./img/logos/480px-HP_logo_2012.svg.png" alt="">
</a>
</div>
<div
class="grid grid-cols-2 gap-8 text-gray-500 sm:gap-12 md:grid-cols-3 lg:grid-cols-4 dark:text-gray-400 mx-auto">
<a href="#" class="flex justify-center items-center">
<img class="w-52 h-auto" src="./img/logos/samsung-1-logo-black-and-white.png" alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-52 h-auto" src="./img/logos/huawei-logo.png" alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-52 h-auto" src="./img/logos/shawarmer.png" alt="">
</a>
<a href="#" class="flex justify-center items-center">
<img class="w-32 h-auto" src="./img/logos/extra.png" alt="">
</a>
</div>
</div>
</section>
<div class="arrow-down mx-auto absolute left-0 right-0 z-40"></div>
</div>
<div id="teams" class="teams-t text-center py-24 mx-auto relative lg:px-4 px-2"
style="background: center / cover url('./img/bg-team.png'); background-repeat: no-repeat;">
<h1 class="font-geo-extrabold uppercase text-3xl pb-14 w-full py-4"
style="background: center url('./img/redlinePA.png'); background-repeat: no-repeat;">
Meet the Team
</h1>
<div class="container lg:flex block mx-auto relative">
<div class="left w-full text-left ">
<h1 class="text-truegaming_red text-7xl font-geo-extrabold text-left mb-20">
All members of our team
<br>
are hardcore gamers,
</h1>
<p class="lg:w-2/3 w-full text-gray-600 lg:text-3xl text-2xl">From the cameramen to the writers.
Videogames is a
constant part
of
our life at work and at home.
That’s why we excel at all gaming projects. We did not get into this because we saw an
opportunity.
This has been a passion for us all from day one. Now Let’s introduce you to the awesome team!
</p>
</div>
<div class="w-full">
<img class="team-img absolute right-0 left-0 top-30 h-auto w-full lg:mt-0 mt-8"
src="./img/tgHeros.png" alt="">
</div>
</div>
<div class="container lg:flex block mx-auto lg:mt-mt_30 md:mt-mt_35 mt-72 custom-margin">
<div class="lg:flex md:flex block justify-center text-center mx-auto">
<div class="w-1/2 fd-cl lg:mr-4 mx-auto member relative font-sfpro-regular">
<div id="member0" class="show_hide fd-cl group-hover:opacity-25 h-96" onclick="replace()">
<img class="mx-auto" src="./img/team/omar-amode-hover.png" alt="">
</div>
<div id="memberinfo0"
class="slidingDiv hidden text-white px-4 memberinfo lg:absolute lg:top-0 lg:left-0 lg:right-0 h-96 z-40"
onclick="replace()">
<div class="lg:pt-36 md:pt-36 pt-28">
<h1 class="text-3xl uppercase font-geo-bold">
Omar Alamoudi
</h1>
<p class="uppercase">Editor-in-chef</p>
<div class="flex justify-center mt-6">
<a href="#"><i
class="fa-brands fa-twitter mr-2 bg-white border text-truegaming_red border-white hover:bg-white rounded-full p-2 hover:bg-red-600 hover:border-truegaming_red hover:text-white"></i></a>
<a href="#"><i
class="fa-brands fa-instagram mr-2 bg-white border text-truegaming_red border-white hover:bg-white rounded-full p-2 hover:bg-red-600 hover:border-truegaming_red hover:text-white"></i></a>
<a href="#"><i
class="fa-brands fa-linkedin-in mr-2 bg-white border text-truegaming_red border-white hover:bg-white rounded-full p-2 hover:bg-red-600 hover:border-truegaming_red hover:text-white"></i></a>
</div>
</div>
</div>
</div>
<div class="w-1/2 fd-cl lg:mr-4 mx-auto member relative font-sfpro-regular">
<div id="member1" class="show_hide fd-cl group-hover:opacity-25 h-96" onclick="replace()">
<img class="mx-auto" src="./img/team/AlBsimi_HQ-hover.png" alt="">
</div>
<div id="memberinfo1"
class="slidingDiv hidden text-white px-4 memberinfo lg:absolute lg:top-0 lg:left-0 lg:right-0 h-96 z-40"
onclick="replace()">
<div class="lg:pt-36 md:pt-36 pt-28">
<h1 class="text-3xl uppercase font-geo-bold">
Mohamed Albsimi
</h1>
<p class="uppercase">Ceo</p>
<div class="flex justify-center mt-6">
<a href="#"><i
class="fa-brands fa-twitter mr-2 bg-white border text-truegaming_red border-white hover:bg-white rounded-full p-2 hover:bg-red-600 hover:border-truegaming_red hover:text-white"></i></a>
<a href="#"><i
class="fa-brands fa-instagram mr-2 bg-white border text-truegaming_red border-white hover:bg-white rounded-full p-2 hover:bg-red-600 hover:border-truegaming_red hover:text-white"></i></a>
<a href="#"><i
class="fa-brands fa-linkedin-in mr-2 bg-white border text-truegaming_red border-white hover:bg-white rounded-full p-2 hover:bg-red-600 hover:border-truegaming_red hover:text-white"></i></a>
</div>
</div>
</div>