-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1132 lines (944 loc) · 36.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 lang="en">
<head>
<title>Rukanda Pride</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Rukanda Pride is a registered Leather Product Processinng Company which concentrates in the custom made shoes,belts, bags, and leather fashionwear.">
<meta name="keywords" content="sign up, buy online, rukanda pride, rukandapride.co.zw, rukandapride, rukanda, buy shoes, men shoes, leathers, shoes, pure leather, 100%leather, handcrafted shoes, leather belts, buy online in zimbabwe, zimbabwe online store, belts, wallets, leather bags, slip on slides, leather loafer, leather penny loafer, broguess, oxfords, traveling bag, satchel, laptop bag, bags, leather bags">
<meta name="description" content="order custom leather product, wallets, belts, highcut, lowcut, chelsea boot, tyukka boot, dress boot, combat boo, combat shoes, loafer, penny loafer, brogues">
<meta name="generator" content="Lether shoes and accessories, www.rukandapride.co.zw">
<!--===============================================================================================-->
<link rel="icon" type="image/png" href="images/icons/favicon.png"/>
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/themify/themify-icons.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/Linearicons-Free-v1.0.0/icon-font.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/elegant-font/html-css/style.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/animate/animate.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/css-hamburgers/hamburgers.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/animsition/css/animsition.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/select2/select2.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/daterangepicker/daterangepicker.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/slick/slick.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/lightbox2/css/lightbox.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="css/util.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<!--===============================================================================================-->
</head>
<body class="animsition">
<!-- Header -->
<header class="header1">
<!-- Header desktop -->
<div class="container-menu-header">
<div class="topbar">
<div class="topbar-social">
<a href="https://www.facebook.com/rukandapride/" class="topbar-social-item fa fa-facebook"></a>
<a href="https://www.instagram.com/rukandaprideofficial/" class="topbar-social-item fa fa-instagram"></a>
<a href="https://wa.me/263778812783?text=Hie,%20Rukanda%20Pride%20Handcrafts%20its Leather Products%20and%20please feel free to make your enquiry" class="topbar-social-item fa fa-whatsapp"></a>
<a href="#" class="topbar-social-item fa fa-youtube-play"></a>
</div>
<span class="topbar-child1">
Free shipping for standard order over $500
</span>
<div class="topbar-child2">
<span class="topbar-email">
paula@rukandapride.co.zw
</span>
<div class="topbar-language rs1-select2">
<select class="selection-1" name="time">
<option>USD</option>
<option>RAND</option>
<option>EURO</option>
</select>
</div>
<div class="topbar-language rs1-select2">
<select class="selection-1" name="time">
<option>ZIM</option>
<option>SA</option>
<option>Zambia</option>
</select>
</div>
</div>
</div>
<div class="wrap_header">
<!-- Logo -->
<a href="index.html" class="logo">
<h1> Rukanda Pride</h1>
</a>
<!-- Menu -->
<div class="wrap_menu">
<nav class="menu">
<ul class="main_menu">
<li class="sale-noti">
<a href="index.html">Home</a>
</li>
<li>
<a href="product.html">Shop</a>
</li>
<li>
<a href="product.html">Sale</a>
</li>
<li>
<a href="index.html">Product Category</a>
<ul class="sub_menu">
<li><a href="product.html">Low Cut Shoes</a></li>
<li><a href="highcut.html">High Cut Shoes</a></li>
<li><a href="slip on slopes.html">Slip On Shoes</a></li>
<li><a href="wallets.html">Wallets</a></li>
<li><a href="belts.html">Belts</a></li>
<li><a href="bags.html">Bags</a></li>
<li><a href="socks.html">Socks</a></li>
</ul>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
<!-- Header Icon -->
<div class="header-icons">
<a href="#" class="header-wrapicon1 dis-block">
<img src="images/icons/icon-header-01.png" class="header-icon1" alt="ICON">
</a>
<span class="linedivide1"></span>
<div class="header-wrapicon2">
<img src="images/icons/icon-header-02.png" class="header-icon1 js-show-header-dropdown" alt="ICON">
<span class="header-icons-noti">0</span>
<!-- Header cart noti -->
<div class="header-cart header-dropdown">
<ul class="header-cart-wrapitem">
<li class="header-cart-item">
<div class="header-cart-item-img">
</div>
<div class="header-cart-item-txt">
</div>
</li>
<div class="header-cart-buttons">
<div class="header-cart-wrapbtn">
<!-- Button -->
<a href="cart.html" class="flex-c-m size1 bg1 bo-rad-20 hov1 s-text1 trans-0-4">
View Cart
</a>
</div>
<div class="header-cart-wrapbtn">
<!-- Button -->
<a href="#" class="flex-c-m size1 bg1 bo-rad-20 hov1 s-text1 trans-0-4">
Check Out
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- top noti -->
<div class="flex-c-m size22 bg0 s-text21 pos-relative">
From 5% - 50% off on everything!
<a href="product.html" class="s-text22 hov6 p-l-5">
Shop Now
</a>
<button class="flex-c-m pos2 size23 colorwhite eff3 trans-0-4 btn-romove-top-noti">
<i class="fa fa-remove fs-13" aria-hidden="true"></i>
</button>
</div>
<!-- Header Mobile -->
<div class="wrap_header_mobile">
<!-- Logo moblie -->
<a href="index.html" class="logo-mobile">
<h1> Rukanda Pride</h1>
</a>
<!-- Button show menu -->
<div class="btn-show-menu">
<!-- Header Icon mobile -->
<div class="header-icons-mobile">
<a href="#" class="header-wrapicon1 dis-block">
<img src="images/icons/icon-header-01.png" class="header-icon1" alt="ICON">
</a>
<span class="linedivide2"></span>
<div class="header-wrapicon2">
<img src="images/icons/icon-header-02.png" class="header-icon1 js-show-header-dropdown" alt="ICON">
<span class="header-icons-noti">0</span>
<!-- Header cart noti -->
<div class="header-cart header-dropdown">
<div class="header-cart-buttons">
<div class="header-cart-wrapbtn">
<!-- Button -->
<a href="cart.html" class="flex-c-m size1 bg1 bo-rad-20 hov1 s-text1 trans-0-4">
View Cart
</a>
</div>
<div class="header-cart-wrapbtn">
<!-- Button -->
<a href="#" class="flex-c-m size1 bg1 bo-rad-20 hov1 s-text1 trans-0-4">
Check Out
</a>
</div>
</div>
</div>
</div>
</div>
<div class="btn-show-menu-mobile hamburger hamburger--squeeze">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</div>
</div>
</div>
<!-- Menu Mobile -->
<div class="wrap-side-menu" >
<nav class="side-menu">
<ul class="main-menu">
<li class="item-topbar-mobile p-l-20 p-t-8 p-b-8">
<span class="topbar-child1">
Free shipping for standard order over $500
</span>
</li>
<li class="item-topbar-mobile p-l-20 p-t-8 p-b-8">
<div class="topbar-child2-mobile">
<span class="topbar-email">paula@rukandapride.co.zw</span>
<div class="topbar-language rs1-select2">
<select class="selection-1" name="time">
<option>USD</option>
<option>EUR</option>
<option>RAND</option>
</select>
</div>
<div class="topbar-language rs1-select2">
<select class="selection-1" name="time">
<option>ZIM</option>
<option>SA</option>
<option>ZAM</option>
</select>
</div>
</div>
</li>
<li class="item-topbar-mobile p-l-10">
<div class="topbar-social-mobile">
<a href="https://www.facebook.com/rukandapride/" class="topbar-social-item fa fa-facebook"></a>
<a href="https://www.instagram.com/rukandaprideofficial/" class="topbar-social-item fa fa-instagram"></a>
<a href="https://wa.me/263778812783?text=Hie,%20Rukanda%20Pride%20Handcrafts%20its Leather Products%20and%20please feel free to make your enquiry" class="topbar-social-item fa fa-whatsapp"></a>
<a href="#" class="topbar-social-item fa fa-youtube-play"></a>
</div>
</li>
<li class="item-menu-mobile" >
<a href="index.html">Home</a>
</li>
<li class="item-menu-mobile">
<a href="product.html">Shop</a>
</li>
<li class="item-menu-mobile">
<a href="product.html">Sale</a>
</li>
<li class="item-menu-mobile">
<a href="about.html">About</a>
</li>
<li class="item-menu-mobile">
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
</header>
<!-- Slide1 -->
<section class="slide1">
<div class="wrap-slick1">
<div class="slick1">
<div class="item-slick1 item1-slick1" style="background-image: url(images/rukanda.jpeg);">
<div class="wrap-content-slide1 sizefull flex-col-c-m p-l-15 p-r-15 p-t-150 p-b-170">
<span class="caption1-slide1 m-text1 t-center animated visible-false m-b-15" data-appear="fadeInDown">
Leather Shoe Collection 2019
</span>
<h2 class="caption2-slide1 xl-text1 t-center animated visible-false m-b-37" data-appear="fadeInUp">
New arrivals
</h2>
<div class="wrap-btn-slide1 w-size1 animated visible-false" data-appear="zoomIn">
<!-- Button -->
<a href="product.html" class="flex-c-m size2 bo-rad-23 s-text2 bgwhite hov1 trans-0-4">
Shop Now
</a>
</div>
</div>
</div>
<div class="item-slick1 item2-slick1" style="background-image: url(images/rukanda2.jpeg);">
<div class="wrap-content-slide1 sizefull flex-col-c-m p-l-15 p-r-15 p-t-150 p-b-170">
<span class="caption1-slide1 m-text1 t-center animated visible-false m-b-15" data-appear="rollIn">
Leather Bag Collection 2019
</span>
<h2 class="caption2-slide1 xl-text1 t-center animated visible-false m-b-37" data-appear="lightSpeedIn">
New arrivals
</h2>
<div class="wrap-btn-slide1 w-size1 animated visible-false" data-appear="slideInUp">
<!-- Button -->
<a href="product.html" class="flex-c-m size2 bo-rad-23 s-text2 bgwhite hov1 trans-0-4">
Shop Now
</a>
</div>
</div>
</div>
<div class="item-slick1 item3-slick1" style="background-image: url(images/rukanda3.jpeg);">
<div class="wrap-content-slide1 sizefull flex-col-c-m p-l-15 p-r-15 p-t-150 p-b-170">
<span class="caption1-slide1 m-text1 t-center animated visible-false m-b-15" data-appear="rotateInDownLeft">
Handcrafted Leather Shoes, Belts, Bags and Wallets Collection 2019
</span>
<h2 class="caption2-slide1 xl-text1 t-center animated visible-false m-b-37" data-appear="rotateInUpRight">
New arrivals
</h2>
<div class="wrap-btn-slide1 w-size1 animated visible-false" data-appear="rotateIn">
<!-- Button -->
<a href="product.html" class="flex-c-m size2 bo-rad-23 s-text2 bgwhite hov1 trans-0-4">
Shop Now
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Banner -->
<section class="banner bgwhite p-t-40 p-b-40">
<div class="container">
<div class="row">
<div class="col-sm-10 col-md-8 col-lg-4 m-l-r-auto">
<!-- block1 -->
<div class="block1 hov-img-zoom pos-relative m-b-30">
<img src="images/highcut.jpg" alt="IMG-BENNER">
<div class="block1-wrapbtn w-size2">
<!-- Button -->
<a href="product.html" class="flex-c-m size2 m-text2 bg3 hov1 trans-0-4 t-center">
100% LEATHER PRODUCTS
</a>
</div>
</div>
<!-- block1 -->
<div class="block1 hov-img-zoom pos-relative m-b-30">
<img src="images/wallets.jpg" alt="IMG-BENNER">
<div class="block1-wrapbtn w-size2">
<!-- Button -->
<a href="wallets.html" class="flex-c-m size2 m-text2 bg3 hov1 trans-0-4">
WALLETS
</a>
</div>
</div>
</div>
<div class="col-sm-10 col-md-8 col-lg-4 m-l-r-auto">
<!-- block1 -->
<div class="block1 hov-img-zoom pos-relative m-b-30">
<img src="images/rukanda4.jpeg" alt="IMG-BENNER">
<div class="block1-wrapbtn w-size2">
<!-- Button -->
<a href="product.html" class="flex-c-m size2 m-text2 bg3 hov1 trans-0-4">
SHOES
</a>
</div>
</div>
<!-- block1 -->
<div class="block1 hov-img-zoom pos-relative m-b-30">
<img src="images/lowcut and belts.jpg" alt="IMG-BENNER">
<div class="block1-wrapbtn w-size2">
<!-- Button -->
<a href="highcut.html" class="flex-c-m size2 m-text2 bg3 hov1 trans-0-4">
Footwear
</a>
</div>
</div>
</div>
<div class="col-sm-10 col-md-8 col-lg-4 m-l-r-auto">
<!-- block1 -->
<div class="block1 hov-img-zoom pos-relative m-b-30">
<img src="images/rukanda bags.jpg" alt="IMG-BENNER">
<div class="block1-wrapbtn w-size2">
<!-- Button -->
<a href="bags.html" class="flex-c-m size2 m-text2 bg3 hov1 trans-0-4">
Bags
</a>
</div>
</div>
<!-- block2 -->
<div class="block2 wrap-pic-w pos-relative m-b-30">
<img src="images/icons/bg-01.jpg" alt="IMG">
<div class="block2-content sizefull ab-t-l flex-col-c-m">
<h4 class="m-text4 t-center w-size3 p-b-8">
Sign up & get 5% off
</h4>
<p class="t-center w-size4">
Be the frist to know about Rukanda Pride latest news and get exclu-sive offers
</p>
<div class="w-size2 p-t-25">
<!-- Button -->
<a href="form.php" class="flex-c-m size2 bg4 bo-rad-23 hov1 m-text3 trans-0-4">
Sign Up
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- New Product -->
<section class="newproduct bgwhite p-t-45 p-b-105">
<div class="container">
<div class="sec-title p-b-60">
<h3 class="m-text5 t-center">
Featured Products
</h3>
</div>
<!-- Slide2 -->
<div class="wrap-slick2">
<div class="slick2">
<div class="item-slick2 p-l-15 p-r-15">
<!-- Block2 -->
<div class="block2">
<div class="block2-img wrap-pic-w of-hidden pos-relative block2-labelnew">
<img src="images/p1.jpg" alt="IMG-PRODUCT">
<div class="block2-overlay trans-0-4">
<a href="#" class="block2-btn-addwishlist hov-pointer trans-0-4">
<i class="icon-wishlist icon_heart_alt" aria-hidden="true"></i>
<i class="icon-wishlist icon_heart dis-none" aria-hidden="true"></i>
</a>
<a href="https://wa.me/263778812783?text=I'm%20interested%20in%20your%20Stylish Tyukka Boot%20and%20 I would like to purchase it."><div class="block2-btn-addcart w-size1 trans-0-4">
<!-- Button -->
<button class="flex-c-m size1 bg4 bo-rad-23 hov1 s-text1 trans-0-4">
Order Now
</button>
</div></a>
</div>
</div>
<div class="block2-txt p-t-20">
<a href="" class="block2-name dis-block s-text3 p-b-5">
Stylish Tyukka Boot
</a>
<span class="block2-price m-text6 p-r-5">
$74.99
</span>
</div>
</div>
</div>
<div class="item-slick2 p-l-15 p-r-15">
<!-- Block2 -->
<div class="block2">
<div class="block2-img wrap-pic-w of-hidden pos-relative">
<img src="images/Rukanda Pride Happy Socks.jpg" alt="IMG-PRODUCT">
<div class="block2-overlay trans-0-4">
<a href="#" class="block2-btn-addwishlist hov-pointer trans-0-4">
<i class="icon-wishlist icon_heart_alt" aria-hidden="true"></i>
<i class="icon-wishlist icon_heart dis-none" aria-hidden="true"></i>
</a>
<a href="https://wa.me/263778812783?text=I'm%20interested%20in%20your%20Rukanda Pride Happy Socks%20and%20 I would like to purchase it."><div class="block2-btn-addcart w-size1 trans-0-4">
<!-- Button -->
<button class="flex-c-m size1 bg4 bo-rad-23 hov1 s-text1 trans-0-4">
Order Now
</button>
</div></a>
</div>
</div>
<div class="block2-txt p-t-20">
<a href="" class="block2-name dis-block s-text3 p-b-5">
Rukanda Pride Happy Socks
</a>
<span class="block2-price m-text6 p-r-5">
$6.99
</span>
</div>
</div>
</div>
<div class="item-slick2 p-l-15 p-r-15">
<!-- Block2 -->
<div class="block2">
<div class="block2-img wrap-pic-w of-hidden pos-relative">
<img src="images/p8.jpg" alt="IMG-PRODUCT">
<div class="block2-overlay trans-0-4">
<a href="#" class="block2-btn-addwishlist hov-pointer trans-0-4">
<i class="icon-wishlist icon_heart_alt" aria-hidden="true"></i>
<i class="icon-wishlist icon_heart dis-none" aria-hidden="true"></i>
</a>
<a href="https://wa.me/263778812783?text=I'm%20interested%20in%20your%20Brown Stripe Laptop Bag%20and%20 I would like to purchase it."><div class="block2-btn-addcart w-size1 trans-0-4">
<!-- Button -->
<button class="flex-c-m size1 bg4 bo-rad-23 hov1 s-text1 trans-0-4">
Order Now
</button>
</div></a>
</div>
</div>
<div class="block2-txt p-t-20">
<a href="" class="block2-name dis-block s-text3 p-b-5">
Brown Stripe Laptop Bag
</a>
<span class="block2-price m-text6 p-r-5">
$130-170
</span>
</div>
</div>
</div>
<div class="item-slick2 p-l-15 p-r-15">
<!-- Block2 -->
<div class="block2">
<div class="block2-img wrap-pic-w of-hidden pos-relative">
<img src="images/p3.jpg" alt="IMG-PRODUCT">
<div class="block2-overlay trans-0-4">
<a href="#" class="block2-btn-addwishlist hov-pointer trans-0-4">
<i class="icon-wishlist icon_heart_alt" aria-hidden="true"></i>
<i class="icon-wishlist icon_heart dis-none" aria-hidden="true"></i>
</a>
<a href="https://wa.me/263778812783?text=I'm%20interested%20in%20your%20Oxblood Tassel Loafer%20and%20 I would like to purchase it."><div class="block2-btn-addcart w-size1 trans-0-4">
<!-- Button -->
<button class="flex-c-m size1 bg4 bo-rad-23 hov1 s-text1 trans-0-4">
Order Now
</button>
</div></a>
</div>
</div>
<div class="block2-txt p-t-20">
<a href="" class="block2-name dis-block s-text3 p-b-5">
Oxblood Tassel Loafer
</a>
<span class="block2-price m-text6 p-r-5">
$54.99
</span>
</div>
</div>
</div>
<div class="item-slick2 p-l-15 p-r-15">
<!-- Block2 -->
<div class="block2">
<div class="block2-img wrap-pic-w of-hidden pos-relative block2-labelsale">
<img src="images/p4.jpg" alt="IMG-PRODUCT">
<div class="block2-overlay trans-0-4">
<a href="#" class="block2-btn-addwishlist hov-pointer trans-0-4">
<i class="icon-wishlist icon_heart_alt" aria-hidden="true"></i>
<i class="icon-wishlist icon_heart dis-none" aria-hidden="true"></i>
</a>
<a href="https://wa.me/263778812783?text=I'm%20interested%20in%20your%20Brown Leather Traveling Bag%20and%20 I would like to purchase it."><div class="block2-btn-addcart w-size1 trans-0-4">
<!-- Button -->
<button class="flex-c-m size1 bg4 bo-rad-23 hov1 s-text1 trans-0-4">
Order Now
</button>
</div></a>
</div>
</div>
<div class="block2-txt p-t-20">
<a href="product-detail.html" class="block2-name dis-block s-text3 p-b-5">
Brown Leather Traveling Bag
</a>
<span class="block2-oldprice m-text7 p-r-5">
$250
</span>
<span class="block2-newprice m-text8 p-r-5">
$199.99
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Banner2 -->
<section class="banner2 bg5 p-t-55 p-b-55">
<div class="container">
<div class="row">
<div class="col-sm-10 col-md-8 col-lg-6 m-l-r-auto p-t-15 p-b-15">
<div class="hov-img-zoom pos-relative">
<img src="images/buy now.jpg" alt="IMG-BANNER">
<div class="ab-t-l sizefull flex-col-c-m p-l-15 p-r-15">
<span class="m-text9 p-t-45 fs-20-sm">
Rukanda Pride
</span>
<h3 class="l-text1 fs-35-sm">
100% Leather
</h3>
<a href="products.html" class="s-text4 hov2 p-t-20 ">
View Collection
</a>
</div>
</div>
</div>
<div class="col-sm-10 col-md-8 col-lg-6 m-l-r-auto p-t-15 p-b-15">
<div class="bgwhite hov-img-zoom pos-relative p-b-20per-ssm">
<img src="images/offer.jpg" alt="IMG-BANNER">
<div class="ab-t-l sizefull flex-col-c-b p-l-15 p-r-15 p-b-20">
<div class="t-center">
<a href="product-detail.html" class="dis-block s-text3 p-b-5">
<strong>Shoe <br>+ <br>Belt</strong>
</a>
<strong><span class="block2-oldprice m-text7 p-r-5">
$100.00
</span>
<span class="block2-newprice m-text8">
$74.99
</span></strong>
</div>
<div class="flex-c-m p-t-44 p-t-30-xl">
<div class="flex-col-c-m size3 bo1 m-l-5 m-r-5">
<span class="m-text10 p-b-1 days">
7
</span>
<span class="s-text5">
days
</span>
</div>
<div class="flex-col-c-m size3 bo1 m-l-5 m-r-5">
<span class="m-text10 p-b-1 hours">
02
</span>
<span class="s-text5">
hrs
</span>
</div>
<div class="flex-col-c-m size3 bo1 m-l-5 m-r-5">
<span class="m-text10 p-b-1 minutes">
01
</span>
<span class="s-text5">
mins
</span>
</div>
<div class="flex-col-c-m size3 bo1 m-l-5 m-r-5">
<span class="m-text10 p-b-1 seconds">
02
</span>
<span class="s-text5">
secs
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Banner video -->
<section class="parallax0 parallax100" style="background-image: url(images/2.jpeg);">
<div class="overlay0 p-t-190 p-b-200">
<div class="flex-col-c-m p-l-15 p-r-15">
<span class="m-text9 p-t-45 fs-20-sm">
We handcraft everything
</span>
<h3 class="l-text1 fs-35-sm">
Showing our handcrafted highcut
</h3>
<a href="images/Rukanda Pride .mp4"><i class="fa fa-play" aria-hidden="true"></i><span class="btn-play s-text4 hov5 cs-pointer p-t-25" data-toggle="modal" data-target="#modal-video-01"> Play Video
</span></a>
</div>
</div>
</section>
<br>
<!-- Instagram -->
<section class="instagram p-t-20">
<div class="sec-title p-b-52 p-l-15 p-r-15">
<a href="https://www.instagram.com/rukandaprideofficial/" target="_blank"> <h3 class="m-text5 t-center">
@ follow us on Instagram
</h3></a>
</div>
<div class="flex-w">
<!-- Block4 -->
<div class="block4 wrap-pic-w">
<img src="images/insta.jpg" alt="IMG-INSTAGRAM">
<a href="https://www.instagram.com/rukandaprideofficial/" target="_blank" class="block4-overlay sizefull ab-t-l trans-0-4">
<span class="block4-overlay-heart s-text9 flex-m trans-0-4 p-l-40 p-t-25">
<i class="icon_heart_alt fs-20 p-r-12" aria-hidden="true"></i>
<span class="p-t-2">2992</span>
</span>
</a>
</div>
<!-- Block4 -->
<div class="block4 wrap-pic-w">
<img src="images/insta1.jpg" alt="IMG-INSTAGRAM">
<a href="https://www.instagram.com/rukandaprideofficial/" target="_blank" class="block4-overlay sizefull ab-t-l trans-0-4">
<span class="block4-overlay-heart s-text9 flex-m trans-0-4 p-l-40 p-t-25">
<i class="icon_heart_alt fs-20 p-r-12" aria-hidden="true"></i>
<span class="p-t-2">2 458</span>
</span>
</a>
</div>
<!-- Block4 -->
<div class="block4 wrap-pic-w">
<img src="images/insta2.jpg" alt="IMG-INSTAGRAM">
<a href="https://www.instagram.com/rukandaprideofficial/" target="_blank" class="block4-overlay sizefull ab-t-l trans-0-4">
<span class="block4-overlay-heart s-text9 flex-m trans-0-4 p-l-40 p-t-25">
<i class="icon_heart_alt fs-20 p-r-12" aria-hidden="true"></i>
<span class="p-t-2">3 003</span>
</span>
</a>
</div>
<!-- Block4 -->
<div class="block4 wrap-pic-w">
<img src="images/insta3.jpg" alt="IMG-INSTAGRAM">
<a href="https://www.instagram.com/rukandaprideofficial/" target="_blank" class="block4-overlay sizefull ab-t-l trans-0-4">
<span class="block4-overlay-heart s-text9 flex-m trans-0-4 p-l-40 p-t-25">
<i class="icon_heart_alt fs-20 p-r-12" aria-hidden="true"></i>
<span class="p-t-2">2 459</span>
</span>
</a>
</div>
<!-- Block4 -->
<div class="block4 wrap-pic-w">
<img src="images/insta4.jpg" alt="IMG-INSTAGRAM">
<a href="https://www.instagram.com/rukandaprideofficial/" target="_blank" class="block4-overlay sizefull ab-t-l trans-0-4">
<span class="block4-overlay-heart s-text9 flex-m trans-0-4 p-l-40 p-t-25">
<i class="icon_heart_alt fs-20 p-r-12" aria-hidden="true"></i>
<span class="p-t-2">2 458</span>
</span>
</a>
</div>
</div>
</section>
<!-- Shipping -->
<section class="shipping bgwhite p-t-62 p-b-46">
<div class="flex-w p-l-15 p-r-15">
<div class="flex-col-c w-size5 p-l-15 p-r-15 p-t-16 p-b-15 respon1">
<h4 class="m-text12 t-center">
All deliveries are done using FEDEX or DHL
</h4>
<a href="#" class="s-text11 t-center">
Click here for more info
</a>
</div>
<div class="flex-col-c w-size5 p-l-15 p-r-15 p-t-16 p-b-15 bo2 respon2">
<h4 class="m-text12 t-center">
30 Days Return
</h4>
<span class="s-text11 t-center">
Simply return it within 30 days for an exchange.
</span>
</div>
<div class="flex-col-c w-size5 p-l-15 p-r-15 p-t-16 p-b-15 respon1">
<h4 class="m-text12 t-center">
Store Opening
</h4>
<span class="s-text11 t-center">
Shop open from Monday to Saturday
</span><span class="s-text11 t-center">
8AM - 5PM
</span>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg6 p-t-45 p-b-43 p-l-45 p-r-45">
<div class="flex-w p-b-90">
<div class="w-size6 p-t-30 p-l-15 p-r-15 respon3">
<h4 class="s-text12 p-b-30">
GET IN TOUCH
</h4>
<div>
<p class="s-text7 w-size27">
Any questions? Let us know in store 2 Harare Drive Msasa Greendale, Primrose Complex Shop Number 4 Harare, Zimbabwe or call us on <strong>+263778812783 </p></strong>
<br>
<p class="s-text7 w-size27">
<strong> Email</strong> us on sales@rukandapride.co.zw
paula@rukandapride.co.zw
</p>
<div class="flex-m p-t-30">
<a href="https://www.facebook.com/rukandapride/" class="fs-18 color1 p-r-20 fa fa-facebook"></a>
<a href="https://www.instagram.com/rukandaprideofficial/" class="fs-18 color1 p-r-20 fa fa-instagram"></a>
<a href="https://wa.me/263778812783?text=Hie,%20Rukanda%20Pride%20Handcrafts%20its Leather Products%20and%20please feel free to make your enquiry" class="fs-18 color1 p-r-20 fa fa-whatsapp"></a>
<a href="#" class="fs-18 color1 p-r-20 fa fa-youtube-play"></a>
</div>
</div>
</div>
<div class="w-size7 p-t-30 p-l-15 p-r-15 respon4">
<h4 class="s-text12 p-b-30">
Categories
</h4>
<ul>
<li class="p-b-9">
<a href="product.html" class="s-text7">
Low Cut
</a>
</li>
<li class="p-b-9">
<a href="highcut.html" class="s-text7">
High Cut
</a>
</li>
<li class="p-b-9">
<a href="#" class="s-text7">
Bags
</a>
</li>
<li class="p-b-9">
<a href="wallets.html" class="s-text7">
Wallets
</a>
</li>
</ul>
</div>
<div class="w-size7 p-t-30 p-l-15 p-r-15 respon4">
<h4 class="s-text12 p-b-30">
Links
</h4>
<ul>
<li class="p-b-9">
<a href="#" class="s-text7">
Search
</a>
</li>
<li class="p-b-9">
<a href="product.html" class="s-text7">
About Us
</a>
</li>
<li class="p-b-9">
<a href="contact.html" class="s-text7">
Contact Us
</a>
</li>
<li class="p-b-9">
<a href="contact.html" class="s-text7">
Returns
</a>
</li>
</ul>
</div>
<div class="w-size7 p-t-30 p-l-15 p-r-15 respon4">
<h4 class="s-text12 p-b-30">
Help
</h4>
<ul>
<li class="p-b-9">
<a href="#" class="s-text7">
Track Order
</a>
</li>
<li class="p-b-9">
<a href="contact.html" class="s-text7">
Returns
</a>
</li>
<li class="p-b-9">
<a href="#" class="s-text7">