generated from app-generator/design-core-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
1812 lines (1776 loc) · 72.6 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
<!--
=========================================================
* Fashion Template by AppSeed - v0.0.1
=========================================================
* Product Page: https://github.com/app-generator/design-ecommerce
* Copyright AppSeed (https://appseed.us)
* License MIT
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link
rel="apple-touch-icon"
sizes="76x76"
href="assets/img/apple-icon.png"
/>
<link rel="icon" type="image/png" href="assets/img/favicon.png" />
<title>Fashion Template by AppSeed</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome Icons -->
<script
src="https://kit.fontawesome.com/42d5adcbca.js"
crossorigin="anonymous"
></script>
<!-- Perfect Scrollbar -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/css/perfect-scrollbar.min.css"
/>
<!-- Swiper -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css"
/>
<!-- AOS Animate -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<!-- CSS Files -->
<link id="pagestyle" href="./assets/css/app.css?v=1.0.0" rel="stylesheet" />
</head>
<body>
<div class="wrapper d-flex flex-column">
<!-- Start Header -->
<header class="header position-sticky">
<!-- Start Header Top Part -->
<div class="header-top-part py-2 d-none d-lg-block">
<div class="container-xxl">
<div
class="row align-items-center justify-content-center justify-content-lg-between"
>
<div class="col-auto">
<ul class="sub-navigation">
<li><a href="#" title="Guides">Guides</a></li>
<li><a href="#" title="Terms of Sale">Terms of Sale</a></li>
<li><a href="#" title="Terms of Use">Terms of Use</a></li>
<li>
<a href="#" title="Privacy & Policy">Privacy & Policy</a>
</li>
</ul>
</div>
<div class="col-auto">
<h6>Complimentary Standard Shipping Canada Wide</h6>
</div>
<div class="col-auto">
<ul class="sub-navigation">
<li>
<a href="#" title="Login / Register">Login / Register</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- End Header Top Part -->
<!-- Start Navbar Part -->
<nav class="navbar navbar-expand-lg p-0">
<div class="container-xxl">
<a class="navbar-brand" href="/" title="Fashion Template by AppSeed"
><img src="assets/img/logo.svg" alt="Fashion Template by AppSeed"
/></a>
<div
class="offcanvas offcanvas-start"
tabindex="-1"
id="offcanvasExample"
aria-labelledby="offcanvasExampleLabel"
>
<div class="offcanvas-header primary-gradient py-2">
<a
class="navbar-brand"
href="#"
title="Fashion Template by AppSeed"
><img
src="assets/img/logo.svg"
alt="Fashion Template by AppSeed"
/></a>
<button
type="button"
class="btn-close btn-close-white"
data-bs-dismiss="offcanvas"
aria-label="Close"
></button>
</div>
<div class="offcanvas-body p-0 ms-lg-auto">
<ul class="navbar-nav mb-2 mb-lg-0">
<li class="nav-item">
<span class="badge rounded-pill bg-danger"> 20% </span>
<a
class="nav-link active"
aria-current="page"
href="collection.html"
title="Men"
>Men</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="collection.html" title="Women"
>Women</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="collection.html" title="Kids"
>Kids</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#" title="Customise">Customise</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" title="Sale">Sale</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" title="Shipping">Shipping</a>
</li>
<li class="nav-item d-lg-none">
<a class="nav-link" href="#" title="Guides">Guides</a>
</li>
<li class="nav-item d-lg-none">
<a class="nav-link" href="#" title="Terms of Sale"
>Terms of Sale</a
>
</li>
<li class="nav-item d-lg-none">
<a class="nav-link" href="#" title="Terms of Use"
>Terms of Use</a
>
</li>
<li class="nav-item d-lg-none">
<a class="nav-link" href="#" title="Privacy & Policy"
>Privacy & Policy</a
>
</li>
<li class="nav-item d-lg-none">
<a class="nav-link" href="#" title="Login / Register"
>Login / Register</a
>
</li>
</ul>
</div>
</div>
<div class="d-flex">
<button class="btn btn-transparent">
<svg
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M9.58342 1.66675C13.9584 1.66675 17.5001 5.20842 17.5001 9.58342C17.5001 13.9584 13.9584 17.5001 9.58342 17.5001C5.20842 17.5001 1.66675 13.9584 1.66675 9.58342C1.66675 6.50008 3.42508 3.83341 6.00008 2.52508"
stroke="white"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M18.3334 18.3334L16.6667 16.6667"
stroke="white"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</button>
<button class="btn btn-transparent">
<svg
width="24"
height="20"
viewBox="0 0 24 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7.5 6.39167V5.58334C7.5 3.70834 9.31 1.86667 11.56 1.69167C14.24 1.47501 16.5 3.23334 16.5 5.42501V6.57501"
stroke="white"
stroke-width="1.5"
stroke-miterlimit="10"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M3.81007 13.8001L4.04007 15.3584C4.26007 16.9917 4.98007 18.3334 9.00007 18.3334H15.0001C19.0201 18.3334 19.7401 16.9917 19.9501 15.3584L20.7001 10.3584C20.9701 8.32508 20.2701 6.66675 16.0001 6.66675H8.00007C3.73007 6.66675 3.03007 8.32508 3.30007 10.3584"
stroke="white"
stroke-width="1.5"
stroke-miterlimit="10"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M15.4955 9.99992H15.5045"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M8.49451 9.99992H8.50349"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</button>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="offcanvas"
data-bs-target="#offcanvasExample"
>
<span></span>
<span></span>
<span></span>
</button>
</div>
</div>
</nav>
<!-- End Navbar Part -->
</header>
<!-- End Header -->
<!-- Main Content -->
<main class="main-content flex-grow-1">
<div class="container-xxl">
<!-- Start main Banner -->
<section class="main-banner position-relative">
<h2 class="banner-border-text" data-aos="zoom-in-up">
THE NEW 2023
</h2>
<h1 class="banner-title" data-aos="flip-up" data-aos-delay="500">
AIR JORDAN
</h1>
<figure
class="figure d-block main-banner-figure mb-0"
data-aos="fade-up"
>
<img
class="figure-img img-fluid d-block mx-auto mb-0"
src="assets/img/banner-img-lg.png"
alt=""
/>
</figure>
<p class="banner-text" data-aos="fade-up" data-aos-delay="200">
We know how large objects will act,
</p>
<a
href="product.html"
class="btn btn-primary rounded-0 text-uppercase"
data-aos="flip-left"
>
<span class="text-white">Shop now</span>
</a>
<!-- Button trigger modal -->
<button
type="button"
class="btn btn-primary rounded-0 text-uppercase modal-btn"
data-bs-toggle="modal"
data-bs-target="#video-modal"
>
<img src="assets/img/ic-play.svg" alt="">
</button>
</section>
<!-- End main Banner -->
<!-- Start New Product -->
<section class="new-product-outer">
<div
class="row row-cols-1 row-cols-md-2 row-cols-lg-2 row-cols-xl-2 row-cols-xxl-4 gx-4"
>
<div class="col-lg">
<div
class="media new-product d-flex"
data-aos="flip-left"
data-aos-easing="ease-out-cubic"
data-aos-duration="500"
>
<div class="new-product-img-outer bg-pink position-relative">
<img
class="new-product-img position-absolute"
src="assets/img/product-sm-01.png"
alt=""
/>
</div>
<div class="media-body">
<h5 class="new-product-name text-uppercase mb-1">
Air Max pegasus 37
</h5>
<div class="product-rating d-flex">
<img src="assets/img/star-a.svg" alt="" />
<img src="assets/img/star-a.svg" alt="" />
<img src="assets/img/star-a.svg" alt="" />
<img src="assets/img/star.svg" alt="" />
</div>
<p class="new-product-price">$189</p>
<p class="new-product-text">Women’s Running shoe</p>
<a class="btn-link mb-0" href="#" title="Add to Cart"
>Add to Cart</a
>
</div>
</div>
</div>
<div class="col-lg">
<div
class="media new-product d-flex"
data-aos="flip-left"
data-aos-easing="ease-out-cubic"
data-aos-duration="500"
data-aos-delay="200"
>
<div
class="new-product-img-outer bg-indigo position-relative"
>
<img
class="new-product-img position-absolute"
src="assets/img/product-sm-02.png"
alt=""
/>
</div>
<div class="media-body">
<h5 class="new-product-name text-uppercase mb-1">
Air Max pegasus 37
</h5>
<div class="product-rating d-flex">
<img src="assets/img/star-a.svg" alt="" />
<img src="assets/img/star-a.svg" alt="" />
<img src="assets/img/star-a.svg" alt="" />
<img src="assets/img/star.svg" alt="" />
</div>
<p class="new-product-price">$189</p>
<p class="new-product-text">Women’s Running shoe</p>
<a class="btn-link mb-0" href="#" title="Add to Cart"
>Add to Cart</a
>
</div>
</div>
</div>
<div class="col-lg">
<div
class="media new-product d-flex"
data-aos="flip-left"
data-aos-easing="ease-out-cubic"
data-aos-duration="500"
data-aos-delay="400"
>
<div class="new-product-img-outer bg-green position-relative">
<img
class="new-product-img position-absolute"
src="assets/img/product-sm-03.png"
alt=""
/>
</div>
<div class="media-body">
<h5 class="new-product-name text-uppercase mb-1">
Air Max pegasus 37
</h5>
<div class="product-rating d-flex">
<img src="assets/img/star-a.svg" alt="" />
<img src="assets/img/star-a.svg" alt="" />
<img src="assets/img/star-a.svg" alt="" />
<img src="assets/img/star.svg" alt="" />
</div>
<p class="new-product-price">$189</p>
<p class="new-product-text">Women’s Running shoe</p>
<a class="btn-link mb-0" href="#" title="Add to Cart"
>Add to Cart</a
>
</div>
</div>
</div>
<div class="col-lg">
<div
class="media new-product d-flex"
data-aos="flip-left"
data-aos-easing="ease-out-cubic"
data-aos-duration="500"
data-aos-delay="600"
>
<div
class="new-product-img-outer bg-dark-blue position-relative"
>
<img
class="new-product-img position-absolute"
src="assets/img/product-sm-04.png"
alt=""
/>
</div>
<div class="media-body">
<h5 class="new-product-name text-uppercase mb-1">
Air Max pegasus 37
</h5>
<div class="product-rating d-flex">
<img src="assets/img/star-a.svg" alt="" />
<img src="assets/img/star-a.svg" alt="" />
<img src="assets/img/star-a.svg" alt="" />
<img src="assets/img/star.svg" alt="" />
</div>
<p class="new-product-price">$189</p>
<p class="new-product-text">Women’s Running shoe</p>
<a class="btn-link mb-0" href="#" title="Add to Cart"
>Add to Cart</a
>
</div>
</div>
</div>
</div>
</section>
<!-- End New Product -->
<!-- Start Popular Picks -->
<section class="popular-picks">
<div class="d-flex align-items-end justify-content-between">
<div class="popular-picks-heading text-left">
<h2
class="popular-picks-heading-title text-generator"
data-aos="fade-up"
>
Popular Picks
</h2>
<p
class="popular-picks-heading-text mb-0"
data-aos="fade-up"
data-aos-delay="200"
>
Our popular picks for most favorited Nike Men’s & Women’s
shoes.
</p>
</div>
<!-- If we need navigation buttons -->
<div class="d-inline-flex align-content-center">
<div class="swiper-button-prev me-2">
<svg
width="26"
height="22"
viewBox="0 0 26 22"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M25.96 10.6587C25.96 11.2561 25.516 11.7498 24.9401 11.8279L24.78 11.8387L4.03713 11.8378L11.5309 19.3009C11.9927 19.7607 11.9943 20.5079 11.5345 20.9697C11.1165 21.3895 10.461 21.429 9.99831 21.0873L9.86572 20.9733L0.347049 11.4955C0.286175 11.4349 0.233302 11.3693 0.188428 11.3C0.175753 11.2792 0.162851 11.2579 0.150619 11.2361C0.139369 11.2174 0.129202 11.1981 0.119611 11.1785C0.10629 11.15 0.0932743 11.1206 0.0814576 11.0905C0.0718559 11.0674 0.0638389 11.0448 0.0565262 11.0221C0.0478324 10.994 0.0393856 10.964 0.0321199 10.9335C0.0267183 10.9123 0.0224404 10.8918 0.0187089 10.8712C0.0134615 10.8407 0.00899498 10.809 0.00580804 10.777C0.00305628 10.7526 0.00139997 10.7284 0.000484449 10.7042C0.00024782 10.6895 -4.97103e-05 10.6741 -4.97103e-05 10.6587L0.000541466 10.613C0.00144598 10.5898 0.00302769 10.5667 0.00528888 10.5436L-4.97103e-05 10.6587C-4.97103e-05 10.5842 0.00684762 10.5114 0.0200383 10.4408C0.0230973 10.4239 0.0267424 10.4066 0.0307785 10.3893C0.0391608 10.3538 0.0488475 10.3196 0.0600012 10.2861C0.0654758 10.2694 0.0718533 10.2516 0.0786698 10.2339C0.0924591 10.1984 0.107447 10.1646 0.123935 10.1316C0.131595 10.1161 0.140174 10.0999 0.149158 10.0838C0.163904 10.0576 0.179095 10.0327 0.195159 10.0084C0.206492 9.99123 0.219042 9.97334 0.232148 9.95574L0.24236 9.94214C0.274151 9.90061 0.308639 9.86125 0.345564 9.82432L0.34698 9.82323L9.86565 0.343888C10.3274 -0.115975 11.0746 -0.114428 11.5344 0.347343C11.9525 0.767136 11.9892 1.42276 11.6455 1.884L11.531 2.01611L4.04027 9.47776L24.78 9.47871C25.4317 9.47871 25.96 10.007 25.96 10.6587Z"
fill="#113869"
/>
</svg>
</div>
<div class="swiper-button-next">
<svg
width="26"
height="22"
viewBox="0 0 26 22"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0 10.6587C0 11.2561 0.443922 11.7498 1.01988 11.8279L1.18 11.8387L21.9228 11.8378L14.4291 19.3009C13.9673 19.7607 13.9656 20.5079 14.4255 20.9697C14.8435 21.3895 15.499 21.429 15.9616 21.0873L16.0942 20.9733L25.6129 11.4955C25.6738 11.4349 25.7267 11.3693 25.7715 11.3C25.7842 11.2792 25.7971 11.2579 25.8093 11.2361C25.8206 11.2174 25.8308 11.1981 25.8403 11.1785C25.8537 11.15 25.8667 11.1206 25.8785 11.0905C25.8881 11.0674 25.8961 11.0448 25.9034 11.0221C25.9121 10.994 25.9206 10.964 25.9278 10.9335C25.9332 10.9123 25.9375 10.8918 25.9413 10.8712C25.9465 10.8407 25.951 10.809 25.9542 10.777C25.9569 10.7526 25.9586 10.7284 25.9595 10.7042C25.9597 10.6895 25.96 10.6741 25.96 10.6587L25.9594 10.613C25.9585 10.5898 25.9569 10.5667 25.9547 10.5436L25.96 10.6587C25.96 10.5842 25.9531 10.5114 25.9399 10.4408C25.9369 10.4239 25.9332 10.4066 25.9292 10.3893C25.9208 10.3538 25.9111 10.3196 25.9 10.2861C25.8945 10.2694 25.8881 10.2516 25.8813 10.2339C25.8675 10.1984 25.8525 10.1646 25.836 10.1316C25.8284 10.1161 25.8198 10.0999 25.8108 10.0838C25.7961 10.0576 25.7809 10.0327 25.7648 10.0084C25.7535 9.99123 25.7409 9.97334 25.7278 9.95574L25.7176 9.94214C25.6858 9.90061 25.6513 9.86125 25.6144 9.82432L25.613 9.82323L16.0943 0.343888C15.6325 -0.115975 14.8854 -0.114428 14.4255 0.347343C14.0075 0.767136 13.9708 1.42276 14.3145 1.884L14.429 2.01611L21.9197 9.47776L1.18 9.47871C0.528304 9.47871 0 10.007 0 10.6587Z"
fill="#113869"
/>
</svg>
</div>
</div>
</div>
<div class="swiper three-item-carousel">
<!-- Additional required wrapper -->
<div class="swiper-wrapper">
<!-- Slides -->
<div
class="swiper-slide"
data-aos="zoom-in-down"
data-aos-duration="1000"
data-aos-delay="200"
>
<figure class="figure d-block popular-picks-figure mb-0">
<img
class="figure-img img-fluid d-block mx-auto mb-0"
src="assets/img/popular-picks-01.jpg"
alt=""
/>
</figure>
</div>
<div
class="swiper-slide"
data-aos="zoom-in-down"
data-aos-duration="1000"
data-aos-delay="400"
>
<figure class="figure d-block popular-picks-figure mb-0">
<img
class="figure-img img-fluid d-block mx-auto mb-0"
src="assets/img/popular-picks-02.jpg"
alt=""
/>
</figure>
</div>
<div
class="swiper-slide"
data-aos="zoom-in-down"
data-aos-duration="1000"
data-aos-delay="600"
>
<figure class="figure d-block popular-picks-figure mb-0">
<img
class="figure-img img-fluid d-block mx-auto mb-0"
src="assets/img/popular-picks-03.jpg"
alt=""
/>
</figure>
</div>
<div
class="swiper-slide"
data-aos="zoom-in-down"
data-aos-duration="1000"
data-aos-delay="800"
>
<figure class="figure d-block popular-picks-figure mb-0">
<img
class="figure-img img-fluid d-block mx-auto mb-0"
src="assets/img/popular-picks-01.jpg"
alt=""
/>
</figure>
</div>
<div
class="swiper-slide"
data-aos="zoom-in-down"
data-aos-duration="1000"
data-aos-delay="1000"
>
<figure class="figure d-block popular-picks-figure mb-0">
<img
class="figure-img img-fluid d-block mx-auto mb-0"
src="assets/img/popular-picks-02.jpg"
alt=""
/>
</figure>
</div>
<div
class="swiper-slide"
data-aos="zoom-in-down"
data-aos-duration="1000"
data-aos-delay="1200"
>
<figure class="figure d-block popular-picks-figure mb-0">
<img
class="figure-img img-fluid d-block mx-auto mb-0"
src="assets/img/popular-picks-03.jpg"
alt=""
/>
</figure>
</div>
</div>
</div>
</section>
<!-- End Popular Picks -->
<!-- Start About the Brand-->
<section class="about-brand">
<div class="row">
<div class="col-lg-7">
<div class="about-brand-heading text-left">
<h2
class="about-brand-heading-title text-generator position-relative"
data-aos="fade-up"
>
About the Brand
</h2>
<p
class="about-brand-heading-text"
data-aos="fade-up"
data-aos-delay="200"
>
[Lorem ipsum dolor sit amet, consectetur adipiscing elit. In
vel lectus lacinia, scelerisque ]
</p>
<button
type="button"
class="btn btn-primary rounded-0 text-uppercase"
data-aos="flip-left"
>
<span class="text-white">Shop now</span>
</button>
</div>
<figure
class="figure d-block about-brand-figure d-flex justify-content-lg-end mb-0"
data-aos="flip-left"
>
<img
class="figure-img img-fluid d-block"
src="assets/img/about-img-01.jpg"
alt=""
/>
</figure>
</div>
<div class="col-lg-5">
<figure
class="figure d-block about-brand-figure mb-0"
data-aos="flip-right"
>
<img
class="figure-img img-fluid d-block"
src="assets/img/about-img-02.jpg"
alt=""
/>
</figure>
<figure
class="figure d-block about-brand-figure mb-0"
data-aos="flip-up"
>
<img
class="figure-img img-fluid d-block"
src="assets/img/about-img-03.jpg"
alt=""
/>
</figure>
</div>
</div>
</section>
<!-- End About the Brand-->
</div>
<!-- Start Payday sale now-->
<section class="payday-sale position-relative">
<div class="container-xxl p-0">
<div class="row g-0">
<div class="col-lg-6">
<figure class="figure d-block payday-sale-figure mb-0">
<img
class="figure-img img-fluid d-block mx-auto mb-0"
src="assets/img/payday-sale-img.jpg"
alt=""
/>
</figure>
</div>
<div class="col-lg-6 po">
<div class="payday-sale-card position-relative">
<h2
class="payday-sale-card-title payday-sale-card-title-bg position-relative d-inline-block mb-0"
data-aos="fade-up"
>
<span
class="text-generator text-uppercase position-relative"
>Payday</span
>
</h2>
<h2
class="payday-sale-card-title text-generator text-uppercase mb-2 mb-xl-4"
data-aos="fade-up"
data-aos-delay="200"
>
sale now
</h2>
<p
class="payday-sale-card-text"
data-aos="fade-up"
data-aos-delay="400"
>
Spend minimal $100 get 30% off voucher code for your next
purchase
</p>
<h5
class="payday-sale-card-date text-generator"
data-aos="fade-up"
data-aos-delay="600"
>
1 June - 10 June 2021
</h5>
<p
class="payday-sale-card-conditions"
data-aos="fade-up"
data-aos-delay="800"
>
*Terms & Conditions apply
</p>
<button
type="button"
class="btn btn-primary rounded-0 text-uppercase"
data-aos="flip-left"
data-aos-delay="1000"
>
<span class="text-white">Shop now</span>
</button>
</div>
</div>
</div>
</div>
</section>
<!-- End Payday sale now -->
<!-- Start Explore more categories-->
<section class="explore-categories">
<div class="container-xxl">
<h2
class="explore-categories-title text-center text-generator"
data-aos="fade-up"
>
Explore more categories
</h2>
</div>
<div class="swiper auto-width-slider">
<!-- Additional required wrapper -->
<div class="swiper-wrapper">
<!-- Slides -->
<div
class="swiper-slide"
data-aos="zoom-in-down"
data-aos-duration="1000"
data-aos-delay="200"
>
<div class="explore-categories-card">
<img
class="explore-categories-card-img"
src="assets/img/categories-img-01.jpg"
alt=""
/>
<a
class="categories-card-body position-relative d-block"
href="#"
title="Hoodies & Sweetshirt"
>
<span class="categories-card-body-title d-block"
>Hoodies & Sweetshirt</span
>
<span class="categories-card-body-text d-block"
>Explore Now!</span
>
<img
class="arrow-icon"
src="assets/img/arrow-right.svg"
alt=""
/>
</a>
</div>
</div>
<div
class="swiper-slide"
data-aos="zoom-in-down"
data-aos-duration="1000"
data-aos-delay="400"
>
<div class="explore-categories-card">
<img
class="explore-categories-card-img"
src="assets/img/categories-img-02.jpg"
alt=""
/>
<a
class="categories-card-body position-relative d-block"
href="#"
title="Shoes & Sneakers"
>
<span class="categories-card-body-title d-block"
>Shoes & Sneakers</span
>
<span class="categories-card-body-text d-block"
>Explore Now!</span
>
<img
class="arrow-icon"
src="assets/img/arrow-right.svg"
alt=""
/>
</a>
</div>
</div>
<div
class="swiper-slide"
data-aos="zoom-in-down"
data-aos-duration="1000"
data-aos-delay="600"
>
<div class="explore-categories-card">
<img
class="explore-categories-card-img"
src="assets/img/categories-img-03.jpg"
alt=""
/>
<a
class="categories-card-body position-relative d-block"
href="#"
title="Tees & T-Shirt"
>
<span class="categories-card-body-title d-block"
>Tees & T-Shirt</span
>
<span class="categories-card-body-text d-block"
>Explore Now!</span
>
<img
class="arrow-icon"
src="assets/img/arrow-right.svg"
alt=""
/>
</a>
</div>
</div>
<div
class="swiper-slide"
data-aos="zoom-in-down"
data-aos-duration="1000"
data-aos-delay="800"
>
<div class="explore-categories-card">
<img
class="explore-categories-card-img"
src="assets/img/categories-img-01.jpg"
alt=""
/>
<a
class="categories-card-body position-relative d-block"
href="#"
title="Hoodies & Sweetshirt"
>
<span class="categories-card-body-title d-block"
>Hoodies & Sweetshirt</span
>
<span class="categories-card-body-text d-block"
>Explore Now!</span
>
<img
class="arrow-icon"
src="assets/img/arrow-right.svg"
alt=""
/>
</a>
</div>
</div>
<div
class="swiper-slide"
data-aos="zoom-in-down"
data-aos-duration="1000"
data-aos-delay="1000"
>
<div class="explore-categories-card">
<img
class="explore-categories-card-img"
src="assets/img/categories-img-02.jpg"
alt=""
/>
<a
class="categories-card-body position-relative d-block"
href="#"
title="Shoes & Sneakers"
>
<span class="categories-card-body-title d-block"
>Shoes & Sneakers</span
>
<span class="categories-card-body-text d-block"
>Explore Now!</span
>
<img
class="arrow-icon"
src="assets/img/arrow-right.svg"
alt=""
/>
</a>
</div>
</div>
<div
class="swiper-slide"
data-aos="zoom-in-down"
data-aos-duration="1000"
>
<div class="explore-categories-card">
<img
class="explore-categories-card-img"
src="assets/img/categories-img-03.jpg"
alt=""
/>
<a
class="categories-card-body position-relative d-block"
href="#"
title="Tees & T-Shirt"
>
<span class="categories-card-body-title d-block"
>Tees & T-Shirt</span
>
<span class="categories-card-body-text d-block"
>Explore Now!</span
>
<img
class="arrow-icon"
src="assets/img/arrow-right.svg"
alt=""
/>
</a>
</div>
</div>
<div
class="swiper-slide"
data-aos="zoom-in-down"
data-aos-duration="1000"
>
<div class="explore-categories-card">
<img
class="explore-categories-card-img"
src="assets/img/categories-img-01.jpg"
alt=""
/>
<a
class="categories-card-body position-relative d-block"
href="#"
title="Hoodies & Sweetshirt"
>
<span class="categories-card-body-title d-block"
>Hoodies & Sweetshirt</span
>
<span class="categories-card-body-text d-block"
>Explore Now!</span
>
<img
class="arrow-icon"
src="assets/img/arrow-right.svg"
alt=""
/>
</a>
</div>
</div>
<div
class="swiper-slide"
data-aos="zoom-in-down"
data-aos-duration="1000"
>
<div class="explore-categories-card">
<img
class="explore-categories-card-img"
src="assets/img/categories-img-02.jpg"
alt=""
/>
<a
class="categories-card-body position-relative d-block"
href="#"
title="Shoes & Sneakers"
>
<span class="categories-card-body-title d-block"
>Shoes & Sneakers</span
>
<span class="categories-card-body-text d-block"
>Explore Now!</span
>
<img
class="arrow-icon"
src="assets/img/arrow-right.svg"
alt=""
/>
</a>
</div>
</div>
<div
class="swiper-slide"
data-aos="zoom-in-down"
data-aos-duration="1000"
>
<div class="explore-categories-card">
<img