-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1235 lines (1108 loc) · 85.8 KB
/
Copy pathindex.html
File metadata and controls
1235 lines (1108 loc) · 85.8 KB
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 name="language" content="en">
<meta name="description" content="Game development studio">
<meta name="robots" content="index, nofollow">
<meta name="author" content="Urbain Guillaume">
<meta name="copyright" content="© 2020 Fire Falcom. All Rights Reserved">
<meta name="publisher" content="Fire Falcom">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/icons/favicon.png">
<link rel="stylesheet" type="text/css" href="styles/css/style.css"/>
<link rel="stylesheet" type="text/css" href="styles/css/font.css"/>
<link rel="stylesheet" type="text/css" href="styles/css/background.css"/>
<link rel="stylesheet" type="text/css" href="styles/css/portal.css"/>
<link rel="stylesheet" type="text/css" href="styles/css/media.css"/>
<link rel="stylesheet" type="text/css" href="styles/css/fix.css"/>
<link rel="stylesheet" type="text/css" href="styles/css/animations.css"/>
<script src="lib/less.js"></script>
<script type="text/javascript" src="lib/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="js/functionality.js"></script>
<title>Fire Falcom</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NX9HTYVP7Q"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NX9HTYVP7Q');
</script>
<script type="text/javascript" id="hs-script-loader" async defer src="//js-na1.hs-scripts.com/6458023.js"></script>
</head>
<body>
<div id="fixed_nav">
<div id="background_nav"></div>
<ul>
<li><a href="#home"><img src="images/logos/firefalcom_logo.svg" alt="Fire Falcom logo"></a></li>
<li><a href="#projects_anchor"><p>PROJECTS</p></a></li>
<li><a href="#services_anchor"><p>SERVICES</p></a></li>
<li><a href="#about_anchor"><p>PROCESS</p></a></li>
<li><a href="#clients_anchor"><p>CLIENTS</p></a></li>
<li><a href="#contact_anchor"><p>CONTACT</p></a></li>
<li><a href="job.html"><p>JOBS</p></a></li>
</ul>
</div>
<div id="fixed_news">
<div class="popup_info_bubble">
<div class="content">
<p>Show the last news</p>
<img src="images/icons/arrow_UI_03.svg" alt="Arrow right">
</div>
<div class="remove_content" onclick="popupInfoBubble()">
<img src="images/icons/cross_UI.svg" alt="Remove popup">
<div class="background"></div>
</div>
</div>
<div class="circle" onclick="newsTwitter()">
<div class="bar"></div>
<div class="bar"></div>
</div>
<div class="twitterContent">
<a class="twitter-timeline" data-tweet-limit="5" href="https://twitter.com/FireFalcom?ref_src=twsrc%5Etfw">Tweets by FireFalcom</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
<div id="parallax">
<header id="home">
<!-- CONTENT -->
<div class="content_section">
<div id="header_bar">
<img src="images/logos/firefalcom_logo.svg" id="FF_logo" alt="Fire Falcom logo">
<nav>
<ul>
<li><a href="#projects_anchor"><p>PROJECTS</p></a></li>
<li><a href="#services_anchor"><p>SERVICES</p></a></li>
<li><a href="#about_anchor"><p>PROCESS</p></a></li>
<li><a href="#clients_anchor"><p>CLIENTS</p></a></li>
<li><a href="#contact_anchor"><p>CONTACT</p></a></li>
<li><a href="job.html"><p>JOBS</p></a></li>
</ul>
</nav>
</div>
<img src="images/logos/firefalcom_logo.svg" id="FF_logo2" alt="Fire Falcom logo">
<div id="portfolio">
<div id="arrow_carrousel">
<div id="left"></div>
<div id="right"></div>
</div>
<ul>
<li>
<div class="project_info">
<p class="title">Little Nightmares on Mobile</p>
<p class="subtitle">Fully ported Little Nightmares to Android & iOS</p>
</div>
<div class="linkMessage">
<a href="https://en.bandainamcoent.eu/little-nightmares/little-nightmares" target="_blank">
<p>See Little Nightmares on Playdigious website</p>
</a>
</div>
<div class="mobile_device">
<img src="images/portfolio/Smartphone_Android.png" class="mobile" alt="Mobile device">
<div class="video_container">
<video width="640" height="360" loop autoplay muted>
<source src="images/portfolio/LittleNightmares.webm" type="video/mp4">
</video>
</div>
</div>
<img src="images/portfolio/Portfolio_LittleNightmares_Background.jpg" class="background" alt="Little Nightmares Game Background">
</li><!--
--><li>
<div class="project_info">
<p class="title">Dead Cells on Mobile</p>
<p class="subtitle">Worked on Dead Cells mobile updates</p>
</div>
<div class="linkMessage">
<a href="https://playdigious.com/dead-cells-mobile-5-million-units-sold/" target="_blank">
<p>See Dead Cells on Playdigious website</p>
</a>
</div>
<div class="mobile_device">
<img src="images/portfolio/Smartphone_Android.png" class="mobile" alt="Mobile device">
<div class="video_container">
<video width="640" height="360" loop autoplay muted>
<source src="images/portfolio/deadCells.webm" type="video/mp4">
</video>
</div>
</div>
<img src="images/portfolio/Portfolio_DeadCells_Background.jpg" class="background" id="dead_cells" alt="Dead Cells Game Background">
</li><!--
--><li>
<div class="project_info">
<p class="title">Blade Of Darkness on PC, PS4, PS5, Xbox and Switch</p>
<p class="subtitle">Modernized Blade Of Darkness and ported on modern consoles</p>
</div>
<div class="linkMessage">
<a href="https://store.steampowered.com/app/1710170/Severance_Blade_of_Darkness/" target="_blank">
<p>See Blade Of Darkness on Steam</p>
</a>
</div>
<div class="pc_device">
<img src="images/portfolio/Desktop.png" class="desktop" alt="Desktop device">
<img src="images/portfolio/Laptop.png" class="laptop" alt="Laptop device">
<video class="video_desktop" width="640" height="360" loop autoplay muted>
<source src="images/portfolio/bladeOfDarkness.webm" type="video/mp4">
</video>
<video class="video_laptop" width="640" height="360" loop autoplay muted>
<source src="images/portfolio/bladeOfDarkness.webm" type="video/mp4">
</video>
</div>
<img src="images/portfolio/Portfolio_BladeOfDarkness_Background.jpg" class="background" id="BladeOfDarkness" alt="Blade of Darkness Game Background">
</li><!--
--><li>
<div class="project_info">
<p class="title">Omega Zodiac on PC</p>
<p class="subtitle">Fully ported Omega Zodiac from Flash to HTML5/WebGL</p>
</div>
<div class="linkMessage">
<a href="https://www.omegazodiac.com/?fbclid=IwAR2WvCQs_xyGKapaIT4XQA-CjX3x-tD8r5f-cakZYpAJ90c6Q5O2zBgHpK8" target="_blank">
<p>Go to Omega Zodiac website</p>
</a>
</div>
<div class="pc_device">
<img src="images/portfolio/Desktop.png" class="desktop" alt="Desktop device">
<img src="images/portfolio/Laptop.png" class="laptop" alt="Laptop device">
<video class="video_desktop" width="640" height="360" loop autoplay muted>
<source src="images/portfolio/omegaZodiac.webm" type="video/mp4">
</video>
<video class="video_laptop" width="640" height="360" loop autoplay muted>
<source src="images/portfolio/omegaZodiac.webm" type="video/mp4">
</video>
</div>
<img src="images/portfolio/Portfolio_OmegaZodiac_Background.jpg" class="background" id="omega_zodiac" alt="Omega Zodiac Game Background">
</li><!--
--><li>
<div class="project_info">
<p class="title">WonderBoy on Mobile</p>
<p class="subtitle">Worked on the mobile port of WonderBoy</p>
</div>
<div class="linkMessage">
<a href="https://play.google.com/store/apps/details?id=com.dotemu.wonderboy.dragonstrap" target="_blank">
<p>See WonderBoy on Google Play</p>
</a>
</div>
<div class="mobile_device">
<img src="images/portfolio/Smartphone_Android.png" class="mobile" alt="Mobile device">
<div class="video_container">
<video width="640" height="360" loop autoplay muted>
<source src="images/portfolio/wonderBoy.webm" type="video/mp4">
</video>
</div>
</div>
<img src="images/portfolio/Portfolio_WonderBoy_Background.jpg" class="background" id="wonderboy" alt="WonderBoy Game Background">
</li><!--
--><li>
<div class="project_info">
<p class="title">Across the Obelisk</p>
<p class="subtitle">Fully ported to Switch, PS5 and Xbox Series</p>
</div>
<div class="linkMessage">
<a href="https://www.paradoxinteractive.com/games/across-the-obelisk/about" target="_blank">
<p>See Across the Obelisk on Paradox Website</p>
</a>
</div>
<div class="switch_device">
<img src="images/portfolio/Device_Switch.png" class="switch" alt="Nintendo Switch device">
<div class="video_container">
<video width="640" height="360" loop autoplay muted>
<source src="images/portfolio/AcrossTheObelisk.webm" type="video/mp4">
</video>
</div>
</div>
<img src="images/portfolio/Portfolio_AcrossTheObelisk_Background.jpg" class="background" id="wonderboy" alt="Across the Obelisk Game Background">
</li><!--
--><li>
<div class="project_info">
<p class="title">Wizard101</p>
<p class="subtitle">Fully ported to Switch, PS4 and Xbox One</p>
</div>
<div class="linkMessage">
<a href="https://www.wizard101.com/" target="_blank">
<p>See Wizard101's Website</p>
</a>
</div>
<div class="switch_device">
<img src="images/portfolio/Device_Switch.png" class="switch" alt="Nintendo Switch device">
<div class="video_container">
<video width="640" height="360" loop autoplay muted>
<source src="images/portfolio/wizard101.webm" type="video/mp4">
</video>
</div>
</div>
<img src="images/portfolio/Portfolio_Wizard101.jpg" class="background" id="wizard101" alt="Wizard101 Game Background">
</li><!--
--><li>
<div class="project_info">
<p class="title">Wargroove 2 on Mobile</p>
<p class="subtitle">Worked on the mobile port of Wargroove 2</p>
</div>
<div class="linkMessage">
<a href="https://wargroove.com/?ref=Games&title=Wargroove" target="_blank">
<p>See Wargroove 2 on Chucklefish website</p>
</a>
</div>
<div class="mobile_device">
<img src="images/portfolio/Smartphone_Android.png" class="mobile" alt="Mobile device">
<div class="video_container">
<video width="640" height="360" loop autoplay muted>
<source src="images/portfolio/wargroove2.webm" type="video/mp4">
</video>
</div>
</div>
<img src="images/portfolio/Portfolio_Wargroove2.jpg" class="background" id="wargroove" alt="Wargroove 2 Game Background">
</li>
</ul>
</div>
</div>
<!-- BACKGROUND -->
<div class="background_section_01">
<img src="images/background/FFlogo_BG.svg" id="logo_BG" alt="Blue shape">
<img src="images/background/spaceTrail_01.svg" id="ST" alt="Space trail">
</div>
</header>
<!-- PORTAL -->
<div class="portal-1">
<!-- Wave front -->
<div class="front_wave">
<svg viewBox="0 0 1440 320">
<path fill="#00034A" d="M0,224L12,213.3C24,203,48,181,72,170.7C96,160,120,160,144,165.3C168,171,192,181,216,176C240,171,264,149,288,138.7C312,128,336,128,360,144C384,160,408,192,432,181.3C456,171,480,117,504,96C528,75,552,85,576,112C600,139,624,181,648,197.3C672,213,696,203,720,213.3C744,224,768,256,792,250.7C816,245,840,203,864,176C888,149,912,139,936,154.7C960,171,984,213,1008,234.7C1032,256,1056,256,1080,250.7C1104,245,1128,235,1152,208C1176,181,1200,139,1224,112C1248,85,1272,75,1296,106.7C1320,139,1344,213,1368,240C1392,267,1416,245,1428,234.7L1440,224L1440,320L1428,320C1416,320,1392,320,1368,320C1344,320,1320,320,1296,320C1272,320,1248,320,1224,320C1200,320,1176,320,1152,320C1128,320,1104,320,1080,320C1056,320,1032,320,1008,320C984,320,960,320,936,320C912,320,888,320,864,320C840,320,816,320,792,320C768,320,744,320,720,320C696,320,672,320,648,320C624,320,600,320,576,320C552,320,528,320,504,320C480,320,456,320,432,320C408,320,384,320,360,320C336,320,312,320,288,320C264,320,240,320,216,320C192,320,168,320,144,320C120,320,96,320,72,320C48,320,24,320,12,320L0,320Z"></path>
</svg>
</div>
<!-- Fill center (for hide) -->
<div class="fill_transition"></div>
<!-- Wave out -->
<div class=wave_out>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#00034A" d="M0,32L9.6,37.3C19.2,43,38,53,58,74.7C76.8,96,96,128,115,128C134.4,128,154,96,173,90.7C192,85,211,107,230,112C249.6,117,269,107,288,122.7C307.2,139,326,181,346,186.7C364.8,192,384,160,403,160C422.4,160,442,192,461,176C480,160,499,96,518,90.7C537.6,85,557,139,576,149.3C595.2,160,614,128,634,101.3C652.8,75,672,53,691,48C710.4,43,730,53,749,96C768,139,787,213,806,208C825.6,203,845,117,864,69.3C883.2,21,902,11,922,32C940.8,53,960,107,979,117.3C998.4,128,1018,96,1037,117.3C1056,139,1075,213,1094,218.7C1113.6,224,1133,160,1152,144C1171.2,128,1190,160,1210,192C1228.8,224,1248,256,1267,266.7C1286.4,277,1306,267,1325,245.3C1344,224,1363,192,1382,165.3C1401.6,139,1421,117,1430,106.7L1440,96L1440,320L1430.4,320C1420.8,320,1402,320,1382,320C1363.2,320,1344,320,1325,320C1305.6,320,1286,320,1267,320C1248,320,1229,320,1210,320C1190.4,320,1171,320,1152,320C1132.8,320,1114,320,1094,320C1075.2,320,1056,320,1037,320C1017.6,320,998,320,979,320C960,320,941,320,922,320C902.4,320,883,320,864,320C844.8,320,826,320,806,320C787.2,320,768,320,749,320C729.6,320,710,320,691,320C672,320,653,320,634,320C614.4,320,595,320,576,320C556.8,320,538,320,518,320C499.2,320,480,320,461,320C441.6,320,422,320,403,320C384,320,365,320,346,320C326.4,320,307,320,288,320C268.8,320,250,320,230,320C211.2,320,192,320,173,320C153.6,320,134,320,115,320C96,320,77,320,58,320C38.4,320,19,320,10,320L0,320Z"></path>
</svg>
</div>
</div>
<!-- OUR PROJECTS -->
<section id="projects">
<!-- CONTENT -->
<span id="projects_anchor"></span>
<div class="content_section">
<div id="our_projects">
<h3>Our Projects</h3>
<ul>
<li>
<div class="card">
<div class="card_banner">
<a href="https://en.bandainamcoent.eu/little-nightmares/little-nightmares" target="_blank">
<img src="images/portfolio/projects/project_TheLittleNightmare_1.jpg" alt="">
</a>
</div>
<div class="card_content">
<div class="card_text">
<h5>Little Nightmares</h5>
<p class="card_description">Unreal Engine 4 game ported to iOS and Android.</p>
</div>
<div class="card_footer">
<img src="images/icons/mobile_icon.svg" alt="Mobile port">
</div>
<img src="images/portfolio/projects/project_TheLittleNightmare_1.jpg" alt="" class="card_background">
</div>
</div>
<div class="card_border">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
</div>
</li>
<li>
<div class="card">
<div class="card_banner">
<a href="https://playdigious.com/games/dead-cells/" target="_blank">
<img src="images/portfolio/projects/project_DeadCells_1.jpg" alt="">
</a>
</div>
<div class="card_content">
<div class="card_text">
<h5>Dead Cells</h5>
<p class="card_description">Haxe/Heaps game. Worked on Android and iOS updates.</p>
</div>
<div class="card_footer">
<img src="images/icons/mobile_icon.svg" alt="Mobile update">
</div>
<img src="images/portfolio/projects/project_DeadCells_1.jpg" alt="" class="card_background">
</div>
</div>
<div class="card_border">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
</div>
</li>
<li>
<div class="card">
<div class="card_banner">
<a href="https://store.steampowered.com/app/1710170/Blade_of_Darkness/" target="_blank">
<img src="images/portfolio/projects/project_BladeOfDarkness_1.jpg" alt="">
</a>
</div>
<div class="card_content">
<div class="card_text">
<h5>Blade Of Darkness</h5>
<p class="card_description">Revived the 2001 game to modern PC, PS4, PS5, Xbox and Switch.</p>
</div>
<div class="card_footer">
<img src="images/logos/switch_logo.svg" alt="Nintendo Switch port">
<img src="images/logos/PlayStation_logo.svg" alt="Playstation port">
<img src="images/logos/Xbox_logo.svg" alt="Xbox port">
<img src="images/icons/pc_icon_1.svg" alt="PC port">
</div>
<img src="images/portfolio/projects/project_BladeOfDarkness_1.jpg" alt="" class="card_background">
</div>
</div>
<div class="card_border">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
</div>
</li>
<li>
<div class="card">
<div class="card_banner">
<a href="https://www.omegazodiac.com/" target="_blank">
<img src="images/portfolio/projects/project_OmegaZodiac_1.jpg" alt="">
</a>
</div>
<div class="card_content">
<div class="card_text">
<h5>Omega Zodiac</h5>
<p class="card_description">MMORPG made in Flash, ported to HTML5.</p>
</div>
<div class="card_footer">
<img src="images/icons/pc_icon_1.svg" alt="PC port">
</div>
<img src="images/portfolio/projects/project_OmegaZodiac_1.jpg" alt="" class="card_background">
</div>
</div>
<div class="card_border">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
</div>
</li>
<li>
<div class="card">
<div class="card_banner">
<a href="https://www.thedragonstrap.com/" target="_blank">
<img src="images/portfolio/projects/project_wonderboy_1.jpg" alt="">
</a>
</div>
<div class="card_content">
<div class="card_text">
<h5>Wonderboy</h5>
<p class="card_description">Worked on the mobile port.</p>
</div>
<div class="card_footer">
<img src="images/icons/mobile_icon.svg" alt="Mobile port">
</div>
<img src="images/portfolio/projects/project_wonderboy_1.jpg" alt="" class="card_background">
</div>
</div>
<div class="card_border">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
</div>
</li>
<li>
<div class="card">
<div class="card_banner">
<a href="https://www.paradoxinteractive.com/games/across-the-obelisk/about" target="_blank">
<img src="images/portfolio/projects/project_AcrossTheObelisk_1.jpg" alt="">
</a>
</div>
<div class="card_content">
<div class="card_text">
<h5>Across The Obelisk</h5>
<p class="card_description">Unity game fully ported to Switch, PS5 and Xbox.</p>
</div>
<div class="card_footer">
<img src="images/logos/switch_logo.svg" alt="Nintendo Switch port">
<img src="images/logos/PlayStation_logo.svg" alt="Playstation 5 port">
<img src="images/logos/Xbox_logo.svg" alt="Xbox Serie X port">
</div>
<img src="images/portfolio/projects/project_AcrossTheObelisk_1.jpg" alt="" class="card_background">
</div>
</div>
<div class="card_border">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
</div>
</li>
<li>
<div class="card">
<div class="card_banner">
<a href="https://wargroove.com/?ref=Games&title=Wargroove" target="_blank">
<img src="images/portfolio/projects/project_Wargroove_1.jpg" alt="">
</a>
</div>
<div class="card_content">
<div class="card_text">
<h5>Wargroove 2</h5>
<p class="card_description">Engine and game ported to Android and iOS.</p>
</div>
<div class="card_footer">
<img src="images/icons/mobile_icon.svg" alt="Mobile port">
</div>
<img src="images/portfolio/projects/project_Wargroove_1.jpg" alt="" class="card_background">
</div>
</div>
<div class="card_border">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
</div>
</li>
<li>
<div class="card">
<div class="card_banner">
<a href="https://www.wizard101.com/" target="_blank">
<img src="images/portfolio/projects/project_Wizard101_1.jpg" alt="">
</a>
</div>
<div class="card_content">
<div class="card_text">
<h5>Wizard101</h5>
<p class="card_description">Gamebryo-based engine and game ported to consoles.</p>
</div>
<div class="card_footer">
<img src="images/logos/switch_logo.svg" alt="Nintendo Switch port">
<img src="images/logos/PlayStation_logo.svg" alt="Playstation 5 port">
<img src="images/logos/Xbox_logo.svg" alt="Xbox Serie X port">
</div>
<img src="images/portfolio/projects/project_Wizard101_1.jpg" alt="" class="card_background">
</div>
</div>
<div class="card_border">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
</div>
</li>
</ul>
</div>
</div>
<div class="background_section_projects">
<img id="stars" src="images/background/stars_03.png" alt="Stars">
</div>
</section>
<div class="portal-2">
<!-- Wave front -->
<div class="front_wave">
<svg viewBox="0 0 1440 320">
<path fill="#1A0042" d="M0,224L12,213.3C24,203,48,181,72,170.7C96,160,120,160,144,165.3C168,171,192,181,216,176C240,171,264,149,288,138.7C312,128,336,128,360,144C384,160,408,192,432,181.3C456,171,480,117,504,96C528,75,552,85,576,112C600,139,624,181,648,197.3C672,213,696,203,720,213.3C744,224,768,256,792,250.7C816,245,840,203,864,176C888,149,912,139,936,154.7C960,171,984,213,1008,234.7C1032,256,1056,256,1080,250.7C1104,245,1128,235,1152,208C1176,181,1200,139,1224,112C1248,85,1272,75,1296,106.7C1320,139,1344,213,1368,240C1392,267,1416,245,1428,234.7L1440,224L1440,320L1428,320C1416,320,1392,320,1368,320C1344,320,1320,320,1296,320C1272,320,1248,320,1224,320C1200,320,1176,320,1152,320C1128,320,1104,320,1080,320C1056,320,1032,320,1008,320C984,320,960,320,936,320C912,320,888,320,864,320C840,320,816,320,792,320C768,320,744,320,720,320C696,320,672,320,648,320C624,320,600,320,576,320C552,320,528,320,504,320C480,320,456,320,432,320C408,320,384,320,360,320C336,320,312,320,288,320C264,320,240,320,216,320C192,320,168,320,144,320C120,320,96,320,72,320C48,320,24,320,12,320L0,320Z"></path>
</svg>
</div>
<!-- Fill center (for hide) -->
<div class="fill_transition"></div>
<!-- Hole -->
<div class="hole_content">
<img src="images/background/hole_center.svg" class="hole1" alt="hole">
<img src="images/background/hole_center.svg" class="hole2" alt="hole">
<svg id="border_hole" viewBox="0 0 1920 558.1">
<ellipse fill="#51DBAB" cx="960" cy="279.1" rx="960" ry="279.1"></ellipse>
</svg>
</div>
<!-- Wave background -->
<div class="wave_BG_content">
<!-- Wave 01 -->
<div class="wave_BG_01">
<svg viewBox="0 0 1915 500">
<defs>
<linearGradient id="P0-Gradient1" x1="0" x2="0" y1="1" y2="0">
<stop offset="60%" stop-color="#51DBAB"></stop>
<stop offset="98%" stop-color="#1C0526"></stop>
</linearGradient>
</defs>
<path fill="url(#P0-Gradient1)" d="M1920,717.6c-58.7-8.4-136.6-22-228.2-35.3c-169.7-25.4-386.7-49.5-608.3-56.1c-221.5-7.6-447.6,2.3-633.4,22.7c-185.9,19.4-331.5,49.3-395.8,57.5c-10.5,1.4-30.6,4.6-54.4,7.6l0-552.5c48.9-41.8,85.1-64.7,128.6-70.6c76.9-9.7,102.5,42.7,159,33.3c61.6-9.8,65.5-77.3,129.4-86.5c84.7-11.9,167.9,92.6,222.4,85.9c45.4-5.3,24.9-79.7,77.3-85.9c66.6-7.5,154.3,102.8,221,99.7c72.9-3.2,75.9-137.7,122.9-137.4c48.9,0.8,65.7,144.1,156.4,152.2c73,7,140.3-78.9,235.1-66.5c86.6,11.9,92.5,92.3,160.1,102.7c85.3,14.2,139.5-105.1,249.2-87.9c17.1,2.6,37.5,10.5,58.7,21.9V717.6z"></path>
</svg>
</div>
<!-- Wave 02 -->
<div class="wave_BG_02">
<svg viewBox="0 0 1915 357">
<defs>
<linearGradient id="P0-Gradient2" x1="0" x2="0" y1="1" y2="0">
<stop offset="65%" stop-color="#1C0526"></stop>
<stop offset="100%" stop-color="#349171"></stop>
</linearGradient>
</defs>
<path fill="url(#P0-Gradient2)" d="M0,526.1L0,91.3C38,55,88.3,26.7,136.7,33.2c58.8,8,63.6,60.8,139.1,78c43.8,9.9,81.5,0.4,156.8-18.7c103.8-26.3,107-48.3,149.6-43.5c86.7,9.7,108.7,105.1,163.5,97.6C808.6,138,810.3,8.5,869.8,0.4c64.8-8.8,111.3,138.2,181.2,128.9c48.1-6.4,48.5-79.2,107.5-92.8c54.1-12.5,74.7,43.7,154.4,59.5c105.6,20.9,143.4-63.1,239.4-43c91.3,19.1,91.4,102.4,170.6,114.1c83.4,12.4,146.6-70.4,197.1-105.8l0,463.1L0,526.1z"></path>
</svg>
</div>
</div>
<!-- Glow -->
<div class="glow">
<svg viewBox="0 0 1377.8 734.2">
<defs>
<radialGradient id="P0-Gradient3" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#51DBAB"></stop>
<stop offset="90%" stop-color="#520473" stop-opacity="0"></stop>
</radialGradient >
</defs>
<ellipse fill="url(#P0-Gradient3)" cx="688.9" cy="367.1" rx="1200" ry="350"></ellipse>
</svg>
</div>
<!-- Wave out -->
<div class=wave_out>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#1A0042" d="M0,32L9.6,37.3C19.2,43,38,53,58,74.7C76.8,96,96,128,115,128C134.4,128,154,96,173,90.7C192,85,211,107,230,112C249.6,117,269,107,288,122.7C307.2,139,326,181,346,186.7C364.8,192,384,160,403,160C422.4,160,442,192,461,176C480,160,499,96,518,90.7C537.6,85,557,139,576,149.3C595.2,160,614,128,634,101.3C652.8,75,672,53,691,48C710.4,43,730,53,749,96C768,139,787,213,806,208C825.6,203,845,117,864,69.3C883.2,21,902,11,922,32C940.8,53,960,107,979,117.3C998.4,128,1018,96,1037,117.3C1056,139,1075,213,1094,218.7C1113.6,224,1133,160,1152,144C1171.2,128,1190,160,1210,192C1228.8,224,1248,256,1267,266.7C1286.4,277,1306,267,1325,245.3C1344,224,1363,192,1382,165.3C1401.6,139,1421,117,1430,106.7L1440,96L1440,320L1430.4,320C1420.8,320,1402,320,1382,320C1363.2,320,1344,320,1325,320C1305.6,320,1286,320,1267,320C1248,320,1229,320,1210,320C1190.4,320,1171,320,1152,320C1132.8,320,1114,320,1094,320C1075.2,320,1056,320,1037,320C1017.6,320,998,320,979,320C960,320,941,320,922,320C902.4,320,883,320,864,320C844.8,320,826,320,806,320C787.2,320,768,320,749,320C729.6,320,710,320,691,320C672,320,653,320,634,320C614.4,320,595,320,576,320C556.8,320,538,320,518,320C499.2,320,480,320,461,320C441.6,320,422,320,403,320C384,320,365,320,346,320C326.4,320,307,320,288,320C268.8,320,250,320,230,320C211.2,320,192,320,173,320C153.6,320,134,320,115,320C96,320,77,320,58,320C38.4,320,19,320,10,320L0,320Z"></path>
</svg>
</div>
</div>
<!-- OUR SERVICES -->
<section id="services">
<!-- CONTENT -->
<span id="services_anchor"></span>
<div class="content_section">
<div id="our_services">
<h3>Our Services</h3>
<ul>
<li>
<div class="block_content">
<div class="text_content">
<p class="title_block">Porting</p>
<p class="text_block">
Do you want to reach a wider audience?
We can port your game to any platform.
We have experience with consoles since the PlayStation 2!
We can work with any engine including home-made ones.
Contact us for a quote!
</p>
</div>
</div>
<div class="block_BG">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
</div>
</li>
<!-- -->
<li>
<div class="block_content">
<div class="text_content">
<p class="title_block">Remastering</p>
<p class="text_block">
Do you have a previous title that you want to give a second life?
We can get into existing codebases and integrate new rendering techniques.
We also implement modern social features so your game can revive!
Contact us to discuss your project!
</p>
</div>
</div>
<div class="block_BG">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
</div>
</li>
</ul>
</div>
<img id="comet" src="images/items/comet.svg" alt="Comet">
<div id="skills">
<h4>We are certified developers</h4>
<ul id="certif_platform">
<li><img src="images/logos/PlayStation_logo.svg" alt="PlayStation logo" style="width:80%"></li>
<li><img src="images/logos/nintendo_logo.svg" alt="Nintendo logo"></li>
<li><img src="images/logos/Xbox_logo.svg" alt="Xbox logo" style="width: 62%;"></li>
</ul>
<div id="cross_platform">
<!-- PLATFORM -->
<div id="platform_wheel">
<div class="wheel">
<div class="label console">
<img src="images/icons/consol_icon.svg" alt="Joystick icon">
<img class="block_BG-1" src="images/background/block-circle_BG.png" alt="Background block">
<img class="block_BG-2" src="images/background/block-circle_BG.png" alt="Background block">
</div>
<div class="label PC">
<img src="images/icons/PC_icon.svg" alt="Mouse icon">
<img class="block_BG-1" src="images/background/block-circle_BG.png" alt="Background block">
<img class="block_BG-2" src="images/background/block-circle_BG.png" alt="Background block">
</div>
<div class="label smartphone">
<img src="images/icons/smartphone_icon.svg" alt="Smartphone icon">
<img class="block_BG-1" src="images/background/block-circle_BG.png" alt="Background block">
<img class="block_BG-2" src="images/background/block-circle_BG.png" alt="Background block">
</div>
</div>
<div class="myarrow-1a arr1" data-description="Computer to Console">
<span class="arrow left"></span>
<span class="line"></span>
<span class="arrow right"></span>
</div>
<div class="myarrow-1b arr2" data-description="Console to Computer">
<span class="arrow left"></span>
<span class="line"></span>
<span class="arrow right"></span>
</div>
<div class="myarrow-2a arr3" data-description="Smartphone to Console">
<span class="arrow left"></span>
<span class="line"></span>
<span class="arrow right"></span>
</div>
<div class="myarrow-2b arr4" data-description="Console to Smartphone">
<span class="arrow left"></span>
<span class="line"></span>
<span class="arrow right"></span>
</div>
<div class="myarrow-3a arr5" data-description="Computer to Smartphone">
<span class="arrow left"></span>
<span class="line"></span>
<span class="arrow right"></span>
</div>
<div class="myarrow-3b arr6" data-description="Smartphone to Computer">
<span class="arrow left"></span>
<span class="line"></span>
<span class="arrow right"></span>
</div>
<p id="text"></p>
</div>
<!-- LANGUAGE -->
<div id="techno_wheel">
<div class="wheel">
<img src="images/icons/technology_icon.svg" alt="Technology icon">
<img class="block_BG-1" src="images/background/block-circle_BG.png" alt="Background block">
<img class="block_BG-2" src="images/background/block-circle_BG.png" alt="Background block">
</div>
<div class="circle_list">
<div class="deg0"><img src="images/logos/technoWheel/haxe_logo.svg" alt="Logo"><div><p>Haxe</p></div></div>
<div class="deg45"><img src="images/logos/technoWheel/html5_logo.svg" alt="Logo"><div><p>HTML 5</p></div></div>
<div class="deg90"><img src="images/logos/technoWheel/cpp_logo.svg" alt="Logo"><div><p>C++</p></div></div>
<div class="deg135"><img src="images/logos/technoWheel/windows_logo.svg" alt="Logo"><div><p>Windows</p></div></div>
<div class="deg180"><img src="images/logos/technoWheel/apple_logo.svg" alt="Logo"><div><p>OsX</p></div></div>
<div class="deg225"><img src="images/logos/technoWheel/linux-logo.png" alt="Logo"><div><p>Linux</p></div></div>
<div class="deg270"><img src="images/logos/technoWheel/android_logo.svg" alt="Logo"><div><p>Android</p></div></div>
<div class="deg315"><img src="images/logos/technoWheel/switch_logo_color.svg" alt="Logo"><div><p>Nintendo Switch</p></div></div>
</div>
</div>
</div>
</div>
<div class="autoscroll_arrow"><a href="#about_anchor"><img src="images/icons/arrow_UI.svg" class="arrow" alt="Arrow"></a></div>
</div>
<!-- BACKGROUND -->
<div class="background_section_02">
<img id="planet_01" src="images/background/planet-far_01.svg" alt="Distant planet">
<img id="planet_02" src="images/background/planet-far_02.svg" alt="Distant planet">
<img id="space_tail_07" src="images/background/space_tail_07.png" alt="Distant planet">
<img id="stars" src="images/background/stars_02.png" alt="stars">
</div>
</section>
<!-- PORTAL -->
<div class="portal-2">
<!-- Wave front -->
<div class="front_wave">
<svg viewBox="0 0 1440 320">
<path fill="#1A0042" d="M0,224L12,213.3C24,203,48,181,72,170.7C96,160,120,160,144,165.3C168,171,192,181,216,176C240,171,264,149,288,138.7C312,128,336,128,360,144C384,160,408,192,432,181.3C456,171,480,117,504,96C528,75,552,85,576,112C600,139,624,181,648,197.3C672,213,696,203,720,213.3C744,224,768,256,792,250.7C816,245,840,203,864,176C888,149,912,139,936,154.7C960,171,984,213,1008,234.7C1032,256,1056,256,1080,250.7C1104,245,1128,235,1152,208C1176,181,1200,139,1224,112C1248,85,1272,75,1296,106.7C1320,139,1344,213,1368,240C1392,267,1416,245,1428,234.7L1440,224L1440,320L1428,320C1416,320,1392,320,1368,320C1344,320,1320,320,1296,320C1272,320,1248,320,1224,320C1200,320,1176,320,1152,320C1128,320,1104,320,1080,320C1056,320,1032,320,1008,320C984,320,960,320,936,320C912,320,888,320,864,320C840,320,816,320,792,320C768,320,744,320,720,320C696,320,672,320,648,320C624,320,600,320,576,320C552,320,528,320,504,320C480,320,456,320,432,320C408,320,384,320,360,320C336,320,312,320,288,320C264,320,240,320,216,320C192,320,168,320,144,320C120,320,96,320,72,320C48,320,24,320,12,320L0,320Z"></path>
</svg>
</div>
<!-- Fill center (for hide) -->
<div class="fill_transition"></div>
<!-- Hole -->
<div class="hole_content">
<img src="images/background/hole_center.svg" class="hole1" alt="hole">
<img src="images/background/hole_center.svg" class="hole2" alt="hole">
<svg id="border_hole" viewBox="0 0 1920 558.1">
<ellipse fill="#B608FF" cx="960" cy="279.1" rx="960" ry="279.1"></ellipse>
</svg>
</div>
<!-- Wave background -->
<div class="wave_BG_content">
<!-- Wave 01 -->
<div class="wave_BG_01">
<svg viewBox="0 0 1915 500">
<defs>
<linearGradient id="P2-Gradient1" x1="0" x2="0" y1="1" y2="0">
<stop offset="60%" stop-color="#B608FF"></stop>
<stop offset="98%" stop-color="#1C0526"></stop>
</linearGradient>
</defs>
<path fill="url(#P2-Gradient1)" d="M1920,717.6c-58.7-8.4-136.6-22-228.2-35.3c-169.7-25.4-386.7-49.5-608.3-56.1c-221.5-7.6-447.6,2.3-633.4,22.7c-185.9,19.4-331.5,49.3-395.8,57.5c-10.5,1.4-30.6,4.6-54.4,7.6l0-552.5c48.9-41.8,85.1-64.7,128.6-70.6c76.9-9.7,102.5,42.7,159,33.3c61.6-9.8,65.5-77.3,129.4-86.5c84.7-11.9,167.9,92.6,222.4,85.9c45.4-5.3,24.9-79.7,77.3-85.9c66.6-7.5,154.3,102.8,221,99.7c72.9-3.2,75.9-137.7,122.9-137.4c48.9,0.8,65.7,144.1,156.4,152.2c73,7,140.3-78.9,235.1-66.5c86.6,11.9,92.5,92.3,160.1,102.7c85.3,14.2,139.5-105.1,249.2-87.9c17.1,2.6,37.5,10.5,58.7,21.9V717.6z"></path>
</svg>
</div>
<!-- Wave 02 -->
<div class="wave_BG_02">
<svg viewBox="0 0 1915 357">
<defs>
<linearGradient id="P2-Gradient2" x1="0" x2="0" y1="1" y2="0">
<stop offset="65%" stop-color="#1C0526"></stop>
<stop offset="100%" stop-color="#8134A1"></stop>
</linearGradient>
</defs>
<path fill="url(#P2-Gradient2)" d="M0,526.1L0,91.3C38,55,88.3,26.7,136.7,33.2c58.8,8,63.6,60.8,139.1,78c43.8,9.9,81.5,0.4,156.8-18.7c103.8-26.3,107-48.3,149.6-43.5c86.7,9.7,108.7,105.1,163.5,97.6C808.6,138,810.3,8.5,869.8,0.4c64.8-8.8,111.3,138.2,181.2,128.9c48.1-6.4,48.5-79.2,107.5-92.8c54.1-12.5,74.7,43.7,154.4,59.5c105.6,20.9,143.4-63.1,239.4-43c91.3,19.1,91.4,102.4,170.6,114.1c83.4,12.4,146.6-70.4,197.1-105.8l0,463.1L0,526.1z"></path>
</svg>
</div>
</div>
<!-- Glow -->
<div class="glow">
<svg viewBox="0 0 1377.8 734.2">
<defs>
<radialGradient id="P2-Gradient3" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#B608FF"></stop>
<stop offset="90%" stop-color="#520473" stop-opacity="0"></stop>
</radialGradient >
</defs>
<ellipse fill="url(#P2-Gradient3)" cx="688.9" cy="367.1" rx="1200" ry="350"></ellipse>
</svg>
</div>
<!-- Wave out -->
<div class=wave_out>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#1A0042" d="M0,32L9.6,37.3C19.2,43,38,53,58,74.7C76.8,96,96,128,115,128C134.4,128,154,96,173,90.7C192,85,211,107,230,112C249.6,117,269,107,288,122.7C307.2,139,326,181,346,186.7C364.8,192,384,160,403,160C422.4,160,442,192,461,176C480,160,499,96,518,90.7C537.6,85,557,139,576,149.3C595.2,160,614,128,634,101.3C652.8,75,672,53,691,48C710.4,43,730,53,749,96C768,139,787,213,806,208C825.6,203,845,117,864,69.3C883.2,21,902,11,922,32C940.8,53,960,107,979,117.3C998.4,128,1018,96,1037,117.3C1056,139,1075,213,1094,218.7C1113.6,224,1133,160,1152,144C1171.2,128,1190,160,1210,192C1228.8,224,1248,256,1267,266.7C1286.4,277,1306,267,1325,245.3C1344,224,1363,192,1382,165.3C1401.6,139,1421,117,1430,106.7L1440,96L1440,320L1430.4,320C1420.8,320,1402,320,1382,320C1363.2,320,1344,320,1325,320C1305.6,320,1286,320,1267,320C1248,320,1229,320,1210,320C1190.4,320,1171,320,1152,320C1132.8,320,1114,320,1094,320C1075.2,320,1056,320,1037,320C1017.6,320,998,320,979,320C960,320,941,320,922,320C902.4,320,883,320,864,320C844.8,320,826,320,806,320C787.2,320,768,320,749,320C729.6,320,710,320,691,320C672,320,653,320,634,320C614.4,320,595,320,576,320C556.8,320,538,320,518,320C499.2,320,480,320,461,320C441.6,320,422,320,403,320C384,320,365,320,346,320C326.4,320,307,320,288,320C268.8,320,250,320,230,320C211.2,320,192,320,173,320C153.6,320,134,320,115,320C96,320,77,320,58,320C38.4,320,19,320,10,320L0,320Z"></path>
</svg>
</div>
</div>
<section id="about">
<span id="about_anchor"></span>
<div class="content_section">
<h3>Process</h3>
<div id="step_tree">
<div id="line"></div>
<div class="sub_block_left">
<div class="step_block">
<div class="label" style="background-image: url(images/icons/speak_icon.svg); background-size: 60%;"></div>
<div class="title_area">
<h5>Step 1 : Audit and quote</h5>
</div>
<div class="content_area">
<p>
We do the analysis and quote for free!
After we received your codebase we come back to you in less than 5 work days with our result.
That includes pricing and our estimated timelines.
</p>
</div>
</div>
</div>
<!-- -->
<div class="sub_block_right">
<div class="step_block">
<div class="label" style="background-image: url(images/icons/development_icon.svg); background-size: 55%;"></div>
<div class="title_area">
<h5>Step 2 : Development</h5>
</div>
<div class="content_area">
<p>
Once a project is started we keep an active communication with your team.
We give weekly updates and are available all the time during work hours.
We also provide rolling releases so you can keep track of your project.
</p>
</div>
</div>
</div>
<!-- -->
<div class="sub_block_left">
<div class="step_block">
<div class="label" style="background-image: url(images/icons/support_icon.svg); background-size: 50%;"></div>
<div class="title_area">
<h5>Step 3 : Support and maintenance</h5>
</div>
<div class="content_area">
<p>
After the initial release we support the game for a full-year, under warranty.
This covers bugs and platforms' requirement changes.
We also integrates all the changes made on the main target after release
</p>
</div>
</div>
</div>
</div>
<h3>Why Choose us?</h3>
<div id="why_us">
<ul>
<li>
<div class="block_content">
<div class="text_content">
<p class="title_block">Experience</p>
<p class="text_block">
We have worked on all the major platforms since the PlayStation2.<br/>
No technical task can resist us!<br/>
We find solutions on any issue!<br/>
</p>
</div>
</div>
<div class="block_BG">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
</div>
</li>
<!-- -->
<li>
<div class="block_content">
<div class="text_content">
<p class="title_block">Efficiency</p>
<p class="text_block">
Our team knows what to do and how to do it in the most efficient way there is.<br/>
We create tools to facilitate our work and optimise our performance.
</p>
</div>
</div>
<div class="block_BG">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
</div>
</li>
<!-- -->
<li>
<div class="block_content">
<div class="text_content">
<p class="title_block">Quality</p>
<p class="text_block">
We always aim for the best player experiences. And we provide support for operation.
</p>
</div>
</div>
<div class="block_BG">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
<img src="images/background/block-rect_BG_01.png" alt="Background block">
</div>
</li>
</ul>
</div>
<div class="autoscroll_arrow"><a href="#clients_anchor"><img src="images/icons/arrow_UI.svg" class="arrow" alt="Arrow"></a></div>
</div>
<div class="background_section_03">
<img id="pink_star" src="images/items/sun_01.svg" alt="Pink star">
<img id="big_planet" src="images/items/big_planet.svg" alt="Big planet">
<img id="space_tail" src="images/background/space_tail_06.svg" alt="Space tails">
<img id="stars" src="images/background/stars_02.png" alt="stars">
</div>
</section>
<!-- PORTAL -->
<div class="portal-3">
<!-- Wave front -->
<div class="front_wave">
<svg viewBox="0 0 1440 320">
<path fill="#1A0042" d="M0,224L12,213.3C24,203,48,181,72,170.7C96,160,120,160,144,165.3C168,171,192,181,216,176C240,171,264,149,288,138.7C312,128,336,128,360,144C384,160,408,192,432,181.3C456,171,480,117,504,96C528,75,552,85,576,112C600,139,624,181,648,197.3C672,213,696,203,720,213.3C744,224,768,256,792,250.7C816,245,840,203,864,176C888,149,912,139,936,154.7C960,171,984,213,1008,234.7C1032,256,1056,256,1080,250.7C1104,245,1128,235,1152,208C1176,181,1200,139,1224,112C1248,85,1272,75,1296,106.7C1320,139,1344,213,1368,240C1392,267,1416,245,1428,234.7L1440,224L1440,320L1428,320C1416,320,1392,320,1368,320C1344,320,1320,320,1296,320C1272,320,1248,320,1224,320C1200,320,1176,320,1152,320C1128,320,1104,320,1080,320C1056,320,1032,320,1008,320C984,320,960,320,936,320C912,320,888,320,864,320C840,320,816,320,792,320C768,320,744,320,720,320C696,320,672,320,648,320C624,320,600,320,576,320C552,320,528,320,504,320C480,320,456,320,432,320C408,320,384,320,360,320C336,320,312,320,288,320C264,320,240,320,216,320C192,320,168,320,144,320C120,320,96,320,72,320C48,320,24,320,12,320L0,320Z"></path>
</svg>
</div>
<!-- Fill center (for hide) -->
<div class="fill_transition"></div>
<!-- Hole -->
<div class="hole_content">
<img src="images/background/hole_center.svg" class="hole1" alt="hole">
<img src="images/background/hole_center.svg" class="hole2" alt="hole">
<svg id="border_hole" viewBox="0 0 1920 558.1">
<ellipse fill="#FFF30D" cx="960" cy="279.1" rx="960" ry="279.1"></ellipse>
</svg>
</div>
<!-- Wave background -->
<div class="wave_BG_content">
<!-- Wave 01 -->
<div class="wave_BG_01">
<svg viewBox="0 0 1915 500">
<defs>
<linearGradient id="P3-Gradient1" x1="0" x2="0" y1="1" y2="0">
<stop offset="65%" stop-color="#FFF30D"></stop>
<stop offset="100%" stop-color="#262405"></stop>
</linearGradient>
</defs>
<path fill="url(#P3-Gradient1)" d="M1920,717.6c-58.7-8.4-136.6-22-228.2-35.3c-169.7-25.4-386.7-49.5-608.3-56.1c-221.5-7.6-447.6,2.3-633.4,22.7c-185.9,19.4-331.5,49.3-395.8,57.5c-10.5,1.4-30.6,4.6-54.4,7.6l0-552.5c48.9-41.8,85.1-64.7,128.6-70.6c76.9-9.7,102.5,42.7,159,33.3c61.6-9.8,65.5-77.3,129.4-86.5c84.7-11.9,167.9,92.6,222.4,85.9c45.4-5.3,24.9-79.7,77.3-85.9c66.6-7.5,154.3,102.8,221,99.7c72.9-3.2,75.9-137.7,122.9-137.4c48.9,0.8,65.7,144.1,156.4,152.2c73,7,140.3-78.9,235.1-66.5c86.6,11.9,92.5,92.3,160.1,102.7c85.3,14.2,139.5-105.1,249.2-87.9c17.1,2.6,37.5,10.5,58.7,21.9V717.6z"></path>
</svg>
</div>
<!-- Wave 02 -->
<div class="wave_BG_02">
<svg viewBox="0 0 1915 357">
<defs>
<linearGradient id="P3-Gradient2" x1="0" x2="0" y1="1" y2="0">
<stop offset="70%" stop-color="#262405"></stop>
<stop offset="100%" stop-color="#FFF30D"></stop>
</linearGradient>
</defs>