-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2280 lines (2104 loc) · 138 KB
/
Copy pathindex.html
File metadata and controls
2280 lines (2104 loc) · 138 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>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=ENTER_YOUR_ANALYTICS_ID"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'ENTER_YOUR_ANALYTICS_ID');
</script>
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'ENTER_YOUR_TAG_ID');</script>
<!-- End Google Tag Manager -->
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Not required meta tags but essential for seo and link sharing -->
<meta name="description" content="Get the best controller skins based on your favorite games.">
<meta name="Keywords" content="Custom,T-shirts, Hoodies, Make your Own, Polo, Round neck,Custom T-shirts ">
<meta property="og:title" content="Home | The Top Controller" />
<meta property="og:url" content="https://www.thetopconroller.com" />
<meta property="og:description" content="Get the best controller skins based on your favorite games.">
<meta property="og:image" itemprop="image"
content="https://www.thetopcontroller.com/images/top_controller_fav.png" />
<meta property="og:image:secure_url" itemprop="image"
content="https://www.thetopcontroller.com/images/top_controller_fav.png" />
<meta property="og:image:width" content="300">
<meta property="og:image:height" content="300">
<meta property="og:type" content="website" />
<link rel="shortcut icon" href="images/top_controller_fav.png" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<title>Home | The Top Controller</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- owl carousel -->
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.theme.default.css">
<!-- Facebook Pixel Code -->
<script>
!function (f, b, e, v, n, t, s) {
if (f.fbq) return; n = f.fbq = function () {
n.callMethod ?
n.callMethod.apply(n, arguments) : n.queue.push(arguments)
};
if (!f._fbq) f._fbq = n; n.push = n; n.loaded = !0; n.version = '2.0';
n.queue = []; t = b.createElement(e); t.async = !0;
t.src = v; s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s)
}(window, document, 'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', 'ENTER_YOUR_PIXEL_ID');
fbq('track', 'PageView');
</script>
<noscript>
<img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=ENTER_YOUR_PIXEL_ID&ev=PageView&noscript=1" />
</noscript>
<!-- End Facebook Pixel Code -->
<style type="text/css">
/* top header slider */
#white-circle {
width: 1000px;
height: 1000px;
border-radius: 50%;
top: 20%;
left: 42%;
-webkit-box-shadow: 0px 0px 20px 40px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0px 2px 30px 40px rgba(0, 0, 0, 0.15);
box-shadow: 0px 0px 20px 40px rgba(0, 0, 0, 0.15);
z-index: 10;
}
#designed-to {
font-size: 121px;
opacity: 0.2;
/* text-orientation: inherit; */
writing-mode: tb-rl;
transform: rotate(180deg);
z-index: 10;
left: 8%;
bottom: 13%;
line-height: 120px;
}
#stand-out {
bottom: -5%;
font-size: 150px;
line-height: 150px;
left: 8%;
z-index: 15;
}
#header-slider-container {
top: 30%;
left: 7%;
z-index: 15;
}
#john-doe-container {
top: 30%;
right: 13%;
z-index: 15;
}
#scroll-container {
writing-mode: tb-rl;
transform: rotate(180deg);
z-index: 10;
bottom: 0px;
right: 13%;
}
/* service */
#bubbles-container {
transform: rotate(180deg);
top: -110px;
position: absolute;
left: 5%;
}
#services-container {
left: 50%;
transform: translate(-50%, 0);
z-index: 17;
}
#services-heading {
font-size: 190px;
line-height: 150px;
}
#services-sub-heading {
font-size: 47px;
line-height: 80px;
}
/* for large desktops */
@media (min-width: 1800px) {
#john-doe-container {
right: 23%;
}
#scroll-container {
right: 23%;
}
#header-slider-container {
left: 13%;
}
#bubbles-container {
left: 13%;
}
}
/* owl carousel */
.owl-dot {
display: none;
}
.owl-carousel .owl-stage {
display: flex;
justify-content: center;
align-items: center;
}
.logo-item {
text-align: center;
margin-left: -1px;
}
/* mobile css */
/* top header slider */
#white-circle-mobile {
width: 300px;
height: 300px;
border-radius: 50%;
left: 50%;
-webkit-box-shadow: 0px 0px 20px 40px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0px 2px 30px 40px rgba(0, 0, 0, 0.15);
box-shadow: 0px 0px 20px 40px rgba(0, 0, 0, 0.15);
z-index: 10;
bottom: -85px;
transform: translate(-50%, 0);
}
#designed-to-mobile {
font-size: 75px;
opacity: 0.2;
writing-mode: tb-rl;
transform: rotate(180deg);
z-index: 10;
left: 0%;
top: 21%;
line-height: 69px;
position: absolute;
text-align: right;
}
#stand-out-mobile {
bottom: -22px;
font-size: 45px;
z-index: 15;
left: 50%;
transform: translate(-50%, 0px);
width: 100%;
text-align: center;
}
#header-slider-container-mobile {
top: 24%;
left: 50%;
transform: translate(-50%, 0px);
z-index: 15;
}
#john-doe-container-mobile {
width: 200px;
text-align: center;
bottom: 42px;
left: 50%;
transform: translate(-50%, 0px);
z-index: 15;
}
#scroll-container-mobile {
writing-mode: tb-rl;
transform: rotate(180deg);
z-index: 10;
bottom: 0px;
right: 0%;
}
/* service */
#bubbles-container-mobile {
transform: rotate(180deg);
top: 0px;
position: absolute;
left: 0%;
}
#services-container-mobile {
left: 50%;
transform: translate(-50%, 0);
z-index: 17;
}
#services-heading-mobile {
font-size: 64px;
}
#services-sub-heading-mobile {
font-size: 15px;
position: relative;
top: -8px;
}
</style>
</head>
<body class="position-relative" style="overflow-y: scroll; height: 100%;" data-spy="scroll"
data-target="#navbar-example2" data-offset="150">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=ENTER_YOUR_TAG_ID" height="0" width="0"
style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="d-none d-lg-block">
<!-- <div id="header-desktop"></div>
<div id="footer-desktop"></div> -->
<header>
<div style="background-color: #2e3192; z-index: 50;" class="fixed-top">
<div class="top-bar-desktop d-flex justify-content-center align-items-center">
<h3 class="m-0 font-poppins-light" style="font-size: 22px;">An Exclusive Coupon of <span
class="font-weight-bold">5$</span> Has been Applied Valid Until <span
class="font-weight-bold" id="counter-1">10:00</span></h3>
</div>
<nav id="navbar-example2" class="navbar navbar-dark w-100 justify-content-center"
style="background-color: #2e3192;">
<img src="icons/yellow_logo.svg" style="width: 40px; margin-right: 5px;">
<a class="navbar-brand font-poppins-bold"
style="font-size: 30px; color:#ffea00; margin-right: 150px;" href="/">The Top Controller</a>
<ul class="nav nav-pills">
<li class="nav-item">
<a class="nav-link font-poppins-bold" style="font-size: 16px; color: #ffea00;"
href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link font-poppins-bold" style="font-size: 16px; color: #ffea00;"
href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link font-poppins-bold" style="font-size: 16px; color: #ffea00;"
href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link font-poppins-bold" style="font-size: 16px; color: #ffea00;"
href="#designs">Designs</a>
</li>
<li class="position-relative nav-item d-flex justify-content-center align-items-center">
<a class="nav-link font-poppins-bold text-uppercase shadow-buy-now-button d-flex justify-content-center align-items-center cart-button"
style="font-size: 16px; background-color: #ffea00; color: #fc1e1e; border-radius: 100px; padding-top: 5px; padding-bottom: 5px;"
href="products/cart">Cart
<picture>
<source srcset="images/cartimage.png" type="image/png">
<picture>
<source srcset="images/cartimage.webp" type="image/webp">
<img src="images/cartimage.png" style="width: 15px; margin-left: 2px;">
</picture>
</picture>
</a>
<div class="position-absolute d-flex justify-content-center align-items-center font-poppins-bold"
style="background-color: #ff0000; width: 20px; font-size: 12px; border-radius: 50%; height: 20px; color: white; right: -5px; top: -3px;"
id="cart-message-desktop">1</div>
</li>
</ul>
</nav>
</div>
</header>
<!-- top silder and its elements -->
<div id="home">
<div class="background-color-blue w-100 position-relative overflow-hidden" style="height: 800px;">
<div class="position-absolute bg-white" id="white-circle"></div>
<div class="position-absolute font-poppins-bold text-white" id="designed-to">Designed<br>to</div>
<div class="position-absolute font-poppins-bold color-yellow" id="stand-out">Stand Out</div>
<div class="position-absolute d-flex justify-content-center align-items-center"
id="header-slider-container">
<!-- header slider -->
<div id="header-slider">
<!-- header images -->
<div id="header-slider-image" class="position-relative" style="width: 680px; height: 282px;">
<img src="images/Home_1A.png" id="header-image-1" class="position-absolute">
<img src="images/Home_2A.png" id="header-image-2" class="position-absolute"
style="display: none;">
<img src="images/Home_3A.png" id="header-image-3" class="position-absolute"
style="display: none;">
</div>
<div class="container">
<div class="row">
<div class="col-4 position-relative">
<!-- arrow left -->
<img src="images/arrowhead.png" class="position-absolute"
style="right: 0px; top: 50%; transform: translate(0, -50%); cursor: pointer;"
id="header-slider-left">
</div>
<div class="col-4">
<!-- heading -->
<div class="position-relative" id="header-heading"
style="width: 100%; height: 40px;">
<h1 class="font-poppins-bold color-yellow text-center position-absolute w-100"
style="font-size: 24px;" id="header-heading-1">“Gears
Of War”</h1>
<h1 class="font-poppins-bold color-yellow text-center position-absolute w-100"
id="header-heading-2" style="font-size: 26px; display: none;">
“Black Wall”</h1>
<h1 class="font-poppins-bold color-yellow text-center position-absolute w-100"
id="header-heading-3" style="font-size: 26px; display: none;">
“Funky Ghost”</h1>
</div>
<!-- author -->
<div class="position-relative d-flex justify-content-center" id="header-author"
style="width: 100%; height: 25px;">
<h2 class="font-poppins-bold text-white text-center position-absolute"
id="header-author-1" style="font-size: 13px;">-By David E. Hunt</h2>
<h2 class="font-poppins-bold text-white text-center position-absolute"
id="header-author-2" style="font-size: 13px; display: none;">-By Robert W.
Chambers </h2>
<h2 class="font-poppins-bold text-white text-center position-absolute"
id="header-author-3" style="font-size: 13px; display: none;">-By Tsujita
Masujiro</h2>
</div>
<!-- buy now buttons -->
<div class="position-relative d-flex justify-content-center" id="header-button"
style="width: 100%; height: 30px;">
<a class="nav-link font-poppins-bold text-uppercase shadow-buy-now-button position-absolute"
id="header-button-1"
style="font-size: 16px; background-color: #ffea00; color: #fc1e1e; border-radius: 100px; padding-top: 5px; padding-bottom: 5px;width: 120px; text-align: center; margin: 0 auto;"
href="products/product-page?designName=gears-of-war">Buy Now</a>
<a class="nav-link font-poppins-bold text-uppercase shadow-buy-now-button position-absolute"
id="header-button-2"
style="font-size: 16px; background-color: #ffea00; color: #fc1e1e; border-radius: 100px; padding-top: 5px; padding-bottom: 5px;width: 120px; text-align: center; margin: 0 auto; display: none;"
href="products/product-page?designName=black-wall">Buy Now</a>
<a class="nav-link font-poppins-bold text-uppercase shadow-buy-now-button position-absolute"
id="header-button-3"
style="font-size: 16px; background-color: #ffea00; color: #fc1e1e; border-radius: 100px; padding-top: 5px; padding-bottom: 5px;width: 120px; text-align: center; margin: 0 auto; display: none;"
href="products/product-page?designName=funky-ghost">Buy Now</a>
</div>
</div>
<div class="col-4 position-relative">
<!-- arrow right -->
<img src="images/arrowhead.png" class="position-absolute"
style="transform: rotate(180deg) translate(0, -50%); left: 0px; top: 25%;cursor: pointer;"
id="header-slider-right">
</div>
</div>
</div>
</div>
</div>
<!-- right text -->
<div class="position-absolute" style="width: 350px" id="john-doe-container">
<h2 class="font-poppins-regular m-0" style="font-size:34px;">Customize Your <span
class="font-poppins-bold">Xbox</span> And <span class="font-poppins-bold">PS4</span></h2>
<h1 class="font-poppins-extrabold m-0" style="font-size: 65px;">Now</h1>
<div class="d-flex align-items-center mb-1">
<picture>
<source srcset="images/Check_Box.webp" type="image/webp">
<source srcset="images/Check_Box.png" type="image/png">
<img src="images/Check_Box.png" class="mr-2">
</picture>
<h3 class="font-poppins-bold m-0" style="font-size: 15px;">Anti Slip Technology</h3>
</div>
<div class="d-flex align-items-center mb-1">
<picture>
<source srcset="images/Check_Box.webp" type="image/webp">
<source srcset="images/Check_Box.png" type="image/png">
<img src="images/Check_Box.png" class="mr-2">
</picture>
<h3 class="font-poppins-bold m-0" style="font-size: 15px;">Made from Organo - Plastics</h3>
</div>
<div class="d-flex align-items-center mb-1">
<picture>
<source srcset="images/Check_Box.webp" type="image/webp">
<source srcset="images/Check_Box.png" type="image/png">
<img src="images/Check_Box.png" class="mr-2">
</picture>
<h3 class="font-poppins-bold m-0" style="font-size: 15px;">Hasle Free Application</h3>
</div>
<div class="w-100 d-flex" style="margin-top:80px;">
<div class="position-relative w-50 mr-2">
<div class="w-100 shadow-buy-now-button"
style="border-radius: 10px ; background-color: #ff0000; bottom: -20px; border: 3px transparent solid; border-top: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px;">
<h3 class="font-poppins-regular m-0 text-center pb-1 pt-5" style="font-size: 15px;">
Offer Ends in <span class="font-poppins-bold" id="counter-2">10:00</span></h3>
</div>
<div class="w-100 shadow-buy-now-button background-color-yellow position-absolute"
style="border-radius: 10px; bottom: 40%; border: 3px transparent solid;">
<div class="d-flex justify-content-center align-items-center">
<a class="font-poppins-bold m-0 text-center pt-2 w-100"
style="font-size: 23px;color: #fc1e1e; text-decoration: none;"
href="#our-designs">Choose Your</a>
</div>
<div class="d-flex justify-content-center align-items-center">
<a class="font-poppins-bold m-0 text-center pb-2 w-100"
style="font-size: 23px;color: #fc1e1e; text-decoration: none; "
href="#our-designs">Design Now</a>
</div>
</div>
</div>
<div class="position-relative w-50 ml-2">
<div class="w-100 shadow-buy-now-button"
style="border-radius: 10px ; bottom: -20px; border: 3px black solid; border-top: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px;">
<h3 class="font-poppins-regular m-0 text-center pb-1 pt-5" style="font-size: 15px;">At
Just <span class="font-poppins-bold">28$</span></h3>
</div>
<div class="w-100 shadow-buy-now-button position-absolute"
style="border-radius: 10px; bottom: 40%; border: 3px black solid; cursor: pointer;"
onclick="window.location = 'products/designed-by-you'">
<h3 class="font-poppins-bold m-0 text-center pt-3" style="font-size: 23px;">Create Your
</h3>
<h3 class="font-poppins-bold m-0 text-center pb-3" style="font-size: 23px;">Own</h3>
</div>
</div>
</div>
</div>
<div class="position-absolute" id="scroll-container">
<a class="font-poppins-bold"
style="font-size: 15px; cursor: pointer; color: black; text-decoration: none;"
href="#identity">--------Scroll</a>
</div>
</div>
<div class="position-relative background-color-yellow" id="identity" style="z-index: 15;">
<div class="container py-5">
<div class="row pb-4">
<div class="col-6 px-5">
<h2 class="font-poppins-bold m-0 mb-2" style="font-size: 62px; line-height: 70px;">Your
Unique Identity</h2>
<h2 class="font-poppins-regular m-0" style="font-size: 22px;">Everything you Own Tells you a
Story about so why not tell it Right check out which Design Speaks</h2>
<a class="d-flex justify-content-center align-items-center mt-2"
style="width: 200px; border-radius: 10px; background-color: black; cursor: pointer; text-decoration: none;"
href="#designs">
<p class="font-poppins-regular m-0 mr-1 color-yellow" style="font-size: 25px;">Your
Story</p>
<img src="images/arrowhead.png" style="transform: rotate(180deg);">
</a>
</div>
<div class="col-6">
<picture>
<source srcset="images/Video_Game_Console_2.webp" type="image/webp">
<source srcset="images/Video_Game_Console_2.png" type="image/png">
<img src="images/Video_Game_Console_2.png" class="position-absolute" style="left: -25%">
</picture>
</div>
</div>
</div>
</div>
</div>
<!-- services -->
<div id="services">
<div style="height: 750px; position: relative; overflow: hidden;">
<div class="position-relative">
<div class="position-absolute" id="bubbles-container">
<picture>
<source srcset="images/Ellipse_5.webp" type="image/webp">
<source srcset="images/Ellipse_5.png" type="image/png">
<img src="images/Ellipse_5.png" class="ml-4">
</picture>
</div>
</div>
<div class="position-absolute background-color-yellow w-100" style="height: 20px; top: 0px;">
</div>
<div class="position-absolute" id="services-container">
<h1 class="font-poppins-regular m-0 text-center" id="services-heading">SERVICES</h1>
<h2 class="font-poppins-regular m-0 text-center text-uppercase" id="services-sub-heading">Our
Services for serving you</h2>
<div class="container py-5">
<div class="row">
<div class="col-4 cursor-pointer" onclick="window.location = 'pages/shipping'">
<div class="position-relative w-100 background-color-yellow shadow-buy-now-button"
style="border: 5px black solid; border-radius: 40px; z-index: 10;">
<div class="background-color-yellow position-absolute"
style="width: 70px; height: 70px; border-width: 5px; border-radius: 50%; border-style: solid; z-index: 15; left: 50%; transform: translate(-50%,0%); top:-45px;">
<picture>
<source srcset="images/free_international_shipping.webp" type="image/webp">
<source srcset="images/free_international_shipping.png" type="image/png">
<img src="images/free_international_shipping.png"
class="position-absolute p-1"
style="left: 50%; top: 50%; transform: translate(-50%,-50%);">
</picture>
</div>
<h2 class="font-poppins-bold m-0 text-center text-uppercase"
style="font-size: 20px; padding-top: 30px;">Free international shipping</h2>
<p class="font-poppins-regular m-0 text-center px-3 pt-1 pb-2"
style="font-size: 13px;">Serving More than 14 Countries, learn more about
it<br><span style=" font-size: 16px;" class="font-poppins-bold">Here</span></p>
</div>
</div>
<div class="col-4">
<div class="position-relative w-100 background-color-yellow shadow-buy-now-button"
style="border: 5px black solid; border-radius: 40px; z-index: 10;">
<div class="background-color-yellow position-absolute"
style="width: 70px; height: 70px; border-width: 5px; border-radius: 50%; border-style: solid; z-index: 15; left: 50%; transform: translate(-50%,0%); top:-45px;">
<picture>
<source srcset="images/uniquely_designs.webp" type="image/webp">
<source srcset="images/uniquely_designs.png" type="image/png">
<img src="images/uniquely_designs.png" class=" position-absolute p-1"
style="left: 50%; top: 50%; transform: translate(-50%,-50%);">
</picture>
</div>
<a class="font-poppins-bold m-0 text-center text-uppercase d-flex cursor-pointer text-decoration-none"
style="font-size: 20px; padding-top: 30px; color: black;"
href="#designs">Uniquely Curated Designs</a>
<a class="d-flex font-poppins-regular m-0 text-center px-3 pt-1 cursor-pointer text-decoration-none "
style="font-size: 13px; color: black;" href="#designs">The Uniquest Designs you
Can Find, See them over</a>
<a style=" font-size: 16px; color: black;"
class="font-poppins-bold m-0 text-center px-3 pb-2 d-flex justify-content-center cursor-pointer text-decoration-none">Here</a>
</div>
<div class="position-relative">
<div class="w-100 shadow-buy-now-button position-absolute"
style="border-radius: 40px ; background-color: #ff0000; bottom: -35px; border: 3px transparent solid; border-top: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; padding-top: 50px;">
<h3 class="font-poppins-regular m-0 text-center pb-1 pt-5"
style="font-size: 19px;">Offer Ends in <span class="font-poppins-bold"
id="counter-3">10:00</span></h3>
</div>
</div>
</div>
<div class="col-4 cursor-pointer" onclick="window.location = 'products/designed-by-you'">
<div class="position-relative w-100 background-color-yellow shadow-buy-now-button"
style="border: 5px black solid; border-radius: 40px; z-index: 10;">
<div class="background-color-yellow position-absolute"
style="width: 70px; height: 70px; border-width: 5px; border-radius: 50%; border-style: solid; z-index: 15; left: 50%; transform: translate(-50%,0%); top:-45px;">
<picture>
<source srcset="images/ondemand_print.webp" type="image/webp">
<source srcset="images/ondemand_print.png" type="image/png">
<img src="images/ondemand_print.png" class="position-absolute p-1"
style="left: 50%; top: 50%; transform: translate(-50%,-50%);">
</picture>
</div>
<h2 class="font-poppins-bold m-0 text-center text-uppercase"
style="font-size: 20px; padding-top: 30px;">On - Demand <br> Printing</h2>
<p class="font-poppins-regular m-0 text-center px-3 pt-1 pb-2"
style="font-size: 13px;">Figured out your Identity <br>Print it Over<br><span
style=" font-size: 16px;" class="font-poppins-bold">Here</span></p>
</div>
</div>
</div>
<div class="row pt-5 mt-5">
<div class="col-4 cursor-pointer" onclick="window.location = 'pages/returns'">
<div class="position-relative w-100 background-color-yellow shadow-buy-now-button"
style="border: 5px black solid; border-radius: 40px; z-index: 10;">
<div class="background-color-yellow position-absolute"
style="width: 70px; height: 70px; border-width: 5px; border-radius: 50%; border-style: solid; z-index: 15; left: 50%; transform: translate(-50%,0%); top:-45px;">
<picture>
<source srcset="images/30_day_return.webp" type="image/webp">
<source srcset="images/30_day_return.png" type="image/png">
<img src="images/30_day_return.png" class="position-absolute p-1"
style="left: 50%; top: 50%; transform: translate(-50%,-50%);">
</picture>
</div>
<h2 class="font-poppins-bold m-0 text-center text-uppercase"
style="font-size: 20px; padding-top: 30px;">30-day refund <br>policy</h2>
<p class="font-poppins-regular m-0 text-center px-3 pt-1 pb-2"
style="font-size: 13px;">The Skins Arrived Damaged? <br>Learn What to
Do<br><span style=" font-size: 16px;" class="font-poppins-bold">Here</span></p>
</div>
</div>
<div class="col-4 cursor-pointer"
onclick="window.location.href = 'javascript:void(Tawk_API.toggle())'">
<div class="position-relative w-100 background-color-yellow shadow-buy-now-button"
style="border: 5px black solid; border-radius: 40px; z-index: 10;">
<div class="background-color-yellow position-absolute"
style="width: 70px; height: 70px; border-width: 5px; border-radius: 50%; border-style: solid; z-index: 15; left: 50%; transform: translate(-50%,0%); top:-45px;">
<picture>
<source srcset="images/30_day_return.webp" type="image/webp">
<source srcset="images/30_day_return.png" type="image/png">
<img src="images/live_chat.png" class="position-absolute p-1"
style="left: 50%; top: 50%; transform: translate(-50%,-50%);">
</picture>
</div>
<h2 class="font-poppins-bold m-0 text-center text-uppercase"
style="font-size: 20px; padding-top: 30px;">24/7 Live Chat<br>Customer Support
</h2>
<p class="font-poppins-regular m-0 text-center px-3 pt-1 pb-2"
style="font-size: 13px;">Have Some Doubts? <br>Solve them<br><span
style=" font-size: 16px;" class="font-poppins-bold">Here</span></p>
</div>
</div>
<div class="col-4">
<div class="position-relative w-100 background-color-yellow shadow-buy-now-button"
style="border: 5px black solid; border-radius: 40px; z-index: 10;">
<div class="background-color-yellow position-absolute"
style="width: 70px; height: 70px; border-width: 5px; border-radius: 50%; border-style: solid; z-index: 15; left: 50%; transform: translate(-50%,0%); top:-45px;">
<picture>
<source srcset="images/secure_payments.webp" type="image/webp">
<source srcset="images/secure_payments.png" type="image/png">
<img src="images/secure_payments.png" class=" position-absolute p-1"
style="left: 50%; top: 50%; transform: translate(-50%,-50%);">
</picture>
</div>
<h2 class="font-poppins-bold m-0 text-center text-uppercase"
style="font-size: 20px; padding-top: 30px;">Secure Payments<br>SSL Certified
</h2>
<p class="font-poppins-regular m-0 text-center px-3 pt-1 pb-2"
style="font-size: 13px;">Worried About Hackers?<br>Check our Security
Certificate<br><span style=" font-size: 16px;"
class="font-poppins-bold">Here</span></p>
</div>
</div>
</div>
</div>
</div>
<div class="position-absolute w-100" style="bottom: -80px;">
<h2 class="font-poppins-bold m-0 text-center text-uppercase color-light-yellow d-flex justify-content-center"
style="font-size: 305px;">PREMIUM</h2>
</div>
<div class="position-absolute" style="bottom: -10px; right: -65px;">
<h2 class="font-poppins-bold m-0 text-center text-uppercase d-flex justify-content-center"
style="font-size: 158px; writing-mode: tb-rl; transform: rotate(180deg);">PREMIUM</h2>
</div>
</div>
</div>
<!-- about -->
<div id="about" style="overflow: hidden;">
<div class="position-relative">
<div style="height: 500px; position: relative;"
class="background-color-light-yellow shadow-buy-now-button-1">
<h2 class="font-poppins-regular m-0 text-center text-uppercase d-flex justify-content-center"
style="font-size: 193px; line-height: 175px;">ABOUT</h2>
<h2 class="font-poppins-regular m-0 text-center text-uppercase d-flex justify-content-center"
style="font-size: 47px; line-height: 47px;">WHAT ABOUT THE SKINS?</h2>
<div class="position-absolute bg-white h-center" style="width: 150px; height: 270px; bottom: -5px;">
</div>
</div>
<div style="height: 100px; position: relative;">
<h4 class="font-poppins-regular text-center text-uppercase position-absolute"
style="font-size: 71px; line-height: 52px; top: 0px;opacity: 0.42; left: -5px;letter-spacing: -1px;">
unique skins for</h4>
<h4 class="font-poppins-regular text-center text-uppercase position-absolute"
style="font-size: 71px; line-height: 52px; top: 0px;opacity: 0.42; right: -5px;letter-spacing: -1px;">
your own story</h4>
</div>
<div class="position-absolute h-center" style="width: 850px; bottom: 0px;">
<div class="container-fluid p-0">
<div class="row pt-4">
<div class="col-3 p-0">
<div class="d-flex pt-4">
<div style="width: 75%;">
<h4 class="font-poppins-bold m-0 text-right text-uppercase"
style="font-size: 19px;">easy to<br>apply</h4>
<p class="font-poppins-regular m-0 text-right text-uppercase pt-1"
style="font-size: 13px; line-height: 13px;">Bubble Free easy<br>Application
</p>
</div>
<div style="width: 25%; padding-left:5px;">
<div class="shadow-buy-now-button d-flex justify-content-center align-items-center"
style="border-radius: 50%; border: 2px black solid; width: 50px; height: 50px;">
<picture>
<source srcset="images/easy_to_apply.webp" type="image/webp">
<source srcset="images/easy_to_apply.png" type="image/png">
<img src="images/easy_to_apply.png">
</picture>
</div>
</div>
</div>
<div class="d-flex pt-4">
<div style="width: 75%;">
<h4 class="font-poppins-bold m-0 text-right text-uppercase"
style="font-size: 19px;">Scratch<br>protection</h4>
<p class="font-poppins-regular m-0 text-right text-uppercase pt-1"
style="font-size: 13px; line-height: 13px;">Keeps your device<br>looking new
</p>
</div>
<div style="width: 25%; padding-left:5px;">
<div class="shadow-buy-now-button d-flex justify-content-center align-items-center"
style="border-radius: 50%; border: 2px black solid; width: 50px; height: 50px;">
<picture>
<source srcset="images/scratch_protection.webp" type="image/webp">
<source srcset="images/scratch_protection.png" type="image/png">
<img src="images/scratch_protection.png">
</picture>
</div>
</div>
</div>
</div>
<div class="col-6">
<div class="position-relative" style="width: 410px; height: 295px;" id="about-images">
<img src="images/Controller_2.png" class="w-100 position-absolute">
<img src="images/Controller_10.png" class="w-100 position-absolute"
style="display: none;">
<img src="images/Controller_16.png" class="w-100 position-absolute"
style="display: none;">
</div>
<div class="row">
<div class="col-2 position-relative">
<img src="images/arrowhead-black.png" class="position-absolute"
style="right: 0px; top: 50%; transform: translate(0, -50%);"
id="about-left">
</div>
<div class="col-8">
<div class="position-relative" style="width: 263px; height: 32px;"
id="about-heading">
<h1 class="font-poppins-bold text-center position-absolute w-100"
style="font-size: 20px;">Iron Man</h1>
<h1 class="font-poppins-bold text-center position-absolute w-100"
style="font-size: 20px;display: none;">Call Of Duty</h1>
<h1 class="font-poppins-bold text-center position-absolute w-100"
style="font-size: 20px;display: none;">Naruto Shippuden</h1>
</div>
<div class="position-relative" style="width: 263px; height: 32px;"
id="about-author">
<h2 class="font-poppins-bold text-center position-absolute w-100"
style="font-size: 13px;">-By Richard Eveland</h2>
<h2 class="font-poppins-bold text-center position-absolute w-100"
style="font-size: 13px;display: none;">-By Richard Eveland</h2>
<h2 class="font-poppins-bold text-center position-absolute w-100"
style="font-size: 13px; display: none;">-By Yoshie Akina</h2>
</div>
</div>
<div class="col-2 position-relative">
<img src="images/arrowhead-black.png" class="position-absolute"
style="transform: rotate(180deg) translate(0, -50%); left: 0px;"
id="about-right">
</div>
</div>
</div>
<div class="col-3 p-0">
<div class="d-flex pt-4">
<div style="width: 25%; padding-right:5px;">
<div class="shadow-buy-now-button d-flex justify-content-center align-items-center"
style="border-radius: 50%; border: 2px black solid; width: 50px; height: 50px;">
<picture>
<source srcset="images/precision_cut.webp" type="image/webp">
<source srcset="images/precision_cut.png" type="image/png">
<img src="images/precision_cut.png">
</picture>
</div>
</div>
<div style="width: 75%;">
<h4 class="font-poppins-bold m-0 text-left text-uppercase"
style="font-size: 19px;">Precision<br>cut</h4>
<p class="font-poppins-regular m-0 text-left text-uppercase pt-1"
style="font-size: 13px; line-height: 13px;">Engineered to fit<br>your Device
</p>
</div>
</div>
<div class="d-flex pt-4">
<div style="width: 25%; padding-right:5px;">
<div class="shadow-buy-now-button d-flex justify-content-center align-items-center"
style="border-radius: 50%; border: 2px black solid; width: 50px; height: 50px;">
<picture>
<source srcset="images/premium_vinyl.webp" type="image/webp">
<source srcset="images/premium_vinyl.png" type="image/png">
<img src="images/premium_vinyl.png">
</picture>
</div>
</div>
<div style="width: 75%;">
<h4 class="font-poppins-bold m-0 text-left text-uppercase"
style="font-size: 19px;">Premium<br>vinyl</h4>
<p class="font-poppins-regular m-0 text-left text-uppercase pt-1"
style="font-size: 13px; line-height: 13px;">An extra premium<br>smooth
finish </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- close about -->
<!-- products -->
<div id="products-desktop"></div>
<!-- WHAT OUR CUSTOMERS SAY -->
<div class="position-relative">
<div style="width: 850px; margin: 0 auto; z-index: 15;" class="mt-5 pt-5 pb-2 position-relative">
<div class="shadow-buy-now-button bg-white" style="height: 250px; border-radius: 10px;">
<h3 class="font-poppins-regular m-0 text-center text-uppercase position-relative"
style="font-size: 62px; top: -35px;">WHAT OUR CUSTOMERS SAY</h3>
<h3 class="font-poppins-regular m-0 text-center text-uppercase" style="font-size: 24px;">"Top
Controller, the skin for my Xbox One S has<br>saved the controller from all kinds of
scratches!<br>Thank you so much!"</h3>
<h3 class="font-poppins-regular m-0 text-center text-uppercase pt-4" style="font-size: 22px;">
Suzanne L. - Saratoga Springs, New York</h3>
</div>
</div>
<div class="w-100 background-color-blue position-absolute" style="height: 50px; bottom: 0px; z-index: 10;">
</div>
<h3 class="font-poppins-bold m-0 text-center text-uppercase position-absolute color-blue"
style="font-size: 257px;bottom: 50px; left: -15px; line-height: 175px;">BE</h3>
<h3 class="font-poppins-bold m-0 text-center text-uppercase position-absolute color-blue"
style="font-size: 108px;bottom: 50px; right:0px; line-height: 73px;">SURE</h3>
</div>
<!-- close WHAT OUR CUSTOMERS SAY -->
<!-- our designs -->
<div id="designs" class="overflow-hidden">
<div class="position-relative">
<h2 class="font-poppins-regular m-0 pt-5 text-center text-uppercase background-color-blue text-white"
style="font-size: 130px; line-height: 90%;" id="our-designs">our designs</h2>
<h4 class="font-poppins-regular m-0 text-center text-uppercase background-color-blue text-white"
style="font-size: 50px;">choose your identity</h4>
<div class="background-color-blue w-100"
style="height: 110px; border-bottom-right-radius: 60px; border-bottom-left-radius: 60px;">
</div>
<div style="width: 850px; height: 1200px;margin: 0 auto; top: -100px;" class="position-relative">
<div class="position-absolute" style="z-index: 15;">
<div class="container-fluid p-0 d-flex justify-content-center align-items-center">
<div class="row">
<div class="col-3 p-0">
<div class="bg-white"
style="border-radius: 50%; width: 200px; height: 200px; border: 1px #2e3192 solid;">
<a href="products/product-page?designName=funky-skulls">
<picture>
<source srcset="images/designs/Funky-Skulls.webp" type="image/webp">
<source srcset="images/designs/Funky-Skulls.jpg" type="image/jpeg">
<img style="border-radius:50%;" src="images/designs/Funky-Skulls.jpg">
</picture>
</a>
</div>
<h2 class="font-poppins-bold m-0 pt-3 text-center"
style="font-size: 22px; line-height: 90%;">Funky Skulls</h2>
<p class="font-poppins-regular m-0 py-3 text-center pb-4"
style="font-size: 22px; line-height: 90%;">-Robert W. Chambers</p>
</div>
<div class="col-3 p-0">
<div class="bg-white"
style="border-radius: 50%; width: 200px; height: 200px; border: 1px #2e3192 solid;">
<a href="products/product-page?designName=iron-man">
<picture>
<source srcset="images/designs/Iron-Man.webp" type="image/webp">
<source srcset="images/designs/Iron-Man.jpg" type="image/jpeg">
<img style="border-radius:50%;" src="images/designs/Iron-Man.jpg">
</picture>
</a>
</div>
<h2 class="font-poppins-bold m-0 pt-3 text-center"
style="font-size: 22px; line-height: 90%;">Iron Man</h2>
<p class="font-poppins-regular m-0 py-3 text-center pb-4"
style="font-size: 22px; line-height: 90%;">-Richard Eveland</p>
</div>
<div class="col-3 p-0">
<div class="bg-white"
style="border-radius: 50%; width: 200px; height: 200px; border: 1px #2e3192 solid;">
<a href="products/product-page?designName=gears-of-war">
<picture>
<source srcset="images/designs/Gears-of-War.webp" type="image/webp">
<source srcset="images/designs/Gears-of-War.jpg" type="image/jpeg">
<img style="border-radius:50%;" src="images/designs/Gears-of-War.jpg">
</picture>
</a>
</div>
<h2 class="font-poppins-bold m-0 pt-3 text-center"
style="font-size: 22px; line-height: 90%;">Gears Of War</h2>
<p class="font-poppins-regular m-0 py-3 text-center pb-4"
style="font-size: 22px; line-height: 90%;">-David E. Hunt</p>
</div>
<div class="col-3 p-0">
<div class="bg-white"
style="border-radius: 50%; width: 200px; height: 200px; border: 1px #2e3192 solid;">
<a href="products/designed-by-you">
<picture>
<source srcset="images/designs/Custom.webp" type="image/webp">
<source srcset="images/designs/Custom.jpg" type="image/jpeg">
<img style="border-radius:50%;" src="images/designs/Custom.jpg">
</picture>
</a>
</div>
<h2 class="font-poppins-bold m-0 pt-3 text-center"
style="font-size: 22px; line-height: 90%;">Designed By You</h2>
<p class="font-poppins-regular m-0 py-3 text-center pb-4"
style="font-size: 22px; line-height: 90%;">-You</p>
</div>
</div>
</div>
<!-- 2nd -->
<div class="container-fluid p-0 d-flex justify-content-center align-items-center">
<div class="row">
<div class="col-3 p-0">
<div class="bg-white"
style="border-radius: 50%; width: 200px; height: 200px; border: 1px #2e3192 solid;">
<a href="products/product-page?designName=dragon-ball-z">
<picture>
<source srcset="images/designs/Dragon-Ball-Z.webp" type="image/webp">
<source srcset="images/designs/Dragon-Ball-Z.jpg" type="image/jpeg">
<img style="border-radius:50%;" src="images/designs/Dragon-Ball-Z.jpg">
</picture>
</a>
</div>
<h2 class="font-poppins-bold m-0 pt-3 text-center"
style="font-size: 22px; line-height: 90%;">Dragon Ball Z</h2>
<p class="font-poppins-regular m-0 py-3 text-center pb-4"
style="font-size: 22px; line-height: 90%;">-Edward Niro</p>
</div>
<div class="col-3 p-0">
<div class="bg-white"
style="border-radius: 50%; width: 200px; height: 200px; border: 1px #2e3192 solid;">
<a href="products/product-page?designName=funky-ghost">
<picture>
<source srcset="images/designs/Funky-Ghost.webp" type="image/webp">
<source srcset="images/designs/Funky-Ghost.jpg" type="image/jpeg">
<img style="border-radius:50%;" src="images/designs/Funky-Ghost.jpg">
</picture>
</a>
</div>
<h2 class="font-poppins-bold m-0 pt-3 text-center"
style="font-size: 22px; line-height: 90%;">Funky Ghost</h2>
<p class="font-poppins-regular m-0 py-3 text-center pb-4"
style="font-size: 22px; line-height: 90%;">-Tsujita Masujiro</p>
</div>
<div class="col-3 p-0">
<div class="bg-white"
style="border-radius: 50%; width: 200px; height: 200px; border: 1px #2e3192 solid;">
<a href="products/product-page?designName=doodle-lines">
<picture>
<source srcset="images/designs/doodle-lines.webp" type="image/webp">
<source srcset="images/designs/doodle-lines.jpg" type="image/jpeg">
<img style="border-radius:50%;" src="images/designs/doodle-lines.jpg">
</picture>
</a>
</div>
<h2 class="font-poppins-bold m-0 pt-3 text-center"
style="font-size: 22px; line-height: 90%;">Doodle Lines</h2>
<p class="font-poppins-regular m-0 py-3 text-center pb-4"
style="font-size: 22px; line-height: 90%;">-Robert W. Chambers</p>
</div>
<div class="col-3 p-0">
<div class="bg-white"
style="border-radius: 50%; width: 200px; height: 200px; border: 1px #2e3192 solid;">
<a href="products/product-page?designName=game-freak">
<picture>