-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1114 lines (1086 loc) · 39.8 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>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="DoppelGanger" content="DoppelGanger" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1"
/>
<link
rel="shortcut icon"
href="https://mockups.sirv.com/Web/about/home.png"
type="image/x-icon"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<meta
name="description"
content="Design a cutting-edge dark theme for a streetwear website called ’DoppelGanger.’ Incorporate futuristic elements and a 3D visual style to create an immersive browsing experience. Include high-resolution images of urban fashion products, interactive sliders for featured collections, and a sleek navigation menu for easy exploration. Integrate a dynamic background that changes as users scroll, adding depth and movement to the overall design. Focus on creating a modern and edgy atmosphere that resonates with the target audience of fashion-forward individuals."
/>
<title>DoppelGanger</title>
<link rel="stylesheet" href="assets/css/mobirise2.css" />
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/bootstrap-grid.min.css" />
<link rel="stylesheet" href="assets/css/bootstrap-reboot.min.css" />
<link rel="stylesheet" href="assets/css/jarallax.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/styles.css" />
<link rel="stylesheet" href="assets/css/style1.css" />
<link rel="stylesheet" href="assets/css/prox.css" />
<link
href="
https://cdn.jsdelivr.net/npm/socicon@3.0.5/css/socicon.min.css"
rel="stylesheet"
/>
<link
rel="preload"
href="https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;700&display=swap&display=swap"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<noscript
><link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;700&display=swap&display=swap"
/></noscript>
<link
rel="stylesheet"
href="assets/css/mbr-additional.css"
type="text/css"
/>
</head>
<body>
<section
data-bs-version="5.1"
class="menu menu2 cid-uaMC4xmBXW"
once="menu"
id="menu-5-uaMC4xmBXW"
>
<nav class="navbar navbar-dropdown navbar-fixed-top navbar-expand-lg">
<div class="container">
<div class="navbar-brand">
<span class="navbar-logo">
<a href="index.html">
<img
src="https://mockups.sirv.com/Web/icon.jpg"
alt="Mobirise Website Builder"
style="height: 4.3rem"
/>
</a>
</span>
<span class="navbar-caption-wrap"
><a class="navbar-caption text-black display-4"
>DoppelGanger</a
></span
>
</div>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-bs-toggle="collapse"
data-target="#navbarSupportedContent"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav nav-dropdown" data-app-modern-menu="true">
<li class="nav-item">
<a
class="nav-link link text-black display-4"
href="index.html"
aria-expanded="false"
><i class="fa fa-home"></i> Home</a
>
</li>
<li class="nav-item">
<a
class="nav-link link text-black display-4"
href="./assets/login/sign-in.html"
><i class="fa-solid fa-bag-shopping"></i> Shop</a
>
</li>
<li class="nav-item">
<a
class="nav-link link text-black display-4"
href="assets/info/about.html"
aria-expanded="false"
><i class="fa-solid fa-receipt"></i> About</a
>
</li>
<li class="nav-item">
<a
class="nav-link link text-black display-4"
href="assets/info/contact.html"
style="margin-right: 60px !important"
><i class="fa-solid fa-envelope-open-text"></i>
Contact</a
>
</li>
</ul>
<div class="navbar-buttons mbr-section-btn">
<a
class="btn btn-primary display-4"
href="assets/login/sign-in.html"
>Explore Now</a
>
</div>
</div>
</div>
</nav>
</section>
<section
data-bs-version="5.1"
class="header18 cid-uaMC4xrl50 mbr-fullscreen"
data-bg-video="https://mockups.sirv.com/Web/bg.mp4"
id="hero-15-uaMC4xrl50"
>
<div
class="mbr-overlay"
style="opacity: 0.5; background-color: rgb(0, 0, 0)"
></div>
<div class="container-fluid">
<div class="row">
<div class="content-wrap col-12 col-md-12">
<h1
class="mbr-section-title mbr-fonts-style mbr-white mb-4 display-1"
>
<strong>Futuristic Threads</strong>
</h1>
<p class="mbr-fonts-style mbr-text mbr-white mb-4 display-7"
>Step into the future of fashion with DoppelGanger's cutting-edge
streetwear collection. Embrace the bold, the edgy, and the
avant-garde.</p
>
<div class="mbr-section-btn">
<a
class="btn btn-white-outline display-7"
href="#call-to-action-8-uaMC4xtraz"
>Discover More</a
>
</div>
</div>
</div>
</div>
</section>
<section
data-bs-version="5.1"
class="article8 cid-uaMC4xsqoP"
id="about-us-8-uaMC4xsqoP"
>
<div class="container">
<div class="row justify-content-center">
<div class="card col-md-12 col-lg-10">
<div class="card-wrapper">
<div class="image-wrapper d-flex justify-content-center mb-4">
<!-- <img
src="assets/images/photo-1506378950192-d9fc7e45bc71.jpeg"
alt="Mobirise Website Builder"
/> -->
</div>
<div class="card-content-text">
<h3
class="card-title mbr-fonts-style mbr-white mt-3 mb-4 display-2"
>
<strong>Our Story</strong>
</h3>
<div class="row card-box align-left">
<div class="item features-without-image col-12">
<div class="item-wrapper">
<p class="mbr-text mbr-fonts-style display-7"
>At DoppelGanger, we're not just a brand; we're a
movement. Born from the streets, we redefine fashion
with a futuristic twist.</p
>
</div>
</div>
<div class="item features-without-image col-12">
<div class="item-wrapper">
<p class="mbr-text mbr-fonts-style display-7"
>Join us on a journey where creativity knows no bounds
and style is limitless. Experience the urban revolution
like never before.</p
>
</div>
</div>
<div class="item features-without-image col-12">
<div class="item-wrapper">
<p class="mbr-text mbr-fonts-style display-7"
>Dare to be different, dare to be DoppelGanger. Unleash
your inner fashion rebel and set the trend for
tomorrow.</p
>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="main">
<video
src="https://mockups.sirv.com/Web/nl.mp4"
muted
autoplay
loop
></video>
</div>
</section>
<hr />
<section
data-bs-version="5.1"
class="header12 cid-uaMC4xtraz"
id="call-to-action-8-uaMC4xtraz"
>
<div class="text-center container">
<div class="row mb-4 justify-content-center">
<div class="col-12 col-md-4">
<img
src="https://mockups.sirv.com/Web/icon2.png"
alt="Mobirise Website Builder"
/>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-12 content-head">
<h1 class="mbr-section-title mbr-fonts-style mb-4 display-2">
<strong>Step into Doppelganger <sup>©</sup></strong>
</h1>
<p class="mbr-text mbr-fonts-style mb-4 display-7"
>Experience the Future of Streetwear Fashion</p
>
<div class="mbr-section-btn mt-4">
<a
class="btn btn-primary display-7"
href="assets/login/sign-in.html"
>Explore Now</a
>
</div>
</div>
</div>
</div>
</section>
<!-- red ends -->
<!-- products starts -->
<section
data-bs-version="5.1"
class="pricing02 cid-uaMC4xuwwJ"
id="product-list-9-uaMC4xuwwJ"
>
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-12 content-head">
<div class="mbr-section-head mb-5">
<h4
class="mbr-section-title mbr-fonts-style align-center mb-0 display-2"
>
<strong>Featured Products</strong>
</h4>
</div>
</div>
</div>
<div class="row">
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img
src="https://mockups.sirv.com/Tees/18b.jpg"
alt="Mobirise Website Builder"
/>
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>Lazy Day</strong>
</h5>
<h6 class="item-subtitle mbr-fonts-style display-7"
>₹ 1250.00</h6
>
<p class="mbr-text mbr-fonts-style display-7"
>Simple t-shirt with handwritten white text on the back.</p
>
<div class="mbr-section-btn item-footer">
<a
href="assets/login/sign-in.html"
class="btn item-btn btn-primary display-7"
>Shop Now</a
>
</div>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img
src="https://mockups.sirv.com/Tees/6b.jpg"
alt="Mobirise Website Builder"
/>
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>Skulljoy</strong>
</h5>
<h6 class="item-subtitle mbr-fonts-style display-7"
>₹ 1250.00</h6
>
<p class="mbr-text mbr-fonts-style display-7"
>Tee with a grinning skull, embracing life's humor and
duality.</p
>
<div class="mbr-section-btn item-footer">
<a
href="assets/login/sign-in.html"
class="btn item-btn btn-primary display-7"
>Shop Now</a
>
</div>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img
src="https://mockups.sirv.com/Tees/7b.jpg"
alt="Mobirise Website Builder"
/>
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>Mangekyou Sharingan</strong>
</h5>
<h6 class="item-subtitle mbr-fonts-style display-7"
>₹ 1250.00</h6
>
<p class="mbr-text mbr-fonts-style display-7"
>The legendary Mangekyo Sharingan, representing the Uchiha
Clan.</p
>
<div class="mbr-section-btn item-footer">
<a
href="assets/login/sign-in.html"
class="btn item-btn btn-primary display-7"
>Shop Now</a
>
</div>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img src="https://mockups.sirv.com/Tees/5b.jpg" />
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>Forged in Battle </strong>
</h5>
<h6 class="item-subtitle mbr-fonts-style display-7"
>₹ 1250.00</h6
>
<p class="mbr-text mbr-fonts-style display-7"
>Celebrating resilience and strength, showcasing the warrior
within.</p
>
<div class="mbr-section-btn item-footer">
<a
href="assets/login/sign-in.html"
class="btn item-btn btn-primary display-7"
>Shop Now</a
>
</div>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img src="https://mockups.sirv.com/Tees/8b.jpg" />
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>Believe It</strong>
</h5>
<h6 class="item-subtitle mbr-fonts-style display-7"
>₹ 1250.00</h6
>
<p class="mbr-text mbr-fonts-style display-7"
>Hokage-inspired t-shirt for epic exchanges and bonding.</p
>
<div class="mbr-section-btn item-footer">
<a
href="assets/login/sign-in.html"
class="btn item-btn btn-primary display-7"
>Shop Now</a
>
</div>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img src="https://mockups.sirv.com/Tees/15b.jpg" />
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>Nanami Off Duty</strong>
</h5>
<h6 class="item-subtitle mbr-fonts-style display-7"
>₹ 1250.00</h6
>
<p class="mbr-text mbr-fonts-style display-7"
>Nanami-themed tee for victory against overtime, featuring in
action.</p
>
<div class="mbr-section-btn item-footer">
<a
href="assets/login/sign-in.html"
class="btn item-btn btn-primary display-7"
>Shop Now</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- product ends -->
<section
data-bs-version="5.1"
class="gallery10 cid-uaMC4xtBGm"
id="features-61-uaMC4xtBGm"
>
<div class="container-fluid">
<div class="loop-container">
<div
class="item display-1"
data-linewords="Always On-Trend * Head-Turning Style * Dream Comfort * Premium Quality * Futuristic Design * Sustainable Choice *"
data-direction="-1"
data-speed="0.05"
>☁️ Best offers ☁️ Free delivery ☁️ Perfect design ☁️ Comfort ☁️
Support 24/7 ☁️ Vibes</div
>
<div
class="item display-1"
data-linewords="Always On-Trend * Head-Turning Style * Dream Comfort * Premium Quality * Futuristic Design * Sustainable Choice *"
data-direction="-1"
data-speed="0.05"
>☁️ Best offers ☁️ Free delivery ☁️ Perfect design ☁️ Comfort ☁️
Support 24/7 ☁️ Vibes</div
>
</div>
</div>
</section>
<section
data-bs-version="5.1"
class="features023 cid-uaMC4xu00G"
id="metrics-1-uaMC4xu00G"
>
<div class="container">
<div class="row content-row justify-content-center">
<div
class="item features-without-image col-12 col-md-6 col-lg-4 item-mb"
>
<div class="item-wrapper">
<div class="title mb-2 mb-md-3">
<span class="num mbr-fonts-style display-1">
<strong>10K+</strong></span
>
</div>
<h4 class="card-title mbr-fonts-style display-5">
<strong>Happy Customers</strong>
</h4>
</div>
</div>
<div
class="item features-without-image col-12 col-md-6 col-lg-4 item-mb"
>
<div class="item-wrapper">
<div class="title mb-2 mb-md-3">
<span class="num mbr-fonts-style display-1">
<strong>500+</strong></span
>
</div>
<h4 class="card-title mbr-fonts-style display-5">
<strong>New Arrivals</strong>
</h4>
</div>
</div>
<div
class="item features-without-image col-12 col-md-6 col-lg-4 item-mb"
>
<div class="item-wrapper">
<div class="title mb-2 mb-md-3">
<span class="num mbr-fonts-style display-1">
<strong>99%</strong></span
>
</div>
<h4 class="card-title mbr-fonts-style display-5">
<strong>Satisfaction Rate</strong>
</h4>
</div>
</div>
</div>
</div>
</section>
<section
data-bs-version="5.1"
class="image02 cid-uaMC4xuqw2 mbr-fullscreen mbr-parallax-background"
id="image-13-uaMC4xuqw2"
>
<div class="container">
<div class="row"></div>
</div>
</section>
<section
data-bs-version="5.1"
class="gallery09 cid-uaMC4xvv69"
id="gallery-9-uaMC4xvv69"
>
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-12 col-lg-4 main-text">
<div class="">
<h5 class="mbr-section-title mbr-fonts-style mt-0 mb-4 display-2">
<strong>Urban Vibe</strong>
</h5>
<h6
class="mbr-section-subtitle mbr-fonts-style mt-0 mb-4 display-7"
>Explore the cutting-edge urban fashion of DoppelGanger with our
high-resolution images and futuristic 3D visual style.</h6
>
</div>
</div>
<div class="col-lg-8 side-features row">
<div class="item features-image col-12 col-md-6 col-lg-6 active">
<div class="item-wrapper">
<div class="item-img">
<img
src="https://mockups.sirv.com/Web/m1.png"
alt="Mobirise Website Builder"
title=""
data-slide-to="1"
data-bs-slide-to="1"
/>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-6 active">
<div class="item-wrapper">
<div class="item-img">
<img
src="https://mockups.sirv.com/Web/m2.jpg"
alt="Mobirise Website Builder"
title=""
data-slide-to="2"
data-bs-slide-to="2"
/>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-6 active">
<div class="item-wrapper">
<div class="item-img">
<img
src="https://mockups.sirv.com/Web/m3.jpeg"
alt="Mobirise Website Builder"
title=""
data-slide-to="3"
data-bs-slide-to="3"
/>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-6 active">
<div class="item-wrapper">
<div class="item-img">
<img
src="https://mockups.sirv.com/Web/m4.png"
alt="Mobirise Website Builder"
title=""
data-slide-to="4"
data-bs-slide-to="4"
/>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section
data-bs-version="5.1"
class="article14 cid-uaMC4xvu8M"
id="generic-text-10-uaMC4xvu8M"
>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-12 col-lg-10">
<h3 class="mbr-section-title mbr-fonts-style display-2">
<strong
>Welcome to DoppelGanger, where fashion meets the future in a
dark and edgy atmosphere. Get ready to dive into a world of
urban vibes and modern style like never before! <br /><br />
Join us at DoppelGanger, where every T-shirt tells a story, and
every look is a masterpiece. Embrace the dark, the daring, and
the different because at DoppelGanger, fashion isn't just what
you wear<br />
it's Who You Are.</strong
>
</h3>
</div>
</div>
</div>
</section>
<section
data-bs-version="5.1"
class="list05 cid-uaMC4xwFkZ"
id="faq-3-uaMC4xwFkZ"
>
<div class="container">
<div class="col-12 mb-5 content-head">
<h3
class="mbr-section-title mbr-fonts-style align-center mb-0 display-2"
>
<strong>Got Questions? We Have Answers!</strong>
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-lg-8">
<div class="item features-without-image col-12 active">
<div class="item-wrapper">
<h5 class="mbr-card-title mbr-fonts-style mt-0 mb-3 display-5">
<strong>How to place an order?</strong></h5
>
<p class="mbr-text mbr-fonts-style mt-0 mb-3 display-7"
>Placing an order at DoppelGanger is as easy as rocking your
favorite streetwear. Simply browse our collections, select
your must-have items, and proceed to checkout!</p
>
</div>
</div>
<div class="item features-without-image col-12">
<div class="item-wrapper">
<h5 class="mbr-card-title mbr-fonts-style mt-0 mb-3 display-5">
<strong>What payment methods do you accept?</strong></h5
>
<p class="mbr-text mbr-fonts-style mt-0 mb-3 display-7"
>We accept all major credit cards, UPI, and even futuristic
digital currencies. Choose the option that suits your style
best!</p
>
</div>
</div>
<div class="item features-without-image col-12">
<div class="item-wrapper">
<h5 class="mbr-card-title mbr-fonts-style mt-0 mb-3 display-5">
<strong>Is international shipping available?</strong></h5
>
<p class="mbr-text mbr-fonts-style mt-0 mb-3 display-7"
>Absolutely! DoppelGanger ships globally to bring the urban
vibe to fashion enthusiasts worldwide. Get ready to rock your
style no matter where you are!</p
>
</div>
</div>
<div class="item features-without-image col-12">
<div class="item-wrapper">
<h5 class="mbr-card-title mbr-fonts-style mt-0 mb-3 display-5">
<strong>How can I track my order?</strong></h5
>
<p class="mbr-text mbr-fonts-style mt-0 mb-3 display-7"
>Tracking your order is a breeze at DoppelGanger. Once your
order is shipped, you'll receive a tracking number to follow
your fashion journey every step of the way!</p
>
</div>
</div>
<div class="item features-without-image col-12">
<div class="item-wrapper">
<h5 class="mbr-card-title mbr-fonts-style mt-0 mb-3 display-5">
<strong>Need to return an item?</strong></h5
>
<p class="mbr-text mbr-fonts-style mt-0 mb-3 display-7"
>We understand that sometimes styles clash. If you need to
return an item, simply contact our customer support team, and
we'll guide you through the process with ease.</p
>
</div>
</div>
</div>
</div>
</div>
</section>
<section
data-bs-version="5.1"
class="social4 cid-uaMC4xwJbI"
id="follow-us-1-uaMC4xwJbI"
>
<div class="container">
<div class="media-container-row">
<div class="col-12">
<h3
class="mbr-section-title align-center mb-5 mbr-fonts-style display-2"
>
<strong>Join the Urban Movement</strong>
</h3>
<div class="social-list align-center">
<a
class="iconfont-wrapper bg-facebook m-2"
href="#follow-us-1-uaMC4xwJbI"
>
<span class="socicon-facebook socicon"></span>
</a>
<a
class="iconfont-wrapper bg-twitter m-2"
href="#follow-us-1-uaMC4xwJbI"
>
<span class="socicon-apple socicon"></span>
</a>
<a
class="iconfont-wrapper bg-instagram m-2"
href="#follow-us-1-uaMC4xwJbI"
>
<span class="socicon-instagram socicon"></span>
</a>
<a
class="iconfont-wrapper bg-tiktok m-2"
href="#follow-us-1-uaMC4xwJbI"
>
<span class="socicon-play socicon"></span>
</a>
</div>
</div>
</div>
</div>
</section>
<section
data-bs-version="5.1"
class="clients04 cid-uaMC4xwVJ2"
id="partners-1-uaMC4xwVJ2"
>
<div class="container-fluid">
<div class="row justify-content-center mb-5">
<div class="col-12 content-head">
<div class="mbr-section-head">
<h4
class="mbr-section-title mbr-fonts-style align-center mb-0 display-2"
>
<strong>Doppelganger Partners</strong>
</h4>
</div>
</div>
</div>
<div class="row">
<div
class="item features-image col-12 col-md-6 col-sm-6 col-lg-2 active"
>
<div class="item-wrapper">
<div class="">
<img
src="https://mockups.sirv.com/Web/pr1.png"
alt="Mobirise Website Builder"
title=""
data-slide-to="1"
data-bs-slide-to="1"
/>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-sm-6 col-lg-2">
<div class="item-wrapper">
<div class="">
<img
src="https://mockups.sirv.com/Web/pr2.jpg"
alt="Mobirise Website Builder"
title=""
data-slide-to="2"
data-bs-slide-to="2"
/>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-sm-6 col-lg-2">
<div class="item-wrapper">
<div class="">
<img
src="https://mockups.sirv.com/Web/pr3.png"
alt="Mobirise Website Builder"
title=""
data-slide-to="3"
data-bs-slide-to="3"
/>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-sm-6 col-lg-2">
<div class="item-wrapper">
<div class="">
<img
src="https://mockups.sirv.com/Web/pr4.jpg"
alt="Mobirise Website Builder"
title=""
data-slide-to="4"
data-bs-slide-to="4"
/>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-sm-6 col-lg-2">
<div class="item-wrapper">
<div class="">
<img
src="https://mockups.sirv.com/Web/pr5.png"
alt="Mobirise Website Builder"
title=""
data-slide-to="5"
data-bs-slide-to="5"
/>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-sm-6 col-lg-2">
<div class="item-wrapper">
<div class="">
<img
src="https://mockups.sirv.com/Web/pr6.png"
alt="Mobirise Website Builder"
title=""
data-slide-to="6"
data-bs-slide-to="6"
/>
</div>
</div>
</div>
</div>
</div>
</section>
<section
data-bs-version="5.1"
class="form5 cid-uaMC4xwpn1"
id="contact-form-2-uaMC4xwpn1"
>
<div class="container">
<div class="row justify-content-center">
<div class="col-12 content-head">
<div class="mbr-section-head mb-5">
<h3
class="mbr-section-title mbr-fonts-style align-center mb-0 display-2"
>
<strong>Get in Touch</strong>
</h3>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-8 mx-auto mbr-form" data-form-type="formoid">
<form
action="https://mobirise.eu/"
method="POST"
class="mbr-form form-with-styler"
data-form-title="Form Name"
><input
type="hidden"
name="email"
data-form-email="true"
value="6JJb7Ioe1BrOVVmk5hdaH66wFSDqSR3iF8mZNvMTp1/gx4uiLR5Q5HKNPyHv2C576P5Ir/r4HxkWWlDBTBx1cl0WIXFk1f3KK2TD9JzMnAperNoE9W7/jCfhWP0O6RJ+"
/>
<div class="row">
<div
hidden="hidden"
data-form-alert=""
class="alert alert-success col-12"
>Thanks for filling out the form!</div
>
<div
hidden="hidden"
data-form-alert-danger=""
class="alert alert-danger col-12"
>
Oops...! some problem!
</div>
</div>
<div class="dragArea row">
<div class="col-md col-sm-12 form-group mb-3" data-for="name">
<input
type="text"
name="name"
placeholder="Name"
data-form-field="name"
class="form-control"
value=""
id="name-contact-form-2-uaMC4xwpn1"
/>
</div>
<div class="col-md col-sm-12 form-group mb-3" data-for="email">
<input
type="email"
name="email"
placeholder="Email"
data-form-field="email"
class="form-control"
value=""
id="email-contact-form-2-uaMC4xwpn1"
/>
</div>
<div class="col-12 form-group mb-3" data-for="textarea">
<textarea
name="textarea"
placeholder="Message"
data-form-field="textarea"
class="form-control"
id="textarea-contact-form-2-uaMC4xwpn1"
></textarea>
</div>
<div
class="col-lg-12 col-md-12 col-sm-12 align-center mbr-section-btn"
>
<button type="submit" class="btn btn-primary.focus display-7"
>Send Message</button
>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<section
data-bs-version="5.1"
class="contacts01 cid-uaMC4xwSpB"
id="contacts-1-uaMC4xwSpB"
>
<div class="container">
<div class="row justify-content-center">
<div class="col-12 content-head">
<div class="mbr-section-head mb-5">
<h3
class="mbr-section-title mbr-fonts-style align-center mb-0 display-2"